body{
	font-family: arial;
	background-color: #ccccd2;
	min-height: 100vh;
}

.bg-light{
	background-color: #caffe5 !important;
	color: #000;
	font-weight: 600;
}
.bg-light i {
	color: #000;
}
.btn {
	font-weight: 500;
	transition: .5s;
}

.btn.btn-primary {
	color: #FFFFFF;
}

.btn-sm-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-weight: normal;
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}
.navbar-light {
	background: #00733a !important;
}

.navbar-light .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #FFFFFF !important;
	font-size: 15px;
	text-transform: uppercase;
	outline: none; 
	font-weight: 700;
	transition: all 0.3s ease-in-out;
}
.navbar-light p {
	display: inline-block;
	line-height: 17px;
	font-size: 14px;
	color: #fff !important;
	padding-left: 10px;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
	color: #f1ab16 !important; 
}

.navbar-nav .nav-link.active {
	color: #f1ab16 !important; /* Gold */
	border-bottom: 2px solid #f1ab16;
}

.dropdown-menu {
	padding: 0px;
	transition: all 0.3s ease-in-out;
}
.dropdown-menu .dropdown-item {
	font-size: 16px;
}
.dropdown-menu .dropdown-item:hover {
	background: #00733a;
	color: #fff;
}

@media (max-width: 991.98px) {
	.navbar-light .navbar-nav .nav-link  {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar-light .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
	height: 75px;
}

.navbar-light .navbar-nav .nav-link {
	color: black;
	font-weight: 500;
}

.navbar-light.sticky-top {
	top: -100px;
	transition: .5s;

	/* Dark Glass Effect */
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);

	border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}


.btn_request {
	text-transform: uppercase;
	background: #f1ab16;
	color: #000 !important;
	font-weight: 800;
	border: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}

.btn:focus {
	-webkit-box-shadow: none;
}

.btn_request:hover,
.btn_request:active,
.btn_request:focus {
	background: #000;
	color: #f1ab16 !important;
}


