/* @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@100..900&family=Sora:wght@100..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --bg: #fffaf7;
  --text: #2d2a26;
  --muted: #6d665f;
  --card: #ffffff;
  --primary: #1c4229;
  --accent: #d88220;
  --accent-600: #9e7731;
  --accent-subtle: #fde7de;
  --soft: #fff4ee;
  --shadow: 0 10px 24px rgba(45, 42, 38, 0.08), 0 2px 6px rgba(45, 42, 38, 0.04);
}

html {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body{
	/* overflow-x: hidden; */
}

body {
  /* font-family: "Sora", sans-serif; */
  /* font-family: "Lato", sans-serif; */
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Outfit", sans-serif; */
  /* font-family: "Poppins", sans-serif; */
  font-family: "Montserrat", sans-serif;
  line-height: normal;
  font-weight: bold;
  color: var(--primary);
}

a,
p,
li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  transition: .4s ease;
}


@media (min-width: 992px) and (max-width: 1399.98px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px !important;
  }
	
	html {
		 font-size: 15.5px;
	}
	
}

/* =====================
   TOP BAR
   ===================== */

.top-bar {
  /* background-color: var(--primary); */
  /* color: white; */
  padding: 0 0 10px;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(216, 130, 32, 0.2);
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-link {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.top-bar-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.top-bar-link svg {
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.top-bar-text {
  color: var(--text);
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.top-bar-social {
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: var(--accent-subtle);
}

.top-bar-social:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Top Bar Responsive */
@media (max-width: 767px) {
  .top-bar {
    padding: 0.5rem 0;
  }

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
    gap: 1rem;
    margin: 0.25rem 0;
  }

  .top-bar-left {
    /* flex-direction: column; */
    /* gap: 0.5rem; */
  }

  .top-bar-link {
    font-size: 0.8rem;
  }

  .top-bar-text {
    display: none;
  }
}

/* =====================
   HEADER / NAVIGATION
   ===================== */

.header-section {
  /* background-color: var(--card); */
  /* box-shadow: var(--shadow); */
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  top: 0;
  transition: all 0.3s ease;
}

/* Scrolled header styles */
.header-section.scrolled {
  background-color: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0;
}

.logo-img {
  width: 95px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.navbar-nav {
  /* gap: 0.5rem; */
}

.nav-link {
  color: var(--text) !IMPORTANT;
  /* font-weight: 500; */
  font-size: 1rem;
  padding: 12px 12px !IMPORTANT;
  border-radius: 8px;
  transition: all 0.3s ease;
  /* letter-spacing: .2px; */
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  /* background-color: var(--accent-subtle); */
}

.btn-primary-custom {
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  /* font-weight: 600; */
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(216, 130, 32, 0.25);
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background-color: var(--accent-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 130, 32, 0.35);
  color: white;
}

/* .header-section.scrolled .top-bar {
  display: none;
} */

/* Mobile menu styling */
/* @media (max-width: 991px) {
  .navbar-collapse { */
    /* background-color: var(--soft); */
    /* padding: 1.5rem; */
/*     border-radius: 12px; */
    /* margin-top: 1rem; */
    /* box-shadow: var(--shadow); */
/*     position: absolute;
    width: 100%;
    left: 0;
    z-index: 999999999;
    background: white;
    top: 42px;
    visibility: inherit !important;
  } */

/*   .navbar-nav { */
    /* gap: 0.25rem; */
/*   }
} */

/* =====================
   HERO SECTION
   ===================== */

.hero-section {
  /* background: linear-gradient(135deg, #f8f1ed 0%, #fffbf7 50%, #fef5ef 100%); */
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: url(https://templates.framework-y.com/structura/images/bg-8.jpg);
  padding-top: 10rem;
  background-size: cover;
}

/* Pattern Overlays */
.hero-section::before {
  content: '';
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* right: 0; */
  /* bottom: 0; */
  /* background-image: 
    radial-gradient(circle at 20% 30%, rgba(216, 130, 32, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(28, 66, 41, 0.05) 0%, transparent 50%); */
  /* z-index: 0; */
}

.hero-section::after {
  content: '';
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d88220' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
  /* opacity: 1; */
  /* z-index: 0; */
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-right: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  /* gap: 0.25rem; */
}

.title-primary {
  color: var(--primary);
  display: block;
}

.title-accent {
  color: var(--accent);
  display: block;
  position: relative;
}

.hero-text {
  font-size: 1rem;
  /* color: var(--muted); */
  /* line-height: 1.7; */
  margin-bottom: 2rem;
  /* max-width: 540px; */
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-cta-primary {
  background-color: var(--accent);
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  /* font-weight: 600; */
  font-size: 1rem;
  border: none;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(216, 130, 32, 0.3);
  border: 2px solid var(--accent);
}

.btn-cta-primary:hover {
  background-color: var(--accent-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(216, 130, 32, 0.4);
  color: white;
}

.btn-cta-secondary {
  background-color: transparent;
  color: var(--primary);
  /* padding: 1rem 2.25rem; */
  border-radius: 50px;
  /* font-weight: 600; */
  font-size: 1rem;
  border: 2px solid var(--primary);
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
  padding: 8px 25px;
}

.btn-cta-secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(28, 66, 41, 0.25);
}

/* Hero Image Styling */
.hero-image-wrapper {
  position: relative;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* min-height: auto; */
}

.hero-image-frame {
  position: relative;
  z-index: 3;
  /* border-radius: 250px 250px 0 0; */
  overflow: hidden;
  /* box-shadow: 
    0 20px 60px rgba(45, 42, 38, 0.15),
    0 8px 20px rgba(216, 130, 32, 0.1),
    inset 0 0 0 8px rgba(255, 255, 255, 0.5); */
  transition: transform 0.4s ease;
  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(253, 231, 222, 0.3)); */
  /* padding: 8px; */
  width: auto;
  margin: auto;
  /* height: 550px; */
}

.hero-image-frame:hover img {
  transform: scale(1.02) rotate(-1deg);
}

.hero-image {
  width: 100%;
  height: 100%;
  /* display: block; */
  /* border-radius: 195px 195px 25px 25px; */
  /* filter: contrast(1.05) brightness(1.02); */
  object-fit: cover;
  object-position: bottom;
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  z-index: 1;
}

.hero-decoration-1 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(216, 130, 32, 0.15), rgba(216, 130, 32, 0.05));
  border-radius: 50%;
  top: -40px;
  right: -40px;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(225deg, rgba(28, 66, 41, 0.12), rgba(28, 66, 41, 0.03));
  border-radius: 47% 53% 42% 58% / 53% 47% 53% 47%;
  bottom: -30px;
  left: -30px;
  filter: blur(35px);
  animation: float 8s ease-in-out infinite reverse;
}

.hero-decoration-3 {
  width: 180px;
  height: 180px;
  background: linear-gradient(45deg, rgb(216 130 32 / 22%), rgba(255, 244, 238, 0.6));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* =====================
   ABOUT SECTION
   ===================== */

.about-section {
  /* background-color: var(--soft); */
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 175px;
  height: 160px;
  background-image: url('../imgs/patter-2.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  opacity: .6;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

/* Image Styling */
.about-image-wrapper {
  position: relative;
  animation: fadeInLeft 1s ease-out;
  border-radius: 250px 250px 0 0;
  /* overflow: hidden; */
  transition: all 0.4s ease;
  width: 95%;
  margin: auto;
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
}

.about-image {
  width: 100%;
  height: auto;
  /* border-radius: 24px; */
  /* box-shadow: var(--shadow); */
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
  /* border-radius: 250px 250px 0 0; */
  object-fit: cover;
  position: relative;
}

.about-image:hover {
  transform: scale(1.05) rotate(1deg);
  /* filter: brightness(1.1) contrast(1.05); */
  /* z-index: 9; */
}

.about-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #d88220;
  opacity: 1;
  border-radius: 24px;
  top: -10px;
  left: -15px;
  z-index: 1;
  border-radius: 250px 250px 0 0;
  display: none;
}

/* Content Styling */
.about-content {
  padding-left: 2rem;
}

.about-label {
  display: inline-block;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  /* letter-spacing: 1.5px; */
  /* margin-bottom: .5rem; */
  /* font-family: "DM Serif Display", serif; */
  font-style: italic;
/* 	display : none ;  */
}

.about-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  /* margin-bottom: 1rem; */
  /* line-height: 1.2; */
  letter-spacing: -1px;
  margin: .7rem 0;
}

.about-subtitle {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: .5rem;
  font-style: italic;
  font-style: italic;
}

/* Highlights Box */
.about-highlights {
  background-color: var(--card);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(45, 42, 38, 0.08);
  border-left: 4px solid var(--accent);
  display: none;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(216, 130, 32, 0.25);
}

.highlight-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

.highlight-text p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* CTA Button */
.about-cta {
  margin-top: 1rem;
}

.btn-about-cta {
  background: var(--accent);
  color: white;
  /* padding: 11px 22px; */
  border-radius: 50px;
  /* font-weight: 600; */
  font-size: 1rem;
  border: none;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(216, 130, 32, 0.3);
  position: relative;
  overflow: hidden;
  padding: 8px 25px;
  border: 2px solid #d88220;
}

.btn-about-cta:hover {
  background: var(--accent-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(216, 130, 32, 0.4);
  color: white;
}

/* Fade-in Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* About Section Responsive */
@media (max-width: 991px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-content {
    padding-left: 0;
    /* margin-bottom: 2rem; */
  }

  .about-title {
    font-size: 2.25rem;
  }

  .about-image-wrapper {
    max-width: 100%;
    margin: 1rem 0 0;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-highlights {
    padding: 1.5rem;
  }

  .highlight-icon {
    width: 45px;
    height: 45px;
  }
}

/* =====================
   FEATURED IN / AWARDS SECTION
   ===================== */

.featured-section {
  background-color: var(--primary);
  padding: 4rem 0;
  position: relative;
  border-top: 1px solid rgba(45, 42, 38, 0.08);
  border-bottom: 1px solid rgba(45, 42, 38, 0.08);
}

.featured-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Logo Grid */
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 1.5rem; */
  /* background-color: var(--bg); */
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 100px;
  border: 1px solid rgba(45, 42, 38, 0.06);
  width: 100%;
}

.logo-wrapper:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 8px 24px rgba(45, 42, 38, 0.1); */
  /* background-color: var(--card); */
  /* border-color: var(--accent-subtle); */
}

.featured-logo {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: all 0.3s ease;
  opacity: .7;
}

.logo-wrapper:hover .featured-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Featured Section Responsive */
@media (max-width: 991px) {
  .featured-section {
    padding: 4rem 0;
  }

  .featured-title {
    font-size: 2rem;
  }

  .featured-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding: 3rem 0;
  }

  .featured-title {
    font-size: 1.75rem;
  }

  .logo-wrapper {
    padding: 1rem;
    min-height: 80px;
  }

  .featured-logo {
    max-height: 50px;
  }
}

/* =====================
   WHY CHOOSE ME SECTION
   ===================== */

.why-choose-section {
  /* background-color: var(--soft); */
  padding: 4rem 0;
  position: relative;
}

.why-choose-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-choose-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

/* Why Choose Cards */
.why-choose-card {
  /* background-color: #d88220; */
  /* border-radius: 20px; */
  /* padding: 2.5rem 2rem; */
  /* text-align: center; */
  /* transition: all 0.3s ease; */
  /* height: 100%; */
  /* border: 1px solid rgba(45, 42, 38, 0.08); */
  /* box-shadow: 0 4px 16px rgba(45, 42, 38, 0.06); */
  /* animation: fadeInUp 0.6s ease-out; */
  display: flex;
  gap: 0 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 20px;
  width: 90%;
  border-bottom: 1px solid #d7812066;
  padding: 0 0 20px;
}



.why-icon {
  width: 65px;
  height: 65px;
  /* margin: 0 auto 1.5rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d88220;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 2rem;
}

.why-choose-card:hover .why-icon {
  background-color: var(--accent);
  color: white;
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 25px rgba(216, 130, 32, 0.4);
}

.why-choose-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c4229;
  margin-bottom: 0;
  /* line-height: 1.3; */
  display: block;
}

.why-choose-text {
  /* font-size: 1.1rem; */
  /* color: #4c4c4c; */
  /* line-height: 1.7; */
  margin: 15px 0 10px;
}

/* Why Choose Section Responsive */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 4rem 0;
  }

  .why-choose-title {
    font-size: 2.25rem;
  }

  .why-choose-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 3rem 0;
  }

  .why-choose-title {
    font-size: 2rem;
  }

  .why-choose-card {
    /* padding: 2rem 1.5rem; */
  }

  .why-icon {
    width: 60px;
    height: 60px;
  }

  .why-choose-card-title {
    font-size: 1.35rem;
  }
}

