/* --- General Setup & Variables --- */
:root {
    --primary-blue: #005a9c;
    --primary-orange: #f58220;
    --white: #ffffff;
    --dark-text: #333;
    --dark-navy: #1a1a2e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.coloured_heading{
    color:#f58220;
}
.btn.btn-primary {
	width: fit-content;
	padding: 10px 20px;
	background: #f58220;
	color: #fff;
}




/* Basic reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }
    a {
        text-decoration: none;
        color: inherit;
    }

    

    /* ===== Top Bar ===== */
    .top-bar {
        background: #005a9c;
        color: #fff;
        font-size: 14px;
        padding: 5px 0;
    }
    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .top-bar .contact-info a {
        color: #fff;
        margin-right: 10px;
        font-size: 16px;
    }
    .top-bar .phone-number {
        margin-left: 5px;
    }
    .top-bar .tagline {
        font-weight: bold;
    }
    /* UPDATED: Request a Call button style */
    .top-bar .btn-request-call {
        background: #fff;
        color: #007BFF;
        padding: 8px 12px;
        border-radius: 4px;
        font-weight: bold;
        transition: 0.3s;
        border: 1px solid #fff;
    }
    .top-bar .btn-request-call:hover {
        background: #f0f0f0;
    }


    /* ===== Main Navigation ===== */
    .main-nav {
        background: #ff6f00;
        padding: 10px 0;
        /* position: sticky is removed */
            z-index: 999;
            transition: box-shadow 0.3s ease;
    }
    /* NEW CLASS: This is applied by JavaScript on scroll */
        .main-nav.is-sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

    .main-nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .logo img {
	height: 60px;
	vertical-align: middle;
	padding: 5px;
	background: #fff;
	border-radius: 10px;
}
    
    nav.navigation {
        flex: 1;
        margin-left: 30px;
        position: relative;
    }
    nav ul.nav-links {
        list-style: none;
        display: flex;
        gap: 15px;
    }
    nav ul.nav-links li {
        position: relative;
    }
    /* UPDATED: Main nav link styles */
    nav ul.nav-links > li > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	color: #fff;
	transition: 0.3s;
	text-underline-offset: 5px;
	font-size: 14px;
}
.sub-dropdown {
	list-style-type: none;
}
.dropdown-menu li {
	list-style-type: none;
}
    nav ul.nav-links > li > a:hover {
        background: none;
        color: #f1f1f1;
    }

    /* UPDATED: Dropdown styles */
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ff6f00; /* Orange background */
        min-width: 300px;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        flex-direction: column;
        padding: 5px 0;
    }
    .dropdown-menu li a {
        padding: 12px 20px;
        font-weight: normal;
        color: #fff; /* White text */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown-menu li a:hover {
        background: #e06200; /* Darker orange on hover */
    }
    .sub-dropdown .dropdown-menu {
        top: 0;
        left: 100%;
        border-radius: 4px;
    }
    .dropdown-menu.show {
        display: block !important;
    }
    
    /* Desktop hover functionality */
    @media (min-width: 993px) {
        nav ul.nav-links li.dropdown:hover > .dropdown-menu {
            display: flex;
        }
        nav ul.nav-links li.sub-dropdown:hover > .dropdown-menu {
            display: flex;
        }
    }

    /* Nav right */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .btn-pay img {
	height: 40px;
	vertical-align: middle;
	padding: 5px;
	background: #fff;
	border-radius: 8px;
}
    .hamburger-menu, .close-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 22px;
        color: #fff;
        cursor: pointer;
    }

    /* ===== Mobile ===== */
    @media(max-width: 992px) {
        .top-bar .tagline {
            display: none;
        }
        nav ul.nav-links {
            position: fixed;
            left: -280px;
            top: 0;
            height: 100%;
            width: 280px;
            background: #ff6f00;
            flex-direction: column;
            gap: 0;
            padding-top: 50px;
            transition: left 0.3s ease;
            overflow-y: auto;
            z-index: 1001;
        }
        nav ul.nav-links.active { left: 0; }
        nav ul.nav-links li a {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        /* Mobile main links still have underline */
         nav ul.nav-links > li > a {
            
            text-underline-offset: 5px;
         }

        /* Mobile dropdowns */
        .dropdown-menu {
            position: static;
            background: #e06200; /* Lighter orange for mobile submenus */
            box-shadow: none;
            border-radius: 0;
            min-width: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0;
        }
        .dropdown-menu.show { max-height: 1500px; }
        /* Remove underline from mobile dropdown items */
        .dropdown-menu li a {
            text-decoration: none;
        }
        .sub-dropdown .dropdown-menu a {
            padding-left: 40px;
            background-color: #ff6f00;
        }
        .hamburger-menu { display: block; }
        .close-menu-btn {
	display: block;
	position: absolute;
	top: -40px;
	right: 20px;
	font-size: 30px;
	z-index: 1002;
}
        nav ul.nav-links li.dropdown:hover > .dropdown-menu,
        nav ul.nav-links li.sub-dropdown:hover > .dropdown-menu {
            display: none;
        }
.container .tagline {
  display: block;
  order: 3;
}
.top-bar .container {
  flex-wrap: wrap;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 5px 0px;
}
    }



/* --- ================================== --- */
/* --- FOOTER SECTION (NEW GRID LAYOUT) --- */
/* --- ================================== --- */
.site-footer {
    background-color: #1a1a2e; /* Dark blue/purple background */
    color: #a9a9d0; /* Light, soft text color */
    padding: 60px 20px; /* Remove bottom padding */
    font-size: 14px;
    border-top: 1px solid #eee;
}

.site-footer a {
    color: #a9a9d0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer a:hover {
    color: var(--primary-orange);
}

.site-footer .container {
    max-width: 1500px;
}

/* --- Combined Footer Grid --- */
/* This will contain both the initial widgets and the link lists */
.footer-top, .footer-links-grid {
    display: grid;
    /* Create a responsive grid that adjusts columns */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 30px;
    padding-bottom: 40px;
}

/* Remove the border between the two sections */
.footer-top {
    border-bottom: none;
}
.footer-links-grid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-widget .widget-title, .links-column h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
    background-color: white;
    padding: 5px;
    border-radius: 4px;
}