.navbar-brand h2  {
	position: relative;
	line-height: 24px;
	color: #000 !important;
	font-weight: 700;
}
.navbar-brand h2  span {
	display: block;
	font-size: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.brand-slider .slider_item {
	position: relative;
	width: 100%;
	min-height: 85vh;
	padding: 60px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	background: #000 url('../../assets/img/Screenshot-background.png')no-repeat center 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
}

/* TEXT SECTION */
.brand-slider .slider_text {
	flex: 1;
	animation: fadeInUp 1s ease forwards;
}

.brand-slider h1 {
	font-size: 4rem;
	font-weight: 900;
	font-family: Calibri !important;
	text-transform: uppercase;
	line-height: 1.1;
	color: #fff;
}

.brand-slider h1 span {
	color: #d4af37; /* Gold */
}

.brand-slider p {
	font-size: 1.2rem;
	margin: 20px 0;
	opacity: 0.95;
}

/* BUTTON */
.slider_btn {
	background: #d4af37;
	color: #000;
	padding: 14px 36px;
	border-radius: 50px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.3s;
}

.slider_btn:hover {
	background: #b8952f;
}

/* IMAGE */
.slider_img {
	flex: 1;
	text-align: right;
}

.slider_img img {
	width: 100%;
	max-width: 600px;
	border-radius: 22px;
	animation: fadeIn 1.4s ease forwards;
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

/* ANIMATIONS */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: scale(1.1);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
/* Arrow animation */
.arrow-icon {
	font-size: 0.75rem;
	transition: transform 0.3s ease;
}

/* When dropdown is open */
.nav-item.dropdown.show .arrow-icon {
	transform: rotate(180deg);
}


/* Smooth dropdown animation */
.dropdown-menu {
	opacity: 0; 
	visibility: hidden;
	pointer-events: none; 
	transform: translateY(10px); 
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown-menu.show {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
}

/* Optional: better spacing & feel */
.dropdown-item {
	padding: 10px 20px;
	font-size: 15px;
}

.dropdown-item:hover {
	background-color: #f5f7fa;
}

 
/* When Bootstrap opens it */
.dropdown-menu.show {
	opacity: 1;
	transform: translateY(0);
}

/* Full width container */
.fullwidth-carousel {
	width: 100%;
	overflow: hidden;
}

/* Each slide */
.slide-item {
	position: relative;
	height: 80vh; /* full screen feel */
	background-size: cover;
	background-position: center;
}

/* Blog-style content at bottom */
.slide-content {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 30px;
	background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
	color: #fff;
}

.slide-content h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.slide-content p {
	font-size: 15px;
	margin-bottom: 10px;
	max-width: 600px;
}

.post-date {
	font-size: 13px;
	opacity: 0.8;
}

.read-more {
	color: #ffc107;
	text-decoration: none;
	font-weight: 600;
}

.read-more:hover {
	color: #ffff00; 
}

/* Remove Owl default padding */
.owl-carousel .owl-stage-outer {
	padding: 0;
}




/* Position nav container */
.owl-carousel .owl-nav {
	position: absolute;
	top: 40%;
	right: 25px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
} 
/* Position nav container */
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev{
	background: #000;
	width: 48px;
	height: 48px;
	border-radius: 50em;
	color: #fff;
	text-align: center;
	line-height: 48px;
	font-size: 22px;
	transition: all 0.2s linear;
} 
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:hover {
	transform: scale(1.2);	
}
@media (max-width: 768px) {
	.owl-carousel .owl-nav {
		display: none;
	}
}

.ambassador-section {
	position: relative;
	padding: 0px 20px;
	background: #f5f7fa; 
	width: 100%;
	height: auto;
	margin-top: 60px;
}

/* Glass Card */
.ambassador-card {
	position: relative;
	max-width: 900px;
	margin: auto;
	padding: 40px;
	border-radius: 20px;
	z-index: 40;
	margin-top: -400px;
	margin-right: 0px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	overflow: hidden;
}

/* Absolute background text */
.bg-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 120px;
	font-weight: 800;
	letter-spacing: 8px;
	color: rgba(255,255,255,0.15);
	pointer-events: none;
	white-space: nowrap;
}

/* Content layout */
.ambassador-content {
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
	z-index: 2;
}

/* Ambassador image */
.ambassador-img {
	width: 160px;
	height: 200px;
	object-fit: cover;
	border-radius: 14px;
	border: 2px solid rgba(255,255,255,0.4);
	overflow: hidden;
}

.ambassador-img img {
	display: block;
	height: 200px;
	width: 160px;
	object-fit: cover;
	object-position: center;
}

/* Text info */
.ambassador-info h3 {
	margin-bottom: 6px;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
}

.ambassador-info span {
	display: inline-block;
	padding: 0px 15px;
	font-size: 14px;
	color: #000;
	background: #f1ab16; 
	margin-bottom: 12px;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	-ms-border-radius: 0.5em;
	-o-border-radius: 0.5em;
}

.ambassador-info p {
	font-size: 15px;
	line-height: 1.7;
	color: #fff;
	max-width: 520px;
}

/* Responsive */
@media (max-width: 768px) {

	.ambassador-info p { 
		color: #000; 
	}
	.ambassador-content {
		flex-direction: column;
		text-align: center;
	}

	.bg-text {
		font-size: 70px;
	}
}


:root {
	--nigeria-green: #008751;
}

/* Section */
.services-blocks {
	padding: 80px 0;
	background: #f8f9fa url('../img/bg-image-2-01.svg') no-repeat center 100%;
	background-position: left;
}

/* Block card */
.service-block {
	height: 100%;
	padding: 35px 25px;
	border-radius: 18px;
	background: #fff;
	text-align: center;
	box-shadow: 0 15px 35px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Icon wrapper */
.service-block .icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
}

/* Green & White styles */
.service-block .icon.green {
	background: var(--nigeria-green);
	color: #fff;
}

.service-block .icon.white {
	background: #fff;
	color: var(--nigeria-green);
	border: 2px solid var(--nigeria-green);
}

/* Text */
.service-block h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.service-block p {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
}


/* Hero Slider */
.news-hero {
	position: relative;
}

.hero-slide {
	height: 80vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.hero-content {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	max-width: 650px;
}

.hero-content h1 {
	font-size: 42px;
	font-weight: 700;
	margin-top: 15px;
}

.hero-content p {
	font-size: 17px;
	margin-top: 10px;
}

/* Owl nav right side */
.news-slider .owl-nav {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
 
.news-slider .owl-nav .owl-prev,
.news-slider .owl-nav .owl-next {  
	background: #fff !important;
	color: #008751 !important;
	font-size: 26px;
}

/* Dots */
.news-slider .owl-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.btn-readmore {
	background: orange !important;
	color: #000;
	border: 0px;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
}


/* Section */
.embassy-info {
	background: #f8f9fa;
}

/* Box */
.info-box {
	background: #fff;
	border-radius: 18px;
	padding: 30px 15px;
	text-align: center;
	height: 100%;
	border: 2px solid transparent;
	box-shadow: 0 15px 35px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 45px rgba(0,0,0,0.12);
	border: 2px solid #008751;
}

/* Icon */
.info-box i {
	font-size: 42px;
	color: var(--naija-green);
	margin-bottom: 15px;
}

/* Title */
.info-box h6 {
	font-weight: 700;
	margin-bottom: 6px;
}

/* Text */
.info-box p {
	font-size: 14px;
	color: #555;
	margin: 0;
}

/* Section */
.latest-news-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

/* Header */
.section-head h2 {
	font-weight: 800;
	position: relative;
}

.section-head h2::after {
	content: "";
	width: 60px;
	height: 3px;
	background: var(--naija-green);
	display: block;
	margin-top: 8px;
}

.view-all {
	color: var(--naija-green);
	font-weight: 600;
	text-decoration: none;
}

/* News box */
.news-box {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 40px rgba(0,0,0,0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 55px rgba(0,0,0,0.15);
}

/* Image */
.news-img {
	position: relative;
}

.news-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* Tag */
.news-tag {
	position: absolute;
	top: 15px;
	left: 15px;
	background: orange;
	color: #000;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

/* Content */
.news-content {
	padding: 22px;
}

.news-date {
	font-size: 12px;
	color: var(--naija-green);
	font-weight: 600;
}

.news-content h5 {
	font-weight: 700;
	margin: 10px 0;
}

.news-content p {
	font-size: 14px;
	color: #555;
	margin-bottom: 12px;
}

.read-more {
	color: var(--naija-green);
	font-weight: 600;
	text-decoration: none;
}


/* Background image section */
.bg-news {
	position: relative;
	background-image: url('../img/lagos-slider-img-3.jpg'); /* change image */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Dark overlay */
.bg-news::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
	rgba(0,0,0,0.55),
	rgba(0,0,0,0.75)
	);
	z-index: 0;
}

/* Keep content above overlay */
.bg-news > .container {
	position: relative;
	z-index: 2;
}

/* Adjust heading color */
.bg-news .section-head h2,
.bg-news .view-all {
	color: #fff;
}

.bg-news .section-head h2::after {
	background: #fff;
}


































#scrollTopBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: #008751; /* Nigeria green */
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 25px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
	z-index: 999;
}

#scrollTopBtn:hover {
	background: orange;
	color: #000;
	transform: translateY(-3px);
}
:root {
	--naija-green: #008751;
}

/* Footer main */
.embassy-footer {
	background: linear-gradient(180deg, #008751, #006b3f);
	color: #fff;
	padding-top: 70px;
}

/* Brand */
.footer-brand h5 {
	margin-top: 15px;
	font-weight: 700;
}

.footer-brand p {
	font-size: 14px;
	opacity: 0.9;
}

/* Titles */
.footer-title {
	font-weight: 700;
	margin-bottom: 18px;
	position: relative;
}

.footer-title::after {
	content: "";
	width: 35px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: -6px;
}

/* Links */
.embassy-footer ul {
	list-style: none;
	padding: 0;
}

.embassy-footer ul li {
	margin-bottom: 10px;
	font-size: 14px;
}

.embassy-footer ul li a {
	color: #eaf6ef;
	text-decoration: none;
	transition: padding-left 0.3s ease;
}

.embassy-footer ul li a:hover {
	padding-left: 6px;
	color: #fff;
}

/* Social icons */
.footer-socials {
	display: flex;
	gap: 12px;
	margin-top: 15px;
}

.footer-socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background 0.3s ease;
}

.footer-socials a:hover {
	background: #fff;
	color: var(--naija-green);
}

/* Bottom bar */
.footer-bottom {
	margin-top: 50px;
	padding: 15px 0;
	background: rgba(0,0,0,0.15);
	font-size: 13px;
}

.footer-bottom a {
	color: #fff;
	text-decoration: none;
}
