* {
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: #333;
    background: linear-gradient(to bottom, #e3f2fd, #bbdefb);
    scroll-behavior: smooth;
}
.scroll-element {
    overflow: hidden;
}


header {
    background: rgba(21, 101, 192, 0.8);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header .logo {
    text-align: center;
}

header .logo h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

header .logo p {
    margin: 0;
    font-size: 1.2rem;
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.nav-bar a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-bar a:hover {
    color: #ffcc00;
}

.intro {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('intro.jpg') no-repeat center top;
    background-size: contain;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}


.call-to-action {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffcc00;
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.call-to-action:hover {
    transform: translateY(-5px);
    background-color: #ffd740;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

h2 {
    transition: color 0.3s ease, transform 0.3s ease;
}

h2:hover {
    
    transition: transform 0.3s ease;
    color: #ffcc00;
    transform: scale(1.1);
}
h2::after {
    content: '';
}


.services {
    padding: 3rem 1rem;
    background: #bbdefb;
    text-align: center;
}

.services h2 {
    color: #1565c0;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}


.gallery {
    padding: 3rem 1rem;
    text-align: center;
    background: #e3f2fd;
    position: relative;
    overflow: hidden;
    height: auto;
}

.gallery h2 {
    color: #1565c0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-grid.loaded {
    opacity: 1;
}

.image-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}



.contact {
    padding: 3rem 1rem;
    background: #bbdefb;
    text-align: center;
}

.contact h2 {
    color: #1565c0;
}



footer {
    padding: 1rem;
    background: #1565c0;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}


.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
}



.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
}

.lightbox button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox button:hover {
    transform: scale(1.2);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}


@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-grid img {
        width: 100%;
    }
}