.footer-widget p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}
.social-icons a:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.links-widget ul, .links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.links-widget li, .links-column li {
    margin-bottom: 10px;
}
.links-column a {
    text-transform: capitalize;
}


.newsletter-form {
    display: flex;
    margin-top: 15px;
}
.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px 0 0 5px;
    color: var(--white);
    outline: none;
}
.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}


/* --- Sub-Footer --- */
.sub-footer {
	background-color: #111122;
	padding: 25px 0 60px 0px;
	text-align: center;
	color: #a9a9d0;
}
.sub-footer p {
    margin: 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  width: 100%;
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(4,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}

@media only screen and (max-width:1024px){
    .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(2,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}
}

@media only screen and (max-width:768px){
    .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(1,1fr);
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(1,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}
}


/* --- ================================================ --- */
/* --- FLOATING CONTACT WIDGET (CORRECTED & FINAL)      --- */
/* --- ================================================ --- */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.floating-contact-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact-widget li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: width 0.4s ease, border-radius 0.4s ease, background-color 0.3s ease;
    overflow: hidden;
}

.floating-contact-widget .whatsapp-float {
    background-color: #25D366;
}
.floating-contact-widget .whatsapp-float:hover {
    background-color: #128C7E;
}

/* The hover effect to expand the circle into a pill */
.floating-contact-widget li a:hover {
    width: 180px;
    border-radius: 30px;
    justify-content: flex-start; /* Aligns content to the left on hover */
}

/* Icon styling */
.floating-contact-widget li a i {
    font-size: 24px;
    text-align: center;
    margin-right: -16px;
}
.floating-contact-widget li a:hover i {
    font-size: 24px;
    text-align: center;
    margin-right: 10px !important;
    margin-left: 15px;
}

/* Text label styling (THE FIX IS HERE) */
.floating-contact-widget li a span {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    padding-right: 20px;

    /* --- FIX: HIDE TEXT BY DEFAULT --- */
    max-width: 0;
    opacity: 0;
    transition: max-width 0.3s ease, opacity 0.2s ease;
}

