

/* ------------------------------------------
   BASE STYLES
--------------------------------------------- */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f5f1;
  color: #333;
  scroll-behavior: smooth;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
}
p, a, button {
  font-family: 'Poppins', sans-serif;
}


img {
  max-width: 100%;
  display: block;
}

@keyframes shine-text {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}


.card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 20px;
}

/* --------------------------------------------------
   KEYFRAMES
-------------------------------------------------- */
@keyframes shine {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}

@keyframes shine-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes floatHouse {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes flyPlane {
  0% { transform: translateX(-200px) translateY(0); opacity: 0; }
  50% { opacity: 1; transform: translateX(0) translateY(-15px); }
  100% { transform: translateX(200px) translateY(0); opacity: 0; }
}

.shining-heading {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #32d296, #0e4528, #32d296);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 4s linear infinite;
}



/* ------------------------------------------
   HEADER STYLES
--------------------------------------------- */
/* Header */


    /* -------------------------------
       Header Styles
    --------------------------------- */
    .main-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-color: transparent;
      color: #fff;
      z-index: 20;
      transition: background-color 0.4s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }

    .main-header.scrolled {
      position: fixed;
     background: linear-gradient(to right, #00391a, #004d26);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
      padding: 0.8rem 0;
      color: #fff;
    }

    .logo-img {
      height: 60px;
      transition: transform 0.3s ease;
    }
    .logo-img:hover {
      transform: scale(1.05);
    }

    .hamburger {
      background: none;
      border: none;
      color: white;
    }

    .main-nav > a,
    .dropdown-toggle-mobile {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }

    .main-nav > a:hover,
    .dropdown-toggle-mobile:hover {
      color: var(--accent-gold);
    }

    .main-nav > a.active,
    .dropdown-toggle-mobile.active {
      color: #f0d28c;
      font-weight: 600;
    }
.dropdown-menu a.active {
  color: #f0d28c;
  font-weight: 600;

}
    .main-nav > a.active::after,
    .dropdown-toggle-mobile.active::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      height: 2px;
      width: 100%;
      background-color: var(--accent-gold);
    }

    .dropdown-icon {
      margin-left: 5px;
      transition: transform 0.3s ease;
      color: var(--accent-gold);
    }

    .dropdown-nav:hover .dropdown-icon {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      background-color: #004d26;
      border-radius: 6px;
      top: 100%;
      left: 0;
      z-index: 1001;
      min-width: 200px;
    }

    .dropdown-menu li a {
      display: block;
      padding: 10px 20px;
      color: white;
      text-decoration: none;
    }

    .dropdown-menu li a:hover {
      background: #00663f;
    }

    @media (min-width: 992px) {
      .dropdown-nav:hover .dropdown-menu {
        display: block;
      }
    }

    @media (max-width: 991px) {
      .main-nav {
        flex-direction: column;
         background: linear-gradient(to right, #00391a, #004d26);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 999;
        display: none;
      }

      .main-nav.active {
        display: flex;
      }

      .dropdown-nav .dropdown-menu {
        position: static;
        background-color: transparent;
      }

      .dropdown-nav .dropdown-menu.show {
        display: block;
      }

      .dropdown-toggle-mobile::after {
        content: ' ▼';
        font-size: 12px;
        margin-left: 5px;
      }

      .btn-pill {
        margin-top: 10px;
        width: 100%;
        text-align: center;
      }
    }

    .btn-outline-light.btn-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border: 2px solid #fff;
      border-radius: 50px;
      color: #fff;
      font-weight: 500;
      font-size: 1rem;
      background-color: transparent;
      transition: all 0.3s ease;
    }

    .btn-outline-light.btn-pill:hover {
      background-color: var(--accent-gold);
      color: var(--green-dark);
      border-color: var(--accent-gold);
      box-shadow: 0 0 8px rgba(240, 210, 140, 0.6);
      transform: translateY(-2px);
    }

/* Show on desktop hover */
@media (min-width: 992px) {
  .dropdown-nav:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile Nav */
@media (max-width: 991px) {
  .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #00391a;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .dropdown-nav .dropdown-menu {
    display: none;
    position: static;
    background-color: transparent;
    padding-left: 15px;
  }

  .dropdown-nav .dropdown-menu.show {
    display: block;
  }

  .dropdown-nav .dropdown-toggle-mobile::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 5px;
  }

  .dropdown-nav .dropdown-menu li a {
    color: #fff;
    background: none;
    padding-left: 20px;
  }
}


