<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PRADHIKSHA LANDSCAPING - Crafting Nature's Beauty into a Heavenly Oasis</title>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
    <style>
        :root {
            --primary-green: #228B22;
            --secondary-green: #32CD32;
            --dark-green: #006400;
            --light-green: #F0FFF0;
            --text-dark: #2C3E50;
            --text-light: #7F8C8D;
            --white: #FFFFFF;
            --gray: #95A5A6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-image {
            width: 100px;
            height: 100px;
            margin-right: 15px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 18px;
            color: var(--text-dark);
            margin: 0;
        }

        .logo-text p {
            font-size: 12px;
            color: var(--primary-green);
            margin: 0;
            font-weight: 500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--primary-green);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-green);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
            z-index: 1000;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
            padding: 160px 0 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h2 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero-text h2 span {
            color: var(--primary-green);
            display: block;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 1rem;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--primary-green);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            margin-right: 15px;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }

        .btn-outline:hover {
            background-color: var(--primary-green);
            color: var(--white);
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .divider {
            width: 60px;
            height: 3px;
            background-color: var(--primary-green);
            margin: 20px auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 3rem;
            text-align: center;
            padding: 30px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: var(--white);
        }

        .feature-content {
            padding: 30px;
        }

        .feature-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .feature-content p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Projects Section */
        .projects {
            padding: 100px 0;
            background-color: var(--light-green);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
        }

        .project-image {
            height: 250px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-content {
            padding: 25px;
        }

        .project-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .project-location {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .project-content p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Clients Section */
        .clients {
            padding: 80px 0;
            background-color: var(--white);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .client-item {
            padding: 20px;
            background-color: var(--light-green);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .client-item:hover {
            transform: translateY(-5px);
            background-color: var(--primary-green);
            color: var(--white);
        }

        /* Main Content Styles for other pages */
        main {
            padding: 120px 0 100px;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .content-text {
            padding: 20px;
        }

        .content-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .content-text p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .highlight-box {
            background-color: var(--light-green);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }

        .highlight-box h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-green);
        }

        .highlight-box p {
            color: var(--text-light);
        }

        .features-list {
            list-style: none;
            margin: 30px 0;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .features-list li:before {
            content: "✓";
            color: var(--primary-green);
            font-weight: bold;
            margin-right: 10px;
        }

        .image-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Services Page Styles */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            text-align: center;
            padding: 30px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: var(--white);
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .service-content p {
            color: var(--text-light);
            line-height: 1.7;
        }

        .service-details {
            margin: 30px 0;
            padding: 20px;
            background-color: var(--light-green);
            border-radius: 10px;
        }

        .service-details h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--primary-green);
        }

        .service-details p {
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .image-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }

        .image-content {
            padding: 20px;
        }

        .image-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .image-content p {
            color: var(--text-light);
            margin-bottom: 15px;
        }

        /* Projects Page Styles */
        .clients-section {
            margin-top: 60px;
            background-color: var(--light-green);
            padding: 60px 0;
            border-radius: 15px;
        }

        /* Contact Page Styles */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            padding: 20px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-info-item i {
            margin-right: 15px;
            color: var(--primary-green);
            font-size: 20px;
        }

        .contact-info-item p {
            color: var(--text-light);
            margin: 0;
        }

        .contact-form {
            padding: 20px;
            background-color: var(--light-green);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-green);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-green);
        }

        .footer-column p {
            color: #BDC3C7;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #BDC3C7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info li svg {
            margin-right: 10px;
            color: var(--primary-green);
            flex-shrink: 0;
        }

        .contact-info span {
            color: #BDC3C7;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495E;
            color: #BDC3C7;
            font-size: 0.9rem;
        }

        /* ============= MOBILE MENU STYLES ============= */
        @media (max-width: 992px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 25px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
                z-index: 999;
                animation: slideDown 0.3s ease-out;
            }

            nav ul.mobile-menu-active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            nav ul li {
                margin: 12px 0;
            }

            nav ul li a {
                display: block;
                padding: 10px 0;
                font-size: 18px;
                text-align: center;
            }

            nav ul li a:hover::after {
                width: 0;
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }
            
            .hero-text h2 {
                font-size: 2.8rem;
            }
            
            .stats {
                justify-content: center;
            }
            
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .image-container {
                order: 1;
            }
            
            .content-text {
                order: 2;
            }
            
            .image-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .image-container {
                order: 1;
            }
            
            .image-content {
                order: 2;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-info {
                order: 1;
            }
            
            .contact-form {
                order: 2;
            }
        }

        @media (max-width: 768px) {
            .hero-text h2 {
                font-size: 2.3rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
                text-align: center;
            }
            
            .btn-outline {
                margin-right: 0;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero-text h2 {
                font-size: 2rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
        }

        #photos {
          padding: 50px;
          text-align: center;
        }

        #photos h2 {
          font-size: 32px;
          margin-bottom: 30px;
        }

        .photo-category {
          margin-bottom: 50px;
        }

        .photo-category h3 {
          font-size: 24px;
          margin-bottom: 20px;
        }

        .gallery {
          display: flex;
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
        }

        .gallery img {
          width: 300px;
          height: 200px;
          object-fit: cover;
          border-radius: 8px;
          box-shadow: 0 2px 8px rgba(0,0,0,0.2);
          transition: transform 0.3s;
        }

        .gallery img:hover {
          transform: scale(1.05);
        }

        /* ✅ Floating & Bottom Contact Buttons CSS */
        .float-button-wrapper {
            position: fixed;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 999;
            bottom: 20px;
        }
        .call { left: 20px; }
        .whatsapp { right: 20px; }

        .float-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            text-decoration: none;
        }
        .call .float-button { background-color: #4CAF50; }
        .whatsapp .float-button { background-color: #25D366; }
        .float-button:hover { transform: scale(1.1); }

        .button-label {
            margin-top: 8px;
            color: #333;
            font-size: 14px;
            font-weight: bold;
            background: rgba(255,255,255,0.95);
            padding: 4px 8px;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            white-space: nowrap;
        }

        /* Bottom Action Bar */
        .bottom-action-bar {
            display: flex;
            justify-content: space-between;
            padding: 12px 16px;
            background: white;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }
        .action-btn {
            flex: 1;
            margin: 0 6px;
            padding: 14px 10px;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            color: white;
            font-size: 16px;
            font-weight: bold;
        }
        .call-btn { background-color: #4CAF50; }
        .whatsapp-btn { background-color: #25D366; }

        /* Hide floating buttons on desktop */
        @media (min-width: 769px) {
            .float-button-wrapper { display: none; }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <div class="container header-container">
            <div class="logo">
                <a href="index.html">
                    <img src="images/logo.png" alt="PRADHIKSHA LANDSCAPING Logo" class="logo-image">
                </a>
                <div class="logo-text">
                    <h1>PRADHIKSHA LANDSCAPING</h1>
                    <p>Creating Heavenly Oases</p>
                </div>
            </div>
            <nav>
                <ul>
                    <li><a href="index.html" class="active">Home</a></li>
                    <li><a href="about.html">About Us</a></li>
                    <li><a href="services.html">Services</a></li>
                    <li><a href="projects.html">Projects</a></li>
                    <li><a href="photos.html">Photos</a></li>
                    <li><a href="contact.html">Contact Us</a></li>
                </ul>
                <button class="mobile-menu-btn">
                    <span class="menu-icon">☰</span>
                    <span class="close-icon" style="display:none">×</span>
                </button>
            </nav>
        </div>
    </header>
    
    <!-- Hero Section -->
    <section class="hero">
        <div class="container">
            <div class="hero-content">
                <div class="hero-text">
                    <h2>Crafting Nature's Beauty into a 
                        <span>Heavenly Oasis</span>
                    </h2>
                    <p>Landscape Designer, Horticulturist & Design Expert specialists in transforming spaces into beautiful sanctuaries that bring happiness to the heart.</p>
                    <div class="cta-buttons">
                        <a href="services.html" class="btn">Explore Our Services</a>
                        <a href="contact.html" class="btn btn-outline">Contact Us</a>
                    </div>
                    <div class="stats">
                        <div class="stat-item">
                            <span class="stat-number">2021</span>
                            <span class="stat-label">Established</span>
                        </div>
                        <div class="stat-item">
                            <span class="stat-number">50+</span>
                            <span class="stat-label">Projects</span>
                        </div>
                        <div class="stat-item">
                            <span class="stat-number">4</span>
                            <span class="stat-label">States</span>
                        </div>
                    </div>
                </div>
                <div class="hero-image">
                    <img src="https://placehold.co/600x500/228B22/FFFFFF?text=Beautiful+Garden+Oasis" alt="Beautiful Garden Oasis">
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer>
        <div class="container">
            <div class="footer-content">
                <div class="footer-column">
                    <div class="logo">
                        <a href="index.html">
                            <img src="images/logo.png" alt="PRADHIKSHA LANDSCAPING Logo" class="logo-image">
                        </a>
                        <div class="logo-text">
                            <h1>PRADHIKSHA LANDSCAPING</h1>
                            <p>Creating Heavenly Oases</p>
                        </div>
                    </div>
                    <p>Specialists in transforming spaces into beautiful sanctuaries that bring happiness to the heart through expert landscaping and horticulture.</p>
                </div>
                <div class="footer-column">
                    <h3>Quick Links</h3>
                    <ul class="footer-links">
                        <li><a href="index.html">Home</a></li>
                        <li><a href="about.html">About Us</a></li>
                        <li><a href="services.html">Services</a></li>
                        <li><a href="projects.html">Projects</a></li>
                        <li><a href="photos.html">Photos</a></li>
                        <li><a href="contact.html">Contact Us</a></li>
                    </ul>
                </div>
                <div class="footer-column">
                    <h3>Contact Info</h3>
                    <ul class="contact-info">
                        <li>📞 9003740011, 9360409916</li>
                        <li>📧 pradhikshalandscape07@gmail.com</li>
                        <li>📍 Chengalpattu & Chennai</li>
                    </ul>
                </div>
            </div>
            <div class="footer-bottom">
                <p>&copy; 2025 PRADHIKSHA LANDSCAPING. All rights reserved. GSTIN: 33GPPPD852H1ZN</p>
            </div>
        </div>
    </footer>

    <!-- Floating Call Button -->
    <div class="float-button-wrapper call">
        <a href="tel:+919003740011" class="float-button">
            <img src="https://img.icons8.com/ios-filled/50/ffffff/phone.png" alt="Call">
        </a>
        <span class="button-label">Call Now</span>
    </div>

    <!-- Floating WhatsApp Button -->
    <div class="float-button-wrapper whatsapp">
        <a href="https://wa.me/+919003740011?text=Hi,%20I%20need%20this.%20Please%20let%20me%20know%20the%20balance." class="float-button">
            <img src="https://img.icons8.com/ios-filled/50/ffffff/whatsapp.png" alt="WhatsApp">
        </a>
        <span class="button-label">WhatsApp Now</span>
    </div>

    <!-- Bottom Action Bar -->
    <div class="bottom-action-bar">
        <a href="tel:+919003740011" class="action-btn call-btn">📞 Call Now</a>
        <a href="https://wa.me/+919003740011?text=Hi,%20I%20need%20this.%20Please%20let%20me%20know%20the%20balance." class="action-btn whatsapp-btn">💬 WhatsApp Now</a>
    </div>

    <!-- ✅ FIXED JAVASCRIPT -->
    <script>
        // Mobile menu toggle — FULLY WORKING
        const menuBtn = document.querySelector('.mobile-menu-btn');
        const menuIcon = document.querySelector('.menu-icon');
        const closeIcon = document.querySelector('.close-icon');
        const navMenu = document.querySelector('nav ul');

        menuBtn.addEventListener('click', function() {
            navMenu.classList.toggle('mobile-menu-active');
            
            if (navMenu.classList.contains('mobile-menu-active')) {
                menuIcon.style.display = 'none';
                closeIcon.style.display = 'inline';
                document.body.style.overflow = 'hidden'; // Prevent scrolling
            } else {
                menuIcon.style.display = 'inline';
                closeIcon.style.display = 'none';
                document.body.style.overflow = ''; // Restore scrolling
            }
        });

        // Close menu when clicking outside
        document.addEventListener('click', function(e) {
            if (!navMenu.contains(e.target) && !menuBtn.contains(e.target) && navMenu.classList.contains('mobile-menu-active')) {
                navMenu.classList.remove('mobile-menu-active');
                menuIcon.style.display = 'inline';
                closeIcon.style.display = 'none';
                document.body.style.overflow = '';
            }
        });

        // Highlight active nav link
        const currentLocation = window.location.pathname.split('/').pop();
        const navLinks = document.querySelectorAll('nav a');
        
        navLinks.forEach(link => {
            const href = link.getAttribute('href');
            if (href === currentLocation) {
                link.classList.add('active');
            } else {
                link.classList.remove('active');
            }
        });
    </script>
</body>
</html>