/* =====================
   COUNTRIES SECTION
   ===================== */

.countries-section {
  background-color: var(--card);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Globe Pattern */
.countries-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d88220' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.countries-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(28, 66, 41, 0.03) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

.countries-section .container {
  position: relative;
  z-index: 1;
}

.countries-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.countries-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* World Map Wrapper */
.world-map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(45, 42, 38, 0.12);
  margin-bottom: 1rem;
}

.world-map-image {
  width: 100%;
  height: 265px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(1.05);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(28, 66, 41, 0.85), rgba(216, 130, 32, 0.75));
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2rem;
  gap: 1rem;
}

.map-stat {
  text-align: center;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.map-stat h3 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-stat p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Country Cards */
.country-card {
  background-color: var(--card);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(45, 42, 38, 0.08);
  box-shadow: 0 4px 16px rgba(45, 42, 38, 0.08);
  animation: fadeInUp 0.6s ease-out;
  cursor: pointer;
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 42, 38, 0.15);
}

.country-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: var(--soft);
}

.country-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.country-card:hover .country-image {
  transform: scale(1.15);
}

.country-flag {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: all 0.3s ease;
}

.country-card:hover .country-flag {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.country-content {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.country-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.country-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Countries CTA */
.countries-cta-text {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Countries Section Responsive */
@media (max-width: 991px) {
  .countries-section {
    padding: 4rem 0;
  }

  .countries-title {
    font-size: 2.25rem;
  }

  .countries-subtitle {
    font-size: 1.05rem;
  }

  .map-stat h3 {
    font-size: 2.5rem;
  }

  .map-stat p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .countries-section {
    padding: 3rem 0;
  }

  .countries-title {
    font-size: 2rem;
  }

  .world-map-image {
    height: 250px;
  }

  .map-overlay {
    padding: 1rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .map-stat h3 {
    font-size: 2rem;
  }

  .map-stat p {
    font-size: 0.85rem;
  }

  .country-image-wrapper {
    height: 200px;
  }

  .country-flag {
    width: 45px;
    height: 45px;
    font-size: 24px;
    top: 12px;
    right: 12px;
  }

  .country-content {
    padding: 1.5rem 1.25rem;
  }

  .country-name {
    font-size: 1.35rem;
  }

  .country-text {
    font-size: 0.9rem;
  }

  .countries-cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .world-map-image {
    height: 200px;
  }

  .map-overlay {
    padding: 0.75rem;
    gap: 1rem;
  }

  .map-stat h3 {
    font-size: 1.75rem;
  }

  .map-stat p {
    font-size: 0.75rem;
  }
}

/* =====================
   SERVICES SECTION
   ===================== */

.services-section {
  background-color: var(--soft);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Pattern Background */
.services-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216, 130, 32, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 10%;
  width: 250px;
  height: 250px;
  background-image:
    radial-gradient(circle, rgba(28, 66, 41, 0.03) 2px, transparent 2px);
  background-size: 30px 30px;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.services-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Service Cards */
.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  /* border: 1px solid rgba(45, 42, 38, 0.06); */
  box-shadow: 0 4px 12px rgba(45, 42, 38, 0.05);
  animation: fadeInUp 0.6s ease-out;
  overflow: hidden;
  min-height: 420px;
  width: 95%;
  margin: 1rem auto;
  padding: 0 0 25px;
}


.service-card-2 {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  /* border: 1px solid rgba(45, 42, 38, 0.06); */
  box-shadow: 0 4px 12px rgba(45, 42, 38, 0.05);
  animation: fadeInUp 0.6s ease-out;
  overflow: hidden;
  min-height: 350px;
  width: 95%;
  margin: 1rem auto;
  padding: 0 0 25px;
}



.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(45, 42, 38, 0.12);
  border-color: var(--accent);
}

.service-card:hover .service-image-wrapper i{
color: #d88220;
}

.service-image-wrapper {
  width: 100%;
  height: 250px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  /* border-radius: 16px; */
  position: relative;
	align-content: center;
}

.service-image-wrapper-2{
	  width: 100%;
  height: 180px !important;
  margin-bottom: 0;
  overflow: hidden;
  /* border-radius: 16px; */
  position: relative;
	align-content: center;
}

.service-image-wrapper i {
	font-size: 100px;
	color: #1c4229;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  /* border-radius: 16px; */
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.3rem;
  /* font-weight: 700; */
  color: var(--primary);
  margin-bottom: .7rem;
  line-height: 1.3;
  padding: 0 13px;
}

.service-text {
  font-size: .9rem;
  /* color: var(--muted); */
  /* line-height: 1.7; */
  /* margin-bottom: 0; */
  padding: 0 25px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section Responsive */
@media (max-width: 991px) {
  .services-section {
    padding: 4rem 0;
  }

  .services-title {
    font-size: 2.25rem;
  }

  .services-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 0;
  }

  .services-title {
    font-size: 2rem;
  }

  .service-card {
    /* padding: 2rem 1.5rem; */
  }

  .service-image-wrapper {
    height: 180px;
  }

  .service-title {
    font-size: 1.35rem;
  }
}


/* =====================
   CORE STRENGTHS SECTION
   ===================== */

.strengths-section {
  z-index: 9;
  background-color: var(--accent-subtle);
  /* padding: 5rem 0; */
  position: relative;
}

.strengths-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(https://static.vecteezy.com/system/resources/previews/008/148/059/non_2x/decorative-twig-with-leaves-on-a-beige-background-exotic-tropical-composition-on-a-beige-background-vector.jpg);
    background-size: contain;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: .2;
}

.strengths-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.strengths-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

/* Strength Cards */
.strength-card {
  /* background-color: var(--card); */
  /* border-radius: 20px; */
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  /* border: 1px solid rgb(216 130 32); */
  /* box-shadow: 0 4px 16px rgba(216, 130, 32, 0.08); */
  /* animation: fadeInUp 0.6s ease-out; */
}

.strength-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 12px 32px rgba(216, 130, 32, 0.15); */
  /* border-color: var(--accent); */
}

.strength-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  /* font-size: 1.5rem; */
  display: none;
}

.strength-card:hover .strength-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(216, 130, 32, 0.3);
}

