:root {
  --primary-main-color: #7dab2d;
  --secondary-main-color: #191919;
  --brand-green: #7dab2d;
  --text-dark: #1a1a1a;
  --text-light: #444;
  --white: #ffffff;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
 body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;

  max-width: 100vw;
}

/* TOP INFO BAR - Enhanced Mobile Responsiveness */
.top-info-bar {
  background: var(--white);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}

.header-logo img {
  height: 4px;
  width: auto;
  max-width: 160px;
}

.header-contact-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
}

.info-block i {
  font-size: 18px;
  color: var(--brand-green);
}

.info-content {
  font-size: 12px;
  color: #333;
  line-height: 1.3;
}

.info-content strong {
  display: block;
  font-size: 13px;
  color: #000;
  text-transform: uppercase;
}

/* MAIN NAVIGATION */

.main-nav {
  background: var(--brand-green);
   position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  padding: 18px 25px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-social a {
  color: var(--white);
  font-size: 16px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.nav-social a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  color: var(--white);
}


        /* --- HERO SECTION --- */
        .hero {
            height: 75vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            z-index: -2;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .hero-content h1 {
            font-size: clamp(2.2rem, 8vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 5px;
            padding: 0 10px;
        }

        .hero-content p {
            letter-spacing: 2px;
            font-weight: 400;
            margin-top: 10px;
            font-size: clamp(0.8rem, 3vw, 1.1rem);
            padding: 0 15px;
            line-height: 1.4;
        }

     

        
        .perspective-heavy {
            perspective: 2500px;
        }

        .preserve-3d {
            transform-style: preserve-3d;
        }

        .backface-hidden {
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        /* Base Card Styling */
        .card-inner {
            transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 1.5s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        /* SHADOW EFFECT ONLY ON ROTATION */
        /* This creates a deep, soft shadow that mimics the card lifting up */
        .group:hover .card-inner {
            transform: rotateY(180deg);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.2);
        }

        .rotate-y-180 {
            transform: rotateY(180deg);
        }

        /* Button Hover Styling */
        .custom-btn {
    background-color: var(--primary-main-color); /* or var(--brand-green) */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

        .custom-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .custom-btn:hover::before { left: 0; }
        .custom-btn:hover {
            box-shadow: 0 10px 20px rgba(125, 171, 45, 0.3);
            transform: translateY(-3px);
        }
 /* Slow, elegant slide-in for the badge */
        .project-badge {
            transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
            transform: translateX(-20px);
            opacity: 0;
        }

        .group:hover .project-badge {
            transform: translateX(0);
            opacity: 1;
        }

        /* Subtle Zoom for the image */
        .zoom-img {
            transition: transform 1.5s ease;
        }

        .group:hover .zoom-img {
            transform: scale(1.08);
        }

        /* Custom overlay for depth */
        .overlay-gradient {
            background: linear-gradient(45deg, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.3) 100%);
            transition: opacity 0.5s ease;
        }

        /* Heading Style matching image reference */
        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
           
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -2px;
            transform: translateX(-50%);
            width: 20px;
            height: 7px;
         
            z-index: 1;
        }

        /* Cinematic Slow Badge Animation */
        .project-badge {
            transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
            transform: translateY(40px);
            opacity: 0;
        }
        .group:hover .project-badge {
            transform: translateY(0);
            opacity: 1;
        }

        /* High-end Architectural image Zoom */
        .zoom-img {
            transition: transform 1.5s ease;
        }
        .group:hover .zoom-img {
            transform: scale(1.15);
        }

        /* 3D Sliding Buttons */
        .btn-3d {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.5);
        }
        .btn-3d:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -10px rgba(0,0,0,0.8);
        }
        .active-btn {
            background-color: var(--primary-main-color) !important;
            color: white !important;
            border-color: var(--primary-main-color) !important;
        }

        @keyframes blob {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        33% {
            transform: translateY(-20px) scale(1.1);
        }
        66% {
            transform: translateY(20px) scale(0.9);
        }
    }

    .animate-blob {
        animation: blob 7s infinite cubic-bezier(0.6, 0.01, 0.4, 1);
    }
    .animation-delay-2000 {
        animation-delay: 2s;
    }
    .shadow-3xl {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 8px rgba(0, 0, 0, 0.2);
    }
    .rotateY-5 { transform: perspective(1000px) rotateY(5deg); }
    .rotateX-5 { transform: perspective(1000px) rotateX(5deg); }
    .hover\:rotateY-0:hover { transform: perspective(1000px) rotateY(0deg); }
    .hover\:rotateX-0:hover { transform: perspective(1000px) rotateX(0deg); }


       /* --- FOOTER SECTION --- */
        .main-footer {
            background: #fff;
            padding: 0;
            border-top: 25px solid var(--brand-green);
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 80px 20px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
           
        }

        .footer-logo-col {
            text-align: center;
        }

        .tagline {
            font-size: 18px;
            margin-top: 10px;
            color: #000;
            font-weight: 500;
             letter-spacing: 0.05em;
        }

        .footer-col h3 {
              font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 25px;
            padding-bottom: 12px;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70%;
            height: 1px;
            background: #ccc;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            line-height: 1.2;  
            transition: var(--transition-smooth);
        }

        .footer-links a {
            text-decoration: none;
            color: #444;
           font-size: 13px;
    font-weight: 400;
      line-height: 1.2;    
            display: inline-block;
            transition: var(--transition-smooth);
        }

        .footer-links li:hover {
            transform: translateX(10px);
        }

        .footer-links li:hover a {
            color: var(--brand-green);
            font-weight: 600;
        }

        .footer-links li i {
            font-size: 8px;
            margin-right: 12px;
            color: #000;
        }

        .footer-bottom {
            border-top: 1px solid #eee;
            padding: 30px 0;
            font-size: 12px;
            color: #444;
        }

        .bottom-flex {
            display: flex;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            align-items: center;
        }

        .social-text-links a,
        .legal-links a {
            text-decoration: none;
            color: #444;
            margin: 0 10px;
            transition: var(--transition-smooth);
        }



        /* --- RESPONSIVE MEDIA QUERIES --- */
     @media (max-width: 480px) {
  /* Hide contact info on very small screens to save space */
  .header-contact-info {
    display: none !important;
  }

  .top-info-bar {
    padding: 6px 12px !important;
    gap: 6px !important;
  }

  .info-content {
    font-size: 10px !important;
  }

  /* FOOTER Bottom */
  .bottom-flex {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .social-text-links a,
  .legal-links a {
    margin: 0 8px !important;
    font-size: 11px;
  }
}

/* Additional universal fixes */
@media (max-width: 768px) {
  .nav-container,
  .footer-container,
  .bottom-flex {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .footer-container {
    padding: 24px 16px 16px; /* Further reduced */
  }
  
}

@media (max-width: 768px) {
   .mobile-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .mobile-toggle i {
    font-size: 18px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-green);
    flex-direction: column;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-links li a {
    padding: 15px 20px !important;
    width: 100%;
    text-align: left;
    border-radius: 0;
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-social {
    display: flex !important;
    gap: 10px;
  }
  
  .nav-social a {
    font-size: 14px;
  }
  .footer-container {
    padding: 20px 12px 12px !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  
  .footer-col h3 {
    margin-bottom: 12px;
  }
  
  .footer-col h3::after {
    left: 50% !important;
    transform: translateX(-50%);
    width: 40px;
  }
  
  .footer-links li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 16px 8px 8px !important;
  }
  
  .tagline {
    font-size: 13px;
  }
  
  .footer-links a {
    font-size: 11px;
  }
  
  .bottom-flex {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
  }
  
  .social-text-links a,
  .legal-links a {
    margin: 0 4px !important;
    font-size: 10px;
  }
}

   @keyframes line-move {
   0% {
        left: -100%;
        width: 30%;
    }
    50% {
        width: 50%;
    }
    100% {
        left: 100%;
        width: 30%;
    }
}

@media (max-width: 360px) {
  .top-info-bar { padding: 6px 8px !important; }
  .info-content { font-size: 10px !important; }
  .nav-container { padding: 0 8px !important; }
  .hero h1 { font-size: 2rem !important; }
}


.animate-line-move {
    position: absolute;
    animation: line-move 1.5s ease-in-out infinite;
}

.animate-line-move-delayed {
    position: absolute;
    animation: line-move 1.5s ease-in-out 1.25s infinite;
}

.accent-color { color: #E67E22; } /* Matching the orange in your reference */
        .image-stack-1 { transform: translateY(40px); }
        .image-stack-2 { transform: translateY(-20px); z-index: 10; }




        




         /* about us page css */
        .section-line {
            width: 50px;
            height: 2px;
            background-color: #7dab2d;
            display: inline-block;
            vertical-align: middle;
            margin-right: 10px;
        }







        /* our services page */
        .blob {
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(125, 171, 45, 0.08);
            filter: blur(80px);
            border-radius: 50%;
            z-index: -1;
            animation: move 20s infinite alternate;
        }
        @keyframes move {
            from { transform: translate(-10%, -10%); }
            to { transform: translate(20%, 20%); }
        }
        .service-card:hover .service-number {
            -webkit-text-stroke: 1px #7dab2d;
            color: transparent;
        }





/* Tablets portrait (max ~768px) */
@media (max-width: 768px) {
  /* Top hero of services page */
  .hero-services {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-services .hero-heading {
    font-size: 1.9rem;
  }

  .hero-services .hero-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
    margin-inline: auto;
  }

  /* Generic two-column content sections -> single column */
  .two-column,
  .services-two-column,
  .about-two-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .two-column > .left,
  .two-column > .right,
  .services-two-column > div,
  .about-two-column > div {
    width: 100%;
  }

  /* Icon + text feature rows */
  .feature-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-row-icon {
    flex-shrink: 0;
  }

  /* images: keep inside viewport */
  img.responsive,
  .service-image,
  .about-image {
    width: 100%;
    height: auto;
  }
}

/* Large desktops – prevent overly wide lines */
@media (min-width: 1440px) {
  .page-container,
  .section-inner,
  .services-wrapper {
    max-width: 1200px;
    margin-inline: auto;
  }

  .hero-services .hero-subtitle {
    max-width: 720px;
    margin-inline: auto;
  }
}

/* Very small phones (≤360px) */
@media (max-width: 360px) {
  .hero-services .hero-heading {
    font-size: 1.6rem;
  }

  .hero-services .hero-subtitle {
    font-size: 0.85rem;
  }

  .counter-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.25rem;
  }
}

/* Prevent horizontal scroll on small screens */
html, body {
  max-width: 100%;
 
}

/* Make page containers shrink on mobile */
@media (max-width: 768px) {
  .top-info-bar,
  .main-nav .nav-container,
  .page-container,
  .services-wrapper,
  .section-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* Any fixed-width hero or image wrapper */
  .hero,
  .hero-services,
  .split-image,
  .service-image-wrapper {
    max-width: 100%;
  }
}


/* ===== HEADER: top-info-bar responsive ===== */
@media (max-width: 768px) {
  .top-info-bar {
    padding: 10px 16px !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-info-bar .header-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .top-info-bar .header-contact-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    text-align: left;
  }

  .top-info-bar .info-block {
    min-width: 180px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .top-info-bar {
    padding: 8px 10px !important;
  }

  .top-info-bar .header-contact-info {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===== FOOTER: main-footer responsive ===== */
@media (max-width: 992px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 16px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .footer-logo-col {
    grid-column: 1 / -1; /* logo full width on top */
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3::after {
    left: 15%;
    width: 70%;
  }

  .bottom-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social-text-links a,
  .legal-links a {
    display: inline-block;
    margin: 0 6px;
  }
}






    /* Architecture page */
       .architectural-page {
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
}

.heading-font {
    font-family: 'Syncopate', sans-serif;
}

/* Animated Grid Background */
.grid-bg {
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(125, 171, 45, 0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(125, 171, 45, 0.05) 1px, transparent 1px);
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover Reveal Effect */
.reveal-box {
    position: relative;
}

.reveal-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: var(--primary);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 20;
}

.reveal-box:hover::after {
    width: 100%;
    opacity: 0;
}

/* Tracking utility */
.tracking-ultra {
    letter-spacing: 0.4em;
}/* Technical Grid Background */
.grid-bg {
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(125, 171, 45, 0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(125, 171, 45, 0.05) 1px, transparent 1px);
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

/* image Reveal Animation */
.reveal-box {
    position: relative;
    overflow: hidden;
}

.reveal-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: var(--primary);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 20;
}

.reveal-box:hover::after {
    width: 100%;
    opacity: 0;
}

/* Custom Spacing */
.tracking-ultra {
    letter-spacing: 0.4em;
}

/* image Grayscale to Color */
.hero-image-container img {
    filter: grayscale(100%);
    transition: filter 1s ease;
}

.hero-image-container:hover img {
    filter: grayscale(0%);
}



 /* construction page */
.parallax-bg { background-attachment: fixed; background-position: center; background-size: cover; }
        .stat-card:hover .icon-box { transform: scale(1.1) rotate(5deg); }
        .construction-grid { background-image: radial-gradient(#7dab2d 0.5px, transparent 0.5px); background-size: 20px 20px; }







 /* interior page */
 /* Custom Slanted Background */
        .slanted-bg { clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
        
        /* Floating image Effect */
        .float-img { animation: float 6s ease-in-out infinite; }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        .marquee-text {
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }







.nav-links li { position: relative; }
.dropdown-content {
  display: none;
  position: static; /* Stack inline for mobile */
  background: rgba(255,255,255,0.95);
  box-shadow: none;
  border-top: none;
  margin-left: 1rem;
  padding-left: 1rem;
}
.dropdown.active .dropdown-content { display: block !important; }



/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Hidden Dropdown Menu */
.dropdown-content {
    display: none; /* Hide by default */
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 0;
    list-style: none;
    border-top: 3px solid #76a33e; /* Branding green */
}

/* Show on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown link styles */
.dropdown-content li a {
    color: #76a33e;
    padding: 12px 16px;
    display: block;
    width: 100%;
}

.dropdown-content li a:hover {
    background-color: #f8f8f8;
    color: #444;
}


@media (max-width: 768px) {
  .dropbtn { pointer-events: auto !important; }  /* Ensure clickable */
  .dropdown-content { pointer-events: auto; }
}


.career-hero {
    /* The linear-gradient creates the shadow layer (70% opacity black) */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
        url('image/best-ARCHITECTUREdesigncompany.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-card input:focus, 
.form-card select:focus, 
.form-card textarea:focus {
    outline: none;
    border-color: var(--brand-green) !important;
    box-shadow: 0 0 0 3px rgba(125, 171, 45, 0.1);
}

@media (max-width: 768px) {
    .form-card form {
        grid-template-columns: 1fr !important;
    }
    .main-content {
        margin-top: -40px !important;
    }
}


/* FAQ Accordion Styling */
.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth); /* Using your smooth transition variable */
}

.faq-item[open] {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--brand-green); /* Branding green from your CSS */
}

.faq-item summary {
    list-style: none;
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-main-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--brand-green);
    transition: transform 0.3s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 30px 25px 30px;
    color: var(--text-light); /* Using text-light from your CSS */
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hover Effect */
.faq-item:hover {
    border-color: var(--brand-green);
}