    :root {
        --primary: #1c63ba;
        --secondary: #1dadbc;
        --accent: #b62015;
        --light-accent: #A52A2A;
        --white: #FFFFFF;
        --light-gray: #F5F5F5;
        --dark-gray: #333333;
    }

    :root {
        --navy: #1c63ba;
        --blue: #1dadbc;
        --maroon: #8C1C13;
        --light-maroon: #A52A2A;
        --white: #FFFFFF;
        --light-gray: #F5F5F5;
        --dark-gray: #333333;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', sans-serif;
    }

    body {
        overflow-x: hidden;
        background-color: var(--white);
        color: var(--dark-gray);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    header {
        background-color: rgba(255, 255, 255, 0.95);
        position: fixed;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--blue);
    }

    .logo span {
        color: var(--maroon);
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--dark-gray);
        font-weight: 600;
        font-size: 16px;
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--maroon);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: var(--maroon);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .mobile-menu {
        display: none;
        cursor: pointer;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: var(--dark-gray);
        margin: 5px 0;
        transition: 0.4s;
    }

    /* =========================
    HERO SECTION UPDATED
    ========================= */

    .hero {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        color: var(--white);
        overflow: hidden;
    }
    /* Background Image */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('1.jpeg') no-repeat center center/cover;
        z-index: 1;
    }

    /* LAYERED OVERLAY — left-heavy gradient for text legibility */
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;

        background:
            /* Left panel: strong dark for text contrast */
            linear-gradient(
                to right,
                rgba(0, 0, 0, 0.78) 0%,
                rgba(0, 0, 0, 0.72) 30%,
                rgba(0, 0, 0, 0.50) 55%,
                rgba(0, 0, 0, 0.20) 75%,
                rgba(0, 0, 0, 0.05) 100%
            ),
            /* Subtle vertical darkening at top and bottom edges */
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0.00) 30%,
                rgba(0, 0, 0, 0.00) 70%,
                rgba(0, 0, 0, 0.25) 100%
            );

        z-index: 2;
    }

    /* Container */
    .hero .container {
        position: relative;
        z-index: 3;

        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;

        padding-left: 10px;
    }

    /* Content */
    .hero-content {
        position: relative;
        z-index: 5;

        max-width: 560px;

        margin-left: -80px;
        margin-top: -10px;
    }

    /* Heading */
    .hero h1 {
        font-size: 50px;
        line-height: 1.08;
        font-weight: 800;

        margin-bottom: 22px;

        color: #fff;

        letter-spacing: -1px;

        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 4px 16px rgba(0, 0, 0, 0.6),
            0 8px 32px rgba(0, 0, 0, 0.4);
    }

    /* Paragraph */
    .hero p {
        font-size: 18px;
        line-height: 1.7;

        max-width: 480px;

        margin-bottom: 30px;

        color: rgba(255, 255, 255, 0.95);

        text-shadow:
            0 1px 3px rgba(0, 0, 0, 0.9),
            0 2px 8px rgba(0, 0, 0, 0.7);
    }

    /* Button */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        background: linear-gradient(
            135deg,
            var(--maroon),
            var(--light-maroon)
        );

        color: #fff;

        padding: 14px 34px;

        border-radius: 50px;

        text-decoration: none;

        font-size: 15px;
        font-weight: 700;

        transition: all 0.3s ease;

        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    }

    .btn:hover {
        transform: translateY(-4px);

        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
    }
    /* =========================
    RESPONSIVE
    ========================= */

    @media (max-width: 992px) {

        .hero-content {
            margin-left: 0;
            max-width: 100%;
        }

        .hero h1 {
            font-size: 42px;
        }

        .hero p {
            font-size: 17px;
        }
    }

    @media (max-width: 768px) {

        .hero {
            min-height: 100vh;
            height: auto;
            padding: 120px 0 80px;
        }

        .hero .container {
            justify-content: center;
            padding: 0 20px;
        }

        .hero-content {
            text-align: center;

            margin-left: 0;
            margin-top: 0;

            padding: 32px 24px;
        }

        .hero h1 {
            font-size: 36px;
            line-height: 1.15;
        }

        .hero p {
            font-size: 16px;

            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            width: 100%;
            max-width: 260px;
        }
    }

    @media (max-width: 480px) {

        .hero h1 {
            font-size: 30px;
        }

        .hero p {
            font-size: 15px;
        }

        .hero-content {
            padding: 28px 20px;
        }
    }

    /* Section Styles */
    section {
        padding: 80px 0;
    }

    section:nth-child(odd) {
        background-color: var(--light-gray);
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

    .section-title h2 {
        font-size: 36px;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background-color: var(--accent);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* About Section */
    .about-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

    .about-text {
        flex: 1;
    }

    .about-text h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: var(--blue);
    }

    .about-text p {
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 16px;
    }

    .credentials {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    .credential-item {
        background-color: var(--white);
        padding: 15px 25px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .credential-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .timeline {
        flex: 1;
        position: relative;
    }

    .timeline-item {
        background-color: var(--white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        position: relative;
        transition: all 0.3s ease;
    }

    .timeline-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Expertise Section */
    .expertise-cards {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        margin-top: 50px;
    }

    .expertise-card {
        flex: 1;
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .expertise-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .expertise-card-img {
        height: 200px;
        background-color: var(--primary);
        position: relative;
        overflow: hidden;
    }

    .expertise-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .expertise-card:hover .expertise-card-img img {
        transform: scale(1.1);
    }

    .expertise-card-content {
        padding: 25px;
    }

    .expertise-card-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: var(--primary);
    }

    .expertise-card-content p {
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .expertise-stat {
        display: flex;
        align-items: center;
        margin-top: 15px;
    }

    .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: var(--blue);
        margin-right: 15px;
    }

    .stat-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .read-more {
        display: inline-block;
        color: var(--blue);
        font-weight: 600;
        margin-top: 15px;
        text-decoration: none;
        position: relative;
    }

    .read-more::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -3px;
        left: 0;
        background-color: var(--accent);
        transition: width 0.3s ease;
    }

    .read-more:hover::after {
        width: 100%;
    }


    /* Recognition Section */

    #recognition {
        padding: 100px 0;
        background-color: var(--light-gray);
        position: relative;
        overflow: hidden;
    }


    .recognition-content {
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .recognition-text {
        flex: 1;
        opacity: 0;
        transform: translateY(30px);
    }

    .recognition-text h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: var(--navy);
    }

    .recognition-text p {
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .awards-list {
        margin-top: 30px;
    }

    .award-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        background-color: var(--white);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .award-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .award-icon {
        width: 50px;
        height: 50px;
        background-color: var(--blue);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--white);
        font-size: 20px;
        margin-right: 20px;
    }

    .award-content h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: var(--navy);
    }

    .award-content p {
        font-size: 14px;
        color: var(--dark-gray);
    }


    /* Home Healthcare Services Section */
    #homecare {
        background-color: #f9f9f9;
        padding: 80px 0;
    }

    .homecare-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .homecare-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .homecare-intro h3 {
        color: #1a5276;
        margin-bottom: 15px;
        font-size: 28px;
    }

    .homecare-intro p {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
    }

    .homecare-services {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .service-column {
        flex: 1;
        min-width: 280px;
        background-color: #fff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .service-column h4 {
        color: var(--blue);
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #3498db;
    }

    .service-column ul {
        list-style-type: none;
        padding: 0;
    }

    .service-column ul li {
        padding: 8px 0;
        position: relative;
        padding-left: 25px;
        color: #444;
    }

    .service-column ul li:before {
        content: "✓";
        color: var(--blue);
        position: absolute;
        left: 0;
        top: 8px;
    }

    .homecare-process {
        margin-top: 20px;
    }

    .homecare-process h4 {
        text-align: center;
        color: #1a5276;
        font-size: 24px;
        margin-bottom: 25px;
    }

    .process-steps {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
    }

    .process-step {
        flex: 1;
        min-width: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #3498db;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .step-info {
        font-size: 15px;
        font-weight: 500;
        color: #333;
    }

    @media (max-width: 768px) {
        .homecare-services {
            flex-direction: column;
        }

        .process-steps {
            flex-direction: column;
            align-items: center;
        }

        .process-step {
            width: 100%;
            margin-bottom: 15px;
        }
    }

    /* Testimonials */
    .testimonials-slider {
        margin-top: 50px;
        position: relative;
        overflow: hidden;
    }

    .testimonial-card {
        background-color: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin: 10px;
    }

    .testimonial-content {
        position: relative;
        padding-left: 30px;
        margin-bottom: 20px;
    }

    .testimonial-content::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -20px;
        font-size: 60px;
        color: var(--accent);
        opacity: 0.5;
    }

    .testimonial-content p {
        font-style: italic;
        line-height: 1.6;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
    }

    .author-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
    }

    .author-info h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: var(--primary);
    }

    .author-info p {
        font-size: 14px;
        color: var(--dark-gray);
    }

    /* Appointment Section */
    #appointment {
        padding: 100px 0;
        background: linear-gradient(rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.9)), url('/api/placeholder/1920/1080') no-repeat center center/cover;
        color: var(--white);
    }

    .appointment-content {
        display: flex;
        justify-content: space-between;
        gap: 50px;
    }

    .appointment-text {
        flex: 1;
        opacity: 0;
        transform: translateY(30px);
    }

    .appointment-text h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .appointment-text p {
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .contact-info {
        margin-top: 30px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        background-color: var(--maroon);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
    }

    .appointment-form {
        flex: 1;
        background-color: var(--white);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        color: var(--dark-gray);
        opacity: 0;
        transform: translateY(30px);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(18, 104, 114, 0.2);
    }

    textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }

    /* Footer */
    footer {
        background-color: var(--navy);
        color: var(--white);
        padding: 60px 0 30px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .footer-column {
        flex: 1;
        padding: 0 20px;
    }

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--maroon);
        bottom: 0;
        left: 0;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--white);
    }

    .social-links {
        display: flex;
        margin-top: 20px;
    }

    .social-link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin-right: 10px;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background-color: var(--maroon);
        transform: translateY(-3px);
    }

    .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
    }

    /* AI Chatbot Styles */
    .ai-chatbot {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
        font-family: 'Montserrat', sans-serif;
    }



    .chat-icon {
        width: 60px;
        height: 60px;
        background-color: var(--accent);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        position: relative;
        box-shadow: 0 4px 10px rgba(140, 28, 19, 0.3);
        transition: all 0.3s ease;
        overflow: hidden;
    }


    /* Typing indicator styles */
    .typing-indicator .message-content {
        display: flex;
        align-items: center;
        height: 30px;
    }

    .typing-indicator .dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-right: 4px;
        background-color: #888;
        border-radius: 50%;
        animation: typing-animation 1.4s infinite ease-in-out both;
    }

    .typing-indicator .dot:nth-child(1) {
        animation-delay: -0.32s;
    }

    .typing-indicator .dot:nth-child(2) {
        animation-delay: -0.16s;
    }

    @keyframes typing-animation {

        0%,
        80%,
        100% {
            transform: scale(0.6);
            opacity: 0.6;
        }

        40% {
            transform: scale(1);
            opacity: 1;
        }
    }



    .chat-icon {
        position: relative;
    }


    .chat-icon:hover {
        transform: scale(1.05);
    }

    .doctor-icon {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .doctor-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 3px solid var(--accent);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    .chat-container {
        position: fixed;
        /* Changed from absolute to fixed for better positioning */
        bottom: 75px;
        right: 20px;
        width: 380px;
        max-width: 95vw;
        height: 550px;
        max-height: 80vh;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transform-origin: bottom right;
        transform: scale(0);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
        /* Added z-index to ensure it appears above other elements */
    }

    .chat-container.active {
        transform: scale(1);
        opacity: 1;
    }

    .chat-header {
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        color: white;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 10px 10px 0 0;
    }

    .chat-title {
        font-weight: 600;
        font-size: 16px;
    }

    .close-chat {
        font-size: 24px;
        cursor: pointer;
        line-height: 20px;
        transition: all 0.2s ease;
    }

    .close-chat:hover {
        transform: scale(1.2);
    }

    .chat-body {
        flex: 1;
        overflow-y: auto;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        background-color: #f9fafb;
        /* Added subtle background for better readability */
    }

    .chat-message {
        max-width: 80%;
        padding: 10px 15px;
        border-radius: 15px;
        margin-bottom: 5px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        /* Added subtle shadow */
    }

    .chat-message.user {
        background-color: #e6f7ff;
        align-self: flex-end;
        border-bottom-right-radius: 3px;
    }

    .chat-message.bot {
        background-color: #f0f2f5;
        align-self: flex-start;
        border-bottom-left-radius: 3px;
    }

    .message-content {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
        /* Prevents text overflow */
    }

    .suggestion-drawer {
        display: none;
        position: absolute;
        bottom: 70px;
        left: 15px;
        right: 15px;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        max-height: 200px;
        overflow-y: auto;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }

    .suggestion-drawer.active {
        display: block;
    }

    .suggestion-item {
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        font-size: 13px;
        transition: background-color 0.2s;
    }

    .suggestion-item:last-child {
        border-bottom: none;
    }

    .suggestion-item:hover {
        background-color: #f5f5f5;
    }

    .suggestion-item.no-match {
        color: #888;
        font-style: italic;
    }

    .chat-input {
        display: flex;
        padding: 10px 15px;
        border-top: 1px solid #eee;
        background-color: white;
        /* Added explicit background */
    }

    .chat-input input {
        flex: 1;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 30px;
        font-size: 14px;
        outline: none;
    }

    .chat-input input:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 2px rgba(var(--secondary-rgb), 0.1);
        /* Added focus ring */
    }

    .chat-input button {
        width: 40px;
        height: 40px;
        margin-left: 10px;
        background-color: var(--accent);
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.2s ease;
    }

    .chat-input button:hover {
        background-color: var(--light-accent);
        transform: scale(1.05);
    }

    /* Updated FAQ Section Styles */
    .chat-suggestions {
        padding: 10px;
        border-top: 1px solid #eee;
        background-color: #f9f9f9;
    }

    .suggestion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .suggestion-title {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark-gray);
    }

    .minimize-faqs {
        background: none;
        border: none;
        font-size: 16px;
        line-height: 1;
        cursor: pointer;
        color: var(--dark-gray);
        padding: 0 5px;
    }

    .faq-content {
        max-height: 90px;
        overflow-y: auto;
        /* Changed from hidden to auto to allow scrolling */
        transition: max-height 0.3s ease;
    }

    .faq-content.hidden {
        max-height: 0;
    }

    .faq-accordion {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        /* Increased gap for better spacing */
    }

    /* Make FAQ items into pills */
    .faq-item {
        margin-bottom: 0;
    }

    .faq-question {
        background-color: #e6f7ff;
        border-radius: 30px;
        padding: 5px 12px;
        cursor: pointer;
        font-size: 12px;
        transition: all 0.2s ease;
        white-space: nowrap;
        display: inline-block;
        border: 1px solid rgba(0, 0, 0, 0.05);
        /* Added subtle border */
    }

    .faq-question:hover {
        background-color: #d0e8ff;
    }

    .faq-question span {
        font-weight: 500;
    }

    /* View all FAQs link */
    .view-all-faqs {
        cursor: pointer;
        font-size: 12px;
        color: var(--secondary);
        padding: 5px 12px;
        transition: all 0.2s ease;
        text-decoration: underline;
    }

    .view-all-faqs:hover {
        color: var(--primary);
    }

    .faq-expanded-panel {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        z-index: 100;
        /* Ensure it's above other elements in the chat */
        display: none;
        flex-direction: column;
        overflow: hidden;
        animation: fadeIn 0.3s ease;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 10px;
        /* Match parent container's radius */
    }

    .faq-expanded-panel.active {
        display: flex;
    }

    .panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        color: white;
        border-radius: 10px 10px 0 0;
        /* Rounded top corners */
    }

    .panel-title {
        font-weight: 600;
        font-size: 16px;
    }

    .close-panel {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        transition: transform 0.2s ease;
        /* Added transition */
    }

    .close-panel:hover {
        transform: scale(1.1);
        /* Added hover effect */
    }

    .panel-content {
        padding: 15px;
        overflow-y: auto;
        flex: 1;
        word-wrap: break-word;
    }

    .panel-content .faq-item {
        margin-bottom: 12px;
        /* Increased spacing */
    }

    .panel-content .faq-question {
        display: block;
        width: 100%;
        background-color: #f0f2f5;
        border-radius: 8px;
        padding: 12px 15px;
        text-align: left;
        font-size: 14px;
        margin-bottom: 10px;
        word-break: normal;
        overflow-wrap: break-word;
        white-space: normal;
        /* Allow text wrapping */
        border: 1px solid rgba(0, 0, 0, 0.05);
        /* Added subtle border */
    }

    .panel-content .faq-question:hover {
        background-color: #e6f7ff;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Responsive Styles - Clean up and improve */
    @media screen and (max-width: 992px) {

        .expertise-cards,
        .blog-cards,
        .services-grid {
            flex-direction: column;
        }

        .about-content,
        .recognition-content,
        .appointment-content {
            flex-direction: column;
        }

        .process-step {
            flex: 0 0 calc(50% - 20px);
        }

        .hero h1 {
            font-size: 42px;
        }

        .hero-img {
            display: none;
        }

        .chat-container {
            right: 15px;
            bottom: 75px;
            max-height: calc(100vh - 100px);
            width: 350px;
            /* Slightly reduced width */
        }
    }

    @media screen and (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 80px;
            left: -100%;
            flex-direction: column;
            width: 100%;
            background-color: var(--white);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            transition: all 0.3s ease;
            z-index: 1001;
            /* Ensure above chat container */
        }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            margin: 15px 0;
            width: 100%;
            text-align: center;
        }

        .mobile-menu {
            display: block;
        }

        .mobile-menu.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu.active .bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .footer-content {
            flex-direction: column;
        }

        .footer-column {
            margin-bottom: 30px;
        }

        .process-step {
            flex: 0 0 100%;
        }

        .chat-container {
            width: 90%;
            max-width: 350px;
            right: 5%;
            left: auto;
            /* Ensure it aligns right */
        }
    }

    /* Updated mobile responsive styling */
    @media screen and (max-width: 480px) {
        .hero h1 {
            font-size: 32px;
        }

        .hero p {
            font-size: 18px;
        }

        .section-title h2 {
            font-size: 28px;
        }

        .about-text h3,
        .appointment-text h3 {
            font-size: 24px;
        }

        .expertise-card,
        .blog-card,
        .service-card {
            margin-bottom: 20px;
        }

        .appointment-form {
            padding: 25px;
        }

        /* Improved chat container for mobile */
        .chat-container {
            width: 100%;
            max-width: 100%;
            height: 85vh;
            bottom: 0;
            right: 0;
            border-radius: 10px 10px 0 0;
            max-height: 85vh;
        }


        .chat-body {
            padding: 12px;
        }

        /* Optimize input area */
        .chat-input {
            padding: 10px;
        }

        .chat-input input {
            padding: 8px 12px;
            font-size: 14px;
            /* Ensure readable text size */
        }

        .chat-input button {
            width: 36px;
            height: 36px;
        }

        /* Optimize FAQ section for mobile */
        .chat-suggestions {
            padding: 8px;
        }

        .suggestion-title {
            font-size: 12px;
        }

        .faq-question {
            padding: 4px 10px;
            font-size: 11px;
        }

        .panel-content .faq-question {
            padding: 10px 12px;
            font-size: 13px;
        }

        .panel-header {
            padding: 12px;
        }

        .panel-title {
            font-size: 15px;
        }

        /* Give more space to the chat body on mobile */
        .chat-body {
            flex: 1.2;
        }

        /* Make FAQ section more compact but still usable */
        .faq-content {
            max-height: 80px;
        }
    }

    /* Chat toggle button (missing in original) */
    .chat-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transition: all 0.3s ease;
    }

    .chat-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    .chat-toggle i {
        font-size: 24px;
    }


    /* Animation Keyframes */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate {
        animation: fadeIn 0.8s ease forwards;
    }

    /* Scroll Reveal Styles */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 1s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }



    /* Accessibility Styles */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background-color: var(--primary);
        color: var(--white);
        padding: 8px 15px;
        z-index: 1001;
        transition: top 0.3s ease;
    }

    .skip-link:focus {
        top: 0;
    }

    input:focus,
    button:focus,
    a:focus {
        outline: 3px solid var(--secondary);
        outline-offset: 2px;
    }

    /* Print Styles */
    @media print {

        header,
        footer,
        .ai-chatbot,
        #appointment {
            display: none;
        }

        body {
            font-size: 12pt;
            line-height: 1.5;
            color: #000;
            background-color: #fff;
        }

        .container {
            width: 100%;
            max-width: none;
            padding: 0;
            margin: 0;
        }

        a {
            color: #000;
            text-decoration: underline;
        }

        .section-title::after {
            display: none;
        }
    }

    /* ============================================
    VIDEO TESTIMONIALS SLIDER
    ============================================ */

    /* Wrapper below the text testimonials */
    .video-testimonials-wrap {
    margin-top: 70px;
    padding-top: 60px;
    border-top: 2px solid rgba(28, 99, 186, 0.12);
    }

    /* Sub-section header */
    .video-section-header {
    text-align: center;
    margin-bottom: 45px;
    }

    .video-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    }

    .video-section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    }

    .video-section-subtitle {
    font-size: 15px;
    color: #666;
    margin-top: 18px;
    line-height: 1.6;
    }

    /* Outer wrapper: arrows + viewport */
    .vt-slider-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    }

    /* Arrow buttons */
    .vt-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(28, 99, 186, 0.15);
    }

    .vt-arrow svg {
    width: 20px;
    height: 20px;
    }

    .vt-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(28, 99, 186, 0.3);
    }

    .vt-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    }

    /* Viewport: clips the track */
    .vt-slider-viewport {
    flex: 1;
    overflow: hidden;
    padding: 12px 6px 16px;
    /* top/bottom padding for card shadows + hover lift */
    }

    /* Track: holds all cards side by side */
    .vt-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    cursor: grab;
    user-select: none;
    }

    .vt-slider-track.is-dragging {
    cursor: grabbing;
    transition: none;
    }

    /* Individual video card */
    .vt-card {
    flex: 0 0 280px;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .vt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(28, 99, 186, 0.18);
    }

    /* Video container: fixed aspect ratio, crops any format */
    .vt-video-container {
    position: relative;
    width: 100%;
    /* 16:10 aspect ratio — works great for both portrait & landscape crops */
    padding-top: 125%;
    background: #0a1a3a;
    overflow: hidden;
    }

    /* The actual video element — fills & crops */
    .vt-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    }

    /* Dark overlay (shown when paused) */
    .vt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 58, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 2;
    }

    .vt-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    }

    /* Play / Pause button */
    .vt-play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    }

    .vt-play-btn svg {
    width: 26px;
    height: 26px;
    margin-left: 3px; /* optical centering for play triangle */
    }

    .vt-play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    }

    /* Pause icon state (shown when playing) */
    .vt-play-btn.is-playing svg path {
    d: path("M6 19h4V5H6v14zm8-14v14h4V5h-4z");
    }

    /* Progress bar at bottom of video */
    .vt-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    z-index: 3;
    }

    .vt-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.25s linear;
    border-radius: 0 2px 2px 0;
    }

    /* Card info below video */
    .vt-card-info {
    padding: 16px 20px 20px;
    }

    .vt-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    }

    .vt-patient-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    }

    .vt-patient-desc {
    font-size: 13px;
    color: #777;
    }

    /* Dots indicator */
    .vt-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
    }

    .vt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cdd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    }

    .vt-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
    }

    .vt-dot:hover {
    background: var(--secondary);
    }

    /* ── Mute / Unmute button ── */

    .vt-mute-btn {
    position: absolute;
    bottom: 44px;          /* sits just above the progress bar */
    right: 10px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: background 0.2s;
    }

    .vt-mute-btn:hover {
    background: rgba(0, 0, 0, 0.80);
    }

    .vt-mute-btn svg {
    width: 18px;
    height: 18px;
    display: block;
    }


    /* ============================================
    RESPONSIVE — VIDEO SLIDER
    ============================================ */

    /* ── Tablet: up to 1024px ── */
    @media (max-width: 1024px) {
    .vt-card {
        flex: 0 0 240px;
        width: 240px;
    }
    }

    /* ── Small tablet / large mobile: up to 768px ── */
    @media (max-width: 768px) {
    .vt-card {
        flex: 0 0 220px;
        width: 220px;
    }

    .vt-arrow {
        width: 38px;
        height: 38px;
    }

    .vt-arrow svg {
        width: 16px;
        height: 16px;
    }

    .video-section-title {
        font-size: 22px;
    }

    /* Subtitle slightly smaller */
    .video-section-subtitle {
        font-size: 14px;
    }

    /* Card info */
    .vt-card-info {
        padding: 12px 14px 16px;
    }

    .vt-patient-name {
        font-size: 14px;
    }

    .vt-patient-desc {
        font-size: 12px;
    }

    .vt-stars {
        font-size: 13px;
        margin-bottom: 6px;
    }

    /* Dots */
    .vt-dots {
        gap: 6px;
        margin-top: 20px;
    }

    /* Mute button */
    .vt-mute-btn {
        width: 30px;
        height: 30px;
        padding: 5px;
        bottom: 40px;
        right: 8px;
    }

    .vt-mute-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Progress bar slightly thicker for easier visibility */
    .vt-progress-bar {
        height: 4px;
    }
    }

    /* ── Mobile: up to 480px ── */
    @media (max-width: 480px) {
    /* Show roughly 1 card + peek of next */
    .vt-card {
        flex: 0 0 calc(85vw - 40px);
        width: calc(85vw - 40px);
    }

    .vt-slider-outer {
        gap: 0;
    }

    .vt-arrow {
        width: 34px;
        height: 34px;
    }

    .video-testimonials-wrap {
        margin-top: 50px;
        padding-top: 40px;
    }

    .video-section-header {
        margin-bottom: 32px;
    }

    .video-section-title {
        font-size: 20px;
    }

    .video-section-subtitle {
        font-size: 13px;
        margin-top: 14px;
    }

    /* Slightly taller aspect ratio on narrow screens for portrait feel */
    .vt-video-container {
        padding-top: 130%;
    }

    /* Play button */
    .vt-play-btn {
        width: 50px;
        height: 50px;
    }

    .vt-play-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Card info */
    .vt-card-info {
        padding: 10px 12px 14px;
    }

    .vt-patient-name {
        font-size: 13px;
    }

    .vt-patient-desc {
        font-size: 12px;
    }

    .vt-stars {
        font-size: 12px;
        margin-bottom: 5px;
    }

    /* Dots: smaller, tighter */
    .vt-dots {
        gap: 5px;
        margin-top: 16px;
    }

    .vt-dot {
        width: 7px;
        height: 7px;
    }

    .vt-dot.active {
        width: 20px;
    }

    /* Mute button */
    .vt-mute-btn {
        width: 28px;
        height: 28px;
        padding: 5px;
        bottom: 38px;
        right: 7px;
    }

    .vt-mute-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Progress bar */
    .vt-progress-bar {
        height: 4px;
    }
    }

    /* ── Very small screens: up to 360px ── */
    @media (max-width: 360px) {
    .vt-card {
        flex: 0 0 calc(90vw - 32px);
        width: calc(90vw - 32px);
    }

    .vt-arrow {
        width: 30px;
        height: 30px;
    }

    .vt-arrow svg {
        width: 14px;
        height: 14px;
    }

    .video-section-title {
        font-size: 18px;
    }

    .vt-play-btn {
        width: 44px;
        height: 44px;
    }

    .vt-mute-btn {
        width: 26px;
        height: 26px;
        padding: 4px;
        bottom: 36px;
        right: 6px;
    }

    .vt-mute-btn svg {
        width: 13px;
        height: 13px;
    }
    }










    /* ============================================
   VISHWAASS KIRAN HEALTHCARE SECTION
   ============================================ */

