
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #D9677C;
  text-decoration: none;
}

a:hover {
  color: #A7090B;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #428bca;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.top-header {
            background: #33FF3C !important; /* Bright Green */
            color: #083D77 !important; /* Dark Blue Text for Contrast */
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .top-header i, 
        .top-header a, 
        .top-header div {
            color: #444 !important; 
            font-weight: 520;
            text-decoration: none;
        }

        .top-header i, 
        .top-header a {
        color: #428bca !important; /* Blue color for icons */
        }

        .social-icon:hover {
            color: #ffffff !important; /* White on hover */
        }

        .navbar-brand img {
            height: 60px; /* Increase logo size */
            max-width: 100%; /* Ensure it scales properly */
            transition: all 0.3s;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
        }

        .separator {
            margin: 0 10px; /* Space around the vertical bar */
            font-weight: bold;
            color: #083D77; /* Match text color */
        }

        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            background: white !important;
        }

        .nav-link {
            color: #2c3e50 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s;
        }

        .nav-link:hover {
            color: #e74c3c !important;
        }

        .contact-btn {
            background: #3498db;
            color: white !important;
            border-radius: 25px;
            padding: 8px 25px !important;
            transition: all 0.3s;
            font-size: 14px;
        }

        .contact-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .dropdown-item {
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background-color: #3498db !important; /* Blue */
            color: white !important;
        }

        /* Animated dropdown */
        .dropdown:hover .dropdown-menu {
            display: block;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-menu li {
            opacity: 0;
            transform: translateY(-10px);
            animation: slideIn 0.3s forwards;
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
        .dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
        .dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
        .dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
        .dropdown-menu li:nth-child(5) { animation-delay: 0.5s; }
        .dropdown-menu li:nth-child(6) { animation-delay: 0.6s; }
        .dropdown-menu li:nth-child(7) { animation-delay: 0.7s; }

        .social-icon {
            color: #fff;
            margin: 0 8px;
            transition: all 0.3s;
        }

        .social-icon:hover {
            color: #3498db;
            transform: translateY(-2px);
        }

        /* Mobile-specific changes */
        @media (max-width: 991.98px) {
            .top-header { 
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 8px 15px;
                font-size: 0.8rem;
            }

            .top-header .d-flex {
                display: none; /* Hide social icons on mobile */
            }

            .top-header .contact-btn {
                font-size: 0.75rem;
                padding: 5px 15px;
            }

            .top-header .separator {
                display: none; /* Hide separator on mobile */
            }

            .top-header .donate-button {
                font-size: 0.75rem; /* Smaller button */
                padding: 5px 15px;
            }

            /* Show navbar-toggler on smaller screens */
            .navbar-toggler {
                display: block !important;
            }
        }

        /* Ensure social media icons show on larger screens (992px and above) */
        @media (min-width: 992px) {
            .top-header .d-flex {
                display: flex !important; /* Force display on larger screens */
            }

            .top-header .donate-button {
                font-size: 0.9rem; /* Larger button for desktops */
                padding: 8px 20px;
            }
        }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000;
}
#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}
#hero .carousel-item::before {
  content: "";
background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#hero .carousel-content {
  text-align: left;
}
@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}
#hero h2 {
  color: #;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3); /* Softer shadow */
            background-color: rgba(50, 50, 50, 0.6);/* Subtle white background */
            padding: 10px 20px; /* Add some padding */
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 
                        0 0 40px rgba(0, 0, 0, 0.2);

            font-family: 'Poppins', sans-serif; /* Clean, modern font */
            display: inline-block; /* Wraps neatly around text */
            font-weight: 700; /* Bold weight for emphasis */
          }
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #ffffff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #53d938;
}
#hero .btn-get-started:hover {
  background: #1c5c93;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (max-height: 500px) {
  #hero, #hero .carousel-item {
    height: 120vh;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 10px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #0B0B61;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 0;
  color: #5c768d;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about {
  background: #fff;
  padding: 80px 0;
}
.abt_img {
  min-height: 290px;
  margin-bottom: 8px;
}
#about .about-container .content {
  background: #fff;
}
#about .about-container .title {
  color: #333;
  font-weight: 750;
  font-size: 32px;
}
@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }
}
#about .about-container p {
  line-height: 26px;
}
#about .about-container p:last-child {
  margin-bottom: 0;
}
#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}
#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #2dc997;
}
#about .about-container .icon-box .icon i {
  color: #F5151C;
  font-size: 24px;
  line-height: 0;
}
#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: ;
}
#about .about-container .icon-box .title a {
  color: #F5151C;
  font-weight: 700;
}
#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 22px;
  font-size: 14px;
}

