        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(190, 190, 190, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(190, 190, 190, 0.95);
            padding: 10px 0;
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            height: 120px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 50px;
        }

        nav ul li a {
            text-decoration: none;
            color: #006ae2;
            font-weight: 800;
            transition: color 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: #0066cc;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #0066cc;
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
            z-index: 1; /* Add this */
        }

        /* Hero Background Image */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Dark overlay to make text readable */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            background: rgba(0, 0, 0, 0.76);
            padding: 40px 60px;
            border-radius: 15px;
            z-index: 1;
            animation: fadeInUp 1s ease;
        }

        .hero-content h1 {
            font-size: 56px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 22px;
            margin-bottom: 30px;
            opacity: 0.9;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: #0066cc;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4), 
                        0 0 30px rgba(0, 102, 204, 0.5); /* Glow effect */
            background: #0066cc;
            color: white;
        }
        
        .btn:active {
            transform: translateY(-1px) scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* About Section */
        #about {
            padding: 100px 40px;
            background: #bbbbbb;
            min-height: 600px;
            display: block;
            visibility: visible;
            position: relative; /* Add this */
            z-index: 10; /* Add this - higher than hero */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 20px;
            color: #333;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-description {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px 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 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #0066cc;
        }

        /* Gallery Section */
        #gallery {
            padding: 100px 40px;
            background: #bbbbbb;
            min-height: 800px;
            display: block;
            visibility: visible;
            position: relative; /* Add this */
            z-index: 10; /* Add this */
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            aspect-ratio: 4/3;
            background: #e0e0e0;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            z-index: 10;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: white;
            font-size: 20px;
            font-weight: 600;
        }

        .gallery-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            color: #999;
            height: 100%;
            width: 100%;
        }

        /* Modal/Preview Window */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.95);
            animation: fadeIn 0.3s ease;
        }
        
        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px; /* Add padding around modal */
        }
        
        .modal-content {
            position: relative;
            max-width: 1200px; /* Limit maximum width */
            max-height: 80vh; /* Limit to 80% of viewport height */
            width: 90%; /* Responsive width */
            animation: zoomIn 0.3s ease;
        }
        
        .modal-content img {
            width: 100%;
            height: 100%;
            max-height: 80vh; /* Match container height */
            object-fit: contain; /* Keep aspect ratio */
            border-radius: 10px;
        }
        
        .modal-caption {
            position: absolute;
            bottom: -60px; /* Move below image */
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 20px; /* Reduced from 24px */
            font-weight: 600;
            text-align: center;
            background: rgba(0,0,0,0.7);
            padding: 12px 25px; /* Reduced padding */
            border-radius: 50px;
            white-space: nowrap;
        }

        .close-modal {
            position: absolute;
            top: 30px;
            right: 50px;
            font-size: 50px;
            color: white;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 2001;
        }

        .close-modal:hover {
            transform: scale(1.2);
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 50px;
            color: white;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            padding: 20px;
            border-radius: 50%;
            transition: all 0.3s ease;
            user-select: none;
        }

        .modal-nav:hover {
            background: rgba(0,0,0,0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-prev {
            left: 30px;
        }

        .modal-next {
            right: 30px;
        }

        /* Contact Section */
        #contact {
            padding: 100px 40px;
            background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
            color: white;
            position: relative; /* Add this */
            z-index: 10; /* Add this */
        }

        #contact .section-title,
        #contact .section-subtitle {
            color: white;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: white;
            color: #0066cc;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 40px 40px;
            position: relative; /* Add this */
            z-index: 10; /* Add this */
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-info {
            margin-bottom: 20px;
        }

        .footer-info p {
            margin: 5px 0;
        }

        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            color: white;
            font-size: 24px;
            margin: 0 15px;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            color: #0066cc;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-50px) translateX(50px);
            }
            50% {
                transform: translateY(-100px) translateX(-50px);
            }
            75% {
                transform: translateY(-50px) translateX(50px);
            }
        }

        /* Scroll Animation */
        .fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.animate {
    animation: fadeInUpAnim 0.8s ease forwards;
}

@keyframes fadeInUpAnim {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Success Message */
        .success-message {
            position: fixed;
            top: 100px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 20px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            opacity: 0;
            transform: translateX(400px);
            transition: all 0.3s ease;
            z-index: 2000;
        }

        .success-message.show {
            opacity: 1;
            transform: translateX(0);
        }

        .error-message {
            position: fixed;
            top: 100px;
            right: 20px;
            background: #f44336;
            color: white;
            padding: 20px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            opacity: 0;
            transform: translateX(400px);
            transition: all 0.3s ease;
            z-index: 2000;
        }

        .error-message.show {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav ul {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 20px 0;
            }

            nav ul.active {
                left: 0;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 18px;
            }

            .section-title {
                font-size: 32px;
            }

            nav .container {
                padding: 15px 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .close-modal {
                top: 15px;
                right: 15px;
                font-size: 40px;
            }

            .modal-nav {
                font-size: 30px;
                padding: 10px;
            }

            .modal-prev {
                left: 10px;
            }

            .modal-next {
                right: 10px;
            }

            .modal-caption {
                font-size: 18px;
                padding: 10px 20px;
                bottom: 10px;
            }

            #about {
                padding: 60px 20px;
            }

            #gallery {
                padding: 60px 20px;
            }
        }