.vishwaass-section {
  padding: 90px 0 80px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background accent */
.vishwaass-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 99, 186, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Tagline paragraph */
.vishwaass-tagline {
  text-align: center;
  max-width: 680px;
  margin: -30px auto 50px;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

/* "What We Offer" sub-heading */
.vishwaass-offer-header {
  text-align: center;
  margin-bottom: 40px;
}

.vishwaass-offer-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--maroon);
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}

.offer-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--light-maroon));
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ── Slider Outer ── */
.vk-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Viewport ── */
.vk-slider-viewport {
  flex: 1;
  overflow: hidden;
  padding: 12px 0 16px;        /* removed side padding that was clipping images */
}

/* ── Track ── */
.vk-slider-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.vk-slider-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* ── Individual Slide Card ── */
.vk-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  width: calc((100% - 44px) / 3);
  min-width: 0;
}

.vk-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #e8edf4;
}

.vk-slide:hover .vk-img-wrap {
  transform: translateY(-7px);
  box-shadow: 0 14px 36px rgba(28, 99, 186, 0.2);
}

.vk-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;           /* show full image, no cropping */
  object-position: center top;
  display: block;
  background: #0a0a0a;           /* dark bg behind letterboxed areas if any */
  transition: transform 0.5s ease;
}

.vk-slide:hover .vk-img-wrap img {
  transform: scale(1.03);
}