/* --- FIX: REVEAL TEXT ON HOVER --- */
.floating-contact-widget li a:hover span {
    max-width: 120px; /* A value large enough to show the text */
    opacity: 1;
    transition-delay: 0.1s; /* Makes the animation smoother */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .floating-contact-widget {
        bottom: 20px;
        left: 20px;
    }
    .floating-contact-widget li a {
        width: 50px;
        height: 50px;
    }
    .floating-contact-widget li a i {
        font-size: 22px;
        width: 50px;
    }
    .floating-contact-widget li a:hover {
        width: 160px;
    }
     .floating-contact-widget li a span {
        font-size: 0.9rem;
    }
}



/* --- ================================== --- */
/* --- STICKY ENQUIRY BTN & POPUP (NEW) --- */
/* --- ================================== --- */

/* 1. The Sticky Button */
.sticky-enquiry-btn {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%) rotate(270deg);
    transform-origin: bottom right;
    
    background-color: #ff6f00;
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 998;
    border-radius: 8px 8px 0 0;
    box-shadow: -5px -5px 15px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sticky-enquiry-btn i {
    transform: rotate(90deg); /* Re-orient the icon */
}


/* 2. The Popup Form */
.sticky-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.sticky-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sticky-popup-panel {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}
.sticky-popup-overlay.active .sticky-popup-panel {
    transform: scale(1);
}

.sticky-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark-text);
    cursor: pointer;
    opacity: 0.7;
}
.sticky-popup-panel h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.sticky-popup-panel p {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

.sticky-popup-panel .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.sticky-popup-panel .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
}
.sticky-popup-panel .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}
#sticky-popup-form label {
  color: #000;
}
#sticky-popup-form select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: var(--bg-light);
	font-family: 'Poppins', sans-serif;
}
#sticky-popup-form .btn-submit {
  background: #ff6f00;
  border: 1px solid #ff6f00;
  border-radius: 5px;
  color: #fff;
}






/* --- ================================== --- */
/* --- NEW "DYNAMIC KEYWORD CLOUD" BANNER --- */
/* --- (KEN BURNS UPDATE)                 --- */
/* --- ================================== --- */
.ads-banner-section {
    padding: 100px 0;
    /* background-color: #f9fafc; <-- REMOVED */
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* NEW: Ken Burns Background */
.ken-burns-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.ken-burns-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Dark overlay for text readability, uses your theme colors */
    background: linear-gradient(to top, rgba(0, 42, 75, 0.8), rgba(26, 26, 46, 0.7));
    z-index: 2;
}
.ken-burns-bg .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenburns-slideshow 24s linear infinite;
}
.ken-burns-bg .slide:nth-child(2) { animation-delay: 8s; }
.ken-burns-bg .slide:nth-child(3) { animation-delay: 16s; }

/* NEW: Ken Burns Animation */
@keyframes kenburns-slideshow {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; }
    33.33% { opacity: 1; transform: scale(1.15); }
    38.33% { opacity: 0; }
    100% { opacity: 0; }
}

/* REMOVED: .gradient-mesh styles are gone */

.ads-banner-section .container {
    position: relative;
    z-index: 3; /* CHANGED: Must be above overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ads-banner-section h1 {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white); /* CHANGED: from var(--dark-text) */
    max-width: 1200px;
    margin-bottom: 20px;
}

.ads-banner-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8); /* CHANGED: from var(--light-text) */
    line-height: 1.7;
    max-width: 1100px;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* NEW: Style for secondary button on dark background */
.ads-banner-section .btn-secondary {
    background: #fff;
    color: #000;
    border-color: var(--white);
    padding: 10px;
    width: fit-content;
}
.ads-banner-section .btn-secondary:hover {
    background: var(--white);
    color: var(--dark-text); /* Use dark text on white hover */
}


/* --- The Unique Floating Keywords --- */
.floating-keywords {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* CHANGED: Above overlay but below text */
    pointer-events: none; /* Allows clicking through */
}

.keyword-card {
    position: absolute;
    /* UPDATED: Glassmorphism style for dark BG */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white); /* CHANGED: from var(--dark-text) */
    pointer-events: all; /* Make cards interactable */
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}
.keyword-card:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}
.keyword-card i {
    color: var(--primary-orange);
}

