body,
html {
    height: auto; /* Changed from 100% to auto to accommodate multiple sections */
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.parallax-window,
.info {
    min-height: 100vh; /* Full height for each section */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.info {
    background-color: #f0f0f0; /* A light background for the non-parallax section */
}

.slide-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.info .slide-content {
    color: #333; /* Darker text color for better contrast on light background */
}

h1,
h2 {
    margin: 0 0 20px 0;
}

.arrow {
    color: #fff; /* Ensure the arrow is visible against the background */
    display: block; /* Block display to center it if needed */
    left: 0;
    right: 0;
    margin: auto; /* This centers the arrow */
    animation: bounce 2s infinite; /* Optional: adds a bouncing animation to the arrow */
    position: absolute;
    bottom: 20px; /* Ensure this is enough to not overlap with the countdown */
    font-size: 2em;
}

.arrow i {
    font-size: 3em; /* Larger size */
    color: #fff; /* Adjust color as needed */
}

/* Optional: Bouncing animation for the arrow */
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.parallax-window:nth-of-type(odd) .slide-content {
    color: #fff; /* Ensures text color is white on parallax backgrounds */
}

.countdown {
    position: absolute;
    top: 50%; /* Adjust as needed */
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3em; /* Adjust the size as needed */
    text-align: center;
    background: rgba(0, 0, 0, 0.35); /* Semi-transparent background */
    border-radius: 5px;
    padding: 10px 20px;
    min-width: 250px; /* Set a minimum width to accommodate the content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.blink-dot {
    animation: blink-animation 2s steps(2, start) infinite;
    -webkit-animation: blink-animation 2s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/* Contact content styling */
.contact-content {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap as needed */
    justify-content: space-around;
    text-align: center;
}

a {
    color: black !important; /* Sets hyperlink color to black */
    text-decoration: none; /* Removes underline from links */
}

a:hover {
    text-decoration: underline; /* Adds underline on hover for better user interaction */
}

.contact-info {
    margin-bottom: 40px; /* Adjusts the gap between contacts */
}

.contact-info p {
    margin: 5px 0; /* Adjusts spacing within a contact's info */
}

.column {
    flex: 1; /* Each column takes equal width */
    padding: 0 20px; /* Spacing between columns */
    min-width: 250px; /* Minimum width before columns wrap */
}

/* Remove the separator styles since you decided it's unnecessary */

@media (max-width: 768px) {
    .column {
        flex-basis: 100%; /* Takes full width on smaller screens */
        padding: 10px 0; /* Adjust padding for better spacing on small devices */
    }
}

/* Basic Montserrat style for regular text */
.montserrat-regular {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Regular weight */
}

/* Montserrat style for headings */
.montserrat-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold weight for more emphasis */
}

/* Montserrat style for emphasized text */
.montserrat-light {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Lighter weight for subtler emphasis */
}

.coming-soon {
    color: #fff;
    font-size: 2em; /* Adjust the size as needed */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 5px;
    padding: 20px 40px; /* Adjust padding as needed */
}

/* Footer Styles */
footer {
    background-color: #333; /* Dark background for the footer */
    color: #fff; /* White text color */
    text-align: center;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
}

footer a {
    color: #fff; /* Ensures footer links are white */
    text-decoration: underline;
}

footer a:hover {
    color: #ccc; /* Lighter shade when hovered */
}

#ai-wordcloud {
    font-size: 1.5em;
  }
  
.blinker {
opacity: 1;
margin-bottom: -2px;
height: 15px;
margin-left: -5px;
border-left: 5px solid black;
animation: blinker 0.9s steps(2, start) infinite;
}

@keyframes blinker {
to { 
    visibility: hidden; 
}
}
.dynamic-text{
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    top: 10%;
    font: 1.5em 'Montserrat', sans-serif;
    font-weight: 300; /* Regular weight */
}

.communities {
    position: absolute;
    margin-bottom: 20px;
    bottom: 0;
    text-align: center;
    margin-top: 20px;
}

.communities h2 {
    margin-bottom: 10px;
}

.communities a {
    margin: 0 10px; /* Space out icons */
    font-size: 24px; /* Icon size */
    transition: color 0.3s;
}

.communities a:hover {
    color: #2a9387; /* Color on hover */
}

.initiatives-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.initiative-item {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    border: #333;
    border-radius: 10px;
    min-width: 430px
}

.initiative-item img {
    max-width: 400px !important;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

.initiative-item h3 {
    margin-bottom: 10px;
}

.initiative-item p {
    margin-bottom: 15px;
}

.btn {
    background-color: #0066cc;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #0055a5;
}
.our-vision-section {
    background-color: rgba(0, 0, 0, 0.5); /* Change background color with semi-transparency */
    color: white;
    padding: 20px;
}

.our-vision-section .container {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent white background for the text */
    border-radius: 10px; /* Optional: for rounded corners */
    padding: 20px;
}
