/* ===== IMPORT DM SANS FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #e9e5e5;
    color: #1e293b;
    line-height: 1.45;
    position: relative;
}

/* decorative side panels - hidden on mobile to avoid right gap */
body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    width: 80px;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 12px);
    pointer-events: none;
    z-index: 0;
}
body::before { left: 0; }
body::after { right: 0; }
@media (max-width: 700px) {
    body::before, body::after {
        display: none; /* completely hide on mobile to prevent right gap */
    }
}

.main-content { position: relative; z-index: 1; }

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid #eef2f6;
}
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #1e3a5f;
    background: none;
    border: none;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon img {
    width: 100px;
    height: 90px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    gap: 1.8rem;
}
.nav-links a {
    text-decoration: none;
    color: #4a6a85;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: #1e3a5f; }

/* mobile menu */
@media (max-width: 700px) {
    .navbar { padding: 0.8rem 1.5rem; }
    .hamburger { display: block; z-index: 1001; }
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: 4px 0 24px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        border-right: 1px solid #eef2f6;
    }
    .nav-links.open { left: 0; }
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 999;
        display: none;
    }
    .menu-overlay.active { display: block; }
}

/* Hero section */
.hero {
    position: relative;
    width: 100%;
    height: 420px; /* Desktop height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay - Makes logo & text POP */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* 35% darkness, adjust as needed */
    z-index: 1;
}

/* Content Wrapper (Logo + Text) */
.hero-content {
    position: relative;
    z-index: 2; /* Sits above the overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    max-width: 90%;
}

/* ----- LOGO (Fully Visible & Properly Scaled) ----- */
.hero-logo {
    /* Makes sure the ENTIRE logo image is visible without cropping */
    width: auto;
    height: auto;
    max-width: 280px;    /* Max size on desktop */
    max-height: 200px;   /* Prevents it from overflowing */
    object-fit: contain; /* Ensures the full logo fits inside */
    display: block;
    margin: 0 auto;
    
    /* Soft shadow for extra pop */
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
    margin-bottom: 0.75rem; /* Space between logo and text */
}


/* ============================================= */
/* RESPONSIVE - Mobile & Tablet */
/* ============================================= */
@media (max-width: 768px) {
    .hero {
        height: 350px; /* Slightly shorter on tablets */
    }
    .hero-logo {
        max-width: 350px;  /* Smaller logo */
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 280px; /* Shorter on mobile phones */
    }
    .hero-logo {
        max-width: 200px;  /* Nice size for mobile */
        max-height: 180px;
    }
}
/* booking container */
.booking-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}
.form-heading {
    text-align: center;
    margin-bottom: 1.8rem;
}
.form-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f2b3d;
}
.form-heading p {
    color: #5b6e8c;
    font-size: 0.9rem;
}

/* ===== FORM CARD – BACKGROUND FULLY REMOVED ===== */
.booking-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
}
.form-inner { padding: 2rem 0.5rem; }
.page-marker {
    font-size: 0.7rem;
    color: #7a5c3a;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    display: inline-block;
}

/* field groups with step number above icon */
.field-group, .time-slot-block {
    margin-bottom: 2rem;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.field-step {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}
.field-step-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}
.step-number {
    position: absolute;
    top: 8px;
    left: 8px;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.field-content {
    flex: 1;
    min-width: 200px;
}
.field-header, .slot-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.question-text {
    font-weight: 700;
    font-size: 1rem;
    color: #0f2b3d;
}
.required-star, .inline-asterisk {
    color: #e03a3a;
}
.hint-text {
    font-size: 0.75rem;
    color: #5b6e8c;
    margin-bottom: 10px;
    display: block;
}

/* inputs – background images preserved via inline style */
input, select {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 30px;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1.5px solid #cad2db;
    border-radius: 20px;
    transition: 0.2s;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    outline: none;
}
input:focus, select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

/* time slot block – no background/border */
.time-slot-block {
    background: transparent !important;
    border: none !important;
    padding: 0;
    margin-bottom: 2rem;
}
.timing-options {
    margin-top: 0.8rem;
    padding: 1rem;
    background: rgba(254, 250, 245, 0.9);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 24px;
    border: 1px solid #ffe8d6;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}
.timing-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}
.timing-option.selected {
    border-color: #f0a500;
    background: #fff8ef;
}
.timing-option input {
    width: 18px;
    height: 18px;
    accent-color: #f0a500;
    margin: 0;
}
.timing-option label {
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

/* payable section – background removed */
.payable-section {
    background: transparent !important;
    border: none !important;
    padding: 1rem 0;
    margin: 1.5rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
}
.payable-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000;
}
.payable-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #222528;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    padding: 0.2rem 1.4rem;
    border-radius: 60px;
    border: 0.5px solid rgba(0,0,0,0.05);
}