/* Positioning of keywords */
.kw-1 { top: 15%; left: 10%; animation-delay: 0s; }
.kw-2 { top: 30%; left: 20%; animation-delay: -2s; }
.kw-3 { top: 60%; left: 8%; animation-delay: -4s; }
.kw-4 { top: 20%; right: 12%; animation-delay: -1s; }
.kw-5 { top: 55%; right: 18%; animation-delay: -3s; }
.kw-6 { top: 75%; right: 10%; animation-delay: -5s; }

/* Bobbing animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .ads-banner-section { padding: 80px 0; }
    .floating-keywords {
        display: none; /* Hide keyword cloud on mobile */
    }
    .ads-banner-section h1 { font-size: 2.2rem; }
    .ads-banner-section p { font-size: 1rem; }
    .button-group { gap: 10px; width: 100%; max-width: 300px; margin: 0 auto; }
}








/* --- ================================== --- */
/* --- NEW "3D FEATURE SHOWCASE" SECTION  --- */
/* --- ================================== --- */
.ads-intro-section {
    padding: 80px 0;
    background-color: var(--white); /* Light BG */
    overflow: hidden;
}

.ads-intro-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    
}

/* Left Column: Content */
.intro-content-left h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.intro-content-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}
.intro-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 30px;
}
.intro-content-left .btn-primary {
    padding: 14px 35px;
    font-size: 1.05rem;
}

/* Right Column: 3D Feature Cards */
.intro-features-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* This applies the 3D perspective to the children */
    perspective: 1000px;
}

.feature-card-3d {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-card-3d h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}
.feature-card-3d p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-text);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .ads-intro-section .container {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 50px;
    }
    .intro-content-left {
        text-align: center;
    }
    .intro-content-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .feature-card-3d {
    flex-direction: column;
}
}









/* --- ================================== --- */
/* --- NEW "SERVICES" (GLOWING GLASS GRID) --- */
/* --- ================================== --- */
.ads-services-section {
    padding: 80px 0;
    background-color: #1a1a2e; /* Dark BG */
    overflow: hidden;
}

.ads-services-section .container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.ads-services-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.ads-services-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}
.ads-services-section .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* The 3-Column Grid */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* The Glass Card */
.service-card-v2 {
    background: rgba(42, 42, 62, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service_btn {
    padding: 8px 15px;
    margin-top: 15px;
    background: #ff6f00;
    border: none;
    border-radius: 4px;
    color: #fff;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.service-card-v2 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.service-card-v2 p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* --- The "Glow" Hover Effect --- */
.service-card-v2:hover {
    border-color: var(--primary-orange);
    background: rgba(42, 42, 62, 0.9);
    box-shadow: 0 15px 40px rgba(245, 130, 32, 0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .services-grid-v2 {
        grid-template-columns: 1fr; /* Stack to 1 column */
        max-width: 600px; /* Constrain width on tablet */
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ads-services-section {
        padding: 60px 0;
    }
}







/* --- ================================== --- */
/* --- NEW "PROVEN PROCESS" (ANGLED FLOW)   --- */
/* --- ================================== --- */
.process-section-v3 {
    padding: 20px 0;
    background-color: var(--bg-light); /* Light BG */
    position: relative;
    overflow: hidden;
}

/* The unique angled background shape */
.angled-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-navy);
    /* The angle */
    clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
    opacity: 0.05; /* Very subtle */
}

.process-section-v3 .container {
    flex-direction: column;
    position: relative; /* Sits on top of the angled BG */
    z-index: 2;
}

.process-section-v3 .section-header {
    text-align: center;
    margin: 0 auto 20px auto;
}
.process-section-v3 .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-text);
}
.process-section-v3 .section-header .separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 5px auto 10px auto;
    border-radius: 2px;
}
.process-section-v3 .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* The 2x2 Floating Card Grid */
.process-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.process-card-v3 {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* The hover effect */
.process-card-v3:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-orange);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}
.card-step-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4.5rem;
    font-weight: 700;
    color: #f0f0f0;
    z-index: 0;
}
.process-card-v3 h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.process-card-v3 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

