/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #29598C;
    --dark-blue: #29598C;
    --accent-blue: #29596A;
    --light-blue: #e3f2fd;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    margin: 0;
}




/*==============================
    MESSAGE POPUP
==============================*/

#message-popup{

    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    z-index:99999;

}

.message-box{

    min-width:360px;
    max-width:500px;

    padding:18px 25px;

    border-radius:14px;

    display:flex;
    align-items:center;
    gap:15px;

    color:#fff;

    font-size:16px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    animation:popupShow .35s ease;

}

.message-box i{

    font-size:24px;

}

.message-box.success{

    background:#28a745;

}

.message-box.error{

    background:#dc3545;

}

.message-box.warning{

    background:#ffc107;
    color:#222;

}

.message-box.info{

    background:#0d6efd;

}

@keyframes popupShow{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.popup-hide{

animation:popupHide .35s forwards;

}

@keyframes popupHide{

from{

opacity:1;

}

to{

opacity:0;

transform:translateY(-20px);

}

}

@media(max-width:576px){

.message-box{

width:90vw;

min-width:auto;

font-size:15px;

padding:16px 18px;

}

}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* section {
    padding: 80px 0;
} */

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* iframe helpers */
iframe {
    width: 100%;
    border: none;
    display: block;
}

.header-iframe {
    height: 150px;
    position: relative;
    z-index: 1000;
}

.footer-iframe {
    height: 620px;
}

/* Header / Navigation */
header {
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 25px;
}

.top-left a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.top-left a i {
    color: var(--white);
    font-size: 14px;
}

.top-left a:hover {
    color: var(--light-blue);
}

.top-right {
    display: flex;
    gap: 15px;
}

.top-right a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.top-right a:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
}
.top-center{
    font-size: 15px;
    transform: translateX(150px);
}





/* --- GLOBAL MOBILE NAV RESET (SHUT OFF ON DESKTOP) --- */
.mobile-toggle-input,
.nav-toggle,
.mobile-label {
    display: none;
}

/* --- HEADER STYLES --- */
.main-header {
    background-color: var(--white);
    padding: 12px 0;
    border-bottom: 3px solid var(--primary-blue);
}

.main-header .container,
.top-bar .container {
    max-width: 100% !important;
    padding: 0 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    margin-left: 1px;
}

.logo-main {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-a {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    font-style: italic;
    margin-right: -2px;
}

.logo-icon-wrap {
    margin-bottom: 8px;
    margin-right: 4px;
}

.logo-icon {
    font-size: 18px;
    color: var(--primary-blue);
}

.logo-text {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-blue);
}

.logo-text .yellow {
    color: var(--primary-blue);
}

.logo-footer {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-top: -5px;
    text-transform: uppercase;
}

.logo-footer .yellow {
    color: var(--white);
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    color: var(--light-blue);
}


.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links li a {
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a i {
    font-size: 11px;
    opacity: 0.8;
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.nav-btn-signin {
    padding: 7px 18px !important;
    border: 1.5px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
}

.nav-btn-signin::after {
    display: none !important;
}

.nav-btn-signin:hover {
    background-color: var(--light-blue);
}

.nav-btn-signup {
    padding: 8px 20px !important;
    background-color: var(--primary-blue);
    color: white !important;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.nav-btn-signup::after {
    display: none !important;
}

.nav-btn-signup:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3);
}

@media (max-width: 991px) {
    .nav-auth {
        flex-direction: column;
        width: 100%;
        padding: 20px 30px;
        margin-left: 0;
        gap: 15px;
    }

    .nav-btn-signin,
    .nav-btn-signup {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Multi-level Dropdown Logic */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    width: 100%;
}

.dropdown-menu li a {
    color: var(--primary-blue) !important;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.dropdown-menu li a::after {
    display: none;

}

.dropdown-menu li a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue) !important;
}

/* Sub-dropdown (Second Level) */
.has-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: var(--transition);
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}



/* Hero Section */
.hero-section {
    background-color: var(--dark-blue);
    padding: 80px 0;
    color: var(--white);
    margin-top: -20px;
    /* Moves the section up */
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-form-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    flex: 1;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
    /* Shifted down as requested */
}

