/* General button styles */

/* Footer button */
.footer__btn {
  background-color: #f79420;
  color: white;
}

.footer__btn:hover {
  background-color: #e68a00;
}
.footer__btn {
  background-color: #f79420;
  color: white;
}

.footer__btn:hover {
  background-color: #e68a00;
}
.icon {
  display: inline-block;
  color: #ff9900;
  font-size: 24px;
  margin: 0 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.navbar__btn {
  background-color: #f79420;
  color: white;
  width: 274px;
  height: 76px;
  padding: 15px 20px;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}
.icon:hover {
  color: white;
  background-color: #ff9900;
}

.navbar .nav-link {
  color: #f79420;
  font-size: 1.25rem;
  line-height: 30.12px;
}

.navbar .nav-link:hover {
  color: #e68a00;
}

.index-page .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.navbar__btn:hover {
  background-color: #e68a00;
}

body {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
}

/* Navbar link color */

/* General Adjustments */
.index-page body {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
}

.index-page .text-block h1 {
  font-size: 2.25rem;
  color: #333;
  line-height: 1.4;
}

/* Image styling */
.index-page .img-fluid {
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}

.index-page .img-fluid:hover {
  transform: scale(1.05);
}

/* Flexbox for Quote Section */
.index-page .d-flex.justify-content-between {
  margin-top: 30px;
}

.parent-class {
  position: relative;
}

.child-class {
  position: absolute;
  left: -45px;
}

.image-container {
  position: relative;
}

.top-image {
  /* position: absolute; */
  z-index: 2;
  border-radius: 8px;
}

.bottom-image {
  transform: rotate(-10deg);
  position: absolute;

  z-index: 1;
  border-radius: 8px;
}

.index-page .large-font-bold {
  font-size: 2.25rem;
  color: #0a0a0a;
  font-weight: 900;
  font-size: 64px;
}

/* Responsive Grid Layout for Images */
@media (min-width: 768px) {
  .row .col-md-4 {
    margin-bottom: 20px;
    padding-inline: 0;
  }

  .row.text-center .col-md-4:nth-child(2) img {
    padding: 10px;
    margin-top: 50px;
    margin-bottom: 10px;
  }
}

/* Footer Button Styling */
.index-page .btn {
  background-color: #f79420;
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.index-page .btn:hover {
  background-color: #d97706;
}

/* Hero section heading */
.index-page .custom-heading {
  font-family: Mulish, sans-serif;
  color: #f79420;
  text-align: center;
}

/* Hero section paragraph */
.index-page .para {
  margin: 20px auto;
  margin-bottom: 10%;
  font-family: Mulish, sans-serif;
  font-size: 1.25rem;
  line-height: 30px;
  text-align: center;
  max-width: 100%;
  color: #000;
}

/* Container alignment */
.index-page .container-custom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .index-page .para {
    font-size: 1.125rem;
  }

  .index-page .image-container {
    flex-direction: column;
    align-items: center;
  }

  .index-page .responsive-image {
    width: 80%;
  }

  .index-page .card {
    margin: 10px 0;
  }
}

/* Image section */
.index-page .responsive-image {
  width: 30%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  position: relative;
}

.index-page .text-center {
  margin-top: 150px;
}

.index-page .rounded {
  border-radius: 20px;
}

/* Utility class */
.index-page .large-font-bold {
  font-size: 2.5rem;
}

.index-page .blue-line {
  width: 100%;
  height: 3px;
  background-color: #f79420;
  margin: 20px 0;
}

/* Adjusting image section for proper alignment */
.index-page .image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Testimonial card enhancement */
.index-page .card {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.index-page .card:hover {
  transform: translateY(-5px);
}

.who {
  margin-top: 50px;
}

/* General Body Styles */
.community-page body {
  font-family: "Mulish", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background Overlay */
.community-page .background-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/static/djangogirlstz/images/Rectangle 45 (1).png");
  background-size: cover;
  background-position: center;
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-repeat: no-repeat;
}


/* Custom Card Styles */
.community-page .custom-card {
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  margin: -100px 10px 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .community-page .card-container {
    flex-direction: column;
  }

  .community-page .custom-card {
    margin: 10px 0;
  }
}

.community-page .custom-card:hover {
  transform: translateY(-10px);
}

.community-page .icon-img {
  width: 60px;
  margin-bottom: 1rem;
}

.community-page .card-title {
  color: #f79420;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.community-page .card-text {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  text-align: center;
}
.community-page .left-card {
  margin: 0;
  padding: 0;
}

.community-page .left-card .info_card {
  margin: 0;
  width: 100%;
  padding:80px 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .community-page .left-card .info_card {
    padding: 20px;
    width: 100%;
    box-shadow: none;
  }
}


/* Text Styles */
.community-page .left-card h2 {
  font-size: 26px;
  font-weight: bold;
}

.community-page .left-card p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
}


/* Swiper Container */
.community-page .swiper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Swiper Wrapper */
.community-page .swiper-wrapper {
  display: flex;
  align-items: center;
}

/* Swiper Slides */
.community-page .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 70%;
  background-color: #f8f9fa; 
}