/* Staggered placement for dynamic feel */
.process-grid-v3 .process-card-v3:nth-child(2) {
    margin-top: 30px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .process-grid-v3 {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 25px;
    }
    .process-grid-v3 .process-card-v3:nth-child(2) {
        margin-top: 0; /* Remove stagger on mobile */
    }
    .angled-bg-shape {
        clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    }
}







/* --- ================================== --- */
/* --- NEW "WHY CHOOSE" SECTION (DARK BG, ICON ACCORDION) --- */
/* --- ================================== --- */
.why-choose-section-v3 {
    padding: 80px 0;
    background-color: #1a1a2e; /* Dark BG */
    color: var(--white);
}

.why-choose-section-v3 .container {
    max-width: 1100px;
    flex-direction: column;
}

.why-choose-section-v3 .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.why-choose-section-v3 .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
}
.why-choose-section-v3 .section-header .separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 15px auto 20px auto;
    border-radius: 2px;
}
.why-choose-section-v3 .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.why-choose-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Asymmetrical split */
    gap: 60px;
    align-items: start; /* Align items to the start of their grid areas */
}

/* Left: Image */
.why-choose-image {
    position: relative;
    padding-bottom: 75%; /* Aspect ratio 4:3 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.why-choose-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right: Accordion of Features */
.why-choose-accordion-v3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item-v3 {
    background-color: rgba(42, 42, 62, 0.7); /* Slightly lighter dark for glass effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.accordion-item-v3.active {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.3);
}

.accordion-header-v3 {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 15px;
}

.accordion-header-v3:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.accordion-header-v3 .icon-wrapper {
    min-width: 40px; /* Fixed width for icon */
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.accordion-item-v3.active .accordion-header-v3 .icon-wrapper {
    background-color: var(--primary-orange);
    color: var(--dark-navy);
}

.accordion-header-v3 h3 {
    flex-grow: 1;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-item-v3.active .toggle-icon {
    transform: rotate(90deg);
    color: var(--primary-orange);
}

.accordion-content-v3 {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-item-v3.active .accordion-content-v3 {
    max-height: 200px; /* Adjust as needed */
    padding-bottom: 20px;
}

.accordion-content-v3 p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.accordion-content-v3 .btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 8px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    margin-bottom: 20px;
}

.accordion-content-v3 .btn:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-2px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .why-choose-grid-v3 {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .accordion-header-v3 {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .accordion-header-v3 h3 {
        font-size: 1.1rem;
    }
    .accordion-content-v3 p {
        font-size: 0.95rem;
    }
    .accordion-content-v3 .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .why-choose-section-v3 .section-header h2 {
        font-size: 2rem;
    }
    .why-choose-section-v3 .section-header p {
        font-size: 1rem;
    }
}







/* --- ================================== --- */
/* --- NEW "PROVEN RESULTS" (TIERED GRID V3) --- */
/* --- ================================== --- */
.results-section-v3 {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light BG */
    overflow: hidden;
}

.results-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 split */
    align-items: center;
    gap: 60px;
}

/* Left Column: Text Content */
.results-text-content h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-text);
}
.results-text-content .separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 20px 0;
    border-radius: 2px;
}
.results-text-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* Right Column: Tiered Stat Cards */
.results-stats-tier {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x2 grid for stats */
    gap: 25px;
}

.stat-card-v3 {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.stat-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-orange);
}

.stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
}
.stat-content p {
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .results-grid-v3 {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 50px;
    }
    .results-text-content {
        text-align: center;
    }
    .results-text-content .separator {
        margin: 20px auto;
    }
}

@media (max-width: 576px) {
    .results-stats-tier {
        grid-template-columns: 1fr; /* Stack stats on smallest screens */
    }
}








/* --- ================================================ --- */
/* --- NEW "FOCUS SLIDE CAROUSEL" SECTION (V2)          --- */
/* --- ================================================ --- */
.services-carousel-section-v2 {
    padding: 80px 0;
    background-color: var(--dark-navy); /* Dark BG */
    overflow: hidden;
}

.services-carousel-section-v2 .container {
    max-width: 1400px; /* Full width for immersive feel */
    flex-direction: column;
}

.services-carousel-section-v2 p {
    color: #fff;
}

.services-carousel-section-v2 .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.services-carousel-section-v2 .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}
.services-carousel-section-v2 .section-header .separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