.strength-name {
  /* font-size: 1.35rem; */
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  /* line-height: 1.3; */
}

.strength-text {
  /* font-size: 0.95rem; */
  /* color: var(--muted); */
  /* line-height: 1.6; */
  margin-bottom: 0;
}

/* Strengths Section Responsive */
@media (max-width: 991px) {
  .strengths-section {
    padding: 4rem 0;
  }

  .strengths-title {
    font-size: 2.25rem;
  }

  .strengths-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .strengths-section {
    padding: 3rem 0;
  }

  .strengths-title {
    font-size: 2rem;
  }

  .strength-card {
    padding: 2rem 1.5rem;
  }

  .strength-icon {
    width: 60px;
    height: 60px;
  }

  .strength-name {
    font-size: 1.25rem;
  }
}

/* Counter Stats */
.counter-box {
  text-align: center;
  /* padding: 1.5rem 1rem; */
  transition: all 0.3s ease;
  background: white;
  padding: 25px;
  border-radius: 14px;
  margin: 0 0 1rem;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.counter-label {
  font-size: 1.1rem;
  color: #1c4229;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 768px) {
  .counter-number {
    font-size: 2rem;
  }

  .counter-label {
    font-size: 0.85rem;
  }
}

/* =====================
   TESTIMONIALS SECTION
   ===================== */

.testimonials-section {
  /* background-color: var(--soft); */
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Pattern Background */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/pattern-1.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0;
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(216, 130, 32, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.testimonials-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Testimonial Cards */
.testimonial-card {
  /*   background-color: var(--accent);
  border-radius: 20px;
  padding: 2.5rem 2rem; */
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  /*   border: 1px solid rgba(45, 42, 38, 0.08);
  box-shadow: 0 4px 16px rgb(127 127 127 / 6%); */
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  width: 75%;
  margin: 1rem auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  }

.testimonial-card:hover {
  transform: translateY(-8px);
/*   box-shadow: 0 12px 32px rgba(45, 42, 38, 0.12);
  background-color: var(--primary); */
}

.quote-icon i {
  font-size: 3rem;
  margin: 0 auto .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c4229;
  /* opacity: 0.3; */
}

.testimonial-text {
  font-size: 1rem;
  color: #313131;
  /* line-height: 1.7; */
  /* margin-bottom: 1.75rem; */
  font-style: italic;
  /* font-weight: 500; */
  text-align: start;
}

.testimonial-author {
  padding-top: 1.5rem;
  /* border-top: 2px solid #1c42293d; */
  display: flex;
  gap: 20px;
  text-align: left;
  justify-content: center;
}

.author-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.author-location {
  font-size: 18px;
  color: #898989;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Testimonial CTA Button */
.btn-testimonial-cta {
  background-color: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(216, 130, 32, 0.3);
}

.btn-testimonial-cta:hover {
  background-color: var(--accent-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(216, 130, 32, 0.4);
  color: white;
}

/* Testimonials Section Responsive */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-title {
    font-size: 2.25rem;
  }

  .testimonials-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .btn-testimonial-cta {
    width: 100%;
  }
}

/* =====================
   FAQ SECTION
   ===================== */

.faq-section {
  background-color: var(--soft);
  padding: 4rem 0;
  position: relative;
}

/* FAQ Image */
.faq-image-wrapper {
  position: relative;
  border-radius: 20px;
  /* overflow: hidden; */
  box-shadow: 0 8px 32px rgba(45, 42, 38, 0.15);
  height: 615px;
  border-radius: 300px 300px 0 0;
  width: 95%;
  transition: all 0.4s ease;
}

.faq-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(45, 42, 38, 0.25);
}

.faq-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 300px 300px 0 0;
  transition: all 0.4s ease;
}

.faq-image-wrapper:hover .faq-image {
  transform: scale(1.02);
  /* filter: brightness(1.1) contrast(1.05); */
}

.faq-image-overlay {
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  /* background: rgb(226 162 90); */
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.faq-stat-box {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background-color: rgb(216 130 32);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.faq-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.faq-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* FAQ Accordion */
.faq-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
}

.faq-item {
  background-color: white;
  border: 2px solid rgba(45, 42, 38, 0.08) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item .accordion-header {
  margin-bottom: 0;
}

.faq-item .accordion-button {
  background-color: transparent;
  border: none !important;
  padding: 1rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: none;
  transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) {
  background-color: var(--accent);
  color: white;
}

.faq-item .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.faq-item .accordion-button::after {
  width: 1.25rem;
  height: 1.25rem;
  background-size: 1.25rem;
  margin-left: auto;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d2a26'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: rotate(-180deg);
}

/* FAQ Question */
.faq-question {
  flex: 1;
  text-align: left;
  line-height: 1.6;
}

/* FAQ Answer */
.faq-answer {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
  border-top: 2px solid rgba(45, 42, 38, 0.05);
  background-color: white;
}

/* FAQ CTA */
.faq-cta {
  /* padding: 1.5rem 0 0; */
}

.faq-cta-text {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
  line-height: 1.6;
  font-weight: bold;
}

.faq-cta-link {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-cta-link:hover {
  color: var(--accent-600);
  text-decoration: underline;
}

/* FAQ Section Responsive */
@media (max-width: 991px) {
  .faq-section {
    padding: 4rem 0;
  }

  .faq-image-wrapper {
    height: 400px;
    margin-bottom: 2rem;
  }

  .faq-image-overlay {
    padding: 1.5rem;
    gap: 1rem;
  }

  .faq-stat-number {
    font-size: 2rem;
  }

  .faq-item .accordion-button {
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 1rem 1.25rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-image-wrapper {
    height: 350px;
  }

  .faq-image-overlay {
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-stat-box {
    padding: 0.75rem;
  }

  .faq-stat-number {
    font-size: 1.75rem;
  }

  .faq-stat-label {
    font-size: 0.85rem;
  }

  .faq-item {
    margin-bottom: 0.75rem;
  }

  .faq-item .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0.875rem 1rem 1rem;
    font-size: 0.95rem;
  }

  .faq-cta-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq-image-wrapper {
    height: 300px;
  }

  .faq-item .accordion-button {
    padding: 0.875rem;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0.75rem 0.875rem 0.875rem;
    font-size: 0.9rem;
  }
}

/* =====================
   BLOG / INSIGHTS SECTION
   ===================== */

.blog-section {
  background-color: var(--card);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  /* background-color: var(--soft); */
}

/* Decorative Blog Pattern */
.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  width: 250px;
  height: 250px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d88220' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.blog-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(216, 130, 32, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.blog-section .container {
  position: relative;
  z-index: 1;
}

.blog-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Blog Cards */
.blog-card {
  background-color: #fff4ee;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(45, 42, 38, 0.08);
  box-shadow: 0 4px 20px rgba(45, 42, 38, 0.08);
  animation: fadeInUp 0.6s ease-out;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(45, 42, 38, 0.15);
  border-color: var(--accent-subtle);
}

.blog-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background-color: var(--soft);
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.95);
}

.blog-card:hover .blog-image {
  transform: scale(1.12);
  filter: brightness(1);
}

/* Category Badge */
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(216, 130, 32, 0.3);
  transition: all 0.3s ease;
	display: none;
}

.blog-card:hover .blog-category {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 130, 32, 0.4);
}

.blog-content {
  padding: 2rem 1.5rem 2rem;
}

/* Blog Meta Information */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(45, 42, 38, 0.08);
}

