 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
        
:root {
            --color-primary: #007bff; /* Blue */
            --color-accent: #00bcd4; /* Teal */
            --color-dark: #333;
            --color-light: #f8f9fa;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--color-dark);
            margin: 0;
            padding: 0;
            background-color: var(--color-light);
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        section {
            padding: 3rem 0;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--color-dark);
        }
        
        /* --- Navigation Bar --- */
        .header {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--color-accent);
        }

        .nav-links a {
            color: var(--color-dark);
            text-decoration: none;
            margin-left: 1.5rem;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .cta-button {
            background-color: var(--color-primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .explore{
            padding: 0.75rem 1.5rem; 
            border-radius: 8px;
        }

        .book{
            color: white !important;
        }

        .cta-button:hover {
            background-color: #0056b3;
        }

        /* --- Hero Section --- */
        #home {
            background-color: white;
            padding: 6rem 0 4rem;
        }

        .hero-content {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2rem;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--color-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-text h1 span {
            color: var(--color-primary);
        }

        .hero-text p {
            font-size: 1.15rem;
            color: #555;
            margin-bottom: 2rem;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* --- Services Section --- */
        #services {
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .service-card {
            background-color: var(--color-light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--color-accent);
            transition: transform 0.3s;
            cursor: all-scroll;
        }
        
        .service-card:nth-child(2) { border-top-color: var(--color-primary); }
        .service-card:nth-child(3) { border-top-color: var(--color-accent); }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--color-primary);
        }

        .choose-us{
            display: flex;
            flex-direction: column;
            text-align: center;
            margin: 2.5rem 0;
        }

        .choose-us li{
        list-style: none;
        }

        .why-choose{
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            list-style: square;
        }
        
        /* --- Scrollable Team Section CSS (REUSABLE) --- */
        .team-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--color-dark);
        }

        .team-scroll-container {
            /* display: flex; */
            display: grid;
            grid-template-columns: repeat(2, minmax(100px,300px));
            justify-content: center;
            /* overflow-x: scroll; */
            padding-bottom: 1rem; 
            margin-bottom: 1rem;
            gap: 1.5rem;
            /* scroll-snap-type: x mandatory; */
            /* scrollbar-width: thin; 
            scrollbar-color: var(--color-primary) var(--color-light); */
        }
        
        /* Webkit Scrollbar Styling (Chrome, Safari) */
        .team-scroll-container::-webkit-scrollbar {
            height: 8px;
        }

        .team-scroll-container::-webkit-scrollbar-thumb {
            /* background-color: var(--color-primary); */
            border-radius: 10px;
        }

        /* .team-scroll-container::-webkit-scrollbar-track {
            background-color: var(--color-light);
        } */

        .team-member {
            flex-shrink: 0; /* Important: Prevents items from shrinking */
            width: 240px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            text-align: center;
            scroll-snap-align: start;
            transition: box-shadow 0.3s;
            cursor:all-scroll;
            transition: .8s ease-out;
        }
        
        .team-member:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transform: scale(1.05);
            transition: .3s ease;
        }

        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 20%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 2px solid var(--color-accent);
        }

        .team-member h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .team-member p.role {
            color: var(--color-primary);
            font-style: italic;
            margin-bottom: 0.5rem;
        }

        .job-desc{
        font-size: 0.9rem; 
        color: #666;
        }
        
        /* --- About Section --- */
        #about{
            background-color: var(--color-light);
        }

        .about-content {
            text-align: center;
            margin-bottom: 4rem;
        }

        .about-content p {
            max-width: 800px;
            margin: 1rem auto;
            font-size: 1.1rem;
        }

        .mission-vision{
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        }

        .mission-vision h4{
            max-width: 600px;
        }
        
        /* Optical Gallery */
        .gallery-container{
        text-align: center;
        margin: 3rem 0;
        }

        .gallery-container p{
        text-align: center; 
        font-size: 1.1rem; 
        color: #555; 
        margin-bottom: 2rem;
        }

        .gallery-title {
            font-size: 2rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--color-accent);
            display: inline-block;
            padding-bottom: 0.5rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.15);
            cursor: grab;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.75rem;
            font-size: 0.9rem;
        }

        .gallery-caption strong {
            display: block;
            font-size: 1.1rem;
        }
        
        /* --- Footer & Contact --- */
        .footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            text-align: center;
            padding: 3rem 0;
        }

        .ready{
            font-size: 1.2rem; 
            font-weight: 500;
        }

        .wills-address{
            margin-top: 0.5rem; 
            font-size: 0.9rem;
        }
        .wills-desc{
            margin-top: 1.5rem;
        }

        .schedule{
            color: var(--color-accent);
            margin-left: 1rem;
        }
        
        .footer a {
            color: var(--color-accent);
            text-decoration: none;
            margin: 0 0.5rem;
        }
        
        /* ==================================== */
        /* MEDIA QUERIES for RESPONSIVENESS */
        /* ==================================== */
        
        /* Tablet & Larger Screens (>= 768px) */
        @media (min-width: 768px) {
            
            h2 {
                font-size: 3rem;
            }

            /* Navigation */
            .nav-links {
                display: block; 
            }

            /* Hero */
            .hero-content {
                flex-direction: row;
                text-align: left;
            }

            .hero-text h1 {
                font-size: 4rem;
            }

            /* Services */
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            /* Gallery */
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Medium Screens (<= 900px) */
        @media (max-width: 900px) {
            .team-scroll-container{
                display: grid;
                grid-template-columns: repeat(2, 300px);
            }
        }
        /* Mobile Specific Adjustments (<= 767px) */       
        
        @media (max-width: 767px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-image {
                order: -1; 
            }
            
            .nav-links a:not(.cta-button) {
                display: none; 
            }
            
            .nav-links .cta-button {
                margin-left: 0;
            }

            .team-scroll-container{
                display: flex;
               flex-wrap: wrap;
            }

           .book{
                display: block;
                width: fit-content;
               text-align: center;
              align-items: center;
              margin: .5rem auto !important;
            }             
        }

        @media (max-width: 412px) {
          .book{
                font-weight: 400;
                display: block;
                width: fit-content;
               text-align: center;
              align-items: center;
              margin: .5rem auto !important;
            }
        }