/* The Swiper Carousel */
.services-focus-swiper {
    width: 100%;
    height: 500px; /* Fixed height for the carousel */
    position: relative;
    padding: 0 40px; /* Space for arrows */
}

.focus-slide {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    
    /* Animation: Content slides in, not just fades */
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(0.9);
    opacity: 0.5;
}

.focus-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(26, 26, 46, 0) 100%);
    z-index: 1;
}

.services-carousel-section-v2 .btn.btn-primary-light {
    background: #ff6f00;
    padding: 8px 15px;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: var(--white);
    background-color: rgba(42, 42, 62, 0.7);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Always visible content */
.focus-slide .service-icon,
.focus-slide h3,
.focus-slide p,
.focus-slide .btn-primary-light {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}


.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
    border: 4px solid var(--white);
}
.slide-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.slide-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 450px;
    color: rgba(255, 255, 255, 0.8);
}

/* Custom Navigation */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.swiper-button-prev-custom { left: 0; }
.swiper-button-next-custom { right: 0; }
.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--primary-orange);
}

/* Custom Pagination */
.swiper-pagination-custom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.3);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .services-focus-swiper {
        height: 450px;
        padding: 0; /* Remove padding */
    }
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        display: none; /* Hide arrows on mobile, use swipe */
    }
    .slide-content h3 { font-size: 1.5rem; }
    .slide-content p { font-size: 0.95rem; }
}







/* --- ================================================ --- */
/* --- NEW "FOCUSED CONTACT HUB" SECTION (LIGHT BG)     --- */
/* --- ================================================ --- */
.contact-hub-section-v2 {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light BG */
    overflow: hidden;
}

.contact-hub-section-v2 .container {
    max-width: 900px; /* Centered, focused container */
    flex-direction: column;
}

.contact-hub-section-v2 .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.contact-hub-section-v2 .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-hub-section-v2 .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* The Floating Form Card */
.contact-hub-card {
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

/* The 2x2 Grid for the form */
.form-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px; /* row-gap, column-gap */
}

#contact-form .form-group {
    margin-bottom: 20px;
}
/* Full-width message field */
#contact-form .form-group:last-of-type {
    margin-bottom: 30px;
}

#contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    background-color: #fdfdfd; /* Slightly off-white */
    transition: all 0.3s ease;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 111, 33, 0.1);
}

#contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

#contact-form .form-input { /* Class for the select */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%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");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

#contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .contact-hub-card {
        padding: 30px 25px;
    }
    .form-grid-2x2 {
        grid-template-columns: 1fr; /* Stack to 1 column */
        gap: 0; /* Remove gap */
    }
}








/* --- ================================================ --- */
/* --- NEW "SPLIT-VIEW INTERACTIVE" FAQ (LIGHT BG)      --- */
/* --- ================================================ --- */
.faq-section-v5 {
    padding: 80px 0;
    background-color: var(--dark-navy); /* Light BG */
    overflow: hidden;
}

.faq-section-v5 .container {
    max-width: 1200px;
    flex-direction: column;
}

.faq-section-v5 .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.faq-section-v5 .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}
.faq-section-v5 .section-header p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.7;
}

/* The Main Floating Card */
.faq-hub-card-v5 {
    display: grid;
    
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    
    overflow: hidden;
}

.faq-hub-grid-v5 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

/* Left Column: Tab Navigation */
.faq-nav-v5 {
    list-style: none;
    background: #fdfdfd;
    border-right: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.faq-nav-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 30px;
    text-align: center;
    transition: color 0.3s ease;
}
.nav-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s ease;
}
.nav-text p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-nav-item:hover {
    border-color: rgba(245, 130, 32, 0.3);
    background: #fff8f5;
}
.faq-nav-item.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px rgba(245, 130, 32, 0.2);
}
.faq-nav-item.active i,
.faq-nav-item.active h4,
.faq-nav-item.active p {
    color: var(--white);
}

/* Right Column: Content */
.faq-content-v5 {
    padding: 40px;
}