.form-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.form-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    font-family: inherit;
}

.consult-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.consult-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.hero-content .hero-button {
    width: auto;
    padding: 10px 24px;
    max-width: 200px;
    display: inline-flex;
    justify-content: center;
    margin: 35px auto 0;
}


.hero-content {
    flex: 1.2;
    text-align: center;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.hero-content h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
    text-align: center;
}

.hero-content h3 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

/* Pricing Strip */
.pricing-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -40px;
    gap: 20px;
}

.pricing-box {
    background-color: var(--primary-blue);
    padding: 22px 25px;
    border-radius: 8px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin: 0 auto;
}

.pricing-box h4 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-box p {
    font-size: 13.5px;
    color: var(--light-blue);
    font-weight: 700;
}

/* Service Headings */
.section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 35px;
    margin-top: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
}

/* Know Our Services */
.know-services {
    padding-bottom: 60px;
}

.services-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-img {
    flex: 1;
}

.services-img img {
    width: 100%;
    border-radius: 12px;
}

.services-list {
    flex: 1;
}

.service-check-list {
    list-style: none;
}

.service-check-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
    cursor: pointer;
}

.service-check-list li a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

.service-check-list li:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

/* Affiliate Steps */
.affiliate-steps {
    padding: 60px 0;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.affiliate-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.affiliate-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
    display: grid;
    place-items: center;
    font-size: 24px;
}

.affiliate-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 0;
}

.affiliate-step {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.affiliate-card p {
    color: #555;
    line-height: 1.8;
    flex-grow: 1;
}

@media (max-width: 900px) {
    .affiliate-grid {
        grid-template-columns: 1fr;
    }
}

/* Best Plans Slider */
.best-plans {
    padding-bottom: 0;
}

.plans-static-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.plans-viewport {
    max-width: 1100px;
    /* Show cards in a row, allow horizontal scroll on smaller screens */
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 10px;
}

.plans-slider-wrapper {
    display: flex;
    width: 100%;
    gap: 30px;
    padding: 20px 0;
    justify-content: center;
    scroll-snap-type: x mandatory;
}

.plans-slider-wrapper>.plan-card {
    scroll-snap-align: start;
}

.plan-card {
    border: 1px solid #e0f2f1;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    background: white;
    width: 340px;
    /* Balanced card width */
    flex-shrink: 0;
    box-sizing: border-box;
}

.plan-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    background-color: var(--light-blue);
}

.plan-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    min-height: 44px;
}

.plan-price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 14px;
    font-weight: 400;
    color: #0b0b0b;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    min-height: 180px;
}

.plan-features li {
    padding: 6px 0 6px 20px;
    font-size: 13.5px;
    color: #080808;
    position: relative;
}

.plan-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.plan-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.plan-btn:hover {
    background-color: var(--dark-blue);
    color: white;
}

/* Banking Partner Slider */
.banking-partners {
    padding-bottom: 60px;
    overflow: hidden;
}

.partners-viewport {
    width: 100%;
    margin: 0 auto;
}

.partners-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    justify-content: space-between;
}

.partners-slider-wrapper img {
    height: 75px;
    /* Increased from 50px */
    width: auto;
    max-width: 220px;
    /* Increased from 180px */
}

.partner-pill {
    min-width: 180px;
    padding: 20px 18px;
    background: #ffffff;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    color: var(--primary-blue);
    font-weight: 700;
}


/* Testimonials (Revised) */
.testimonials-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.testi-summary-bar {
    background: white;
    padding: 12px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    margin: 0 auto 50px;
    display: flex;
    max-width: 1060px;
    /* Wider to match image proportion */
    justify-content: space-between;
    /* To separate content and google logo */
    align-items: center;
}

.google-logo-sm {
    width: 22px;
    opacity: 0.8;
}

.summary-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-left .stars {
    color: #ffc107;
    font-size: 15px;
    display: flex;
    gap: 4px;
}

.rating-num {
    font-weight: 800;
    /* Bold black */
    font-size: 17px;
    color: #000;
}

.review-count {
    color: #999;
    /* Light gray */
    font-size: 12px;
}