.community-page .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

/* Swiper Navigation Buttons */
.community-page .swiper-button-prev,
.community-page .swiper-button-next {
  color: #f79420;
  font-size: 24px;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}

.community-page .swiper-button-prev:hover,
.community-page .swiper-button-next:hover {
  opacity: 1;
}

.community-page .swiper-button-prev {
  left: 10px;
}

.community-page .swiper-button-next {
  right: 10px;
}

/* Swiper Pagination */
.community-page .swiper-pagination {
  bottom: 15px;
  text-align: center;
}

.community-page .swiper-pagination-bullet {
  background: #d3d3d3;
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.community-page .swiper-pagination-bullet-active {
  background: #f79420;
  transform: scale(1.2);
  opacity: 1;
}

@media (max-width: 768px) {
  .community-page .left-card .info_card {
    padding: 20px;  
    box-shadow: none; 
  }

  /* Adjust swiper slide height for small screens */
  .community-page .swiper-slide {
    height: 250px; /
  }

  /* Hide navigation buttons on small screens */
  .community-page .swiper-button-prev,
  .community-page .swiper-button-next {
    display: none;
  }

  /* Adjust pagination */
  .community-page .swiper-pagination {
    bottom: 10px;
  }

  /* Adjust left card layout */
  .community-page .left-card {
    padding: 20px; /* Add some padding for mobile */
  }

  /* Adjust left card text */
  .community-page .left-card h2 {
    font-size: 22px;
  }

  .community-page .left-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  .community-page .left-card .slide-through {
    font-size: 14px;
    font-weight: bold;
    color: #ff7e00;
    display: inline-block;
    margin-top: 10px;
  }

  /* Adjust container and columns layout */
  .community-page .container {
    padding: 0 15px; /* Reduce padding for mobile */
  }

  .community-page .row {
    display: block; /* Stack the left card and swiper on small screens */
  }

  .community-page .col-md-4,
  .community-page .col-md-8 {
    width: 100%;
    padding: 0; /* Remove any extra padding on mobile */
  }
}



/* events-page */
.events-page .background-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/static/djangogirlstz/images/Rectangle 32.png");
  background-size: cover;
  background-position: center;
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-repeat: no-repeat;
}

.events-page .navbar-nav {
  justify-content: center;
}

.events-page .nav-link {
  color: #f79420;
}

.events-page .nav-link:hover {
  color: #c77b1a;
}

.events-page .card {
  border-radius: 0;
  height: 85vh;
  overflow: hidden;
  border: none;
  background-color: transparent;
}

.events-page .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.events-page .card-img-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
}

.events-page .community-paragraph {
  color: white;
}

.events-page .community-heading {
  color: #f79420;
  font-size: 48px;
  font-family: "Munish", sans-serif;
  font-weight: 900;
}
/* Card image styling */
.events-page .card-img-top {
  object-fit: cover; /* Ensures the image covers the area */
  height: 500px; /* Adjust this value to reduce the height of the card image */
  width: 100%; /* Ensures the image takes the full width of the card */
}

/* Card body styling */
.events-page .card-body {
  height: 100%; /* Makes all cards the same height */
}

/* Optional: Add margin for spacing between cards */
.events-page .card {
  margin-bottom: 15px;
}

/* Adjust text color for card city and date */
.events-page .card-city,
.events-page .card-date {
  font-size: 14px;
  color: #6c757d;
}
.events-page .footer__btn {
  background-color: #f79420;
  color: white;
}

.events-page .footer__btn:hover {
  background-color: #e68a00;
}
.events-page .view-all-btn {
  background-color: #f79420;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 35rem;
  width: 318px;
}
.events-page .faq-title {
  font-family: "Mulish", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 60.24px;
  text-align: left;
}