.blog-author,
.blog-date,
.blog-reading-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.blog-author svg,
.blog-date svg,
.blog-reading-time svg {
  color: var(--accent);
  flex-shrink: 0;
}

.blog-author span,
.blog-date span,
.blog-reading-time span {
  line-height: 1;
}

.blog-author:hover,
.blog-date:hover,
.blog-reading-time:hover {
  color: var(--accent);
  cursor: default;
}

.blog-post-title {
  font-size: 1.4rem;
  /* font-weight: 700; */
  color: var(--primary);
  /* margin-bottom: 1rem; */
  /* line-height: 1.4; */
  transition: color 0.3s ease;
}

.blog-card:hover .blog-post-title {
  color: var(--accent);
}

.blog-excerpt {
  /* font-size: 1rem; */
  /* color: var(--muted); */
  /* line-height: 1.7; */
  /* margin-bottom: 1.5rem; */
}

.blog-link {
  font-size: 1rem;
  /* font-weight: 600; */
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.blog-link svg {
  transition: transform 0.3s ease;
}

.blog-link:hover {
  color: var(--accent-600);
  gap: 0.75rem;
}

.blog-link:hover svg {
  transform: translateX(5px);
}

/* Blog Section Responsive */
@media (max-width: 991px) {
  .blog-section {
    padding: 4rem 0;
  }

  .blog-title {
    font-size: 2.25rem;
  }

  .blog-subtitle {
    font-size: 1.05rem;
  }

  .blog-image-wrapper {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 3rem 0;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-image-wrapper {
    height: 200px;
  }

  .blog-category {
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    top: 12px;
    left: 12px;
  }

  .blog-content {
    padding: 1.75rem 1.5rem;
  }

  .blog-meta {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .blog-author,
  .blog-date,
  .blog-reading-time {
    font-size: 0.8rem;
  }

  .blog-post-title {
    font-size: 1.3rem;
  }

  .blog-excerpt {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .blog-image-wrapper {
    height: 180px;
  }

  .blog-content {
    padding: 1.5rem 1.25rem;
  }

  .blog-meta {
    gap: 0.5rem;
  }

  .blog-post-title {
    font-size: 1.2rem;
  }
}

/* =====================
   CONTACT FORM SECTION
   ===================== */

.contact-section {
  /* background-color: var(--soft); */
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Contact Pattern */
.contact-section::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(216, 130, 32, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background-image:
    radial-gradient(circle, rgba(28, 66, 41, 0.04) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background-color: var(--card);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(45, 42, 38, 0.1);
  border: 1px solid rgba(45, 42, 38, 0.08);
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  box-shadow: 0 12px 40px rgba(45, 42, 38, 0.15);
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.contact-form-subtitle {
  font-size: 1rem;
  color: var(--muted);
  /* margin-bottom: 2rem; */
  line-height: 1.6;
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form .form-control {
  border: 2px solid rgba(45, 42, 38, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--bg);
  width: 100%;
  font-family: 'Nunito', sans-serif;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(216, 130, 32, 0.15);
  background-color: white;
  outline: none;
}

.contact-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d88220' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.btn-contact-submit {
  background-color: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(216, 130, 32, 0.3);
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.btn-contact-submit svg {
  transition: transform 0.3s ease;
}

.btn-contact-submit:hover {
  background-color: var(--accent-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(216, 130, 32, 0.4);
  color: white;
}

.btn-contact-submit:hover svg {
  transform: translateX(3px);
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid rgba(45, 42, 38, 0.08);
  box-shadow: 0 4px 20px rgba(45, 42, 38, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(45, 42, 38, 0.12);
  border-color: var(--accent-subtle);
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(216, 130, 32, 0.25);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 24px rgba(216, 130, 32, 0.35);
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.contact-info-content p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.contact-info-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-info-link:hover {
  color: var(--accent-600);
  transform: translateX(3px);
}

/* Status Badge */
.contact-status-badge {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Section Responsive */
@media (max-width: 991px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-form-wrapper {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .contact-form-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-form-wrapper {
    padding: 1.75rem;
  }

  .contact-form-title {
    font-size: 1.4rem;
  }

  .contact-form-subtitle {
    font-size: 0.95rem;
  }

  .contact-form .form-control {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .btn-contact-submit {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
  }

  .contact-info-content h4 {
    font-size: 1.05rem;
  }

  .contact-info-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-form .row {
    margin: 0;
  }

  .contact-form .row>[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-info-card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-info-icon {
    width: 55px;
    height: 55px;
  }
}

/* =====================
   CTA BANNER SECTION
   ===================== */

.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 0;
  overflow: hidden;
  background-position: center;
  background: url(../imgs/bg-1.jpg);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(216 130 32);
  z-index: 1;
  opacity: .2;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1c4229;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-text {
font-size: 1.3rem;
    color: rgb(216 130 32);
    /* margin-bottom: 2.5rem; */
    line-height: 1.5;
    /* font-weight: 600; */
    font-style: italic;
}

.btn-cta-large {
  background-color: var(--accent);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  /* font-weight: 700; */
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(216, 130, 32, 0.4);
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.btn-cta-large:hover {
  background-color: var(--accent-600);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(216, 130, 32, 0.5);
  color: white;
}

/* CTA Section Responsive */
@media (max-width: 991px) {
  .cta-section {
    padding: 5rem 0;
    background-attachment: scroll;
  }

  .cta-heading {
    font-size: 2.5rem;
  }

  .cta-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }

  .cta-heading {
    /* font-size: 2rem; */
    font-size: 1.6rem;
    font-weight: 700;
  }

  .cta-text {
    font-size: 1.05rem;
    /* margin-bottom: 2rem; */
  }

  .btn-cta-large {
    padding: 9px 14px;
    font-size: 14px;
    width: 100%;
  }
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */

@media (max-width: 991px) {
  .hero-section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    padding: 0 2rem;
  }

  .hero-title {
    align-items: center;
    margin: 0 0 .5rem;
    line-height: normal;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-image-wrapper {
    /* margin-top: 2rem; */
    /* min-height: 400px; */
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    /* padding: 0.85rem 1.75rem; */
    font-size: 0.95rem;
  }

  .hero-decoration-1,
  .hero-decoration-2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    /* width: 100%; */
    text-align: center;
  }
}

/* =====================
   FOOTER SECTION
   ===================== */

.footer-section {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 0;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  /* filter: brightness(0) invert(1); */
}

.footer-widget img {
  width: 160px;
  margin: 0 0 1rem;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  width: 90%;
}

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-3px);
}

/* Footer Title */
.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* Footer CTA Button */
.footer-cta-btn {
  margin-top: 1.5rem;
}

.btn-footer-cta {
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    /* font-weight: 600; */
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(216, 130, 32, 0.25);
}

.btn-footer-cta:hover {
  background-color: var(--accent-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 130, 32, 0.4);
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
/*   display: flex;
  justify-content: center; */
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links li {
  display: inline-block;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* Footer Responsive */
@media (max-width: 991px) {
  .footer-section {
    padding: 3rem 0 0;
  }

  .footer-widget {
    /* margin-bottom: 2.5rem; */
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 2.5rem 0 0;
    /* text-align: center; */
  }

  .footer-social {
    /* justify-content: center; */
  }

  .footer-contact li {
    /* justify-content: center; */
  }

  .footer-bottom-links {
    margin-top: 1rem;
  }

  .btn-footer-cta {
    width: auto;
  }
}


.service-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  width: auto;
  justify-content: center;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
}


ul.slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
}

ul.slick-dots li button {
  font-size: 0;
  width: 25px;
  height: 5px;
  border: 0;
  background: #d88220;
  border-radius: 30px;
  margin: 0 3px;
}

ul.slick-dots li.slick-active button {
  width: 45px;
  background: #1c4229;
}

.cta-section a.btn.btn-cta-large {
  background-color: #1c4229;
}

section.cta-section:before {
  position: absolute;
  content: "";
  background: url(https://starplatethemes.com/php/lavale/assets/img/shape/why-choose-v1-shape1.png);
  width: 360px;
  height: 360px;
  top: 0;
  right: 0;
  z-index: 9;
  opacity: .2;
  display: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 175px;
  height: 160px;
  background-image: url(../imgs/patter-2.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  opacity: .6;
  z-index: 0;
  /* filter: brightness(100); */
  z-index: 9;
  transform: rotate(-90deg);
}



.last-content.text-center {
  padding: 4rem 0;
  /* background: #fff4ee; */
}

.last-content.text-center h2 {
  font-size: 2.2rem;
  /* font-weight: 900; */
  color: var(--primary);
  /* margin-bottom: 1rem; */
  line-height: 1.2;
  margin: 0 0 20px;
  /* font-family: 'Nunito'; */
  /* font-weight: 700; */
}

.last-content.text-center h4 {
  font-size: 1.4rem;
  color: var(--accent);
  /* font-weight: 500; */
  margin-bottom: 0;
  font-style: italic;
  /* font-family: "DM Serif Display", serif; */
}

.last-img-bg {
  background: #d88220;
  position: relative;
  margin: 9rem 0 0;
  padding: 0 0 4rem;
  transition: all 0.4s ease;
}

.last-img-bg:hover {
  /* transform: translateY(-5px); */
}

.last-img img {
  width: 27%;
  height: 495px;
  object-fit: cover;
  /* border-radius: 30px 30px 0 0; */
  margin: -4rem 0 0;
  transition: all 0.4s ease;
}

.last-img:hover img {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.1) contrast(1.05);
}

.padding {
  padding: 4rem 0;
}

/* ===========Inner Hero Section============= */

.inner-hero-section {
  background-size: cover;
  padding: 11rem 0 3rem;
}

.inner-hero-section .breadcrumb {
  justify-content: center;
}

.inner-hero-title {
  font-weight: 600;
  font-size: 3rem;
}

.inner-hero-title span {
  color: var(--accent);
}

/* =====================
   MISSION & VISION SECTION
   ===================== */

.mission-vision-section {
  /* background-color: var(--soft); */
  /* padding: 5rem 0; */
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(216, 130, 32, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.mission-vision-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: -3%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(28, 66, 41, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.mission-vision-section .container {
  position: relative;
  z-index: 1;
}

/* Mission & Vision Cards */
.mission-vision-card {
  background-color: var(--card);
  border-radius: 16px;
  padding: 0;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(216, 130, 32, 0.1);
  box-shadow: 0 4px 20px rgba(45, 42, 38, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mission-vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45, 42, 38, 0.1);
}

.mission-card {
  border-top: 5px solid var(--accent);
}

.vision-card {
  border-top: 5px solid var(--accent);
}

.card-content {
  padding: 2.5rem 2rem;
  flex: 1;
  text-align: center;
}

.card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  object-position: top;
}

.mission-vision-card:hover .card-image img {
  transform: scale(1.05);
}



/* Mission & Vision Section Responsive */
@media (max-width: 991px) {
  .mission-vision-section {
    padding: 4rem 0;
  }

  .mission-vision-card {
    margin-top: 1rem;
  }

  .card-content {
    padding: 2rem 1.5rem;
  }

  .card-image {
    height: 200px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .values-wrapper {
    padding: 2.5rem 2rem;
  }

  .values-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .mission-vision-section {
    padding: 3rem 0;
  }

  .card-content {
    padding: 1.75rem 1.25rem;
  }

  .card-image {
    height: 180px;
  }

  /* .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  } */

  .card-title {
    font-size: 1.4rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .values-wrapper {
    padding: 2rem 1.5rem;
  }

  .values-title {
    font-size: 1.5rem;
  }

  .value-item {
    padding: 1.25rem 0.75rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .value-name {
    font-size: 1.1rem;
  }

  .value-text {
    font-size: 0.9rem;
  }
}

/* =====================
   MAP SECTION STYLES
   ===================== */

.map-section {
  padding: 4rem 0;
  background-color: var(--soft);
}

.meet-me-sec {
    background: var(--bg);
}

.services-pg .service-card {
    width: 100%;
    background: var(--soft);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: auto;
    padding: 0;
}

/* =====================
   BLOG DETAIL PAGE STYLES
   ===================== */

.blog-detail-pg {
    background-color: var(--bg);
}

/* Blog Detail Image */
.blog-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(45, 42, 38, 0.12);
}

.blog-detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-detail-image:hover img {
    transform: scale(1.02);
}

/* Blog Content */
.blog-content-wrapper {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(45, 42, 38, 0.08);
    border: 1px solid rgba(45, 42, 38, 0.06);
}

blockquote {
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--accent-subtle);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}



/* Blog Navigation */
.blog-navigation {
    margin-top: 3rem;
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background-color: var(--card);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 42, 38, 0.08);
    border: 1px solid rgba(45, 42, 38, 0.06);
    height: 100%;
}

.blog-nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(45, 42, 38, 0.12);
    text-decoration: none;
}

.blog-nav-prev {
    text-align: left;
}

.blog-nav-next {
    text-align: right;
    flex-direction: row-reverse;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nav-content {
    flex: 1;
}

.nav-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.service-inquiry-form {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(45, 42, 38, 0.1);
  border: 1px solid rgba(45, 42, 38, 0.08);
  transition: all 0.3s 
ease;
}

.related-services {
  background-color: var(--soft);
  padding: 2rem;
  border-radius: 20px;
  /* box-shadow: 0 8px 32px rgba(45, 42, 38, 0.1); */
  /* border: 1px solid rgba(45, 42, 38, 0.08); */
  transition: all 0.3s 
ease;
}

.related-service-item {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #dc8e358c;
}

.service-thumb img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.service-info {
  width: 62%;
}

.service-info h4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1rem;
}

.service-info p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  display: none;
}

.service-info a {
  font-size: 13px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonials-pg .testimonial-card {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
  background: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 32px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.navbar img.attachment-227\.27x227\.27.size-227\.27x227\.27 {
    width: 120px;
}
.navbar-brand img {
    width: 130px;
    margin-left: 25px;
}

.flourish-para p
 {
    width: 70%;
    margin: auto;
    font-style: italic;
    font-size: 1.1rem;
}


.new-support-sec{
    padding: 3rem 0;
    background-image: url('https://webtestinglink.co.uk/beta/flourish-thrive/wp-content/uploads/2025/12/bg-8.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 9;
}

.new-support-sec .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d8822026;
    z-index: -1;
    pointer-events: none;
}

.new-support-sec .new-support-text{
    position: relative;
    z-index: 999;
}

.new-support-sec .new-support-text h2{
    font-size: 2.7rem;
    font-weight: 600;
    color: #1c4229;
    line-height: 1.2;
}

.new-support-sec .new-support-text p{
    font-size: 1.25rem;
    color: #d88220;
    font-weight: 500;
    margin-bottom: .5rem;
    font-style: italic;
}

.new-support-sec .new-support-content .new-support-box{
    /* background: #d88220; */
    /* border: 1px solid rgba(255,255,255,0.2); */
    /* border-radius: 10px; */
    text-align: center;
    /* padding: 20px 12px; */
    height: 100%;
    transition: all 0.3s ease-in-out;
    /* box-shadow: 0 10px 30px rgba(216, 130, 32, 0.3); */
    margin-top: 1rem;
}

.new-support-sec .new-support-content .new-support-box:hover{
    transform: scale(1.05);
    transform: translateY(-10px);
}

.new-support-sec .new-support-content .new-support-box:hover i{
    transform: scale(1.1) rotate(4deg);
}

.new-support-sec .new-support-content .new-support-box .new-support-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.new-support-sec .new-support-content .new-support-box .new-support-icon i{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1c4229;
    /* box-shadow: 0 8px 30px rgba(216,130,32,0.25); */
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.new-support-sec .new-support-content .new-support-box p{
    /* font-size: 16px; */
    /* color: #fff; */
    margin: 0;
}


/* -------new-director-sec-------------------- */

.new-director-sec{
    padding: 64px 0;
    background: linear-gradient(135deg,rgba(255,255,255,0.8),rgba(255,255,255,0.45));
    backdrop-filter: blur(26px);
    position: relative;
}

.new-director-sec .new-director-text h2{
    font-size: 2.7rem;
    font-weight: 600;
    color: #1c4229;
    line-height: 1.2;
}

.new-director-sec .new-director-text p{
    font-size: 1.25rem;
    color: #d88220;
    font-weight: 500;
    margin-bottom: .5rem;
    font-style: italic;
}

.new-director-sec .new-director-box-left{
    background: linear-gradient(135deg,rgba(216, 130, 32, 0.45),rgba(216, 130, 32, 0.80));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.new-director-sec .new-director-box-left .new-director-img{
    width: 100%;
    height: 534px;
    overflow: hidden;
    border-radius: 20px;
}

.new-director-sec .new-director-box-left .new-director-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.new-director-sec .new-director-box-left .new-director-img img:hover{
    transform: scale(1.1);
    filter: brightness(50%);
}

.new-director-sec .new-director-box-right{
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.new-director-sec .new-director-box-right .new-director-boiler-plate{
    /* background-color: #fff; */
    /* padding: 10px; */
    border-radius: 10px;
    display: flex;
    align-items: start;
    gap: 10px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    /* margin-bottom: 10px; */
}

.new-director-sec .new-director-box-right .new-director-boiler-plate .new-director-icon i{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1c4229;
    border-radius: 8px;
    font-size: 24px;
    color: #fff;
}

.new-director-sec .new-director-box-right .new-director-boiler-plate h3{
    color: #1c4229;
    font-size: 26px;
    line-height: 0.9;
}

.new-director-sec .new-director-box-right .new-director-boiler-plate span{
    font-size: 12px;
}

.new-director-sec .new-director-box-right p{
    margin: 10px 0;
}

.new-director-sec .new-director-box-right .new-director-social-icons{
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.new-director-sec .new-director-box-right .new-director-social-icons .new-director-social-box{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.new-director-sec .new-director-box-right .new-director-social-icons .new-director-social-box a{
    width: 40px;
    height: 40px;
    background-color: #d88220;
    color: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.new-director-sec .new-director-box-right .new-director-social-icons .new-director-social-box a:hover{
    transform: scale(1.05);
    transform: translateY(-5px);
    background-color: #1c4229;
}

.header-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.scrolled .navbar-brand img {
    width: 90px;
}

div#faqAccordion .collapse {
    visibility: inherit !important;
}

form p {
    margin: 0;
}

form br {
    display: none;
}

/* .quiz-popup-box {
   
    display: none !important;
} */

/* =========================== */
/*============== New DEtail Page CSS ======================*/


/* Services Page Specific Styles */
        .services-section {
            padding: 60px 0 !important;
            background: white;
        }

        .section-intro {
            max-width: 900px;
            margin: 0 auto 40px;
            /* text-align: center; */
        }

        .section-intro h2 {
            font-size: 2.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .section-intro p {
            font-size: 1.1rem;
            color: var(--muted);
            line-height: 1.8;
        }

        /* Package Cards */
        .package-card {
            background: var(--card);
            border-radius: 20px;
            padding: 50px 40px;
            /* margin-bottom: 40px; */
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-600) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(45, 42, 38, 0.12);
        }

        .package-card:hover::before {
            transform: scaleX(1);
        }

        .package-header {
            margin-bottom: 35px;
        }

        .package-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .package-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .package-subtitle {
            font-size: 1rem;
            color: var(--muted);
            font-style: italic;
        }

        .package-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .package-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: capitalize;
            /* letter-spacing: 0.05em; */
            margin-bottom: 15px;
            /* margin-top: 30px; */
        }

  .package-content h4 strong , .package-content h4 b {
    font-weight: 600;
}

        .package-content ul {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .package-content ul li {
            padding: 0px 0 0;
            padding-left: 25px;
            position: relative;
            color: var(--text);
            line-height: normal;
        }

        .package-content ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
            font-size: 1.2rem;
        }

       .package-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.package-boxes {
    /* flex: 1; */
    width: 49% !important;
    margin: 0 0 2rem;
    vertical-align: top;
}

.services-section-packages {
    background: #fff4ee;
}

.services-section-packages .row {
    padding: 3rem 0;
}

        .cta-button {
            display: inline-block;
            padding: 14px 35px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            letter-spacing: 0.03em;
            transition: all 0.3s ease;
            margin-top: 20px;
            border: 2px solid var(--primary);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Add-ons Section */
        .addons-section {
            background: var(--card);
            padding: 3rem 0;
            text-align: center;
        }

        .addon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .addon-card {
            background: var(--soft);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .addon-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .addon-icon {
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }

        .addon-card h4 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .addon-card p {
            color: var(--muted);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Final CTA */
        .final-cta-section {
            background: var(--soft);
            padding: 40px 0;
            text-align: center;
            color: white;
        }

        .final-cta-section h2 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .final-cta-section p {
            /* font-size: 1.2rem; */
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-button-light {
            background: #d6851e;
            color: white;
            border: 2px solid white;
        }

        .cta-button-light:hover {
            background: white;
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .package-card {
                padding: 35px 25px;
            }
            
            .section-intro h2 {
                font-size: 2rem;
            }
        }




/* RESPONSIVE QUERY______ */


@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {

.footer-contact li {
    flex-wrap: wrap;
}

/* .navbar-brand img {
    width: 100px;
} */

/* .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 8px !important;
} */

.why-icon {
    margin: 0 0 1rem;
}

.why-choose-card {
    flex-direction: column;
    align-items: self-start;
    gap: 0;
}

.why-image-wrapper {
    position: sticky;
    top: 100px;
}
	
	.footer-contact li {
    font-size: 11px;
}
	

	

}

@media only screen and (max-width: 991px) {
	


.header-section {
    position: sticky;
    top: 0;
    background-color: var(--card);
}

.header-section .container {
    padding: 5px 0;
    position: relative;
    z-index: 9;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

/* .navbar-toggler {
    order: 3;
    background: var(--primary);
    padding: 5px;
    margin-left: 10px;
} */

/* nav.navbar.navbar-expand-lg.navbar-light {
    flex-direction: row-reverse;
} */

.top-bar {
    border: 0;
    padding: 0 0 5px;
}

/* .navbar-brand img , .scrolled .navbar-brand img {
    width: 85px;
} */

.btn-cta-primary, .btn-cta-secondary , .btn-primary-custom {
    font-size: 14px;
}	

/* .navbar-collapse.collapse {
    visibility: inherit !important;
}	 */
	
/* .navbar-toggler:focus {
	box-shadow : none ;
} */

/* .navbar-toggler span.navbar-toggler-icon {
    filter: brightness(1000);
    width: 1em;
    height: 1em;
} */

/* .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0 !important;
} */

/* .navbar-expand-lg .navbar-nav li {
    padding: 8px 15px;
    width: 100%;
}	 */
	
.inner-hero-section {
    padding: 3rem 0;
}



/* .navbar-brand img, .scrolled .navbar-brand img {
    margin: 0;
    width: 80px;
} */

html {
    font-size: 15px;
}	
	
	.about-image {
  height: 550px;
}
	
	
	.info-reviews {
		    width: auto !important;
    border-right: none !important;
    text-align: center;
}


.testimonials-pg .testimonial-card {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    align-items: center;
}
	
	.testimonial-text {
    text-align: center;
}
	
	

}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 767px) {
	
.footer-widget img {
    width: 110px;
}	
	

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {
	
	.about-image {
  height: auto;
}
	
	.testimonial-card {
  width: 100%;
  }
	
	.author-name {
    font-size: 1.5rem;
}
	
	.author-location {
    font-size: 15px;
}
	
	.package-boxes {
    width: 100% !important;
}

}

@media only screen and (max-width: 575px) {
	
.padding {
    padding: 2rem 0;
}
	
/* 	.services-section-packages .row:nth-child(odd) {
    background: #fff4ee;
    padding: 10px;
    border-radius: 0px;
} */
	
	.navbar-brand img {
    width: 85px;
    margin-left: 0px;
}

	
	.footer-bottom .new-btm-footer-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
	
	

}

@media only screen and (max-width: 480px) {
	
.top-bar {
    display: none;
}

.hero-section {
    padding: 2rem 0;
}

.hero-title {
    font-size: 1.6rem;
}

.hero-content {
    padding: 0 1rem;
}

.about-section::before {
    width: 130px;
    height: 125px;
}


.featured-section .col-6 {
    width: 33.3%;
}

.service-card {
    min-height: auto;
}

.why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.why-choose-card-title {
    font-size: 1.2rem;
}

.why-choose-card {
    width: 100%;
}

.why-choose-text {
    margin: 10px 0 0;
}

.cta-section::after {
    opacity: 0;
}	
	
.last-content.text-center {
    padding: 3rem 0;
}

.last-content.text-center h2 {
    font-size: 1.6rem;
    margin: 0 0 .5rem;
}

.flourish-para p {
    width: 100%;
    font-size: 1rem;
    padding: 0 1rem;
}
	
.new-support-sec .new-support-text h2 {
    font-size: 1.6rem;
}
	
.social-link {
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.footer-social {
    gap: .5rem;
}	
	
.new-support-content .col {
    width: 100%;
    flex: inherit;
    margin: 0;
}
	
.footer-title {
    margin: 0 0 1rem;
}
	
	
	

}

@media only screen and (max-width: 414px) {

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {
	
	.btn-cta-primary, .btn-cta-secondary, .btn-primary-custom {
        font-size: 12px;
    }


.btn-primary-custom {
    padding: 0.4rem 1rem;
}

}


@media only screen and (max-width: 320px) {

}


/* .quiz-popup-overlay {
	display :none	;
} */


/* div#quizPopup {
    display: none ! IMPORTANT;
} */


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        visibility: visible !important;
    }
}
.nav-item {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    display: flex;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
    padding-right: 12px;
    gap: 8px;
    align-items: center;
    border-radius: 16px;
    background: #f2f4f700 !important;
}


.logo-slider-new {
  margin-top: 30px;
}

.logo-item img {
  max-height: 80px;
  width: auto;
  opacity: 0.7;
  transition: 0.3s;
}

.logo-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.logo-item {
  width: 200px; 
  padding: 20px;
  text-align: center;
}

.logo-slider-new .slick-track {
  display: flex;
  align-items: center;
}



/* Parent */
/* #menu-item-454 {
    position: relative !important;
} */

/* Hide initially */
/* #menu-item-454 > .dropdown-menu {
    position: absolute !important;
    top: 120% !important;
    right: 0 !important;
    min-width: 340px;
    background: linear-gradient(135deg, #d88220, #f4a641) !important;
    padding: 15px 0;
    list-style: none;
    display: none;
    z-index: 99999999 !important;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px); */
/*     opacity: 0; */
/*     transform: translateY(15px);
    transition: all 0.35s ease;
} */

/* Show on hover (desktop) */
/* @media (min-width: 992px) {
    #menu-item-454:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        top: 100% !important;
    }
} */

/* Dropdown links */
/* #menu-item-454 .dropdown-menu li {
    padding: 5px 15px;
	display: block;
	width: 100%;
} */

/* #menu-item-454 .dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
} */

/* Hover effect */
/* #menu-item-454 .dropdown-menu li a:hover {
    background: rgba(255,255,255,0.15);
    padding-left: 20px !important;
} */

/* Small arrow top */
/* #menu-item-454 > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 25px;
    width: 15px;
    height: 15px;
    background: #f4a641;
    transform: rotate(45deg);
} */

/* #menu-item-454 .dropdown-menu li a:hover {
    background: #f2f2f2;
} */

/* #menu-primary-menu .menu-item-has-children > a::after {
  content: " ▼";
  font-size: 12px;
  margin-left: 5px;
} */

.logo-slider{
	background: #f8f8f8;
}


.info-reviews {
    width: 400px;
    border-right: 1px solid #a9a9a9;
    margin-right: 20px;
}
.service-detail-image {
    width: 100%;
    position: sticky;
    top: 200px;
}
.package-card.How.We.Work .package-boxes {
    width: 100% !important;
    display: block !important;
}

/* 01.04.2026 */

.services-section-packages .container .row:nth-of-type(2) {
    padding-top: 0 !important;
}

.footer-bottom .new-btm-footer-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* navbar */
/* DROPDOWN BASE */
.navbar-nav .menu-item-has-children {
  position: relative;
}

.navbar-nav .dropdown-menu {
  display: none;
  list-style: none;
  padding: 10px;
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
      .navbar-nav .menu-item-has-children:hover .dropdown-menu {
        display: block;
        position: absolute;
        background: #fff;
        min-width: 250px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        top: 48px;
    }
}

/* CLICK (ALL DEVICES) */
.navbar-nav .menu-item-has-children.active .dropdown-menu {
  display: block;
        position: absolute;
        background: #fff;
        min-width: 250px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        top: 48px;
}

.menu-item-has-children > a::after {
  content: "\f282"; /* chevron-down icon */
  font-family: "bootstrap-icons";
  margin-left: 8px;
}

/* OFFCANVAS FIX */
.offcanvas .sub-menu {
  position: static;
  box-shadow: none;
}

ul.dropdown-menu li {
    display: inline-block;
    width: 100%;
}

ul.dropdown-menu li a:hover{
	background-color: #d88220;
	color: #fff !important; 
}