/* Show Visit Button on mobile inside dropdown */
@media (max-width: 991px) {
  .main-header .btn-pill {
    display: block;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    
  }
}

/* Hide mobile button on desktop */
@media (min-width: 992px) {
  .main-header .btn-pill {
    display: inline-block !important;
  }
}
@media (max-width: 991px) {
  #mainNav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #00391a;
    z-index: 999;
  }
}

/* --------------------------------------------------
pages hero section 
-------------------------------------------------- */
.hero-bg {
  background: url('images/5.jpg') center center / cover no-repeat;
  position: relative;
  z-index: 1;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 56, 28, 0.3);
  z-index: -1;
}

.hero-bg .container {
  position: relative;
  z-index: 2;
}



.hero-bg .container {
  position: relative;
  z-index: 2;
}

.shining-heading {
  font-size: 2.8rem;
  font-weight: 700;
  background: white;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 4s linear infinite;
}

@keyframes shine-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}



/* --------------------------------------------------
--------------------------------------------------------about us pagee-------------------------------------------------------------------------
-------------------------------------------------- */

/* -------------------------------------
   ABOUT SECTION
------------------------------------- */
.about-section {
  background: #eaf6ec;
  padding: 80px 0;
}

.about-card {
  background: white;
  border-left: 5px solid #0e4528 !important;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-card h5 {
  font-weight: 600;
  color: #0e4528;
}

.vision-section {
  background: #fff;
  padding: 80px 0;
}

.founder-message-section {
  background-color: #fff;
}

.value-icon {
  font-size: 40px;
  color: #0e4528;
  margin-bottom: 16px;
}

.highlight-strip {
  background: linear-gradient(90deg, #075E54, #25D366);
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
}

@media(max-width: 767px) {
  .about-hero h1.section-title {
    font-size: 2rem;
  }
}

/* XS Devices */
@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.6rem;
  }

  .highlight-strip {
    font-size: 1rem;
    padding: 20px 10px;
  }

  .about-card {
    padding: 16px;
  }

  .founder-message-section .about-card {
    padding: 20px 16px;
  }

  .team-member img {
    width: 80px;
    height: 80px;
  }
}

/* SM Devices */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-title {
    font-size: 1.8rem;
  }

  .about-card {
    padding: 20px;
  }

  .highlight-strip {
    font-size: 1.1rem;
  }
}

/* MD Devices */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .founder-message-section img {
    max-width: 80%;
    margin: 0 auto;
  }

  .about-card {
    padding: 24px;
  }
}

/* LG Devices */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title {
    font-size: 2.2rem;
  }
}


/* --------------------------
   Video Container Styling
--------------------------- */
.video-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 150, 0.6), 0 0 40px rgba(0, 255, 150, 0.2);

}

/* Optional: Hover zoom + glow border */
.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(0, 255, 150, 0.4);
}

/* Ensures iframe inside doesn’t overflow on zoom */
.video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------------------------------------
   ABOUT SECTION – Responsive Styles
------------------------------------------ */
/* ========== ABOUT SECTION RESPONSIVENESS ========== */
.about-section {
  padding: 70px 0;
}

.about-section .about-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #00391a;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.about-section .custom-divider-left {
  width: 70px;
  height: 4px;
  background: #007c3e;
  margin-bottom: 20px;
}

.about-section .btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 30px;
  font-weight: 500;
}

/* Tablet (991px and below) */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .about-section .about-title {
    font-size: 1.7rem;
    text-align: center;
  }

  .about-section .custom-divider-left {
    margin-left: auto;
    margin-right: auto;
  }

  .about-section .col-lg-6 {
    text-align: center;
  }

  .about-section p {
    font-size: 0.95rem;
    text-align: center;
  }

  .about-section .btn-gradient {
    justify-content: center;
  }

  .about-section .d-flex {
    justify-content: center !important;
  }

  .about-section .video-wrapper {
    margin-top: 30px;
  }
}