/* Product Advanced Featuress Section
--------------------------------*/
#advanced-features {
  overflow: hidden;
}
#advanced-features .features-row {
  padding: 60px 0 30px 0;
}
#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}
#advanced-features p {
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 30px;
}
#advanced-features i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}
#advanced-features i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}
#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}
@media (max-width: 768px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 30px 0;
}
.counts .counters span {
  font-size: 52px;
  display: block;
  color: #ffffff;
  font-weight: 800;
}
.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}
/*--editing card1 css.....................................*/
#counts .card1 {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#counts .card1:hover {
  background: #50ad11;
  border-color: #003b7a;
}

#counts .card1 i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#counts .card1 h5 {
  font-size: 22px;
  font-weight: 600;
}

#counts .card1 p {
  font-size: 15px;
  color: #d8eafe;
}

/*--editing card2 css.....................................*/
#counts .card2 {
  background: #FFA500;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#counts .card2:hover {
  background: #D78522;
  border-color: #003b7a;
}

#counts .card2 i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#counts .card2 h5 {
  font-size: 22px;
  font-weight: 600;
}

#counts .card2 p {
  font-size: 15px;
  color: #d8eafe;
}

/*--editing card3 css.....................................*/
#counts .card3 {
  background: #e3309b;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#counts .card3:hover {
  background: #4636d6;
  border-color: #D78522;
}

#counts .card3 i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#counts .card3 h5 {
  font-size: 22px;
  font-weight: 600;
}

#counts .card3 p {
  font-size: 15px;
  color: #d8eafe;
}
/*................................*/
#counts .counters {
  padding-top: 40px;
}

#counts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}







.services {
  padding-bottom: 30px;
}
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #428bca;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.services .icon i {
  font-size: 36px;
  line-height: 0;
}
.services .icon-box:hover .icon {
  box-shadow: 0px 0 30px rgba(66, 139, 202, 0.5);
}
.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
.services .title a {
  color: #444;
  transition: 0.3s;
}
.services .title a:hover {
  color: #428bca;
}
.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #428bca;
  bottom: 0;
  left: calc(50% - 25px);
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #428bca;
  color: #fff;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.portfolio .portfolio-wrap img {
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  text-align: center;
  background: rgba(31, 53, 72, 0.6);
  padding-bottom: 30px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.portfolio .portfolio-wrap .portfolio-info a {
  color: #428bca;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info a i {
  font-size: 22px;
  line-height: 0;
}
.portfolio .portfolio-wrap .portfolio-info a:hover {
  background: #428bca;
  color: #fff;
}
.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  padding-bottom: 0;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 5px;

}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  margin-top: 2px;
  border-radius: 5%
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #428bca;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #428bca;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(31, 53, 72, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
.portfolio section-bg{
  background-color: #6969 !important;
}
.social-links mt-3{
  color: #1EBF53;
}


/* Testimonials Section
--------------------------------*/
#testimonials {
  background: #FDEBD0;
  padding: 18px 0;
}
#testimonials .profile {
  text-align: center;
}
#testimonials .profile .pic {
  border-radius: 50%;
  border: 6px solid #fff;
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
  width: 260px;
}
#testimonials .profile .pic img {
  max-width: 100%;
}
#testimonials .profile h4 {
  font-weight: 700;
  color: #03C4EB;
  margin-bottom: 5px;
}
#testimonials .profile span {
  color: #333333;
}
#testimonials .quote {
  position: relative;
  background: #fff;
  padding: 60px;
  margin-top: 40px;
  font-size: 16px;
  font-style: italic;
  border-radius: 5px;
}
#testimonials .quote b {
  display: inline-block;
  font-size: 22px;
  left: -9px;
  position: relative;
  top: -8px;
}
#testimonials .quote small {
  display: inline-block;
  right: -9px;
  position: relative;
  top: 4px;
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}
.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.team .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}
.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}
.team .member .social a:hover {
  color: #1bbca3;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}
.team .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}
.team .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #9cdc66;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #5c9f24;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}
.contact .info-box i {
  font-size: 32px;
  color: #428bca;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #9eccf4;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #428bca;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #428bca;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #629fd3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#footer {
  background: #587187;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #610B21;
  border-top: 1px solid #768fa6;
  border-bottom: 1px solid #67839c;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 25px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  background: #768fa6;
  color: #121AB8;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #428bca;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9eccf4;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #5295ce;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits a {
  color: #9eccf4;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 50px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #call-to-action {
    background-attachment: scroll;
  }
}
#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#call-to-action .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#call-to-action .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #FFA500;
  color: #fff;
}
#call-to-action .cta-btn:hover {
  background: #453FF6;
  border: 2px solid #2dc997;
}











