body {
    font-family: Arial, sans-serif;
}

.intro-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.about-section {
    background-color: #f8f9fa;
}

.about-section .row {
    display: flex;
    align-items: center;
}

.about-section .col-md-8 {
    flex: 1;
}

.about-section .col-md-4 {
    display: flex;
    justify-content: center;
}

.about-section .col-md-4 img {
    height: 200px;
    /* Adjust height as needed */
    border-radius: 50%;
    border: 5px solid #fff;
    /* White border */
}

.gallery {
    column-count: 4;
    column-gap: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .gallery {
        column-count: 3;
    }
}

@media (max-width: 800px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 500px) {
    .gallery {
        column-count: 1;
    }
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}

.about-section p {
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.6;
    color: #8d8d8d;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}