.faq-pane-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}
.faq-pane-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.faq-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}
.faq-tab-pane.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item-v5 {
    border-bottom: 1px solid var(--border-color);
}
.faq-item-v5:last-child {
    border-bottom: none;
}
.faq-question-v5 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    cursor: pointer;
    background: #ebebeb;
    border: none;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 8px;
}
.faq-question-v5::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}
.faq-item-v5.active .faq-question-v5::after {
    transform: rotate(45deg);
}

.faq-answer-v5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer-v5 p {
    padding-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--light-text);
}
.faq-item-v5.active .faq-answer-v5 {
    max-height: 200px; /* Adjust as needed */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .faq-hub-card-v5 {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 0;
        padding: 0;
    }
    .faq-nav-v5 {
        /* Make tabs horizontally scrollable */
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 15px;
        background: var(--white);
        border-radius: 16px 16px 0 0;
    }
    .faq-nav-item {
        flex-shrink: 0;
        min-width: 280px;
    }
    .faq-content-v5 {
        padding: 30px;
    }
    .faq-hub-grid-v5 {
    grid-template-columns: repeat(1,1fr);
}
}

@media (max-width: 576px) {
    .faq-content-v5 {
        padding: 25px;
    }
    .faq-pane-image {
        height: 200px;
    }
    .faq-nav-v5 {
        padding: 10px;
    }
    .faq-nav-item {
        min-width: 250px;
        padding: 15px;
    }
}






/* --- ================================================ --- */
/* --- NEW "PREMIUM TRUST SLIDER" (LIGHT BG)            --- */
/* --- ================================================ --- */
.reviews-light-section {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light BG */
    position: relative;
    overflow: hidden;
}

.reviews-light-section .container {
    max-width: 1200px; /* Centered, focused container */
    flex-direction: column;
}

.reviews-light-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.reviews-light-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.reviews-light-section .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* The Swiper Container */
.reviews-light-swiper {
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.review-card-light {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
}

.review-quote-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.6;
    line-height: 1;
}

.review-content {
    text-align: left;
}

.review-stars {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
}
.author-info span {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Custom Navigation & Pagination */
.swiper-pagination-light {
    position: absolute;
    bottom: 25px !important;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
}
.swiper-pagination-light .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}
.swiper-pagination-light .swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

.swiper-button-next-light,
.swiper-button-prev-light {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.swiper-button-next-light:hover,
.swiper-button-prev-light:hover {
    background: var(--primary-orange);
    color: var(--white);
}
.swiper-button-prev-light {
    left: 20px;
}
.swiper-button-next-light {
    right: 20px;
}
.swiper-button-next-light::after,
.swiper-button-prev-light::after {
    font-size: 1rem;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free'; /* Using Font Awesome */
}
.swiper-button-next-light::after {
    content: '\f061'; /* fa-arrow-right */
}
.swiper-button-prev-light::after {
    content: '\f060'; /* fa-arrow-left */
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .reviews-light-swiper {
        padding: 40px 25px;
    }
    .review-card-light {
        grid-template-columns: 1fr; /* Stack icon and content */
        gap: 20px;
        text-align: center;
    }
    .review-quote-icon {
        margin: 0 auto;
    }
    .review-author {
        justify-content: center;
    }
    .swiper-button-next-light,
    .swiper-button-prev-light {
        display: none; /* Hide arrows on mobile */
    }
}






/* --- ================================================ --- */
/* --- NEW "FLOATING OVERLAP" CONTACT (LIGHT BG)        --- */
/* --- ================================================ --- */
.contact-overlap-section {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light grey BG */
    overflow: hidden;
}

.contact-overlap-section .container {
    max-width: 1100px;
    flex-direction: column;
}

.contact-overlap-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.contact-overlap-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-overlap-section .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* The Main Overlap Grid */
.contact-overlap-grid {
    display: grid;
    /* Asymmetrical: 2 parts form, 1 part info */
    grid-template-columns: 1.5fr 1fr; 
    align-items: center; /* Vertically centers the panels */
    position: relative;
}

/* Left Column: Form Panel */
.contact-form-panel-light {
    background: var(--white);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 5; /* Sits behind the info panel */
}
.contact-form-panel-light h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.form-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form-panel-light .form-group {
    margin-bottom: 20px;
}
.contact-form-panel-light label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}
.contact-form-panel-light input,
.contact-form-panel-light select,
.contact-form-panel-light textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}
.contact-form-panel-light select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%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");
    background-repeat: no-repeat;
    background-position: right 15px center;
}
.contact-form-panel-light input:focus,
.contact-form-panel-light select:focus,
.contact-form-panel-light textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 111, 33, 0.1);
}
.contact-form-panel-light textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-form-panel-light .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    border: navajowhite;
}