/* Caption overlay */
.vk-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(
    to top,
    rgba(10, 23, 58, 0.82) 0%,
    rgba(10, 23, 58, 0.40) 60%,
    transparent 100%
  );
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.35s ease;
}

.vk-slide:hover .vk-img-overlay {
  opacity: 1;
  transform: translateY(0);
}

.vk-img-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ── Dots ── */
.vk-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.vk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cdd5e0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.vk-dot.active {
  background: var(--maroon);
  width: 24px;
  border-radius: 4px;
}

.vk-dot:hover {
  background: var(--light-maroon);
}

/* ============================================
   RESPONSIVE — VISHWAASS SLIDER
   ============================================ */
/* ── Responsive — Vishwaass Slider ── */

/* Large desktop: 3 cards comfortably */
@media (min-width: 1100px) {
  .vk-slide {
    flex: 0 0 calc((100% - 44px) / 3);   /* (viewport - 2 gaps) / 3 */
    width: calc((100% - 44px) / 3);
  }
}

/* Tablet: still 3 but narrower */
@media (max-width: 1099px) and (min-width: 769px) {
  .vk-slide {
    flex: 0 0 calc((100% - 44px) / 3);
    width: calc((100% - 44px) / 3);
  }
}

/* Small tablet: show 2 */
@media (max-width: 768px) {
  .vishwaass-section {
    padding: 70px 0 60px;
  }

  .vishwaass-tagline {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .vishwaass-offer-header h3 {
    font-size: 22px;
  }

  .vk-slide {
    flex: 0 0 calc((100% - 22px) / 2);
    width: calc((100% - 22px) / 2);
  }

  .vk-arrow {
    width: 38px;
    height: 38px;
  }

  .vk-arrow svg {
    width: 16px;
    height: 16px;
  }

  /* Always show caption on touch */
  .vk-img-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: show 1 full card + peek */
@media (max-width: 480px) {
  .vishwaass-section {
    padding: 60px 0 50px;
  }

  .vishwaass-tagline {
    font-size: 14px;
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .vishwaass-offer-header h3 {
    font-size: 20px;
  }

  .vk-slide {
    flex: 0 0 78vw;
    width: 78vw;
  }

  .vk-arrow {
    width: 34px;
    height: 34px;
  }

  .vk-slider-outer {
    gap: 6px;
  }

  .vk-dots {
    gap: 6px;
    margin-top: 20px;
  }

  .vk-dot.active {
    width: 20px;
  }
}

@media (max-width: 360px) {
  .vk-slide {
    flex: 0 0 86vw;
    width: 86vw;
  }

  .vk-arrow {
    width: 30px;
    height: 30px;
  }

  .vk-arrow svg {
    width: 14px;
    height: 14px;
  }
}