/* terms & button */
.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0 1.2rem;
}
.terms-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: #1e3a5f;
    margin: 0;
}
.terms-checkbox label {
    font-size: 0.85rem;
    color:  rgb(11, 11, 11);
    font-weight: 500;
}
.terms-checkbox a {
    color: #1e3a5f;
    text-decoration: underline;
}
.btn-submit {
    width: 100%;
    background:  rgb(11, 11, 11);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.btn-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
    box-shadow: 0 12px 22px rgba(0,0,0,0.18);
}

/* alert */
.alert {
    padding: 0.9rem 1rem;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    background: #fef9e3;
    color: #b45309;
    border-left: 5px solid #f0a500;
    display: none;
}
.alert.show { display: block; }
.alert-success {
    background: #e0f2e9;
    color: #1e6f3f;
    border-left-color: #2b9e5c;
}

/* footer */
.footer {
    background: #000000;
    border-top: 1px solid #222;
    padding: 2rem 1rem;
    margin-top: 3rem;
    width: 100%;
    overflow-x: hidden;
}
.footer-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #cccccc;
}
.footer-links a:hover { color: #ffffff; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}
.footer-logo span {
    color: #f0f0f0;
    font-weight: 500;
}
.copyright {
    font-size: 0.7rem;
    color: #aaaaaa;
    text-align: center;
    margin-top: 1.5rem;
}

/* mobile adjustments - fixed right gap */
@media (max-width: 680px) {
    body {
        overflow-x: hidden;
    }
    .form-inner { padding: 1.2rem 0.2rem; }
    .payable-amount { font-size: 1.5rem; padding: 0.2rem 1rem; }
    .field-group, .time-slot-block { flex-direction: column; gap: 8px; }
    .field-step { margin-bottom: 4px; }
    .timing-options {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    .timing-option { width: 100%; }
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.7rem;
        grid-column: 1 / 2;
    }
    .footer-logo {
        grid-column: 2 / 3;
        justify-self: end;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 40px;
    }
    .footer-logo span { display: none; }
    .copyright { grid-column: 1 / -1; text-align: center; margin-top: 1rem; }
    .hint-text { margin-left: 0; }
    
    /* Ensure no overflow from any container */
    .booking-container, .main-content, .footer {
        overflow-x: hidden;
    }
    .field-content {
        min-width: 0;
        width: 100%;
    }
}

/* Modal styles for Privacy Policy & Terms */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.modal-overlay.show {
    display: flex !important;
    opacity: 1;
}
.modal-container {
    background: white;
    border-radius: 28px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.2s ease;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eef2f6;
}
.modal-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f2b3d;
    margin: 0;
}
.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #5b6e8c;
    transition: 0.2s;
    line-height: 1;
    padding: 0 8px;
}
.modal-close:hover {
    color: #1e3a5f;
}
.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1e293b;
}
.modal-body h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1e3a5f;
}
.modal-body p {
    margin-bottom: 0.8rem;
}
.modal-body ul {
    margin: 0.5rem 0 1rem 1.5rem;
}
.modal-body li {
    margin-bottom: 0.3rem;
}
@media (max-width: 680px) {
    .modal-container {
        width: 95%;
        max-height: 85vh;
    }
    .modal-header {
        padding: 1rem;
    }
    .modal-body {
        padding: 1rem;
    }
}


/* ============================================================
   HERO – right‑aligned, bottom, bold white span
============================================================ */
.hero-home {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}
.hero-home img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: heroZoom 20s infinite alternate ease-in-out;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 4rem 0 4rem 1rem;
    text-align: left;
    color: white;
    animation: heroFadeUp 1.2s ease 0.3s both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hero-highlight {
    color: #ffce00;
    font-weight: 900;      /* bold only – no extra color */
    display: inline-block;
}
.hero-content p {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 500px;
    
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

}

.btn-primary {
    display: inline-block;
    background: #ffce00;
    color: #0a1628;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #ffce00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 2px solid white;
    cursor: pointer;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 680px) {
    .hero-home {
        height: 80vh;
        min-height: 400px;
        align-items: flex-end;
        justify-content: center;
    }
    .hero-content {
        padding: 0 1.5rem 2rem 1.5rem;
        text-align: right;
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
        margin-left: auto;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================================
   SERVICES – Big, bold, popper alignment
   Heading left, description right – BOTH at the bottom
============================================================ */
.services {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    text-align: center;
    color: #5b6e8c;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.service-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 400px; /* taller */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* PUSHES EVERYTHING TO THE BOTTOM */
    padding: 2.5rem 2rem;
}

/* Light overlay – image stays visible */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.4s ease;
}
.service-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
}