/*  OWN ADDITIONAL CSS FORMATING STARTS HERE
--------------------------------*/



.follow_us{
  color: #428bca;
}

/*  OUR HISTORY PAGE CSS
--------------------------------*/






/*  OUR BOARD AND STAFF PAGE CSS 
--------------------------------*/
/* Style the tab */

#top_executes {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 2px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #top_executes {
    background-attachment: scroll;
  }
}
#top_executes .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#top_executes .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #top_executes .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#top_executes .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#top_executes .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}



.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}


/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #D88D90;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #B0655F;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.d-title{
    font-size: 16px ;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
}

/*  OUR GALLERY PAGE CSS 
--------------------------------*/
.photo-gallery .container {
  padding:2px 50px;
}
.photo-gallery {
  color:#313437;
  background-color:#fff;
}

@media (max-width:767px) {
  .photo-gallery h2 {
    margin-bottom:10px;
    padding-top:10px;
    font-size:24px;
  }
}
.photo-gallery .item {
  padding:3px 5px;;
}
.photo-gallery .item:hover {
  background: #8258FA;
}
/*--------------------------------------------------------------
# Academics section
--------------------------------------------------------------*/

.academics {
  padding-top: 15px;
}
.academics .icon-box {
  display: flex;
  align-items: center;
  padding: 10px;
  margin:3px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.academics .icon-box i {
  font-size: 32px;
  padding: 10px;
  line-height: 1;
}
.academics .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.academics .icon-box h3 a {
  color: #434175;
  transition: ease-in-out 0.3s;
}
.academics .icon-box:hover h3 a {
  color: #5a5af3;
}
.carric_a{
  color: #28030A;
}





/*--------------------------------------------------------------
# students section
--------------------------------------------------------------*/
.students {
  padding-top: 0px;
}
.students .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid #eef0ef;
}
.students .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}
.students .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.students .icon-box h3 a {
  color: #37423b;
  transition: 0.3s;
}
.students .icon-box:hover {
  border-color: #5fcf80;
}
.students .icon-box:hover h3 a {
  color: #7B0C20;
}
/*--------------------------------------------------------------
# play group
--------------------------------------------------------------*/
.pgh{
  font-weight: bold;
  color: #7B0C20;
  margin: 10px;
}
.pgroup-h{
  font-weight: bold;
  color: #37383D;
}

/*--------------------------------------------------------------
# admissions
--------------------------------------------------------------*/
#admission .r_admission{
  margin: 15px 15px;
}
#admission h6{
  font-weight: bold;
}

/*--------------------------------------------------------------
# schedule virtual tour Details
--------------------------------------------------------------*/

