﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 90px;
}


/*++++++++++++++++++++ header ++++++++++++++++++++++++++*/
.himanshi-header {
    background: #ffffff;
  /*  border-bottom: 1px solid #eee;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.himanshi-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.himanshi-logo img {
    max-height: 60px;
}

/* Navigation */
.himanshi-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.himanshi-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

    .himanshi-menu li {
        position: relative;
    }

        .himanshi-menu li a {
            text-decoration: none;
            color: #222;
            font-size: 16px;
            font-weight: 500;
            padding: 30px 0;
            display: block;
        }

/* Dropdown */
.himanshi-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    display: none;
    border-top: 3px solid #e63946;
    z-index: 999;
}

    .himanshi-submenu li a {
        padding: 10px 15px;
        font-size: 14px;
        color: #444;
    }

        .himanshi-submenu li a:hover {
            background: #f5f5f5;
        }

.himanshi-dropdown:hover .himanshi-submenu {
    display: block;
}

/* Call Button */
.himanshi-call-btn {
    background: #e63946;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

    .himanshi-call-btn:hover {
        background: #1b5fc1;
    }
/* Main menu hover */
.himanshi-menu li a:hover {
    color: #1b5fc1;
}

/* Dropdown submenu hover */
.himanshi-submenu li a:hover {
    color: #1b5fc1;
}

/* Active menu */
.himanshi-menu li a.active {
    color: #1b5fc1;
    font-weight: 600;
}

/* Dropdown active */
.himanshi-submenu li a.active {
    color: #1b5fc1;
    font-weight: 600;
}
/* ========== HEADER BASE ========== */
/*.himanshi-header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
}

.himanshi-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}*/

/* Default nav desktop */
/*.himanshi-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.himanshi-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

    .himanshi-menu li a {
        text-decoration: none;
        color: #222;
        font-size: 16px;
        font-weight: 500;
        padding: 30px 0;
        display: block;
    }*/

/* dropdown desktop */
/*.himanshi-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    display: none;
    border-top: 3px solid #e63946;
    z-index: 999;
}

.himanshi-dropdown:hover .himanshi-submenu {
    display: block;
}

.himanshi-call-btn {
    background: #e63946;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}*/

/* Hamburger hidden by default */
.himanshi-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

    .himanshi-toggle span {
        width: 28px;
        height: 3px;
        background: #CD1836;
        transition: 0.3s;
    }

/* ===== MOBILE STYLES ===== */

@media (max-width: 1024px) {

    .himanshi-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        padding: 23px 0;
    }

    .himanshi-toggle {
        display: flex;
    }

    /* 🔥 NAV UNDER HEADER */
    .himanshi-nav {
        position: absolute; /* 🔥 FIXED ❌ → ABSOLUTE ✅ */
        top: 100%; /* header ke bilkul niche */
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
    }

        .himanshi-nav.open {
            transform: translateX(0);
        }

    .himanshi-menu {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        align-items: flex-start;
    }

        .himanshi-menu > li {
            border-bottom: 1px solid #eee;
            width: 100%;
        }

        .himanshi-menu li a {
            padding: 10px 25px;
            font-size: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    .himanshi-dropdown:hover .himanshi-submenu {
        display: none;
    }

    .himanshi-submenu {
        position: static;
        box-shadow: none;
        border: none;
        display: none !important;
    }

        .himanshi-submenu.open {
            display: block !important;
        }

    .arrow {
       /* font-size: 26px;*/
        font-weight: 700;
        transition: 0.3s;
    }

        .arrow.rotate {
            transform: rotate(180deg);
        }
}


.himanshi-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.himanshi-toggle.open span:nth-child(2) {
    opacity: 0;
}

.himanshi-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* rotate arrow */
.arrow.rotate {
    transform: rotate(180deg);
}

/*++++++++++++++++++++ footer +++++++++++++++++++*/
.footer-main {
    background: #23282d;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;
    display: flex;
    gap: 60px;
}

/* Columns */
.footer-column {
    flex: 1;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 6px;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

        .footer-links li a {
            color: #cfcfcf;
            font-size: 14px;
            text-decoration: none;
            position: relative;
            padding-left: 15px;
            display: inline-flex; /* 👈 important */
            align-items: center;
        }

            .footer-links li a::before {
                content: "›";
                position: absolute;
                left: 0;
                color: #e63946;
                font-size: 18px;
                font-weight: 600;
                line-height: 1; /* 👈 niche jaane se roke */
                top: 50%;
                transform: translateY(-50%); /* 👈 EXACT center */
            }

            .footer-links li a:hover {
                color: #ffffff;
            }

/* Contact */
.footer-contact a {
    color: #cfcfcf;
    text-decoration: none;
}

    .footer-contact a:hover {
        color: #ffffff;
    }

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
}

    .footer-bottom a:hover {
        color: #ffffff;
    }
.footer-icon {
    color: #e63946;
    margin-right: 10px;
    font-size: 14px;
}

.footer-address {
    display: flex;
    align-items: center; /* 👈 yahi main fix */
    gap: 10px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}


/*00000000000000000000000000000 HOME PAGE 0000000000000000000000000000*/

/*+++++++++++++++++++++++++++++ FISRT SWIPPER ++++++++++++++++++++++++++++++*/

.lasik-swiper-container {
    width: 100%;
    height: 100%;
}

.lasik-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lasik-swiper-button-next,
.lasik-swiper-button-prev {
    color: white;
    width: 44px;
    height: 44px;
}

.lasik-swiper-pagination-bullet {
    background: #007bff;
}


/*++++++++++++++++++++ CARE BOXES ++++++++++++++++++++++*/
.care-section {
    background: linear-gradient(180deg, #009BFF 65%, #fff 50%);
    padding: 104px 0 0
}

.care-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 0px;
}

/* LEFT */
.care-left {
    width: 50%;
}

.care-left-image {
    height: 481px;
    background-size: cover;
    background-position: center;
    /* border-radius: 20px; */
    position: relative;
}

/* overlay red box */
.care-left-box {
    position: absolute;
    bottom: 0px;
    left: 337px;
    width: 44%;
    background: #c81f3e;
    color: #fff;
    padding: 28px;
    /*     border-radius: 16px;*/
}

    .care-left-box ul {
        padding: 0;
        list-style: none;
    }

    .care-left-box li {
        margin-bottom: 6px;
    }

/* RIGHT */
    .care-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.care-right-top {
    display: flex;
    gap: 0px;
}

/* white box */
.care-white-box {
    background: #fff;
    padding: 28px;
  /*  border-radius: 16px;*/
    flex: 1;
}

/* location box */
.care-location-box {
    background: #c81f3e;
    color: #fff;
    padding: 28px;
   /* border-radius: 16px;*/
    flex: 1;
}

/* call box */
.care-call-box {
    background: #2356d6;
    color: #fff;
    padding: 28px;
  /*  border-radius: 16px;*/
}

    .care-call-box a {
        display: block;
        color: #fff;
        text-decoration: none;
        margin-top: 10px;
    }

/* links */
.care-link {
    display: inline-block;
    margin-top: 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

    .care-link.red {
        color: #c81f3e;
    }
.care-left-box h2 {
    font-size:20px;
    margin-bottom:10px;
}
.care-location-box p {
    font-size:15px;
}
/*+++++++++++++++++++++++++ Our Expertise ++++++++++++++++++++++++++++++*/
.services-section {
    padding: 11px 20px 35px;
    text-align: center;
    max-width: 2000px;
}

.section-title {
    font-size: 45px;
    font-weight:500;
    color: #0C122D;
    margin-bottom: 0px;
}

.services-columns {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 2000px;
    margin: 0 auto;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease,;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(100px);
    opacity: 0;
    width: 360px;
    height: 374px;
}

    .service-card img {
        width: 360px;
        height: auto;
        object-fit: cover;
        transition: transform 0.2s ease;
        border-radius: 50px;
        padding: 20px;
    }

    .service-card p {
        font-size: 22px;
        font-weight: 500;
        color: #0C122D;
        padding: 15px 29px;
        margin: 0;
    }

    .service-card a {
        text-decoration: none;
    }

    .service-card:hover img {
        transform: scale(1.1);
    }

/* Reveal animation */
.reveal.active {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s ease;
}
.card-btn {
    border: none;
    padding: 0;
    margin-top: 10px;
    color: #d11c2f;
    font-size: 16px;
    font-weight: 500;
}

    .card-btn:hover {
        background: none;
        color: #a01422;
    }
.services-desc {
    max-width: 900px;
    margin: 5px auto 29px;
    font-size: 19px;
    color: #555;
    line-height: 1.6;
}

/*+++++++++++++++++++++++++ About Us ++++++++++++++++++++++++*/
.about-section {
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0px;
}

/* IMAGE */
.about-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
}

    .about-image img {
        width: 85%;
        height: auto;
        border-radius: 30px;
        transition: transform 0.6s ease;
    }

    .about-image:hover img {
        transform: scale(1.08);
    }

/* CONTENT */
.about-content {
    flex: 1;
}

    .about-content h2 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #000;
    }

    .about-content p {
        font-size: 17px;
        line-height: 1.8;
        color: #4a4a4a;
        margin-bottom: 30px;
    }

    .about-content hr {
        border: none;
        border-top: 1px solid #e5e5e5;
        margin: 30px 0;
    }

    .about-content blockquote {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 20px;
    }

    .about-content strong {
        font-size: 16px;
        font-weight: 600;
        color: #000;
    }