.accordion-button:not(.collapsed) {
  color: white;
  background-color: #f79420;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}
.events-page .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button::after {
  color: white;
}

/* Resources-page */
.resources-page .navbar {
  background-color: transparent !important; /* Keep navbar transparent */
  position: fixed; /* Fixed position */
  width: 100%; /* Full width */
  z-index: 1030; /* Ensure it’s above other content */
}

/* Global body styles */
.resources-page body {
  font-family: "Mulish", sans-serif; /* Added 'sans-serif' as a fallback */
}

/* Navbar item alignment */
.resources-page .navbar-nav {
  justify-content: center; /* Center the nav items */
}

/* Navbar link styles */
.resources-page .nav-link {
  color: #f79420;
}

.resources-page .nav-link:hover {
  color: #c77b1a;
}

/* Overlay styles */
.resources-page .overlay {
  position: absolute; /* Ensure overlay is positioned correctly */
  top: 0;
  left: 0;
  width: 100%;
  height: 86%; /* Use viewport height for consistency */
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .overlay {
    height: 20%; /* Adjust the height for small screens using vh */
  }

  .custom-card-img-overlay {
    width: 100%;
    height: auto;
  }

  .card-img-top {
    height: 150px; /* Adjust card image height on smaller screens */
  }
}

/* Card styling */
.resources-page .card {
  height: 100%; /* Ensure the card takes full height */
  display: flex;
  flex-direction: column;
  border-radius: 0; /* Changed from none to 0 for clarity */
}

/* Card body styles */
.resources-page .card-body {
  flex-grow: 2; /* Ensure the card body takes up the remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Add a hover effect for the cards */
.resources-page .card:hover {
  transform: translateY(-5px);
  transition: transform 0.2s ease-in-out;
}

/* Button styles */
.resources-page .read-btn {
  background-color: #f79420;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  width: 100px; /* Set width as specified */
  height: 56px; /* Set height as specified */
  margin-top: 10px;
}

.resources-page .read-btn:hover {
  background-color: #d67d1a; /* Darker shade for hover */
  text-decoration: none;
}

/* Background overlay styles */
.resources-page .background-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/static/djangogirlstz/images/hero_resources.jpg");
  background-size: cover;
  background-position: center;
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-repeat: no-repeat;
}
/* Navbar styling */
.dar-page .navbar {
  background-color: transparent !important; /* Keep navbar transparent */
  position: fixed; /* Fixed position */
  width: 100%; /* Full width */
  z-index: 1030; /* Ensure it’s above other content */
}

.dar-page .navbar-nav {
  justify-content: center; /* Center the nav items */
}

.dar-page .nav-link {
  color: #f79420;
}

.dar-page .nav-link:hover {
  color: #c77b1a;
}

/* Card styling */
.dar-page .card {
  border-radius: 0;
  height: 85vh;
  overflow: hidden;
  border: none;
  background-color: transparent;
}

/* Overlay styles */
.dar-page .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Image overlay styling */
.dar-page .card-img-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Community paragraph styling */
.dar-page .community-paragraph {
  color: white;
}

/* Community heading styling */
.dar-page .community-heading {
  color: #f79420;
  font-size: 48px;
  font-family: "Munish", sans-serif;
  font-weight: 900;
}

/* Container styling */
.dar-page .container {
  padding-top: 20px;
  padding: 0; /* Ensure no padding */
  width: 100%; /* Full width */
}

/* Row styling */
.dar-page .row {
  border-bottom: 1px solid black;
  margin-left: auto; /* Center the row */
  margin-right: auto; /* Center the row */
}

/* Column heading styling */
.dar-page .col h2 {
  font-family: "Mulish", sans-serif;
  font-size: 96px;
  font-weight: 600;
  line-height: 120.48px;
}

.dar-page .col p {
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 40.16px;
}

/* Custom class to remove horizontal borders */
.dar-page .no-horizontal-line {
  border: none; /* Ensure no unwanted borders around the container */
  padding: 0; /* Avoid any default padding issues */
}

/* Apply vertical borders between columns */
.dar-page .border-left-only {
  border-left: 2px solid #ccc; /* Vertical line between columns */
  border-top: none; /* Ensure no top border is added */
  border-bottom: none; /* Ensure no bottom border */
  margin: 0;
  padding: 0;
}

/* No border for the first column */
.dar-page .no-horizontal-line .col:first-child {
  border-left: none;
}

/* Reset margins and paddings for headings and paragraphs */
.dar-page .container h1,
.dar-page .container h2,
.dar-page .container p {
  margin: 0; /* Remove margins */
  padding: 0; /* Remove padding */
}

/* Custom class to remove horizontal lines specifically */
.dar-page .no-horizontal-line .col {
  padding-top: 0; /* Ensure no padding that might create a horizontal effect */
  padding-bottom: 0;
}

/* Main heading styling */
.dar-page h1 {
  margin-bottom: 20px;
}

/* Button styling */
.dar-page .view-all-btn {
  background-color: #f79420;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 318px;
}

/* Custom image styling */
.dar-page .custom-image {
  height: 308px;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

/* Ensure no unwanted borders or horizontal lines */
.dar-page .container,
.dar-page .row {
  border: none;
  padding: 0;
  margin: 0;
}

/* Profile picture styling */
.dar-page .profile-pic {
  width: 80px;
  height: 80px;
  margin-top: -40px;
  border: 5px solid white;
}

/* Social icons container styling */
.dar-page .social-icons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* #c {
  height: 60vh;
  width: 100%;
  overflow-y: hidden;
} */

canvas {
  display: block;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  canvas {
    touch-action: none; /* Prevents default touch behaviors */
  }
}
.homepage-hero {
  height: 90vh;
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* Hide WebKit/Chrome scrollbars */
.homepage-hero::-webkit-scrollbar {
  display: none;
}

/* For mobile optimization */
@media (max-width: 768px) {
  .homepage-hero {
    -webkit-overflow-scrolling: none;
  }
}

.homepage-hero-title {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.homepage-hero-carousel {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
}

@media screen and (max-width: 1024px) {
  .homepage-hero {
    height: 70vh;
  }
  .homepage-hero-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }

  .homepage-hero-carousel {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
  }
}

/* Larger phones */
@media screen and (max-width: 768px) {
  .homepage-hero {
    height: 80vh;
  }
  .homepage-hero-title {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }

  .homepage-hero-carousel {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
  }
}

/* Larger phones */
@media screen and (max-width: 576px) {
  .homepage-hero {
    height: 80vh;
  }
  .homepage-hero-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }

  .homepage-hero-carousel {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
  }
}

/* Larger phones */
@media screen and (max-width: 430px) {
  .homepage-hero {
    height: 80vh;
  }
  .homepage-hero-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }

  .homepage-hero-carousel {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
  }
}

