/* Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background: url('IMAGES/r4.jpg') no-repeat center center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.header-overlay {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 20px;
    width: 100%;
}

.header h1 {
    font-size: 30px;
    margin: 0;
}

.header p {
    font-size: 18px;
    margin-top: 10px;
}

/* About Section */
.about-section {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.about-section h2 {
    color:  #007BFF;
    margin-bottom: 10px;
}

.about-section p {
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 10px;
}

/* Map Section */
.map-section {
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

.map-section h2 {
    color:  #007BFF;
    margin-bottom: 10px;
}

.map-container iframe {
    border: 2px solid #007BFF;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    margin: auto;
    display: block;
}

/* Scrolling Gallery Section */
.gallery-section {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.gallery-section h2 {
    color:  #007BFF;
    margin-bottom: 10px;
}

.gallery-section p {
    color: #666;
    margin-bottom: 20px;
}

.gallery {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-item {
    position: absolute;
    width: 100%;
    animation: scroll-up 20s linear infinite;
}

.gallery-item:nth-child(1) {
    animation-delay: 0s;
}

.gallery-item:nth-child(2) {
    animation-delay: 5s;
}

.gallery-item:nth-child(3) {
    animation-delay: 10s;
}

.gallery-item:nth-child(4) {
    animation-delay: 15s;
}

.gallery img {
    display: block;
    margin: auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Scroll Animation */
@keyframes scroll-up {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    20% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(0);
        opacity: 1;
    }
    60% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color:  #007BFF;
    border: 2px solid  #007BFF;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.hero-btn:hover {
    border: 2px solid red;
    background: red;
    color: #fff;
}
/* Footer */
.whatsapp-icon {
    position: fixed; /* Makes it stay in place even when scrolling */
    bottom: 10px;    /* Distance from the bottom of the screen */
    right: 10px;     /* Distance from the right side of the screen */
    z-index: 1000;   /* Ensures it appears above other elements */
}

.whatsapp-icon a img {
    width:30px;    /* Adjust the size of the icon */
    height: 30px;   /* Keep the aspect ratio */
    border-radius: 40%; /* Makes it circular */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effects */
}

.whatsapp-icon a img:hover {
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Enhances the shadow */
}
/* Footer */
footer {
    background: #007BFF;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-contact,
.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.footer-links ul li a:hover {
    color:  #007BFF;
}
.footer {
    background-color:  #007BFF;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-media {
    margin: 20px 0;
}

.social-icon {
    text-decoration: none;
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff6347; /* Change to your preferred hover color */
}

.facebook:hover {
    color: #3b5998;
}

.twitter:hover {
    color: #1da1f2;
}

.instagram:hover {
    color: #e4405f;
}

.linkedin:hover {
    color: #0077b5;
}

.telegram:hover {
    color: #0088cc;
}

.tiktok:hover {
    color: #69c9d0;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
}