/*heading staff board html*/
.heading-staff {
  font-family: 'Arial', sans-serif; /* Modern and clean font */
  font-size: 2.5rem; /* Adjust size to your preference */
  text-align: center; /* Center the heading */
  color: #2c3e50; /* Professional dark blue color */
  text-transform: uppercase; /* Keep the uppercase style */
  letter-spacing: 0.15em; /* Add some spacing between letters */
  background: linear-gradient(90deg, #3498db, #2ecc71); /* Gradient for a stylish look */
  -webkit-background-clip: text; /* Clip gradient to text */
  -webkit-text-fill-color: transparent; /* Make the text gradient */
  margin: 20px 0; /* Add spacing around the heading */
  padding: 10px; /* Add some padding for spacing */
  border-bottom: 2px solid #2ecc71; /* Decorative border */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.heading-directors {
  font-family: 'Georgia', serif; /* Elegant and professional serif font */
  font-size: 2.2rem; /* Adjust size for emphasis */
  text-align: center; /* Center the heading */
  color: #34495e; /* A dark slate blue for a sophisticated look */
  text-transform: uppercase; /* Keep text in uppercase */
  letter-spacing: 0.1em; /* Subtle letter spacing */
  background: radial-gradient(circle, #8e44ad, #2980b9); /* Circular gradient for depth */
  -webkit-background-clip: text; /* Apply gradient to text */
  -webkit-text-fill-color: transparent; /* Make the gradient visible */
  margin: 30px 0; /* Add vertical spacing */
  padding: 15px; /* Extra padding for a bold look */
  border: 4px double #8e44ad; /* Stylish double border */
  border-radius: 10px; /* Rounded corners for a modern look */
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2); /* Stronger shadow for emphasis */
}
/*head teachers welcome message section*/



    /* Custom Jumbotron Styles */
    .custom-jumbotron {
      background: linear-gradient(135deg, rgba(0, 100, 0, 0.8), rgba(139, 0, 0, 0.8)), 
                  url('assets/img/cop.'); /* Background image URL */
      background-size: cover;
      background-position: center;
      color: white;
      border-radius: 10px;
      padding: 4rem 2rem 2rem;
      position: relative;
      text-align: center;
    }

    /* Banner Image */
    .banner-image {
      max-width: 100%;
      height: auto;
      margin-bottom: 2rem;
      border-radius: 10px;
      border: 4px solid #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Headings */
    .custom-jumbotron h1 {
      font-family: 'Poppins', sans-serif;
      color: #fff;
    }

    /* Cards */
    .custom-card {
      border: none;
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent card background */
      max-width: 500px;
      margin: 0 auto; /* Center the card */
    }

    .custom-card h5 {
      font-size: 1.25rem;
      font-weight: bold;
      color: #006400; /* Green */
    }

    .custom-card p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Buttons */
    .custom-card .btn {
      font-size: 1rem;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 20px;
    }

    .custom-card .btn-primary {
      background-color: #8B0000; /* Maroon */
      border-color: #8B0000;
    }

    .custom-card .btn-primary:hover {
      background-color: #006400; /* Green on hover */
      border-color: #006400;
    }

    /* Divider */
    .custom-divider {
      background-color: #000; /* Black */
      height: 2px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .custom-jumbotron h1 {
        font-size: 2rem;
      }

      .custom-card h5 {
        font-size: 1.1rem;
      }
    }
  /*smooth scrolling #contact section*/
  html {
    scroll-behavior: smooth;
     }
/*-- Donation section below hero sliders CSS */
    
        .custom-alert {
            background: linear-gradient(45deg, #13e60b, #f50fc0);
            color: white;
            border: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        .custom-alert h4 {
            font-size: 1.8rem;
            font-weight: bold;
        }
        .custom-alert p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .custom-btn {
            background: #ff4500;
            border: none;
            font-size: 1.2rem;
            padding: 0.8rem 2rem;
            color: white;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .custom-btn:hover {
            background: #ff7f50;
            color: white;
            text-decoration: none;
        }
    
    
    /* PARTNERSHIP CSS homepage Custom Jumbotron Styles */
    .custom-jumbotron {
      background: linear-gradient(135deg, rgba(0, 100, 0, 0.8), rgba(139, 0, 0, 0.8)), 
                  url('assets/img/cop.'); /* Background image URL */
      background-size: cover;
      background-position: center;
      color: white;
      border-radius: 10px;
      padding: 4rem 2rem 2rem;
      position: relative;
      text-align: center;
    }

    /* Banner Image */
    .banner-image {
      max-width: 100%;
      height: auto;
      margin-bottom: 2rem;
      border-radius: 10px;
      border: 4px solid #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Headings */
    .custom-jumbotron h1 {
      font-family: 'Poppins', sans-serif;
      color: #fff;
    }

    /* Cards */
    .custom-card {
      border: none;
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent card background */
      max-width: 500px;
      margin: 0 auto; /* Center the card */
    }

    .custom-card h5 {
      font-size: 1.25rem;
      font-weight: bold;
      color: #006400; /* Green */
    }

    .custom-card p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Buttons */
    .custom-card .btn {
      font-size: 1rem;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 20px;
    }

    .custom-card .btn-primary {
      background-color: #8B0000; /* Maroon */
      border-color: #8B0000;
    }

    .custom-card .btn-primary:hover {
      background-color: #006400; /* Green on hover */
      border-color: #006400;
    }

    /* Divider */
    .custom-divider {
      background-color: #000; /* Black */
      height: 2px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .custom-jumbotron h1 {
        font-size: 2rem;
      }

      .custom-card h5 {
        font-size: 1.1rem;
      }
    }
  
  /*--------DONATIONS PAGE CSS--------------------------------------------------*/

    body2 {
      font-family: Arial, sans-serif;
      background-color: #ffff;
    }
    h3 {
      text-align: left;
      font-size: 14px;
    }
    p {
      text-align: left;
      font-size: 14px;
    }
    .card2 img {
      max-width: 80px;
      margin-bottom: 10px;
    }
    .card2 {
      transition: transform 0.3s, box-shadow 0.3s;
      background-color:#EDEADE;
    }
    .card2:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .donation-steps {
      text-align: left;
      margin-top: 15px;
    }
    .donation-steps ol {
      padding-left: 20px;
    }


   /*STILL DONATIONS PAGE BELOW THERE */
    .custom-paragraph {
      font-size: 15px;
      line-height: 1.6;
      color: #333;
    }
    .card-custom {
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .card-header {
      background-color: #8ecae6;
      color: #fff;
      font-weight: bold;
    }
    .card-body {
      padding: 20px;
    }
  
     /*WHATSAPP AND PHONE BUTTONS STILL ON DONATIONS PAGE*/
    .btn-whatsapp {
    background-color: #0b6b07;
    color: white;
    border: none;
    transition: background-color 0.3s;
  }

  .btn-whatsapp:hover {
    background-color: #1DA55A;
  }

  .btn-phone {
    background-color: #e3a832;
    color: white;
    border: none;
    transition: background-color 0.3s;
  }

  .btn-phone:hover {
    background-color: #f74707;
  }

/*FEE STRUCTURE SNIPPET CSS*/
 
    .custom-fee {
    color: #d4af37; /* Elegant gold */
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Adds depth */
    border-bottom: 4px solid #d4af37; /* Optional underline */
    padding-bottom: 0.5rem;
    background: linear-gradient(to right, #d4af37, #ffd700); /* Gold gradient */
    -webkit-background-clip: text; /* Clips the gradient to the text */
    color: transparent; /* Makes the gradient visible */
}

    .custom-alert p {
      font-size: 1.2rem;
    }

    .btn-whatsapp {
      background-color: #0b6b07;
      color: white;
      border: none;
      transition: background-color 0.3s;
    }

    .btn-whatsapp:hover {
      background-color: #1DA55A;
    }

    .btn-phone {
      background-color: #e3a832;
      color: white;
      border: none;
      transition: background-color 0.3s;
    }

    .btn-phone:hover {
      background-color: #f74707;
    }
/*NEWS STRUCTURE SNIPPET CSS*/
    
        body {
            background-color: #f8f9fa;
        }
        .news-header {
            background-color: #800000; /* Maroon */
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
        .news-section {
            margin: 20px auto;
            padding: 20px;
            border-radius: 10px;
            background: linear-gradient(135deg, #f9e79f, #58d68d); /* Yellow to Greenish gradient */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .news-card {
            border: none;
            margin-bottom: 20px;
        }
        .news-card img {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        .news-card-title {
            color: #800000; /* Maroon */
            font-weight: bold;
        }
        .news-footer {
            background-color: #27ae60; /* Green */
            color: white;
            text-align: center;
            padding: 10px;
        }
/*CONTACT SNIPPET CSS --------------------------------------------*/


        body {
            background-color: #f5f5f5;
            font-family: 'Arial', sans-serif;
        }
        .custom-fee {
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            background: linear-gradient(to right, #d4af37, #ffd700);
            -webkit-background-clip: text;
            color: transparent;
            text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
            border-bottom: 4px solid #d4af37;
            padding-bottom: 0.5rem;
            text-align: center;
            margin-bottom: 30px;
        }
        .info-box {
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .info-box:hover {
            transform: scale(1.05);
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
        }
        .info-box h3 {
            font-size: 1.4rem;
            font-weight: bold;
            color: #d4af37;
        }
        .contact-section {
            background-color: #fff;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        }
        .btn-custom {
            background-color: #d4af37;
            color: white;
            border-radius: 50px;
            padding: 12px 25px;
            transition: 0.3s;
        }
        .btn-custom:hover {
            background-color: #b7950b;
        }
    /*PARTNERSHIP PAGE SNIPPET CSS CODE.-Custom Jumbotron Styles----------------------------------------------------------------*/
  
    .custom-jumbotron {
      background: linear-gradient(135deg, rgba(0, 100, 0, 0.8), rgba(139, 0, 0, 0.8)), 
                  url('assets/img/cop.'); /* Background image URL */
      background-size: cover;
      background-position: center;
      color: white;
      border-radius: 10px;
      padding: 4rem 2rem 2rem;
      position: relative;
      text-align: center;
    }

    /* Banner Image */
    .banner-image {
      max-width: 100%;
      height: auto;
      margin-bottom: 2rem;
      border-radius: 10px;
      border: 4px solid #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Headings */
    .custom-jumbotron h1 {
      font-family: 'Poppins', sans-serif;
      color: #fff;
    }

    /* Cards */
    .custom-card {
      border: none;
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent card background */
      max-width: 500px;
      margin: 0 auto; /* Center the card */
    }

    .custom-card h5 {
      font-size: 1.25rem;
      font-weight: bold;
      color: #006400; /* Green */
    }

    .custom-card p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Buttons */
    .custom-card .btn {
      font-size: 1rem;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 20px;
    }

    .custom-card .btn-primary {
      background-color: #8B0000; /* Maroon */
      border-color: #8B0000;
    }

    .custom-card .btn-primary:hover {
      background-color: #006400; /* Green on hover */
      border-color: #006400;
    }

    /* Divider */
    .custom-divider {
      background-color: #000; /* Black */
      height: 2px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .custom-jumbotron h1 {
        font-size: 2rem;
      }

      .custom-card h5 {
        font-size: 1.1rem;
      }
    }
  /*STUDENTS2.HTML SNIPPET  CSS CODE*/
         /* Color palette */
        :root {
            --maroon: #800000;
            --green: #008000;
            --blue: #0000FF;
            --orange: #FFA500;
            --black: #000000;
            --white: #FFFFFF;
            --light-gradient: linear-gradient(135deg, #f8f9fa, #e9ecef);
            --icon-red: #FF5733;
            --icon-yellow: #FFC300;
            --icon-teal: #17A2B8;
            --icon-purple: #6F42C1;
            --icon-lightgreen: #28A745;
        }

        /* Body background styling */
        body {
            background: var(--light-gradient); /* Light gradient background */
            font-family: Arial, sans-serif;
            color: var(--black);
        }

        /* Students Section */
        .custom-heading {
        color: #d4af37; /* Elegant gold */
        font-size: 2.5rem;
        font-weight: 700;
        text-transform: uppercase;
        text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Adds depth */
        border-bottom: 4px solid #d4af37; /* Optional underline */
        padding-bottom: 0.5rem;
        background: linear-gradient(to right, #d4af37, #ffd700); /* Gold gradient */
        -webkit-background-clip: text; /* Clips the gradient to the text */
        color: transparent; /* Makes the gradient visible */
    }

        #students {
            background-color: var(--white);
            color: var(--black);
            border-radius: 15px;
            padding: 1rem;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .list-group-item {
            background-color: var(--green);
            color: var(--white);
            border-color: var(--white);
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
        }

        .list-group-item i {
            margin-right: 10px;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        /* Assign contrasting colors to icons */
        .list-group-item:nth-child(1) i { color: var(--icon-red); }
        .list-group-item:nth-child(2) i { color: var(--icon-yellow); }
        .list-group-item:nth-child(3) i { color: var(--icon-teal); }
        .list-group-item:nth-child(4) i { color: var(); }
        .list-group-item:nth-child(5) i { color: var(--icon-lightgreen); }
        .list-group-item:nth-child(6) i { color: var(--icon-orange); }

        .list-group-item:hover {
            background-color: var(--orange);
            color: var(--black);
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .list-group-item:hover i {
            transform: scale(1.2);
        }

     /*VACANCIES.HTML SNIPPET CSS CODE */
     
  