
        :root {
            --primary-color: #007BFF; /* A professional blue */
            --secondary-color: #19c3ff;
            --dark-color: #333;
            --light-color: #f9f9f9;
            --text-color: #555;
            --white-color: #fff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--white-color);
        }

        .container {
            max-width: 1200px;
            margin: auto;
            overflow: hidden;
            padding: 0 2rem;
        }

        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            font-weight: 700;
        }
        
        .section-title-underline {
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 0 auto 3.5rem auto;
            border-radius: 2px;
        }

        section {
            padding: 5rem 0;
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white-color);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease-in-out;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
        }

        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(25, 195, 255, 0.3);
        }

        /* Header Top */
        .header-top {
            background: var(--light-color);
            padding: 0.5rem 2rem;
            border-bottom: 1px solid #eee;
            font-size: 0.9rem;
        }
        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: auto;
        }
        .contact-info-top a {
            color: var(--text-color);
            text-decoration: none;
            margin-right: 1.5rem;
            transition: color 0.3s ease;
        }
        .contact-info-top a:hover {
            color: var(--primary-color);
        }
        .contact-info-top a i {
            margin-right: 0.5rem;
            color: var(--primary-color);
        }
        .social-icons-top a {
            color: var(--text-color);
            margin-left: 1rem;
            transition: color 0.3s ease;
        }
        .social-icons-top a:hover {
            color: var(--primary-color);
        }

        /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            position: sticky;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: background 0.3s ease, padding 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.8rem 2rem;
        }

        .navbar .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .navbar .logo svg {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }

        .navbar .nav-links {
            display: flex;
            list-style: none;
        }

        .navbar .nav-links li {
            margin-left: 1.5rem;
        }

        .navbar .nav-links li a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }
        
        .navbar .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .navbar .nav-links li a:hover {
            color: var(--primary-color);
        }
        
        .navbar .nav-links li a:hover::after {
            width: 100%;
        }
        
        .hamburger-menu {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--dark-color);
        }

        /* Hero Section */
        .hero {
            height: 80vh; /* Decreased height */
            position: relative;
            overflow: hidden;
            color: var(--white-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 1rem;
        }
        
        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slideshow .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slideshow .slide.active {
            opacity: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .hero h1, .hero p, .hero .btn {
            position: relative;
            z-index: 3;
        }

        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 0.5rem;
            color: var(--white-color);
            font-weight: 700;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
            max-width: 600px;
        }

        /* About Section */
        #about {
            background: var(--white-color);
        }
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }
        .about-content img {
            width: 100%;
            max-width: 350px;
            display: block;
            margin: 0 auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .about-content img:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
         .about-content h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
         }
         .about-content h4 {
            font-weight: 600;
            margin-bottom: 1rem;
         }

        /* Why Choose Us Section */
        #why-choose-us {
            background: var(--light-color);
            text-align: center;
        }
        .reason-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .reason-card {
            background: var(--white-color);
            padding: 2.5rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .reason-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .reason-card i {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .reason-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }
        .reason-card p {
            font-size: 0.95rem;
            color: var(--text-color);
        }


        /* Services Section */
        #services {
            background: var(--light-color);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .service-card {
            background: var(--white-color);
            padding: 2rem;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 3px solid var(--primary-color);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        /* Gallery Section */
         #gallery {
            background: var(--light-color);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .gallery-grid img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
            cursor: pointer;
        }
        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            filter: brightness(1.1);
        }

        /* Testimonials Section */
        #testimonials {
            background: var(--light-color);
        }
        #testimonials .about-content img {
            width: 100%;
            max-width: 350px;
            display: block;
            margin: 0 auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        #testimonials .about-content img:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        #testimonials .about-content h3 {
            font-style: italic;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.6rem;
        }
        #testimonials .about-content h4 {
            text-align: right;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        /* Contact Section */
        #contact {
             background: var(--white-color);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: var(--white-color);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1.5rem;
            width: 40px;
            text-align: center;
            margin-top: 5px;
        }
        .contact-info-item p a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }
        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 350px;
            border-radius: 10px;
            border: 0;
        }
        
        /* Location Section */
        #location {
            background: var(--light-color);
        }
        .location-content {
            text-align: center;
        }
        .location-content i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .location-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .location-content p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .location-content a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .location-content a:hover {
            color: var(--secondary-color);
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: var(--light-color);
            text-align: center;
            padding: 3rem 1rem;
        }
        .footer .social-icons {
            margin-bottom: 1rem;
        }
        .footer .social-icons a {
            color: var(--light-color);
            margin: 0 0.75rem;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .footer .social-icons a:hover {
            color: var(--primary-color);
        }
        .footer p {
            margin: 0;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: none;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white-color);
            text-align: center;
            line-height: 50px;
            font-size: 20px;
            border-radius: 50%;
            z-index: 1600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        .back-to-top-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
            color: var(--white-color);
        }

        /* Floating WhatsApp Button */
        .whatsapp-fab {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            text-decoration: none;
            z-index: 1600;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .whatsapp-fab:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        
        /* Cookie Consent Banner */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0,0,0,0.8);
            color: var(--white-color);
            padding: 1rem;
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1500;
            gap: 1rem;
        }
        .cookie-consent-banner p {
            margin: 0;
            text-align: center;
        }
        .cookie-consent-banner .btn {
            padding: 8px 20px;
            flex-shrink: 0;
        }

        /* Responsive Design */
        @media(max-width: 992px) {
            .about-content { grid-template-columns: 1fr; text-align: center; }
            .about-content img, #testimonials .about-content img { max-width: 350px; margin: 0 auto 2rem auto; } 
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .reason-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
        }
        
        @media(max-width: 768px) {
            .header-top {
                display: none;
            }
            h2 { font-size: 2rem; }
            .hero h1 { font-size: 2.8rem; }
            .hero p { font-size: 1.2rem; }
            .contact-grid { grid-template-columns: 1fr; padding: 2rem; }
            .gallery-grid { grid-template-columns: 1fr; } /* Changed to 1 column for smaller screens */
            .gallery-grid img { height: 180px; }
            .about-content img, #testimonials .about-content img { max-width: 300px; } 

            .navbar .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: var(--white-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.3s ease-in-out;
            }
            .navbar .nav-links.active {
                left: 0;
            }
            .navbar .nav-links li {
                margin: 1.5rem 0;
            }
            .navbar .nav-links li a {
                font-size: 1.5rem;
            }
            .hamburger-menu {
                display: block;
            }
            .cookie-consent-banner {
                flex-direction: column;
            }
        }
        
        @media(max-width: 500px) {
             .gallery-grid { grid-template-columns: 1fr; }
             .gallery-grid img { height: 200px; }
             .about-content img, #testimonials .about-content img { max-width: 250px; } 
             .reason-grid { grid-template-columns: 1fr; } /* Stack reasons on very small screens */
        }