/* Smaller phones */
@media screen and (max-width: 375px) {
  .homepage-hero {
    height: 100vh;
  }
  .homepage-hero-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }

  .homepage-hero-carousel {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
  }
}

/* Add this to ensure proper mobile rendering */
@media screen and (max-width: 768px) {
  .homepage-hero {
    min-height: -webkit-fill-available;
  }
}

 /* about-page */
.about-page .container-fluid{
  height: 100vh;
}

.about-page .background-overlay{
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
   url("/static/djangogirlstz/images/About.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-repeat: no-repeat;
  z-index: 1;

}
 .about-page .text-center {
  position: relative;
  z-index: 2;
  color: #f79420; 
}
.about-page .text-center .para{
  color:white;
  
}


.about-page .mission-vision {
  padding: 50px 0;
}

.about-page .mission-vision .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  
}



.about-page .mission-vision .icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  background: #f79420;
  border-radius: 50%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, background 0.4s ease;
}

.about-page .mission-vision .icon-container:hover {
  transform: scale(1.15);
  background: #e6831c;
}

.about-page .mission-vision .mission-icon,
.about-page .mission-vision .vision-icon {
  color: #fff;
  font-size: 2.4rem;
}

.about-page .mission-vision h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 15px;
  color: #343a40;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.about-page .mission-vision .card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-page .mission-vision .card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.about-page .mission-vision .mission-description,
.about-page .mission-vision .vision-description {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  text-align: center;
  margin-top: 10px;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .about-page .mission-vision .col-md-6 {
    flex: 0 0 100%; 
    margin-bottom: 10px;
  }
  .about-page .mission-vision .col-md-6:last-child {
    margin-bottom: 0; 
  }

  .about-page .mission-vision h2 {
    font-size: 1.6rem;
  }

  .about-page .mission-vision .icon-container {
    width: 50px;
    height: 50px;
  }

  .about-page .mission-vision .card {
    padding: 20px;
  }
}



/* About Page Team Section Styles */
.about-page .team {
  padding: 50px 0;
}

.about-page .team .custom-subheading {
  font-size: 2rem;
  font-weight: bold;
  color: #F79420;
  margin-bottom: 30px;
}

.about-page .team .swiper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.about-page .team .swiper-slide {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
  margin-right: 0;
  padding: 1rem;
  width:auto; 
  height: 350px;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; */
}

.about-page .swiper-slide img {
  width: 120px; 
  height: 120px; 
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* .about-page .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
} */

.about-page .team .swiper-slide h4 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.about-page .team .swiper-slide p {
  font-size: 1rem;
  color: #555;
}


.code_of_conduct-page .card-conduct:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.code_of_conduct-page.text-start {
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.code_of_conduct-page.card-title {
  margin-bottom: 1rem;
  color: #f79420;
}
