/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 20px 0; /* Increased padding for a taller navbar */
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically */
}

/* Logo */
.logo img {
    max-width: 220px; /* Bigger logo */
    height: auto;
}

/* Fade In Effect */
.reveal {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

/* Keyframes for Fade In Animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Header */
header {
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
}







.about-section {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.about-section h2 {
    font-size: 1.8rem;
    color: #6a0dad;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Centering paragraphs */
.about-section p {
    font-size: 1rem;
    line-height: 1.6; /* Slightly increased for better readability */
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

/* Mission and Vision Sections */
.mission-section, .vision-section {
    background-color: #f5f5f5;
    padding: 30px 20px;
    text-align: center;
}











/* Call to Action Section */
.cta {
    text-align: center;
    background-color: #D84B16;
    color: #fff;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 10px;
}

.cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #D84B16;
    font-size: 1.2rem;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #ffb36d;
}


/* Footer */
.footer {
    background-color: #9370DB;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer-social {
    max-width: 400px;
    margin: 0 auto;
}

.footer-social h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #D84B16;
}

.footer-bottom {
    font-size: 1rem;
    color: white;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-social {
        max-width: 100%;
    }

    .social-icons a {
        font-size: 1.8rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }
}




/* Define fade-in keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make the sections hidden initially */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Apply the fade-in effect when the section is in view */
.reveal.fade-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 1s forwards; /* Adjust duration and easing as needed */
}

/* Other styling... */













.about-section {
    background: #f9f9f9;
    padding: 50px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.about-section h2 {
    font-size: 2rem;
    color: #6a0dad;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Centering the list while keeping text aligned left */
.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 700px;
    margin: auto;
}

/* Styling each list item */
.values-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

/* Checkmark Styling */
.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6a0dad;
    font-weight: bold;
}











.about-section {
    background: #f9f9f9;
    padding: 50px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.about-section h2 {
    font-size: 2rem;
    color: #6a0dad;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Centering the list while keeping text aligned left */
.initiatives-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 700px;
    margin: auto;
}

/* Styling each list item */
.initiatives-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

/* Checkmark Styling */
.initiatives-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6a0dad;
    font-weight: bold;
}



/* Prevent horizontal scroll and shaking */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    touch-action: manipulation; /* Helps prevent weird touch behavior */
    overscroll-behavior-x: none; /* Prevents bounce on mobile */
    position: relative;
}











.info-box {
    background: linear-gradient(135deg, #5e0acc, #b30000); /* Purple to Deep Red */
    color: #ffffff;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 12px;
    max-width: 900px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.info-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f5f5f5;
}






















/* Container for side-by-side layout */
.flex-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; /* space between left and right sections */
    margin: 40px auto;
    max-width: 1200px;
    flex-wrap: wrap;
}

/* Each box inside the flex container */
.flex-item {
    flex: 1 1 45%;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive stacking on smaller screens */
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        gap: 20px;
    }

    .flex-item {
        flex: 1 1 100%;
    }
}











.back-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  background-color: #800080; /* Purple */
  color: #fff;            /* Deep Red */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  z-index: 9999;
  transition: background-color 0.3s;
}
.back-btn:hover {
  background-color: #4B004B; /* Darker purple on hover */
}