.testi-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #444;
    /* Darker like in image */
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow.prev {
    left: -50px;
}

.slider-arrow.next {
    right: -50px;
}

.slider-arrow:hover {
    color: var(--primary-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-stars {
    color: #ffc107;
    font-size: 12px;
}

.testi-time {
    color: #888;
    font-size: 11px;
    margin-left: 8px;
    font-weight: 400;
}

.google-logo {
    width: 20px;
}

.testi-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.avatar.pink {
    background-color: #d81b60;
}

.avatar.brown {
    background-color: #8d6e63;
}

.avatar.purple {
    background-color: #7e57c2;
}

.user-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a237e;
    /* Navy blue from image */
}

.testi-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pagination-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
}

.dot.active {
    width: 8px;
    height: 8px;
    background-color: #5c6bc0;
}

.page-info {
    font-size: 12px;
    color: #888;
}

/* Recent Blogs */
.recent-blogs-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition);

}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card h4 {
    margin-bottom: 12px;
    color: #090909;
    font-size: 18px;
}

.blog-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Difference Section Slider (One-by-One Focused) */
.difference-section {
    padding: 30px 0 30px 0;
    text-align: center;
}

.difference-section .accent-line {
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: -10px auto 20px;
}

.difference-section .section-subtext {
    margin-bottom: 50px;
    color: #777;
    font-size: 14px;
}

.diff-slider-viewport {
    max-width: 1300px;
    /* Width for 3 cards + gaps */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.diff-slider-wrapper {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: diffSlideThreeAtOnce 25s infinite;
    padding: 20px 0;
}

.diff-slider-wrapper:hover {
    animation-play-state: paused;
}

@keyframes diffSlideThreeAtOnce {

    /* 0% to 18% - Cards 1, 2, 3 visible */
    0%,
    18% {
        transform: translateX(0);
    }

    /* 20% to 38% - Cards 2, 3, 4 visible (Shift by 1 card: 400 + 40 = 440px) */
    20%,
    38% {
        transform: translateX(-440px);
    }

    /* 40% to 58% - Cards 3, 4, 5 visible */
    40%,
    58% {
        transform: translateX(-880px);
    }

    /* 60% to 78% - Cards 4, 5, 1 visible */
    60%,
    78% {
        transform: translateX(-1320px);
    }

    /* 80% to 98% - Cards 5, 1, 2 visible */
    80%,
    98% {
        transform: translateX(-1760px);
    }

    /* 100% - Loop back smoothly */
    100% {
        transform: translateX(-2200px);
    }
}

.diff-card {
    background: white;
    width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: left;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.diff-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.diff-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: top;
}

.diff-card-content {
    padding: 25px;
}

.diff-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
    text-align: center;
}

.diff-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    text-align: center;
}

.diff-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.diff-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
}

.diff-dots .dot.active {
    background-color: var(--primary-blue);
}

/* Contact Section with Overlap */
.contact-section {
    position: relative;
    padding: 40px 0 80px;
    background-color: #fafafa;
}

.contact-card {
    display: flex;
    max-width: 1100px;
    margin: 0 auto 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
}

.contact-info-panel {
    background-color: var(--primary-blue);
    padding: 60px 45px;
    width: 38%;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
    color: var(--light-blue);
}

.contact-text p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-panel {
    padding: 60px 50px;
    width: 62%;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form .form-group,
.contact-form .form-row {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.05);
}

.form-btn-wrapper {
    text-align: left;
    margin-top: 20px;
}

.contact-submit {
    background-color: var(--primary-blue);
    color: white;
    padding: 14px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.contact-submit:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

/* Footer & Media Queries (Restored) */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--white);
}

.footer-list li a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-list li a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.contact-info .info-block {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--white);
}

.policy-text a {
    color: var(--light-blue);
}

/* Sitemap / Map Page Styles */
.map-hero {
    background-color: var(--primary-blue);
    padding: 80px 0;
    color: white;
    min-height: calc(100vh - 800px);
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
}

.map-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.map-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.map-list li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.map-list li a:hover {
    color: var(--light-blue);
}

