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

        body {
            font-family: 'Lato', sans-serif;
            color: #333;
        }

/* LOGO STYLING — fixed alignment inside navbar */
.logo {
  height: 130px;               /* Increase size nicely */
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-right: 1.5rem;       /* Space between logo and nav links */
}

.logo:hover {
  transform: scale(1.05);
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: #212529;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #1E3C72;
}

/* Right-aligned dropdown for About Us */
.dropdown-right .dropdown-content {
    right: 0;
    left: auto;
}

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23F8F9FA" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #212529;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: lato, sans-serif;
            font-weight: bolder;
        }

        .hero p {
            font-size: 16px;
            max-width: 800px;
            line-height: 1.6;
        }

        /* Filter Buttons */
        .filter-section {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 50px 20px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: #fff;
            border: 2px solid #ddd;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .filter-btn:hover {
            background: #333;
            color: white;
            border-color: #333;
        }

        .filter-btn.active {
            background: #333;
            color: white;
            border-color: #333;
        }

        /* Gallery Grid */
        .gallery-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 80px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }



        .gallery-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: top center;
        }

        .zoomed-out img {
            object-fit: cover;
            object-position: center;
        }





        /* Footer */
        footer {
            background: #1a1a2e;
            color: #fff;
            padding: 60px 50px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section p,
        .footer-section a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #ff6b00;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 15px;
                font-size: 12px;
            }

            .hero h1 {
                font-size: 28px;
                font-weight: bolder;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            header {
                padding: 15px 20px;
            }

            footer {
                padding: 40px 20px 20px;
            }
        }