/* Content wrapper – heading (left) + description (right) */
.service-card .card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-end;    /* BOTTOM-ALIGNED */
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Heading – LEFT, bold, prominent */
.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
    flex: 0 0 auto;
    text-align: left;
    line-height: 1.2;
    max-width: 45%;
    word-break: break-word;
}

/* Description – RIGHT, also at bottom */
.service-card p {
    font-size: 1rem;
    line-height: 17px;
    opacity: 0.95;
    margin: 0;
    padding: 0;
    color: rgb(255, 255, 255);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
    text-align: center;
    flex: 1 1 auto;
    align-self: flex-end;    /* KEEPS IT AT THE BOTTOM */
    max-width: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

/* Tablet */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .service-card {
        height: 340px;
        padding: 2rem 1.5rem;
    }
    .service-card .card-content {
        gap: 1rem;
    }
    .service-card h3 {
        font-size: 1.4rem;
        max-width: 40%;
    }
    .service-card p {
        font-size: 0.85rem;
        max-width: 60%;
    }
}

/* Mobile – stack vertically */
@media (max-width: 600px) {
    .services {
        padding: 2.5rem 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-card {
        height: 280px;
        padding: 1.5rem 1.2rem;
    }
    .service-card .card-content {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
    .service-card h3 {
        font-size: 1.4rem;
        text-align: center;
        max-width: 100%;
    }
    .service-card p {
        font-size: 0.85rem;
        text-align: center;
        max-width: 100%;
        align-self: center;
    }
    .service-card::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 70%, transparent 100%);
    }
}

/* ============================================================
   TESTIMONIALS CAROUSEL
============================================================ */
.testimonials {
    padding: 4rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}
.testimonials-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 240px;
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonial-card .avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.8rem;
    border: 3px solid #1e3a5f;
}
.testimonial-card blockquote {
    font-style: italic;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    flex: 1;
}
.testimonial-card .author {
    font-weight: 600;
    color: #1e3a5f;
}
.testimonial-card .role {
    font-size: 0.8rem;
    color: #5b6e8c;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}
.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cad2db;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.testimonial-dots .dot.active {
    background: #1e3a5f;
    transform: scale(1.2);
}

@media (max-width: 700px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 0.5rem);
    }
}
@media (min-width: 701px) and (max-width: 1000px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* ============================================================
   PARTNERS INFINITE SCROLL
   Works with any number of partner logos – just duplicate them
   in the HTML to create a seamless loop.
============================================================ */
.partners {
    padding: 4rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.partners-track-wrapper {
    overflow: hidden;
    /* Soft fade edges – remove if you want full visibility */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 3rem;               /* space between partner items */
    animation: scrollPartners 25s linear infinite;
    width: max-content;      /* ensures the track is as wide as its content */
}

/* Pause on hover */
.partners-track:hover {
    animation-play-state: paused;
}

/* Each partner card */
.partner-item {
    flex: 0 0 160px;         /* fixed width – adjust as needed */
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
    padding: 1rem;
    transition: 0.2s;
}

.partner-item:hover {
    border-color: #b0c4de;
    transform: scale(1.05);
}

.partner-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.8;
    transition: 0.2s;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Infinite scroll keyframes – 
   requires the track to contain at least TWO copies 
   of your partner list to loop seamlessly. */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile adjustments */
@media (max-width: 680px) {
    .partner-item {
        flex: 0 0 120px;     /* smaller on mobile */
        height: 80px;
    }
    .partners-track {
        gap: 1.5rem;         /* reduced gap for small screens */
    }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
    background: white;
    padding: 4rem 1.5rem;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}
.about-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
.about-text {
    flex: 1 1 300px;
}
.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 1rem;
}
.about-text p {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.about-text .highlight {
    color: #1e3a5f;
    font-weight: 600;
}
.about-text a {
    color: #1e3a5f;
    font-weight: 600;
    text-decoration: none;
}
.about-text a:hover {
    text-decoration: underline;
}
.about-image {
    flex: 1 1 300px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (max-width: 680px) {
    .about {
        padding: 2.5rem 1rem;
    }
    .about-text h2 {
        font-size: 1.6rem;
    }
    .about-image img {
        height: 200px;
    }
}

/* ============================================================
   CTA SECTION – logo colours: deep blue + gold accent
============================================================ */
.cta-section {
    padding: 4rem 1.5rem;
    text-align: center;
    background: #dd0000;
    color: white;
}
.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.btn-cta {
    display: inline-block;
    background: white;
    color: #000;
    padding: 0.9rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    background: #f0f4ff;
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2.5rem 1rem;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
