/* General Styles */
body {
    margin: 0;
    
    font-family: "Raleway", sans-serif;
    
    background-color: rgb(235,236,254);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


.section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f50;
    padding: 10px;
}
.text {
    color: white;
    font-size: 20px;
    margin-right: 20px;
}
.button {
    background-color: white;
    color: #f50;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #ff7043;
}
@media (max-width: 600px) {
    .text {
        font-size: 16px;
    }
    .button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Navbar Styles */
.navbar {
  background-color: #fdfeff;
  color: rgb(5, 5, 5);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 999;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  color: #060606;
  font-size: large;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
  transition: color 0.3s ease;
  font-weight: 500;
    font-family: "Raleway", sans-serif;
}

.navbar ul li a:hover {
  color: #e87a05;
}

/* Add caret to dropdown */
.navbar ul li.dropdown > a::after {
  content: '\f0d7'; /* Font Awesome down arrow (caret) */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 0.5rem;
}

.navbar ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fbfcfd;
  display: none;
  list-style: none;
  z-index: 998;
}

.navbar ul li:hover ul {
  display: block;
}

.navbar ul li ul li a {
  padding: 0.5rem 1rem;
  width: 200px;
  text-align: left;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgb(12, 12, 12);
}

@media (max-width: 768px) {
  .navbar ul {
      flex-direction: column; /* Keep this to stack items vertically */
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fdfefe;
      color: #000;
      width: 100%;
  
      display: none;
      z-index: 100;
      padding: 1rem 0; /* Add padding for better spacing */
  }

  .navbar ul.active {
      display: flex;
      flex-direction: column; /* Ensure items stack vertically */
      align-items: flex-start; /* Align items to the left */
  }

  .navbar ul li {
      width: 100%; /* Make each item full width */
  }

  .navbar ul li a {
      width: 100%; /* Make links full width for easier clicking */
      text-align: left; /* Align text to the left */
  }

  .navbar ul li ul {
      position: static; /* Ensure dropdowns are aligned properly */
  }

  .navbar ul li ul li a {
      padding: 0.5rem 1rem; /* Keep padding for dropdowns */
  }

  .menu-toggle {
      display: block;
  }
}


.contact{
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color:rgb(78,90,246);
    color: rgb(254,74,10);
    font-size: 40px;
}


/*  new for contact copied from internal css*/
.contact-section {
  margin-top: 20px;
  padding: 40px 0;
  background-color:  rgb(235,236,254);
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.contact-container {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 60%;
  height: 60vh;
}
.contact-details {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
}
.contact-details h2 {
  margin-bottom: 20px;
  color: #020202;
}
.contact-details p {
  margin-bottom: 10px;
  color: #080808;
}
.contact-details ul {
  list-style: none;
  padding-left: 0;
}
.contact-details ul li {
  margin-bottom: 10px;

  color: rgb(10, 10, 10);
}
.contact-details ul li i {
  margin-right: 10px;
  color: rgb(254,74,10);
}
.map {
  margin-bottom: 80px ;
  width: 80%;
  margin-left: 140px;
  height: 300px;
}
.footer {
  background-color: #12321a;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.footer p {
  margin: 0;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
      height: 50vh;
  }

  .map{
      width: 90%;
      height: 200px;
      margin-left: 20px;
  }
  .footer p{
      font-size: small;
      margin-bottom:10px ;
      

  }
}


.contact {
  height: 50vh; /* Allow height to adjust with content */
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: rgb(78,90,246);
  color: rgb(254, 74, 10);
  flex-direction: column;
  text-align: center;
}


.contact-details {
  max-width: 600px; /* Limit width for larger screens */
  width: 100%;
}

.contact-details h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  
    font-family: "Raleway", sans-serif;
}

.contact-details p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 400;
font-family: "Raleway", sans-serif;
  font-style: normal;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details li {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-details i {
  margin-right: 8px;
}

@media (max-width: 768px) {


  .contact{
    height: 30vh;
  }
  .contact h5{
    font-size: 1.2rem;
    
  }

  
.contact-container{
    
margin-right: 94px;
}
  .contact-details h2 {
      font-size: 1rem;
  }

  .contact-details p {
      font-size: 1rem;
  }

  .contact-details li {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-details h2 {
      font-size: 1.8rem;
  }

  .contact-details p {
      font-size: 0.9rem;
  }

  .contact-details li {
      font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
 


    .hero-content h1 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-content button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}


.upcoming-events {
    text-align: center;
    padding: 20px;
    width: 100%;
    background-color: #f9f9f9;
}

.upcoming-events h2 {
    font-size: 2rem;
    color: rgb(254 74 10);
    margin-bottom: 1.5rem;
    position: relative; font-weight: 600;
    font-family: "Raleway", sans-serif;
}




.section-breakk {
    width: 45%;
    height: 2px;
    background-color: #faf6f6; /* Match the color used in the title underline */
    border: none;
    margin: 1rem auto;
    margin-top: 45px;
    margin-bottom: 30px; /* Center the line with some margin */
}







/* Responsive Styles */

/* Tablets (Portrait, 768px and up) */
/* Tablets (Portrait, 768px and up) */
@media (max-width: 768px) {
    
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
    
}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
 
}


.contact {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #12321a;
  color: rgb(254, 74, 10);
  flex-direction: column;
}
/* Main Container */
.card-container {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card {
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 40px;
  color: rgba(78,90,246,1);
  margin-bottom: 15px;
}

h3 { font-weight: 600;
  font-family: "Raleway", sans-serif;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
}

p { font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.learn-more {
  text-decoration: none;
  color: #6c63ff;
  font-weight: bold;
  display: inline-block;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #333;
}

/* Media Queries for responsiveness */

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    margin-bottom: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .card-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .card {
    width: 45%;
  }
}

@media (min-width: 1025px) {
  .card-container {
    flex-direction: row;
    justify-content: space-around;
  }

  .card {
    width: 30%;
  }
}

/* map */
    /* Responsive Google Map Container */
    .map-container {
      width: 100%; /* Full width */
      height: 400px; /* Set a height for the map */
      max-width: 800px; /* Optional: Max width for larger screens */
      margin: 0 auto; /* Center the map */
      border: 1px solid #ccc; /* Optional: Add border for aesthetics */
      border-radius: 8px; /* Optional: Rounded corners */
      overflow: hidden; 
      margin-top:50px ;
      font-weight: 400;
font-family: "Raleway", sans-serif;
      margin-bottom: 50px;/* Ensure corners are rounded */
  }

  /* Ensure iframe takes full width and height */
  .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0; /* Remove default border */
  }


/* Footer Styles */
/* Footer Styles */



footer {
    background-color: #12321a;
    color: #fff;
    padding: 50px 0;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    margin: 15px;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgb(254,74,10); 
    font-family: "Raleway", sans-serif;
  }
  
  .footer-column p {
    font-size: 14px;
    line-height: 1.5; 
    font-weight: 400;
    font-family: "Raleway", sans-serif;}
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin: 10px 0;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: rgb(254,74,10);
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #f22;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    margin-top: 30px;
  }
  
  .footer-bottom p {
    font-size: 14px;
    color: #888;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-column {
      margin: 15px 0;
    }
  }
  