/*++++++++++++++++++++++++++++ Why People Trust Us ++++++++++++++++++++++++*/
.trust-section {
    padding: 80px 0;
}

.trust-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: stretch; /* 👈 MOST IMPORTANT */
}

/* LEFT IMAGE */
.trust-left {
    flex: 1;
}

.trust-image-wrap {
    height: 480px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

    .trust-image-wrap img {
        width: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* IMAGE HOVER */
    .trust-image-wrap:hover img {
        transform: scale(1.08);
    }

.trust-video-btn {
    position: absolute;
    bottom: 0px;
    left: 16%;
    transform: translateX(-50%);
    background: #0d8bff;
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 10;
    transition: 0.3s ease;
}

    .trust-video-btn:hover {
        background: #005ecb;
        transform: translateX(-50%) translateY(-3px);
    }
/* RIGHT CONTENT */
.trust-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 👈 visual balance */
}

.trust-title {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0C122D;
    font-weight: 500;
}

.trust-desc {
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

/* FEATURES GRID */
.trust-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.trust-item h4 {
    margin: 15px 0 8px;
    font-size: 18px;
}

.trust-item p {
    color: #666;
    font-size: 14px;
}

/* ICON */
.trust-icon {
    width: 55px;
    height: 55px;
    background: #0d8bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* ICON HOVER */
.trust-item:hover .trust-icon {
    background: #e63946;
    transform: translateY(-5px);
}


/*+++++++++++++++++++++++++++++++ Himanshi Eye Care Center +++++++++++++++++++++++++*/
/* CONTAINER */
.center-gallery-container {
    max-width: 1200px;
    margin: auto;
    padding: 0px 15px 40px;
    text-align: center; 
}

/* TITLE */
.center-gallery-title {
    font-size: 39px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #0C122D;
    text-align: center;
}

/* GRID */
.center-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center; /* ⬅ center grid */
    align-items: center;
}

/* IMAGE ITEMS */
.center-gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

    .center-gallery-item img {
        width: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    /* HOVER ZOOM */
    .center-gallery-item:hover img {
        transform: scale(1.05);
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .center-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .center-gallery-grid {
        grid-template-columns: 1fr;
    }
}


/*+++++++++++++++++++ What People Say About Us ++++++++++++++++++*/
/* MAIN SECTION */
.testimonials-section {
    padding: 90px 0;
    background: #f4fcfd;
}

/* WRAPPER */
.test-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT SIDE */
.test-left {
    flex: 1;
}

.test-title {
    font-size: 43px;
    font-weight: 500;
    color: #0d0e23;
    margin-bottom: 7px;
}
.test-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 13px;
    line-height: 1.6;
}

.test-btn {
    font-size: 15px;
    color: #CD1836;
    text-decoration: none;
    font-weight: 500;
}

/* RIGHT CARD */
.test-card {
    flex: 1.4;
    background: #fff;
    border-radius: 14px;
    padding: 60px 30px 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE OVERLAP */
.test-image-wrap {
    position: absolute;
    top: -34px;
    left: -34px;
    width: 278px;
    height: 336px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .test-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .test-image-wrap:hover {
        transform: scale(1.05);
    }

/* CONTENT RIGHT ALIGN */
.test-content {
    margin-top: 0px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 253px;
}

.test-text,
.test-name,
.test-stars {
    text-align: left; 
}


.test-name {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-bottom: 5px;
}

.test-text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* STARS */
.test-stars {
    font-size: 18px;
    color: #CD1836;
    margin-bottom: 14px;
}

/* GOOGLE ICON */
.test-icon {
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: right;
}

    .test-icon img {
        width: 50px;
        opacity: 0.2;
    }


/*++++++++++++++++++++++++++++ One of the best clinic n eye centre TESTIMONIAL ++++++++++++++++++++++++++++*/
.best-section {
    padding: 80px 0;
}

/* Container */
.best-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* Card */
.best-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    width: 100%;
    max-width: 350px;
    border: 1px solid #e6e6e6;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
}

    .best-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
        border-color: #1aa6a6;
    }


/* Stars */
.best-stars {
    color: #e63946;
    font-size: 20px;
    margin-bottom: 18px;
}

/* Text */
.best-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

/* Name */
.best-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Role */
.best-role {
    font-size: 13px;
    color: #777;
}

/*+++++++++++++++++++++++++++++ Get One Step Ahead Of Eye +++++++++++++++++++++++++++*/
.get-hero {
    padding: 50px 0;
    background: #f6fbfa;
}

/* Container */
.get-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

/* Heading */
.get-heading {
    font-size: 46px;
    font-weight: 500;
    color: #0b1c39;
    line-height: 1.3;
    margin-bottom: 25px;
}
/* Sub text */
.get-subtext {
    font-size: 16px;
    color: #4a5c6a;
    max-width: 750px;
    margin: 0 auto 19px;
    line-height: 1.8;
}

/* Button */
.get-btn {
    display: inline-block;
    background: #d91c3c;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(217, 28, 60, 0.3);
}

    /* Button hover */
    .get-btn:hover {
        background: #b51631;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(217, 28, 60, 0.4);
    }

/*+++++++++++++ background image ++++++++++++++++++*/
.back {
    background-image: url('images/back.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 80px;
}
/*000000000000000000000000000000 ABOUT US PAGE 000000000000000000000000000000*/

/*++++++++++++++++++ about banner ++++++++++++++++*/
.banner-section {
    position: relative;
    height: 420px;
    background-image: url('img/b.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-right-radius: 120px;
    overflow: hidden;
}

/* Overlay (exact style jaisa tumne diya) */
.banner-overlay {
    position: absolute;
    inset: 0;
    background-color: #000c2d;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
}

/* Container */
.banner-container {
    max-width: 1200px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Title */
.banner-title {
    font-size: 55px;
    font-weight: 500;
    color: #ffffff;
    user-select: text;
}

/*++++++++++++++++++++++ About Us ++++++++++++++++++++++++*/
.estab-about {
    padding: 90px 0;
    /*font-family: Arial, sans-serif;*/
}

.estab-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* =========================
   LEFT CONTENT
========================= */
.estab-content {
    flex: 1;
}

.estab-title {
    font-size: 47px;
    font-weight: 500;
    color: #0a2540;
    margin-bottom: 8px;
}
.estab-para {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

    .estab-para.strong {
        font-weight: 600;
        color: #0a2540;
    }

/* =========================
   COUNTER
========================= */
.estab-counter {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.estab-icon {
    width: 46px;
    height: 46px;
    background: #e63946;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.estab-counter-text {
    display: flex;
    flex-direction: column;
}

.estab-number {
    font-size: 30px;
    font-weight: 700;
    color: #0a2540;
}

.estab-label {
    font-size: 14px;
    color: #6b7280;
}

/* =========================
   RIGHT IMAGE
========================= */
.estab-image-box {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .estab-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* IMAGE HOVER */
    .estab-image-box:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    }

/*+++++++++++++++++++++ Know Your Consultant ++++++++++++++++++++++++*/
.consult-section {
    padding: 0px 0 50px;
}

.consult-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* =========================
   LEFT IMAGE (SMALLER)
========================= */
.consult-image-box {
    flex: 0.9; /* 👈 image thodi chhoti */
    max-width: 460px; /* 👈 control size */
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .consult-image-box img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* IMAGE HOVER */
    .consult-image-box:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
    }

/* =========================
   RIGHT CONTENT
========================= */
.consult-content {
    flex: 1.1; /* 👈 text ko thoda zyada space */
}

.consult-title {
    font-size: 35px;
    font-weight: 500;
    color: #0a2540;
    margin-bottom: 20px;
    margin-top: 5px;
}

.consult-para {
    font-size: 16px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 18px;
}

.consult-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #0a2540;
    margin: 20px 0 10px;
}

/*++++++++++++++++++++++++++ General Procedure Followed at Himanshi Eye Care Centre ++++++++++++++++++++++*/
.general-section {
    padding: 20px 0 50px;
}

.general-container {
    max-width: 1200px;
    margin: auto;
}

/* =========================
   TITLE
========================= */
.general-title {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #0a2540;
    margin-bottom: 20px;
}

/* =========================
   LIST
========================= */
.general-list {
    max-width: 900px;
    margin: auto;
    padding-left: 20px;
}

    .general-list li {
        font-size: 16px;
        line-height: 1.6;
        color: #3f4a5a;
        margin-bottom: 12px;
    }

/*0000000000000000000000000000 Refractive errors  page 000000000000000000000000000*/

/*+++++++++++++++ Refractive errors  text para +++++++++++++++*/
.refra-section {
    padding: 50px 0;
}

.refra-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
.refra-text {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

/*++++++++++++++++++ Refractive Errors +++++++++++++++++++*/
.Refractive-section {
    padding: 20px 0 50px;
}

.Refractive-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
.Refractive-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.Refractive-image-box {
    width: 50%;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid #e11d2e; /* 🔴 Red border */
}

    .Refractive-image-box img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease;
    }

    .Refractive-image-box:hover img {
        transform: scale(1.08);
    }

/* =========================
   RIGHT CONTENT
========================= */
.Refractive-content {
    width: 50%;
}

.Refractive-title {
    font-size: 36px;
    font-weight: 500;
    color: #e11d2e;
    margin-bottom: 13px;
}
.Refractive-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #e11d2e;
    margin-bottom: 10px;
    margin-top: 20px;
}


.Refractive-text-box {
    display: flex;
    gap: 15px;
}

.Refractive-line {
    width: 2px;
    background: #e11d2e;
    margin-left: 11px;
}

.Refractive-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}
.Refractive-list {
    margin-top: 12px;
    padding-left: 22px;
}

    .Refractive-list li {
        font-size: 15px;
        line-height: 1.7;
        color: #4b5563;
        margin-bottom: 6px;
    }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .Refractive-row {
        flex-direction: column;
    }

    .Refractive-image-box,
    .Refractive-content {
        width: 100%;
    }
}

/*++++++++++++++++++++++++++ Treatment +++++++++++++++++++++++*/
.trat {
    padding: 40px 0;
    background: #ffffff;
}

.trat-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

/* MAIN TITLE */
.trat-title {
    font-size: 45px;
    color: #e11d2e;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .trat-title:hover {
        color: #b90d1b;
        transform: translateY(-3px);
    }

/* PARAGRAPH */
.trat-text {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.trat-subtitle {
    font-size: 40px;
    color: #e11d2e;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .trat-subtitle:hover {
        color: #b90d1b;
        transform: translateY(-3px);
    }


/* LIST */
.trat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .trat-list li {
        font-size: 17px;
        color: #374151;
        line-height: 1.9;
    }

/*+++++++++++++++++++ Important Facts ++++++++++++++++++*/
.impo {
    padding: 40px 0;
    background: #ffffff;
}

.impo-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

/* TITLE */
.impo-title {
    font-size: 47px;
    color: #e11d2e;
    font-weight: 500;
    margin-bottom: 11px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .impo-title:hover {
        color: #b90d1b;
        transform: translateY(-3px);
    }

/* PARAGRAPH */
.impo-text {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 15px;
}

/* LIST */
.impo-facts {
    list-style: disc;
    display: inline-block;
    text-align: left;
    padding-left: 20px;
}

    .impo-facts li {
        font-size: 16px;
        color: #374151;
        line-height: 1.8;
        margin-bottom: 6px;
    }

/*+++++++++++++++++++++++++ Risk Factors of Cataracts ++++++++++++++++++++++*/
.risk {
    padding: 20px 0;
    background: #ffffff;
}

.risk-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* MAIN TITLE */
.risk-title {
    text-align: center;
    font-size: 45px;
    color: #e11d2e;
    font-weight: 500;
    margin-bottom: 0px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .risk-title:hover {
        color: #b90d1b;
        transform: translateY(-3px);
    }

/* SUB TITLE */
.risk-subtitle {
    text-align: center;
    font-size: 18px;
    color: #e11d2e;
    font-weight: 500;
    margin-bottom: 25px;
}

/* LIST */
.risk-list {
    max-width: 650px;
    margin: 0 auto;
    padding-left: 20px;
}

    .risk-list li {
        font-size: 16px;
        color: #4b5563;
        line-height: 1.6;
        margin-bottom: 8px;
    }


/*+++++++++++++++++++++++++++++++++ Treatment of Cataracts +++++++++++++++++++++++++++*/
.extra-section {
    padding: 20px;
    max-width:700px;
    margin:auto;
}

/* Main title */
.extra-title {
    font-size: 32px;
    color: #d81b45;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Subtitle */
.extra-subtitle {
    font-size: 22px;
    color: #222;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraph text */
.extra-text {
    font-size: 16px;
    margin-bottom: 15px;
    max-width: 800px;
}

.space {
    padding:80px 0 80px 0;
}

/*++++++++++++++++++++++++++++ Request an Appointment ++++++++++++++++++++++++++++*/
.appoint-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    background: #ffffff !important; /* pure white */
    padding: 45px 35px;
    border-radius: 10px;
    box-shadow: 0px 6px 24px rgba(0,0,0,0.08);
    border: 1px solid #e3e6ea;
    position: relative;
    z-index: 10; /* form above overlay */
    margin-top: -80px; /* less overlap than before */
    padding: 40px 20px 60px;
    margin-bottom:40px;
}

.appoint-title {
    text-align: center;
    font-size: 41px;
    color: #0f1f3c;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Form */
.appoint-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Labels */
.appoint-label {
    font-size: 14px;
    color: #666474;
    font-weight: 600;
}

/* Inputs */
.appoint-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    background: #fafafa;
    font-size: 15px;
    outline: none;
}

/* Textarea */
.appoint-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    background: #fafafa;
    font-size: 15px;
    border-radius: 3px;
    min-height: 100px;
    resize: none;
}

/* Submit Button */
.appoint-btn {
    width: fit-content;
    padding: 12px 24px;
    background: #d81b3c;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

    .appoint-btn:hover {
        background: #1B5FC1;
    }


/*++++++++++++++++++++++++++++++ Send Us Message ++++++++++++++++++++++++++++*/
.send-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10; 
    margin-top: -100px; 
    padding: 40px 20px 60px;
    margin-bottom: 40px;
}

/* ===== WRAPPER ===== */
.send-wrapper {
    display: flex;
    width: 100%;
    background: #fff;
}

/* ===== LEFT FORM ===== */
.send-left {
    width: 50%;
    padding: 30px 50px;
    background: #f7fcfb;

}

.send-title {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

.send-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.send-form label {
    display: block;
    margin-bottom: 6px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #666474;
}

.send-form input,
.send-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.send-form textarea {
    resize: none;
}

.send-btn {
    margin-top: 25px;
    padding: 12px 28px;
    background: #d61a3c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}
    .send-btn:hover {
        background: #0AA0E6;
    }
    /* ===== RIGHT SIDE ===== */
    .send-right {
        width: 50%;
    }

/* ===== TOP BLUE SECTION ===== */
.send-top {
    display: flex;
    background: #0aa0e6;
    color: #fff;
}

.send-box {
    width: 50%;
    padding: 40px 40px;
}

    .send-box h4 {
        margin: 14px 0 10px;
        font-size: 18px;
        font-weight: 700;
    }

    .send-box p {
        font-size: 14px;
        line-height: 1.6;
    }

/* ===== ICON STYLE ===== */
.send-icon {
    width: 46px;
    height: 46px;
    background: #fff;
    color: #0aa0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    /* icon hover */
    .send-icon:hover {
    /*    background: #0aa0e6;
        color: #fff;*/
        transform: scale(1.08);
    }


/* ===== LOCATION RED ===== */
.send-location {
    background: #d61a3c;
    color: #fff;
    padding: 25px 45px;
}

    .send-location h4 {
        margin: 15px 0 12px;
        font-size: 20px;
    }

    .send-location p {
        font-size: 14px;
        line-height: 1.7;
    }

.send-dir-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 10px 26px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    /* hover same as image */
    .send-dir-btn:hover {
        background: #fff;
        color: #d61a3c;
    }

/* ===== TIMING BLUE ===== */
.send-timing {
    background: #0aa0e6;
    color: #fff;
    padding: 25px 45px;
}

    .send-timing h4 {
        margin: 15px 0 12px;
        font-size: 20px;
    }

    .send-timing p {
        font-size: 14px;
        line-height: 1.7;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .send-wrapper {
        flex-direction: column;
    }

    .send-left,
    .send-right {
        width: 100%;
    }

    .send-top {
        flex-direction: column;
    }

    .send-box {
        width: 100%;
    }
}


/*++++++++++++++++++++++++++++ THANKYOU +++++++++++++++++++++++++*/
/*############# thank you ##############*/

.thank-page-v2 {
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #fff;
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 108px;
    font-weight: 1000;
    color: #E11C26;
    text-shadow: 6px 6px 15px rgba(225, 28, 38, 0.35);
    margin-bottom: 30px;
    animation: thankPulse 2s ease-in-out infinite;
}

@keyframes thankPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}
.thank-text {
    font-size: 27px;
    color: #333;
    margin-bottom: 15px;
}

.nice-day {
    font-size: 24px;
    color: #222;
    font-weight: 600;
}



@media (max-width: 768px) {
    .main-thank {
        font-size: 60px;
    }

    .thank-text {
        font-size: 20px;
    }

    .nice-day {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-thank {
        font-size: 46px;
    }

    .thank-text {
        font-size: 18px;
    }

    .nice-day {
        font-size: 16px;
    }
}


/*+++++++++++++++++++++++++++ BACK TO TOP BUTTON ++++++++++++++++++++++++*/
/*############  BACK TO TOP BUTTON ###########*/
#back-to-top-section {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}




.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background-color: #E11C26;
    color: #F9D4D6;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-infinite 2s infinite ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease-in-out;
}


    .back-to-top:hover {
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
        background-color: #1B5FC1;
        color: #ffffff;
    }


@keyframes bounce-infinite {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6);
    }
}


/*++++++++++++++++++++ MAP ++++++++++++++++++*/
.map {
    width: 100%;
    height: 40vh; /* full screen height */
    position: relative;
}

    .map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }
