@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    overflow-y: auto; /* Allow vertical scrolling */
}

/* Ensure the slideshow section takes full viewport height */
.slideshow-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Use min-height instead of height */
    overflow: hidden;  /* Keep overflow hidden here to manage the slideshow */
	
}


.slider {
    display: flex;
    width: 100%;
    height: 100vh;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
	border-radius: 50%;
	width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}
.play-pause {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    z-index: 15;
	border-radius: 5px;
	display: flex;
    align-items: center;
    justify-content: center;
	width: 50px;
    height: 35px;
}

.prev:hover, .next:hover, .play-pause:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



.text-container-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    text-align: center;
	width:90%;
	opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 2.0s ease-in, transform 0.8s ease-in;
}

.slide.active .text-container-slider {
    opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.text-container-slider h2 {
	font-family: 'Poppins', sans-serif;
    font-size: 50px;
    margin: 0;
}

.text-container-slider p {
	
	font-family: 'Arial', sans-serif;
	font-size: 23px;
    margin: 10px 0 0 0;
}
@media (max-width: 768px) {
    .prev, .next {
		top: 90%;
    }
	.text-container-slider h2 {
		font-size: 35px;
		margin: 0;
	}
		
	.text-container-slider p {
		font-size: 20px;
		margin: 10px 0 0 0;
	}


}

/* Content Section Container */
.content-section {
	position: relative;
    padding: 10px 8px;
    background-color: #fff;
    z-index: 20;
}


.content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.content-container-fb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	flex-direction: column;
    text-align: center;
	gap: 0px;
	
}

.image-container img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.image-container:hover img {
    transform: scale(1.075); /* Slight zoom effect on hover */
}

.image-container-fb {
    width: 340px;
    height: auto;
    overflow: hidden;
    position: relative;
}

.image-container-fb iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}



/*
.image-container-fb iframe {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}*/
/* Text Container Styling */
.text-container {
    max-width: 650px;
}
.text-container-main-headline-description h1 {
	font-family: 'Lato', sans-serif;    
	text-align: center;
    font-size: 38px;
	padding: 8px 20px;
    color: #778;
}
.text-container h2 {
    font-size: 28px;
    color: #333;
}
.text-container-fb h2 {
	font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #39E;
}
.text-container-main-headline-description h2 {
    font-size: 25px;    
	text-align: center;
    color: #0073e6;  /* Main theme color */
}
.text-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.text-container-main-headline-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}

/* Reverse Class for Swapping Image and Text */
.content-container.reverse {
    flex-direction: row-reverse;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
		gap: 0px;
    }

    .content-container.reverse {
        flex-direction: column;
    }

    .text-container {
        padding: 0px 0;
    }
	.text-container-main-headline-description h1 {
		font-size: 32px;
		padding: 15px; 
	}
	.text-container h2 {
		font-size: 28px;
	}
	.text-container-main-headline-description h2 {
		font-size: 20px;
	}
	.text-container-main-headline-description p {
	padding: 0px;
	}

}

/* Individual Social Icon Links */
.social-icon {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Social Icon Images */
.social-icon img {
    width: 50px;  /* Icon size */
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ddd;  /* Light border */
    transition: border-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 4px;
}

/* Hover Effect for Icons */
.social-icon:hover img {
    border-color: #0073e6;  /* Change border color on hover */
    transform: scale(1.1);   /* Slightly enlarge on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}



/* Map Section Styling */
.map-content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

/* Video Container Styling */
.map-container {
    flex: 1;
    max-width: 600px;
}

.map-container iframe {
    width: 100%;
    height: 315px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .map-content-section {
        flex-direction: column;
        text-align: center;
    }

    .map-container {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Contact Information Section */
.contact-info {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-box {
    max-width: 300px;
    width: 100%;
}

.info-box h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
}

.info-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.info-box p a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.info-box p a:hover {
    color: #0056b3;
}

/* Adding spacing between the boxes */
.contact-info .info-box:not(:last-child) {
    margin-right: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-info .info-box:not(:last-child) {
        margin-right: 0;
    }
    .info-box h2 {
        text-align: center;
    }
}

/* Learn more button */
.button-link img {
    display: block;
    width: auto; /* Adjust as needed */
    height: 30px;
    transition: transform 0.3s ease;
}
.button-link:hover img {
    transform: scale(1.1); /* Slight zoom effect on hover */
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}