/* Service Page Hero (common-dropdown) */
.service-hero {
    background-color: var(--primary-blue);
    padding: 60px 0;
    color: white;
}

.service-hero-flex {
    display: flex;
    align-items: center;
    gap: 100px;
}

.service-form-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 460px;
    color: #333;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.service-form-card .form-group {
    margin-bottom: 15px;
}

.service-form-card input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.service-form-card input:focus {
    border-color: var(--primary-blue);
}

.btn-consult {
    width: 100%;
    display: block;
    margin: 10px auto 15px;
    padding: 12px 25px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-consult:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.contact-wa {
    text-align: center;
    font-size: 14px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

.contact-wa i {
    font-size: 22px;
    color: #25D366;
    /* WhatsApp Green */
}

.service-title-info {
    flex: 1;
}

.service-title-info h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

.service-title-info p {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

/* Service Steps Section (Section 3) */
.service-steps {
    padding: 0 0 60px 0;
    background-color: #ffffff;
}

.steps-flex {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.steps-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.steps-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.mini-consultation-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    background-color: #fff;
    outline: none;
    transition: var(--transition);
}

.mini-consultation-form input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
}

.price-highlight {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 25px 0;
    display: block;
}

.btn-consult-mini {
    width: 100%;
    max-width: 280px;
    padding: 14px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-consult-mini:hover {
    background-color: #00695c;
    transform: translateY(-2px);
}

.contact-wa-mini {
    margin-top: 20px;
    font-size: 14px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    width: 100%;
    max-width: 280px;
}

.contact-wa-mini i {
    font-size: 22px;
    color: #25D366;
}

/* Accordion Styles */
.steps-accordion-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-blue);
}

.accordion-header {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    color: #333;
}

.accordion-header i {
    font-size: 16px;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

/* Open states for native details/summary */
details[open] .accordion-header {
    color: var(--primary-blue);
}

details[open] .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 30px 22px 30px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

.accordion-content ol,
.accordion-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Remove default details arrow */
details summary::-webkit-details-marker {
    display: none;
}

details summary {
    list-style: none;
    outline: none;
}

/* Response Section for mobile */
@media (max-width: 900px) {
    .steps-flex {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps-form-area {
        text-align: center;
    }

    .steps-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-consult-mini,
    .contact-wa-mini {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Service FAQ Section (Section 4) */
.service-faq {
    padding: 40px 0 0 0;
}

.faq-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #0b0b0b;
    background-color: #e5e0e0;
}

.faq-desc-block {
    margin-bottom: 40px;
}

.faq-desc-block h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.faq-desc-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 1000px;
}

.faq-flex {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.faq-title {
    font-size: 38px;
    font-weight: 100;
    color: #333;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .faq-flex {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-title-area {
        text-align: center;
    }
}

/* ==========================================================================
   Responsive Design (Consolidated at Bottom)
   ========================================================================== */

/* Tablet & Smaller Laptops (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .pricing-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -20px;
    }

    .services-flex {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .partners-slider-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 36px;
    }

    .partners-slider-wrapper img {
        max-width: 180px;
        height: 60px;
    }

    .testimonials-grid,
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-panel {
        width: 100%;
        padding: 40px;
    }

    .footer-grid,
    .map-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* common-dropdown responsiveness */
    .service-hero-flex {
        flex-direction: column-reverse;
        gap: 50px;
        text-align: center;
    }

    .service-title-info h1 {
        font-size: 38px;
    }

    .service-title-info p {
        font-size: 20px;
    }

    .service-form-card {
        margin: 0 auto;
    }

    .plans-static-grid {
        gap: 20px;
    }

    .steps-flex,
    .faq-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-form-area,
    .faq-title-area {
        text-align: center;
    }

    .steps-desc,
    .faq-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-consult-mini,
    .contact-wa-mini {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Phones & Tablets (768px) */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .top-bar {
        display: none;
        /* Hide top bar on mobile to save space */
    }

    .header-iframe {
        height: 100px;
        margin-bottom: 0;
    }

    /* If the nav-links are too long, stack them or hide */
    .nav-links {
        display: none;
        /* Usually a hamburger menu would go here */
    }

    .logo-a {
        font-size: 36px;
    }

    .logo-text {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .pricing-strip {
        grid-template-columns: 1fr;
    }

    .partners-slider-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .partners-slider-wrapper img {
        max-width: 140px;
        height: 50px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        z-index: 9999;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        /* Stronger shadow on white */
    }

    .nav-links li a {
        color: #333333;

    }

    /* --- PURE CSS MOBILE NAVIGATION (NO JS) --- */
    @media (max-width: 991px) {

        /* Hide the standard checkbox inputs globally */
        .mobile-toggle-input {
            display: none !important;
        }

        .nav-toggle {
            display: flex;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            z-index: 10001;
            padding: 12px 15px;
            background-color: var(--dark-blue);
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 77, 64, 0.3);
        }

        .nav-toggle:hover {
            background-color: var(--primary-blue);
            box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4);
            transform: translateY(-2px);
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--dark-blue);
            flex-direction: column;
            padding-top: 80px;
            gap: 0;
            transition: 0.4s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            overflow-y: auto;
            display: flex !important;
            border-left: 4px solid var(--primary-blue);
        }

        /* Show Sidebar when main toggle checked */
        #nav-toggle-check:checked~.nav-links {
            right: 0;
        }

        .nav-links li {
            width: 100%;
            position: relative;
        }

        .nav-links li:hover {
            background-color: rgba(0, 109, 90, 0.08);
        }

        .nav-links li.has-submenu {
            position: relative;
        }

        /* Style for submenu parent items */
        .nav-links li.has-submenu>a {
            pointer-events: none;
            color: #fff !important;
        }

        .nav-links li a {
            padding: 15px 30px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            color: white !important;
            transition: var(--transition);
        }

        .nav-links li a:hover {
            color: var(--primary-green) !important;
            font-weight: 600;
        }

        /* Mobile-Only Labels that toggle dropdowns */
        .mobile-label {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            background: rgba(0, 0, 0, 0);
            display: block;
        }

        /* Don't block clicks on submenu items */
        .submenu .mobile-label {
            display: none;
        }

        /* Only apply label overlay to has-submenu items, not to submenu */
        .has-submenu>.mobile-label {
            height: 50px;
            z-index: 10;
        }

        /* Make dropdown links not clickable on mobile, let label handle toggle */
        .dropdown>a,
        .has-submenu>a {
            pointer-events: none;
        }

        /* Ensure labels are clickable */
        .mobile-label {
            pointer-events: auto;
        }

        /* Allow clicks on submenu items - OVERRIDE parent restrictions */
        .submenu li {
            pointer-events: auto !important;
            position: relative;
            z-index: 5;
        }

        .submenu li a {
            pointer-events: auto !important;
            display: block;
            cursor: pointer;
        }

        /* Ensure dropdown menu items are clickable on mobile */
        .dropdown-menu li:not(.has-submenu) a {
            pointer-events: auto !important;
            color: #fff !important;
        }

        /* Style for dropdown items without submenus */
        .dropdown-menu li:not(.has-submenu) a:hover {
            background-color: rgba(0, 109, 90, 0.2);
            color: var(--accent-yellow) !important;
        }

        /* Menus hidden by default */
        .dropdown-menu,
        .submenu {
            position: static !important;
            width: 100% !important;
            display: none !important;
            box-shadow: none !important;
            padding-left: 15px;
            background: var(--dark-blue);
            opacity: 1 !important;
            visibility: hidden !important;
            transform: none !important;
            top: auto !important;
            left: auto !important;
        }

        /* Dropdown menu items (parent category items) */
        .dropdown-menu li.has-submenu a {
            color: #fff !important;
            padding: 15px 30px;
        }

        .dropdown-menu li.has-submenu a:hover {
            background-color: rgba(0, 109, 90, 0.2);
            color: var(--accent-yellow) !important;
        }

        /* Sub-menu specific color for depth */
        .submenu {
            background: var(--primary-blue) !important;
            padding-left: 20px;
        }

        .submenu li {
            width: 100%;
        }

        .submenu li a {
            display: block;
            padding: 12px 15px;
            color: var(--white) !important;
            font-weight: 500;
            transition: var(--transition);
            pointer-events: auto !important;
            cursor: pointer !important;
            text-decoration: none;
        }

        .submenu li a:hover {
            background-color: rgba(0, 109, 90, 0.1);
            font-weight: 600;
        }

        /* Toggle visibility via checkbox */
        .mobile-toggle-input:checked~.dropdown-menu,
        .mobile-toggle-input:checked~.submenu {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* Submenu nested within dropdown-menu */
        .has-submenu input[type="checkbox"]:checked~.submenu {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .dropdown-menu li a,
        .submenu li a {
            pointer-events: auto !important;
        }

        .dropdown-menu li:not(.has-submenu) a {
            pointer-events: auto !important;
            cursor: pointer !important;
        }

        .mobile-toggle-input:checked+a i,
        .mobile-toggle-input:checked+label+a i {
            transform: rotate(180deg);
        }
    }

    @media (max-width: 768px) {
        .nav-toggle {
            display: block;
        }
    }

    .testimonials-grid,
    .blogs-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-iframe {
        height: 1500px;
    }

    .footer-socials {
        justify-content: center;
    }

    .info-block {
        text-align: center;
    }

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

    .section-heading {
        font-size: 26px;
    }
}

/* Small Phones (480px) */
@media (max-width: 480px) {
    .map-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .plan-card,
    .diff-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-title-info h1 {
        font-size: 32px;
    }

    .plans-static-grid {
        grid-template-columns: 1fr;
    }
}

/* Terms Page Styling */
.terms-hero {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 50px;
}

.terms-hero h1 {
    font-size: 48px;
    font-family: 'Outfit', serif;
    margin-bottom: 15px;
    font-weight: 500;
}

.terms-hero p {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero strong {
    font-weight: 800;
    letter-spacing: 1px;
}

.terms-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.terms-content h3 {
    margin-top: 30px;
    color: var(--primary-blue);
}

/* ==== Terms, Privacy & Legal Pages Styling =====*/

/* Legal Page Hero Section */
.legal-page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 60px 30px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 30px;
}

.legal-page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.legal-page-hero p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.legal-page-hero .subtitle-text {
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 1px;
    color: var(--light-blue);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px 20px 30px;
    background-color: #ffffff;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-content {
    background-color: #ffffff;
    padding: 0;
    border-radius: 0;
    line-height: 1.8;
}

.legal-content>p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    text-align: justify;
}

.legal-section {
    margin-bottom: 12px;
    padding: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    margin-top: 0;
}

.legal-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 8px 0;
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin: 10px 0;
    padding-left: 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 6px;
}

