@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Merriweather Sans", sans-serif;
    margin: 0;
    padding: 0;
}



/* Navbar styles */
.navbar-brand img {
    height: 80px; /* Adjust the height of the logo */
}
.navbar-toggler {
    border: none !important; /* Removes the border */
    outline: none !important; /* Removes the outline */
    box-shadow: none !important; /* Removes any shadow */
}

/* Remove focus styles */
.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
/* Change the menu icon color to green */
/* Change the hamburger icon color to green */
.navbar-toggler-icon {
    filter: invert(43%) sepia(92%) saturate(555%) hue-rotate(83deg) brightness(94%) contrast(92%);
}

/* Remove any focus styles */
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
/* Default styling for nav links */
.nav-item a {
    font-weight: bold; /* Make the links bold */
    color: #000; /* Default text color */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for nav links */
.nav-item a:hover {
    color: #28a745; /* Change color to green (or your desired color) on hover */
}

.custom-btn {
    color: #fff;
    background-color: #28a745; /* Green button */
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    text-align: center;
}
.custom-btn:hover {
    background-color: #218838; /* Darker green */
}

/* Sliding menu bar */
@media (max-width: 992px) {

    .button-group {
        margin-top: 20px; /* Space above buttons */
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Add spacing between buttons */
    }
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}
/* Close button only visible on mobile screens */
.close-btn {
    display: none; /* Hidden by default */
}

@media (max-width: 992px) {
    .close-btn {
        display: block; /* Show the close button on mobile screens */
    }
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
  }
  .whatsapp-button i {
    font-size: 20px;
    margin-right: 10px;
  }
  .whatsapp-button:hover {
    background-color: #20B857;
    text-decoration: none;
  }
 /* Style for the heading */
.about-heading {
    font-size: 2.5rem; /* Larger font size */
    font-weight: bold; /* Make it bold */
    color: #000; /* Black color */
    margin-bottom: 20px; /* Space below the heading */
}

/* Style for the paragraph text */
.about-text {
    font-size: 1.1rem; /* Slightly larger text */
    color: #555; /* Soft gray color for readability */
    line-height: 1.8; /* Improved spacing for readability */
}

/* Highlighted text style */
.highlight {
    color: #4CAF50; /* Green highlight for important phrases */
    font-weight: 600; /* Semi-bold */
}

/* Link style */
.highlight-link {
    color: #4CAF50; /* Match the green highlight */
    font-weight: 600; /* Semi-bold */
    text-decoration: underline; /* Underline for links */
}

/* Button adjustments */
.btn-lg {
    padding: 10px 30px; /* Larger padding for a prominent button */
    font-size: 1rem; /* Larger text size for the button */
    border-radius: 0px; /* Rounded edges */
}
/* Section Heading */
.section-heading {
    font-size: 2.5rem; /* Larger heading */
    font-weight: bold; /* Bold text */
    color: #000; /* Black color */
    margin-bottom: 20px;
}

/* Section Text */
.section-text {
    font-size: 1.1rem; /* Slightly larger font */
    color: #555; /* Gray color for readability */
    line-height: 1.8; /* Better spacing between lines */
    margin-bottom: 20px; /* Space between paragraphs */
}

/* Image Styling */
/* Section Subheading */
.section-subheading {
    font-size: 1.2rem;
    color: #28a745; /* Green color */
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Section Heading */
.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000; /* Black */
    margin-bottom: 20px;
}

/* Section Paragraph */
.section-paragraph {
    font-size: 1.1rem;
    color: #555; /* Gray color */
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Link Highlight */
.link-highlight {
    color: #28a745; /* Green */
    text-decoration: none;
}

.link-highlight:hover {
    text-decoration: underline;
}
/* Leader Card Styling */
/* Leader Card Styling */
.leader-card img {
    width: 100%; /* Full width of the column */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensures the image fits nicely without distortion */
    border: none; /* Remove any border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.leader-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000; /* Black color */
    margin-top: 10px;
}

.leader-card .leader-role {
    font-size: 1rem;
    color: #555; /* Gray color */
    font-style: italic;
}
.footer {
    background-color: #000;
    background-size: cover;
    background-position: center;
    color: white;
  }
  
  .footer-logo {
    max-width: 150px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    text-decoration: none;
  }
  
  .footer h5 {
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .footer p,
  .footer ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer ul {
    padding-left: 0;
  }