/* Large Mobile (768px and below) */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .about-section .about-title {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .about-section .btn-gradient {
    font-size: 14px;
    padding: 9px 18px;
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }

  .about-section .about-title {
    font-size: 1.35rem;
  }

  .about-section .btn-gradient {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .about-section .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .about-section .custom-divider-left {
    width: 60px;
    height: 3px;
  }

  .about-section p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* ========== MOBILE ORDER FIX (Headline → Image → Text → Button) ========== */
@media (max-width: 767px) {
  .about-section .row {
    display: flex;
    flex-direction: column;
  }

  .about-section h2.main-title,
  .about-section .about-title {
    order: 1;
  }

  .about-section .video-wrapper {
    order: 2;
    margin: 15px 0; /* spacing below headline */
  }

  .about-section p {
    order: 3;
  }

  .about-section .d-flex,
  .about-section .btn-gradient {
    order: 4;
  }
}



/* ---------------------------------------------
   PROJECT CARD
--------------------------------------------- */
.project-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 10px 35px rgba(0, 128, 0, 0.25);
}


  .project-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  overflow: hidden;
}

.project-img {
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .overlay {
  opacity: 1;
}

/* ---------------------------------------------
   PROJECT IMAGE + OVERLAY
--------------------------------------------- */
.image-wrapper {
  position: relative;
  overflow: hidden;
}

.project-img {
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(1);
}

.project-card:hover .project-img {
  transform: scale(1.06);
  filter: brightness(1.1);
}


/* ---------------------------------------------
   PROJECT CONTENT
--------------------------------------------- */
.project-content {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 1.5rem;
  border-top: 1px solid #e9e9e9;
}

.project-content h5 {
  font-size: 1.1rem;
  color: #1e1e1e;
}

.project-content p {
  font-size: 0.9rem;
  color: #666;
}

.project-content .badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ---------------------------------------------
   BUTTONS (Gradient + Outlined)
--------------------------------------------- */
.btn-outline-success {
  border-radius: 50px;
  border: 2px solid #198754;
  font-weight: 600;
  color: #198754;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
}

.btn-success {
  border-radius: 50px;
  font-weight: 600;
  background: linear-gradient(135deg, #198754, #32d296);
  border: none;
  color: #fff;
}

.btn-success:hover {
  background: linear-gradient(135deg, #32d296, #198754);
  color: #fff;
}

/* =======================
   📱 Mobile (≤576px)
======================= */
@media (max-width: 576px) {
  .section-title.text-gradient {
    font-size: 1.5rem;
  }

  .project-img {
    height: 180px;
  }

  .project-content {
    padding: 1.2rem;
  }

  .project-content h5 {
    font-size: 1rem;
  }

  .project-content p {
    font-size: 0.85rem;
  }

  .btn-outline-success,
  .btn-success {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }

  .project-content .badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .project-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
}

@media (min-width: 1200px) {
  .projects-section {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}
.project-content .badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  background-color: #28a745;
  color: #fff;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}
.project-card:hover h5 {
  color: #004d26;
}
.project-card i {
  transition: transform 0.3s ease;
}

.project-card:hover i {
  transform: translateY(-2px);
}
.project-card {
  border-left: 4px solid transparent;
}
.project-card:hover {
  border-left: 4px solid #004d26;
}
/* =======================
   📱📲 Small Devices (≤768px)
======================= */
@media (max-width: 768px) {
  .section-title.text-gradient {
    font-size: 1.8rem;
  }

  .project-img {
    height: 200px;
  }

  .project-card {
    border-radius: 12px;
  }

  .btn-outline-success,
  .btn-success {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}

/* =======================
   💻 Medium Devices (≤992px)
======================= */
@media (max-width: 992px) {
  .project-img {
    height: 220px;
  }

  .project-content {
    padding: 1.25rem;
  }

  .section-title.text-gradient {
    font-size: 2rem;
  }
}

/* ------------------------------------------
   why choose section styles
--------------------------------------------- */

  /* SECTION HEADING */
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.subheading {
  color: #009f65;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.main-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

.main-title .highlight {
  background: linear-gradient(90deg, #00744e, #00c178);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  font-size: 1.05rem;
  color: #555;
  max-width: 720px;
  margin: 0.8rem auto 0;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* VALUES SVG CLUSTER */
.values-section {
  background-color: #fff;
}

.values-svg {
  width: 320px;
  height: 320px;
  position: relative;
}

.circle {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

/* Central circle */
.circle.central {
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  background: #00391a;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 35px rgba(0, 255, 153, 0.3), 0 0 60px rgba(0, 128, 64, 0.2);
}
.circle.central img {
  max-width: 95%;
}

/* Outer glowing circles */
.circle.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #25D366, #1dbf5e);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}
.circle.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #075E54, #0a8d7b);
  box-shadow: 0 0 25px rgba(7, 94, 84, 0.4);
}
.circle.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #004d26, #078f57);
  box-shadow: 0 0 25px rgba(0, 77, 38, 0.4);
}
.circle.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #f2c94c, #e0a700);
  color: #333;
  box-shadow: 0 0 25px rgba(242, 201, 76, 0.4);
}
.circle:hover {
  transform: scale(1.1) !important;
}

/* Button */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  background: linear-gradient(135deg, #075E54, #25D366);
  box-shadow: 0 5px 15px rgba(0, 128, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-gradient:hover {
  background: linear-gradient(135deg, #25D366, #075E54);
  transform: translateY(-2px);
}



  /* Floating animation for the central SVG cluster */
.values-svg .circle.central img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Optional: Slight hover glow effect */
.values-svg .circle {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-svg .circle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Responsive */
@media (max-width: 991px) {
  .values-svg {
    width: 280px;
    height: 280px;
  }
  .circle {
    width: 80px;
    height: 80px;
    font-size: 14px;
  }
  .circle.central {
    width: 110px;
    height: 110px;
  }
  .circle.central img {
    max-width: 65%;
  }
}

@media (max-width: 767px) {
  .values-section .row {
    flex-direction: column-reverse;
  }
  .values-svg {
    margin-bottom: 40px;
  }
  .circle {
    width: 85px;
    height: 85px;
    font-size: 13px;
  }
  .circle.central {
    width: 100px;
    height: 100px;
  }
  .circle.central img {
    max-width: 60%;
  }
  .main-title {
    font-size: 1.8rem;
  }
  .description {
    font-size: 0.95rem;
  }
}

/* ------------------------------------------
   flipcard section styles 
--------------------------------------------- */

 .flip-card {
  background: transparent;
  width: 100%;
  height: 220px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00391a, #006837);
  color: #fff;
  border-radius: 12px;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backface-visibility: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  text-align: center;
}

.flip-card-front i {
  color: #a8e6cf;
}

.flip-card-back {
  background: #004d26;
  transform: rotateY(180deg);
}
@media (max-width: 1200px) {
  .flip-card {
    height: 200px;
  }
}

@media (max-width: 992px) {
  .flip-card {
    height: 180px;
  }
  .flip-card-front, .flip-card-back {
    font-size: 13px;
    padding: 16px 8px;
  }
}

@media (max-width: 768px) {
  .flip-card {
    height: 160px;
  }
  .flip-card-front, .flip-card-back {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .flip-reasons-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .flip-card {
    height: 180px;
    margin-bottom: 20px;
  }
  .flip-card-front i {
    font-size: 1.5rem;
  }
}
.flip-card-back {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Overlay for readability */
.flip-card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  z-index: 0;
}

.flip-card-back > * {
  position: relative;
  z-index: 1;
}

/* Individual background images */
.back-1 {
  background-image: url('images/2.jpg');
}
.back-2 {
  background-image: url('images/emphasizing-transparency-1.jpg');
}
.back-3 {
  background-image: url('images/building-trust-in-real-estate-3.jpg');
}
.back-4 {
  background-image: url('images/18.jpg');
}
.back-5 {
  background-image: url('images/commitment-to-sustainability-1.jpg');
}

/* Default: Desktop */
.flip-card {
  height: 220px;
}

/* Tablet: ≤ 1200px */
@media (max-width: 1200px) {
  .flip-card {
    height: 200px;
  }
}

/* Small Tablet: ≤ 992px */
@media (max-width: 992px) {
  .flip-card {
    height: 180px;
  }
  .flip-card-front,
  .flip-card-back {
    font-size: 13px;
    padding: 16px 10px;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  .flip-card {
    height: 160px;
  }
  .flip-card-front,
  .flip-card-back {
    font-size: 12px;
  }
  .flip-card-front i {
    font-size: 1.4rem;
  }
}

/* Extra Small Mobile: ≤ 576px */
@media (max-width: 576px) {
  .flip-reasons-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .flip-card {
    height: 180px;
    margin-bottom: 20px;
  }

  .flip-card-front i {
    font-size: 1.3rem;
  }

  .flip-card-front,
  .flip-card-back {
    font-size: 11px;
    padding: 14px 6px;
  }
}

/* ------------------------------------------
   video banner styles -thumbnails
--------------------------------------------- */



.video-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Clean landscape shape */
  overflow: hidden;
  background-color: #000;
}

.video-banner .bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.video-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.video-banner .content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.video-banner .play-button {
  font-size: 4rem;
  background: none;
  border: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.video-banner .play-button:hover {
  transform: scale(1.1);
  color: #25D366;
}

.video-banner .content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 20px;
  color: #fff;
}



@media (max-width: 1200px) {
  .video-banner {
    height: 600px;
  }

  .video-banner .play-button {
    font-size: 3.5rem;
  }

  .video-banner .content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .video-banner {
    height: 520px;
  }

  .video-banner .play-button {
    font-size: 3rem;
  }

  .video-banner .content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .video-banner {
    /* Set 16:9 ratio for landscape feel */
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-banner .bg-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .video-banner .content h2 {
    font-size: 1.4rem;
    padding: 0 12px;
  }

  .video-banner .play-button {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .video-banner .play-button {
    font-size: 2.5rem;
  }

  .video-banner .content h2 {
    font-size: 1.5rem;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .video-banner {
    aspect-ratio: 16 / 9;
  }

  .video-banner .content h2 {
    font-size: 1.2rem;
  }

  .video-banner .play-button {
    font-size: 2rem;
  }
}

/* ------------------------------------------
   testimoniels section 
/* ------------------------------------------ */
 .testimonial-carousel-section {
  background: #f8fdfa;
}



.testimonial-box {
  max-width: 720px;
  background: linear-gradient(135deg, #00391a, #004d26);
  color: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 255, 170, 0.15);
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-box::before {
  content: "“";
  font-size: 4rem;
  color: #25D366;
  position: absolute;
  top: -30px;
  left: 30px;
  opacity: 0.1;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 255, 170, 0.25);
}

.testimonial-text {
  font-style: italic;
  font-weight: 400;
  color: #fff;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #a3f7c2;
}

.carousel-indicators [data-bs-target] {
  background-color: #25D366;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.carousel-indicators [data-bs-target]:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
.testimonial-carousel-section {
  background: #fff;
}

/* ------------------------------------------
   section-title styles
--------------------------------------------- */
.section-title,
.premium-title-text {
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(90deg, #006837, #00c177, #006837);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  letter-spacing: 0.6px;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 100, 60, 0.12); /* Soft and premium */
}


.section-title::after {
  content: '';
  display: block;
  margin: 14px auto 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #00744e, #00e8a2, #00744e);
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 180, 120, 0.3); /* Clean glow */
  animation: shine-bar 4s linear infinite;
  background-size: 200% auto;
}

.section-description {
  font-size: 1.15rem;
  font-weight: 400;
  color: #444;
  max-width: 740px;
  margin: 1.2rem auto 2.5rem;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.25px;
  opacity: 0.95;
  text-shadow: 0.5px 0.5px 0.8px rgba(0, 0, 0, 0.05); /* Minor depth */
}

.custom-divider {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px auto 20px;
  background: linear-gradient(to right, #00c68a, #007a52, #00c68a);
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 160, 120, 0.35);
  background-size: 200% auto;
  animation: shine-bar 6s linear infinite;
}
.section-heading {
  margin-bottom: 3rem;
  padding: 0 15px;
}

.subheading {
  color: #009f65;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
 text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.main-title .highlight {
  background: linear-gradient(90deg, #00744e, #00c178);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 90, 60, 0.4), 0 2px 6px rgba(0, 180, 120, 0.3);
}
.custom-divider1 {
  width: 80px;
  height: 4px;
  margin: 14px auto 0;
  background: linear-gradient(to right, #00744e, #00e8a2, #00744e);
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 180, 120, 0.3);
}

/* Small devices: up to 575px (e.g., phones) */
@media (max-width: 575px) {
  .section-title,
  .premium-title-text {
    font-size: 1.75rem;
    line-height: 1.4;
    letter-spacing: 0.3px;
    margin-bottom: 0.75rem;
  }

  .main-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .section-description {
    font-size: 0.95rem;
    margin: 1rem auto 2rem;
    padding: 0 15px;
  }

  .custom-divider,
  .custom-divider1,
  .section-title::after {
    width: 50px;
    height: 3px;
  }
}

/* Medium devices: 576px to 768px (e.g., large phones/tablets) */
@media (min-width: 576px) and (max-width: 768px) {
  .section-title,
  .premium-title-text {
    font-size: 2.1rem;
    line-height: 1.3;
  }

  .main-title {
    font-size: 2.1rem;
  }

  .section-description {
    font-size: 1.05rem;
    margin: 1rem auto 2.25rem;
    padding: 0 20px;
  }

  .custom-divider,
  .custom-divider1,
  .section-title::after {
    width: 60px;
    height: 4px;
  }
}

/* Large devices: 769px and above (e.g., desktops) */
@media (min-width: 769px) {
  .section-title,
  .premium-title-text {
    font-size: 2.75rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .section-description {
    font-size: 1.15rem;
  }

  .custom-divider,
  .custom-divider1,
  .section-title::after {
    width: 80px;
    height: 4px;
  }
}

/* ------------------------------------------
   BUTTONS
--------------------------------------------- */

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #075E54, #25D366);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 128, 0, 0.2);
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 128, 0, 0.3);
  background: linear-gradient(135deg, #25D366, #075E54);
}




/* -------------------------------
   Main Navigation Link Styles
--------------------------------- */
.main-nav > a:not(.btn),
.main-nav .dropdown-toggle-mobile {
  position: relative;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, text-shadow 0.3s ease, color 0.3s ease;
}

.main-nav > a:not(.btn):hover,
.main-nav .dropdown-toggle-mobile:hover {
  transform: translateY(-2px);
  color: #f0d28c;
  text-shadow: 0 0 4px rgba(0, 255, 170, 0.5);
}

/* Underline on hover */
.main-nav > a:not(.btn)::after,
.main-nav .dropdown-toggle-mobile::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #f0d28c;
  transition: width 0.3s ease;
  border-radius: 1px;
}

.main-nav > a:not(.btn):hover::after,
.main-nav .dropdown-toggle-mobile:hover::after {
  width: 100%;
}
.main-nav > a:not(.btn).active,
.main-nav .dropdown-toggle-mobile.active {
  color: #f0d28c;
  font-weight: 600;
  position: relative;
}

.main-nav > a:not(.btn).active::after,
.main-nav .dropdown-toggle-mobile.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 100%;
  background-color: #f0d28c;
  border-radius: 1px;
}

/* -------------------------------
   Dropdown Icon & Animation
--------------------------------- */
.dropdown-icon {
  margin-left: 5px;
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #f0d28c;
}

/* Rotate icon when hovering parent */
.dropdown-nav:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Hide dropdown icon on mobile */
@media (max-width: 991.98px) {
  .dropdown-icon {
    display: none;
  }
}

/* -------------------------------
   Dropdown Toggle Specific
--------------------------------- */
.dropdown-toggle-mobile {
  position: relative;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.dropdown-toggle-mobile:hover {
  color: #f0d28c;
}

.dropdown-toggle-mobile::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #f0d28c;
  transition: width 0.3s ease;
  border-radius: 1px;
}

.dropdown-toggle-mobile:hover::after {
  width: 100%;
}

/* ------------------------------------------
  model styles  
--------------------------------- */
/* Modal backdrop blur */
.modal-backdrop.show {
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal content */
#layoutModal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  animation: fadeInUp 0.4s ease;
}

/* Modal header */
#layoutModal .modal-header {
  background: linear-gradient(135deg, #075E54, #25D366);
  color: #fff;
  padding: 1.25rem 1.5rem;
}

#layoutModal .modal-title {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* Close button */
#layoutModal .btn-close {
  filter: invert(1); /* makes it white */
  opacity: 0.8;
}
#layoutModal .btn-close:hover {
  opacity: 1;
}

/* Modal body */
#layoutModal .modal-body {
  padding: 2rem;
  background: #f9fafc;
}

/* Modal footer */
#layoutModal .modal-footer {
  border-top: none;
  background: #f1f3f6;
  padding: 1rem 1.5rem;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ========== Responsive Styles for Modal ========== */

/* Large screens (default handled by Bootstrap modal-xl) */
@media (min-width: 1200px) {
  #layoutModal .modal-content {
    border-radius: 20px;
    max-width: 1140px; /* keep within xl */
  }
}

/* Medium screens (tablets, landscape phones) */
@media (max-width: 991px) {
  #layoutModal .modal-dialog {
    max-width: 90%;   /* shrink dialog width */
    margin: 1.5rem auto;
  }
  #layoutModal .modal-body {
    padding: 1.5rem;
  }
  #layoutModal .modal-title {
    font-size: 1.2rem;
  }
}

/* Small screens (portrait phones) */
@media (max-width: 767px) {
  #layoutModal .modal-dialog {
    max-width: 95%;
    margin: 1rem auto;
  }
  #layoutModal .modal-body {
    padding: 1rem;
    font-size: 0.95rem;
  }
  #layoutModal .modal-title {
    font-size: 1.1rem;
  }
  #layoutModal .modal-header,
  #layoutModal .modal-footer {
    padding: 0.8rem 1rem;
  }
}

/* Extra small screens (very narrow phones) */
@media (max-width: 480px) {
  #layoutModal .modal-dialog {
    max-width: 100%;
    margin: 0.5rem;
  }
  #layoutModal .modal-body {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  #layoutModal .modal-title {
    font-size: 1rem;
  }
}


/* -------------------------------
   site visit button
--------------------------------- */

.btn-outline-light.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-outline-light.btn-pill:hover {
  background-color: #f0d28c;
  color: #003b25;
  border-color: #f0d28c;
  box-shadow: 0 0 8px rgba(240, 210, 140, 0.6);
  transform: translateY(-2px);
}

.btn-outline-light.btn-pill i {
  font-size: 1.1rem;
}


.btn-outline-light.btn-pill:hover {
  color: #003b25;
  background-color: #f0d28c;
  box-shadow: 0 0 8px rgba(0, 255, 170, 0.4);
  transform: translateY(-2px);
}

/* ------------------------------------------
Footer Styles
--------------------------------------------- */

/* Divider between content and footer */
.footer-top-divider {
  height: 4px;
  background: linear-gradient(to right, #d1b85a, #ddca93, #d1b85a);
}

/* Footer Base */
.avg-footer {
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  border-top: 1px solid #ddca93;
  background: #0e0b07;
}

.footer-city-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 320px;
  background: url('images/footer-city.png') center bottom no-repeat;
  background-size: cover;
  opacity: 0.8;
  z-index: 0;
}

.footer-overlay {
  position: relative;
  z-index: 1;
}

/* Footer Links */
.footer-links a {
  color: #ddd;
  margin-right: 15px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 6px;
  transition: 0.3s ease;
}
.footer-links a:hover {
  color: #ddca93;
}

  /* Basic hidden state for animated items */
.footer-anim-item {
  transform: translateY(20px);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 600ms cubic-bezier(.22,.9,.28,1), opacity 600ms ease;
}

/* Visible state */
.footer-anim-item.in-view {
  transform: translateY(0);
  opacity: 1;
}

/* Slight scale for logo */
.footer-anim-item.scale-up.in-view img {
  transform: translateY(0) scale(1);
  transition: transform 650ms cubic-bezier(.22,.9,.28,1);
}

/* Make sure img doesn't overflow during transform */
.avg-footer img {
  display: inline-block;
  transform: translateY(0) scale(.98); /* small initial scale so scale-up looks nice */
}

/* accessibility: respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .footer-anim-item,
  .footer-anim-item.in-view {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

    /* -------------------------------
   Contact Section – AVG Ventures
---------------------------------*/
.contact-section {
  padding: 60px 0;
  background-color: #f5f7f6;
  font-family: 'Poppins', sans-serif;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* Left Panel */
.contact-left {
  flex: 1;
  padding: 50px 40px;
  background-color: #ffffff;
}

.contact-left .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #004d26;
}

.contact-subtext {
  color: #666;
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* Form Styles */
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  border-radius: 40px;
  padding: 12px 18px 12px 45px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

textarea.form-control {
  border-radius: 20px;
  resize: none;
}

.form-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.btn-send {
  margin-top: 10px;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
}

/* Right Panel */



.contact-right {
  flex: 1;
  padding: 50px 40px;
  background: linear-gradient(135deg, #00391a, #004d26);
  color: #fff;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;

  display: inline-block;
  padding-bottom: 5px;
}

.contact-right p {
  font-size: 15px;
  color: #cdddcf;
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.info-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 0.3s ease;
}

.info-icon:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.15);
}

.info-block strong {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.info-block div {
  font-size: 14px;
  line-height: 1.5;
  color: #d8eada;
}
.section-title-green{
  border-bottom: 3px solid #25D366 !important;
  width: fit-content;
}

    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      margin: 60px auto;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .contact-left {
      flex: 1;
      padding: 40px;
      background: #fff;
    }

    .contact-right {
      flex: 1;
      padding: 40px;
      background: #00391a;
      color: #fff;
    }

    .contact-left h2 {
      font-size: 36px;
      font-weight: 700;
      color: #0e4528;
      margin-bottom: 30px;
    }

    .form-group {
      position: relative;
      margin-bottom: 20px;
    }

    .form-control {
      border-radius: 30px;
      border: 1px solid #ccc;
      padding: 12px 18px 12px 42px;
    }

    .form-control::placeholder {
      color: #aaa;
    }

    .form-icon {
      position: absolute;
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      color: #999;
    }

    textarea.form-control {
      border-radius: 16px;
    }

    .contact-right h3 {
      font-weight: 700;
      font-size: 28px;
      border-bottom: 3px solid #fff;
      display: inline-block;
      margin-bottom: 25px;
    }

    .info-block {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }

    .info-icon {
      width: 58px;
      height: 58px;
      border: 2px solid #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 22px;
      margin-right: 15px;
    }

    .btn-send {
      background-color: #c6921a;
      border: none;
      padding: 12px 30px;
      color: white;
      border-radius: 30px;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-send:hover {
      background-color: #aa7711;
      transform: translateY(-2px);
    }

    .map-section {
      margin: 40px auto;
    }

    .map-section .ratio {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
/* Contact */


.contact-details li {
  margin-bottom: 10px;
  color: #dcdcdc;
  font-size: 14px;
}

/* Divider Line */
.footer-divider {
  border-top: 1px solid #ddca93;
  opacity: 0.2;
}

/* Social Icons */
.social-circle {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: #2a1f14;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.social-circle:hover {
  background-color: #ddca93;
  color: #000;
  transform: scale(1.1);
}

/* Brochure */
.brochure-heading {
  color: #fff;
}
.brochure-subtext {
  color: #bbb;
}
.brochure-btn {
  background-color: #ddca93;
  color: #000;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}
.brochure-btn:hover {
  background-color: #c5aa52;
  color: #fff;
}

/* Designer Credit */
.designer {
  color: #ddca93;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .footer-links a {
    margin-right: 10px;
  }
  .brochure-subtext {
    font-size: 12px;
  }
  .brochure-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

 /* -------------------------------
     Hero Swiper Styles
  --------------------------------- */
  .avg-hero {
    position: relative;
    width: 100%;
    height: 100vh;
  }

  .avg-hero .swiper,
  .avg-hero .swiper-wrapper,
  .avg-hero .swiper-slide {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    position: relative;
    overflow: hidden;
  }

  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 9s ease-in-out;
    z-index: 1;
  }

  .swiper-slide-active .slide-bg {
    transform: scale(1.1);
  }

  .slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
  }

  .slide-inner {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding-left: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
  }

  .slide-inner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .slide-inner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .btn-primary:hover {
    background-color: #c62828;
  }

  @media (max-width: 767.98px) {
    .slide-inner {
      padding: 20px;
      align-items: center;
      text-align: center;
    }

    .slide-inner h1 {
      font-size: 2rem;
    }

    .slide-inner p {
      font-size: 1rem;
    }
  }

  .main-header.scrolled {
  background-color: #043c2f; /* your green or dark background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

 /* -------------------------------
     happy customers section styles
  --------------------------------- */
.stat-card {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  color: #003b25;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2rem;
  color: #003b25;
  margin-bottom: 5px;
  font-weight: bold;
}

.stat-label {
  font-size: 1rem;
  color: #555;
}
/*-------------------------------------------
 watsapp section styles                   
---------------------------------------------*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  font-size: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}



[data-aos] {
  transform: translate3d(0, 0, 0); /* forces GPU smoothness */
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* ------------------------------------------
   popup styles      
--------------------------------------------- */  
.promo-popup {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
}

/* Popup content box */
.promo-content {
  position: relative;
  margin: 5% auto;
  background: #fff;
  padding: 0;
  border-radius: 8px;
  max-width: 450px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 0.6s ease;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.close-btn:hover {
  color: #f00;
}

/* Smooth animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Media Queries for Popup */

/* Small devices (max-width: 576px) */
@media (max-width: 576px) {
  .promo-content {
    width: 90%;
    max-width: 300px;  /* Reduce modal size */
    margin: 20% auto;  /* Center better */
    border-radius: 6px;
  }

  .promo-content img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }

  .close-btn {
    top: 4px;
    right: 8px;
    font-size: 22px;
  }
}

/* Tablets (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .promo-content {
    width: 80%;
    max-width: 400px;
    margin: 15% auto;
  }

  .promo-content img {
    width: 100%;
    height: auto;
  }

  .close-btn {
    font-size: 24px;
  }
}

/* Large screens (above 1200px) */
@media (min-width: 1200px) {
  .promo-content {
    max-width: 500px;  /* Slightly bigger on large screens */
  }
}