.legal-section strong {
    color: #333;
    font-weight: 700;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-page-hero {
        padding: 50px 20px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        margin-bottom: 20px;
    }

    .legal-page-hero h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .legal-page-hero p {
        font-size: 14px;
    }

    .content-wrapper {
        padding: 30px 20px 40px 20px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .legal-section h2 {
        font-size: 17px;
    }

    .legal-section p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .legal-page-hero {
        padding: 40px 15px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .legal-page-hero h1 {
        font-size: 24px;
    }

    .legal-page-hero p {
        font-size: 13px;
    }

    .content-wrapper {
        padding: 30px 15px 50px 15px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .legal-section h2 {
        font-size: 15px;
    }

    .legal-section p,
    .legal-section ul,
    .legal-section ol {
        font-size: 12px;
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: #fafafa;
    padding: 40px 0 80px 0;
}

.contact-section .section-heading {
    margin-bottom: 60px;
}

.contact-container {
    max-width: 1300px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 15px;
    padding: 35px 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: var(--light-blue);
}

.contact-info-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--light-blue);
}

.contact-info-text p {
    font-size: 13px;
    opacity: 0.95;
    line-height: 1.5;
    color: white;
}

.contact-form-box {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: var(--transition);
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
}

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

.contact-submit-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
    margin-top: 5px;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-content {
        gap: 40px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px 25px;
    }
}

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-box {
        padding: 30px 20px;
        gap: 20px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

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

    .contact-info-item {
        gap: 15px;
    }

    .contact-submit-btn {
        width: 100%;
        align-self: center;
    }
}


/* =========================
   TEAM SECTION
========================= */

.team-section{
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

.team-slider-viewport{
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.team-slider-wrapper{
    display: flex;
    gap: 25px;

    align-items: stretch;

    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;

    padding-bottom: 10px;
}

.team-slider-wrapper.centered{
    justify-content: center;
}

.team-slider-wrapper::-webkit-scrollbar{
    display: none;
}

/* =========================
   TEAM CARD
========================= */

.team-card{
    width: calc((100% - 75px) / 4);
    min-width: calc((100% - 75px) / 4);

    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    flex-shrink: 0;

    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
}

.team-card:hover{
    transform: translateY(-8px);
}

.team-card img{
    width: 100%;
    height: 240px;

    object-fit: contain;
    object-position: top;

    display: block;

    transition: 0.4s ease;
}

.team-card:hover img{
    transform: scale(1.05);
}

.team-card-content{
    padding: 21px;
    text-align: center;
    flex-grow: 1;
}

.team-card-content h5{
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.team-designation{
    display: inline-block;
    font-size: 15px;
    color: #777;
    margin-bottom: 14px;
}

.team-card-content p{
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    text-align: justify;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px){

    .team-card{
        width: calc((100% - 25px) / 2);
        min-width: calc((100% - 25px) / 2);
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px){


    .team-section{
        padding: 70px 0;
    }

    .team-slider-wrapper{
        gap: 15px;
    }

    .team-card{
        width: 100%;
        min-width: 100%;
    }

    .team-card img{
        height: 240px;
    }

    .team-card-content{
        padding: 20px;
    }

    .team-card-content h5{
        font-size: 20px;
    }

}
/* =========================
   LIMIT DESCRIPTION
========================= */

.team-short-description{

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

    overflow: hidden;

    line-height: 1.7;
    min-height: calc(1.7em * 5);

    margin-bottom: 18px;
}


/* Make cards equal height */

.team-card-content{
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.team-short-description{
    flex-grow:1;
}


/* =========================
   KNOW MORE BUTTON
========================= */

.know-more-btn{

    border:none;
    background:none;

    color:#0d6efd;

    font-weight:600;

    cursor:pointer;

    padding:0;

    transition:.3s;
}

.know-more-btn:hover{
    color:#084298;
}


/* =========================
   MODAL
========================= */

.team-modal{

    position:fixed;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.6);

    display:none;

    align-items:center;
    justify-content:center;

    z-index:9999;

    padding:20px;
}


.team-modal.show{
    display:flex;
}


.team-modal-content{

    background:#fff;

    width:100%;
    max-width:700px;

    border-radius:20px;

    padding:35px;

    position:relative;

    max-height:90vh;

    overflow-y:auto;

    animation:popup .3s ease;
}


@keyframes popup{

    from{
        transform:scale(.9);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}


.team-modal-close{

    position:absolute;

    right:20px;
    top:15px;

    font-size:32px;

    cursor:pointer;

    color:#666;
}


.team-modal img{

    width:180px;
    height:180px;

    border-radius:50%;

    object-fit:cover;

    display:block;

    margin:0 auto 20px;
}


.team-modal h3{

    text-align:center;

    font-size:28px;

    margin-bottom:5px;
}


.team-modal span{

    display:block;

    text-align:center;

    color:#666;

    margin-bottom:25px;

    font-size:17px;
}


.team-modal #modalDescription{

    line-height:1.8;

    color:#555;

    white-space:pre-line;
    text-align: justify;
}


/* Mobile */

@media(max-width:576px){

.team-modal-content{

    padding:25px;
}

.team-modal img{

    width:140px;
    height:140px;
}

.team-modal h3{

    font-size:24px;
}

}


/* About Company Section */

.about-company-section{

    padding:20px 0;

    background:#fff;

}

.section-tag{

    display:inline-block;

    background:#eef4fb;

    color:#1E3A5F;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:15px;

}

.about-company-section h2{

    font-size:40px;

    font-weight:700;

    margin-bottom:20px;

}

.about-content{

    color:#1e1e1e;

    line-height:1.9;

    font-size:16px;

}

.about-company-section img{

    border-radius:20px;

}

@media(max-width:992px){

.about-company-section{

padding:70px 0;

}

.about-company-section h2{

font-size:32px;

}

}
/* end About Company Section */



/*==============================
        GALLERY
==============================*/

.gallery-section{
    padding:30px 0;
    background:#f8fafc;
    overflow:hidden;
}

.gallery-slider{
    width:90%;
    margin:45px auto 0;
    overflow:hidden;
    border-radius:18px;
}

.section-subtext{
    font-size:15px;
    color:#555;
    line-height:1.7;
    max-width:1000px;
    margin:0 auto;
    text-align:center;
}

/*==============================
    AUTO SCROLL
==============================*/

.gallery-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:galleryScroll 59s linear infinite;

}

.gallery-slider:hover .gallery-track{

    animation-play-state:paused;

}

/*==============================
    STATIC GRID
==============================*/

.gallery-grid{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

}

/*==============================
    CARD
==============================*/

.gallery-card{

    width:320px;

    height:230px;

    border-radius:18px;

    overflow:hidden;

    position:relative;

    flex-shrink:0;

    background:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}

.gallery-card img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.35s ease;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:16px 18px;

    color:#fff;

    font-weight:600;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.05)
    );

}

/*==============================
    ANIMATION
==============================*/

@keyframes galleryScroll{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}

/*==============================
    TABLET
==============================*/

@media (max-width:992px){

    .gallery-section{

        padding:80px 0;

    }

    .gallery-slider{

        width:95%;

    }

    .gallery-grid{

        gap:20px;

    }

    .gallery-track{

        gap:20px;

    }

    .gallery-card{

        width:280px;

        height:200px;

    }

}

/*==============================
    MOBILE
==============================*/

@media (max-width:576px){

    .gallery-section{

        padding:70px 0;

    }

    .gallery-slider{

        width:100%;

        padding:0 15px;

    }

    .gallery-grid{

        gap:15px;

    }

    .gallery-track{

        gap:15px;

    }

    .gallery-card{

        width:240px;

        height:170px;

    }

}



/* ===============================
   Reference Links
================================= */

.reference-wrapper{
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    overflow:hidden;
}

.reference-row{
    padding:24px 32px;
    border-bottom:1px solid #ececec;
}

.reference-row:last-child{
    border-bottom:none;
}

/* Title + Link in one line */
.reference-header{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.reference-title{
    font-size:20px;
    font-weight:700;
    color:var(--heading-color);
    white-space:nowrap;
}

.reference-title::after{
    content:" -";
    margin-left:4px;
}

.reference-link{
    color:blue;
    text-decoration:underline;
    word-break:break-all;
}

.reference-link:hover{
    color:var(--button-hover-color);
}

.reference-description{
    margin:10px 0 0;
    color:#666;
    line-height:1.7;
}

/* Mobile */
@media (max-width:768px){

    .reference-row{
        padding:20px;
    }

    .reference-header{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }

    .reference-title::after{
        content:"";
    }

    .reference-title{
        font-size:18px;
    }
}
/*  */

/* .about-content > ul{
    text-align: center;
} */


.about-content ul {
    display: table;
    margin: 0 auto;
    text-align: left;
    /* transform: translateX(-120px); */
}

.about-content li {
    margin-bottom: 10px;
}



/* ====================================
   Office Locations
==================================== */

.location-card{
    display:flex;
    gap:35px;
    align-items:flex-start;
    background:#fff;
    border-radius:16px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.location-info{
    flex:1;
}

.location-subtitle{
    max-width: 80% !important;
    margin-left: 10% !important;
}

.location-info h3{
    font-size:26px;
    margin-bottom:15px;
    color:var(--heading-color);
}

.location-info p{
    margin-bottom:12px;
    color:#555;
    line-height:1.8;
}

.location-map{
    flex:1;
}

.location-map iframe{
    width:100%;
    height:320px;
    border:0;
    border-radius:12px;
}

@media(max-width:768px){

    .location-card{
        flex-direction:column;
        padding:20px;
    }

    .location-map iframe{
        height:280px;
    }

}
/* end location */