/* Right Column: Info Panel */
.contact-info-panel-dark {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10; /* Sits on top */
    /* This creates the overlap */
    margin-left: 20px; 
}
.contact-info-panel-dark h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}
.contact-info-panel-dark > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background-color: rgba(245, 130, 32, 0.1);
    color: var(--primary-orange);
}
.info-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}
.info-text a, .info-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-text a:hover {
    color: var(--primary-orange);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-overlap-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 0;
    }
    .contact-info-panel-dark {
        margin-left: 0; /* Remove overlap */
        border-radius: 0 0 16px 16px;
    }
    .contact-form-panel-light {
        border-radius: 16px 16px 0 0;
    }
}
@media (max-width: 576px) {
    .contact-form-panel-light {
        padding: 30px 25px;
    }
    .form-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-info-panel-dark {
        padding: 30px 25px;
    }
}




/* === Compact, Responsive Home Contact Form === */
#home-contact-form {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

/* Two-column layout */
#home-contact-form .form-row-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#home-contact-form .form-group {
  flex: 1;
  margin-bottom: 14px;
}

#home-contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-text);
}

/* Inputs, Selects, and Textarea */
#home-contact-form input,
#home-contact-form textarea,
#home-contact-form select {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

#home-contact-form input:focus,
#home-contact-form textarea:focus,
#home-contact-form select:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px rgba(245, 111, 33, 0.15);
}

#home-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Dropdown Styling --- */
#home-contact-form select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  background-size: 16px;
  cursor: pointer;
}

#home-contact-form select option {
  color: #000;
  background: #fff;
}

/* --- Country Code + Phone --- */
.phone-flex {
  display: flex;
  gap: 6px;
}

#home-country-code {
  flex: 0 0 30%;
  text-align: center;
  padding: 10px;
}

#home-phone {
  flex: 1;
}

/* --- File Input Styled Like Other Fields --- */
.file-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  color: #666;
  font-size: 0.95rem;
  cursor: pointer;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
}

.file-input-wrapper:hover {
  border-color: var(--primary-orange);
  background: #fafafa;
}

/* Placeholder text for file input */
.file-placeholder {
  pointer-events: none;
  flex: 1;
}

/* --- Button --- */
#home-contact-form .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  background-color: var(--primary-orange);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

#home-contact-form .btn-primary:hover {
  background-color: #f8702a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #home-contact-form .form-row-2 {
    flex-direction: column;
  }

  #home-country-code {
    flex: 0 0 35%;
  }

  .file-input-wrapper {
    font-size: 0.9rem;
  }
}




/* Popup Overlay */
.sticky-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.sticky-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Panel */
.sticky-popup-panel {
  background: #fff;
  border-radius: 12px;
  padding: 25px 22px;
  max-width: 440px; /* Smaller width to prevent overflow */
  width: 100%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
}
.sticky-popup-overlay.active .sticky-popup-panel {
  transform: scale(1);
}

/* Close Button */
.sticky-popup-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  opacity: 0.7;
}

/* Headings */
.sticky-popup-panel h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.sticky-popup-panel p {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* Form Layout */
#sticky-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  margin-bottom: 4px;
  font-weight: 500;
  color: #333;
}

/* Input Styles */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 9px 10px;
  font-size: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff6f00;
  background: #fff;
  outline: none;
}

/* File Input (Compact) */
input[type="file"] {
    padding: 6px;
    background: #fff;
    font-size: 0.8rem;
    height: 100%;
}

/* Textarea */
#sticky-message {
  height: 70px;
  resize: none;
}

/* Button */
.btn-submit {
  background: #ff6f00;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 0;
  margin-top: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: #e65f00;
}

/* Responsive: Single-column layout on mobile */
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
  }
  .sticky-popup-panel {
    max-width: 95%;
    padding: 20px;
  }
}