/*--------------------------------------------------------------
# Common Classes
--------------------------------------------------------------*/
body {
  color: #333;
  background-color: #fff;
}

a {
  color: #5f8575;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #356E35;
  text-decoration: none;
}

h1 {
  color: #B0D9B0;
}

h2 {
  color: #91CA91;
}

h3,
h4,
h5,
h6 {
  color: #5f8575;
}


/*--------------------------------------------------------------
# Header Navbar
--------------------------------------------------------------*/

.navbar {
  position: absolute; 
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  min-height: 50px;
  line-height: 35px;
  background: #000;
  z-index: 1030;
  border: none;
}
.navbar .nav-item.active a.nav-link {
  color: #fff !important;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar .nav-item {
  margin: 0 5px;
  padding: 0;
}

.navbar .nav-item a {
  color: #ccc;
  font-weight: 600;
  font-size: 13px;
}

.navbar .nav-item a:hover {
  color: #fff;
}

.navbar .nav-link {
  position: relative;
  padding: 0;
}

.navbar .navbar-toggler {
  cursor: pointer;
}

.navbar .navbar-toggler span {
  color: #fff;
}

.dropdown {
  float: left;
  position: relative;
  border: none;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  margin: 0;
  z-index: 1;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; 
  background-color: #333;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.dropdown-content a {
  float: none;
  color: #fff!important;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-bottom: 1px solid #B0D9B0;
}

.dropdown-content a:hover {
  background-color: green;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.nav-btn{
  background-color: green;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff!important;
  text-decoration: none;
  width: 100%!important;
}
.nav-btn:hover{
  background-color: #88114b!important;
  color: #fff!important;
}

@media (max-width: 991px) {
  .navbar {
    line-height: 50px;
    background-color: #fff;
    box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
  }
  .nav-btn{
    width: 100%!important;
    margin-bottom: 2px;
    border-radius: 0;
  }
  .navbar .nav-link {
    padding-left: 10px;
  }
  .navbar .nav-item a:hover {
    background-color: #f5f5f5;
    border-bottom: 2px solid green;
  }
  .navbar-brand img {
    height: 40px;
    width: auto;
  }
}

/*--------------------------------------------------------------
# Hero Banner Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 90vh;
  /*background:url(../img/banner-1.jpg) center no-repeat;*/
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/banner-1.jpg) center / cover no-repeat;
  background-size: cover;
  background-attachment: scroll!important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 20px;
  position: relative;
}
   
.hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.hero h5 {
  color: #f5f5f5;
  margin: 15px 0 0 0;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.hero p {
  color: #333;
  margin: 20px 0;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.6px;
}

.hero .btn-get-started {
  margin-top: 5px;
  line-height: 0;
  padding: 20px 40px;
  transition: 0.5s;
  color: #fff;
  font-size: 18px;
  background: green;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
}
.hero .btn-get-started:hover {
  box-shadow: none;
  background: #ab185f;
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
  padding: 60px;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    text-align: center;
    padding: 120px 0 60px 0;
  }

  .hero .hero-img {
    text-align: center;
  }

  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }


  .hero h2 {
    font-size: 24px;
  }

  .hero .hero-img img {
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Summary Section
--------------------------------------------------------------*/
.summary{
  margin: 0;
  padding: 30px;
}
.summary .card{
  margin: 10px;
  padding: 30px;
  height: 320px;
  width: auto;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.summary .card:hover{
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  background-color: #f5f5f5;
  transform: translateY(-3px);
}

.summary .card .icon {
  font-size: 2.5rem;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background-color: #C1E1C1;
}

.summary .card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.summary .card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #333;
}

/*--------------------------------------------------------------
# Event Banner Section
--------------------------------------------------------------*/

.event{
  padding: 30px;
  margin: 0;
  background-color: #C1E1C1;
}
.event-banner .event-date {
  background-color: #5F8575;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.event-banner .event-date .month {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-banner .event-date .day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.event-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.event-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
  text-align: left;
}

.event-banner .btn-register {
  background-color: #5F8575;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.event-banner .btn-register:hover {
  background-color: #355E3B;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .event-banner .btn-register {
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .event-banner {
    text-align: center;
  }

  .event-banner .event-date {
    margin: 0 auto 15px;
    max-width: 100px;
  }
}

/*--------------------------------------------------------------
# Banner-2 Section
--------------------------------------------------------------*/

.banner {
  position: relative;
  max-height: 420px;
  overflow: hidden;
}
 
.banner img {
  width: 100%;
  height: auto;
}
 
.banner-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

/*--------------------------------------------------------------
# Common Section
--------------------------------------------------------------*/
.common-section {
  padding: 30px 0;
  margin: 20px;
}
@media (max-width: 768px) {
  .common-section {
    padding: 20px 0;
    margin: 20px;
  }
}

@media (max-width: 576px) {
  .common-section {
    padding: 10px 0;
    margin: 10px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  padding: 40px 0;
}

.about .content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about .content>p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.about .stats-row .stat-item {
  text-align: center;
}

.about .stats-row .stat-item .number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .stats-row .stat-item .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .about .stats-row {
    gap: 20px;
  }

  .about .stats-row .stat-item {
    flex: 1;
    min-width: 80px;
  }
}

.about .mission-statement {
  background-color: #E6FFE6;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #5F8575;
  margin-bottom: 35px;
}

.about .mission-statement p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading-color);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #5F8575;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.about .btn-learn-more:hover {
  background-color: #355E3B;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-learn-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover i {
  transform: translateX(3px);
}

.about .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about .image-wrapper img {
  width: 100%;
  height: 100%;
  margin: 10px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: #355E3B;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.about .image-wrapper .experience-badge .years {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .image-wrapper .experience-badge .text {
  font-size: 12px;
  color: #ccc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 30px;
  }

  .about .content h3 {
    font-size: 28px;
  }

  .about .image-wrapper {
    min-height: 350px;
  }

  .about .image-wrapper .experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .about .content h3 {
    font-size: 24px;
  }

  .about .stats-row {
    justify-content: center;
  }

  .about .mission-statement {
    padding: 20px;
  }

  .about .image-wrapper {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
.featured-programs {
  padding: 80px 0;
  background-image: linear-gradient(to bottom, #EEF7EE, #f5f5f5);
}

.featured-programs .featured-programs-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-programs .programs-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.featured-programs .programs-overview .overview-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  color: #333;
  line-height: 1.2;
}

.featured-programs .programs-overview .overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.featured-programs .programs-overview .overview-content .overview-stats {
  display: flex;
  gap: 40px;
}

.featured-programs .programs-overview .overview-content .overview-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: green;
  line-height: 1;
}

.featured-programs .programs-overview .overview-content .overview-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-top: 8px;
  font-weight: 500;
}

.featured-programs .programs-overview .overview-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.featured-programs .programs-overview .overview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-programs .programs-overview .overview-image:hover img {
  transform: scale(1.05);
}

.featured-programs .programs-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.featured-programs .featured-program {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  transition: all 0.5s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 95%);
}

.featured-programs .featured-program:hover {
  transform: translateY(-8px);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.featured-programs .featured-program .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.featured-programs .featured-program .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-programs .featured-program .card-image:hover img {
  transform: scale(1.08);
}

.featured-programs .featured-program .card-image .program-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.featured-programs .featured-program .card-image .program-badge i {
  font-size: 0.9rem;
}

.featured-programs .featured-program .card-content {
  padding: 32px 28px;
}

.featured-programs .featured-program .card-content .program-category {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.featured-programs .featured-program .card-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--heading-color);
  line-height: 1.3;
}

.featured-programs .featured-program .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.featured-programs .featured-program .card-content .program-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.featured-programs .featured-program .card-content .program-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-programs .featured-program .card-content .program-meta .meta-item i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.featured-programs .featured-program .card-content .program-meta .meta-item span {
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

.featured-programs .featured-program .card-content .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-programs .featured-program .card-content .card-footer .learn-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.featured-programs .featured-program .card-content .card-footer .learn-more:hover {
  color: color-mix(in srgb, var(--accent-color), #000 20%);
  transform: translateX(3px);
}

.featured-programs .featured-program .card-content .card-footer .enrollment {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.85rem;
}

.featured-programs .featured-program .card-content .card-footer .enrollment i {
  font-size: 0.9rem;
}

.featured-programs .programs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-programs .program-item {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  cursor: pointer;
}

.featured-programs .program-item:hover {
  transform: translateX(8px);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.featured-programs .program-item:hover .item-action i {
  color: var(--accent-color);
  transform: translateX(4px);
}

.featured-programs .program-item .item-visual {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-programs .program-item .item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-programs .program-item .item-details {
  flex: 1;
}

.featured-programs .program-item .item-details .item-category {
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.featured-programs .program-item .item-details h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.featured-programs .program-item .item-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.featured-programs .program-item .item-details .item-info {
  display: flex;
  gap: 16px;
}

.featured-programs .program-item .item-details .item-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-programs .program-item .item-action {
  margin-left: 16px;
}

.featured-programs .program-item .item-action i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .featured-programs {
    padding: 60px 0;
  }

  .featured-programs .programs-overview {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .featured-programs .programs-overview .overview-content {
    order: 2;
  }

  .featured-programs .programs-overview .overview-content h2 {
    font-size: 2rem;
  }

  .featured-programs .programs-overview .overview-content .overview-stats {
    justify-content: space-between;
    gap: 20px;
  }

  .featured-programs .programs-overview .overview-image {
    order: 1;
  }

  .featured-programs .programs-overview .overview-image img {
    height: 300px;
  }

  .featured-programs .programs-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .featured-programs .overview-content .overview-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .featured-programs .featured-program .card-content {
    padding: 24px 20px;
  }

  .featured-programs .program-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .featured-programs .program-item .item-visual {
    width: 120px;
    height: 120px;
  }

  .featured-programs .program-item .item-action {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .featured-programs {
    padding: 40px 0;
  }

  .featured-programs .programs-overview {
    margin-bottom: 40px;
  }

  .featured-programs .programs-overview .overview-content h2 {
    font-size: 1.8rem;
  }

  .featured-programs .programs-overview .overview-image img {
    height: 250px;
  }

  .featured-programs .programs-showcase {
    gap: 30px;
  }
}

/*--------------------------------------------------------------
# Students Life Block Section
--------------------------------------------------------------*/
.students-life-block .content-wrapper .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  position: relative;
}

.students-life-block .content-wrapper .section-tag::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.students-life-block .content-wrapper h2 {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .students-life-block .content-wrapper h2 {
    font-size: 2.25rem;
  }
}

.students-life-block .content-wrapper .description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.students-life-block .stats-row {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.students-life-block .stats-row .stat-item {
  display: flex;
  flex-direction: column;
}

.students-life-block .stats-row .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.students-life-block .stats-row .stat-item .stat-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 300;
}

@media (max-width: 576px) {
  .students-life-block .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.students-life-block .action-links .primary-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.students-life-block .action-links .primary-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.students-life-block .action-links .primary-link:hover {
  color: var(--accent-color);
}

.students-life-block .action-links .primary-link:hover::after {
  width: 100%;
}

.students-life-block .visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  height: 100%;
}

.students-life-block .visual-grid .main-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.students-life-block .visual-grid .main-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.students-life-block .visual-grid .main-visual:hover img {
  transform: scale(1.05);
}

.students-life-block .visual-grid .main-visual .overlay-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #5f8575;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.students-life-block .visual-grid .main-visual .overlay-badge i {
  color: #5f8575;
  font-size: 1.25rem;
}

.students-life-block .visual-grid .main-visual .overlay-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.students-life-block .visual-grid .secondary-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.students-life-block .visual-grid .secondary-visuals .small-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.students-life-block .visual-grid .secondary-visuals .small-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life-block .visual-grid .secondary-visuals .small-visual:hover img {
  transform: scale(1.1);
}

.students-life-block .visual-grid .secondary-visuals .small-visual:hover .visual-caption {
  opacity: 1;
  transform: translateY(0);
}

.students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption span {
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.students-life-block .highlights-section {
  margin-top: 6rem;
}

.students-life-block .highlights-section .highlight-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.students-life-block .highlights-section .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.students-life-block .highlights-section .highlight-card .highlight-image {
  overflow: hidden;
}

.students-life-block .highlights-section .highlight-card .highlight-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life-block .highlights-section .highlight-card:hover .highlight-image img {
  transform: scale(1.1);
}

.students-life-block .highlights-section .highlight-card .highlight-content {
  padding: 20px;
}

.students-life-block .highlights-section .highlight-card .highlight-content h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: 000;
}

.students-life-block .highlights-section .highlight-card .highlight-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.highlight-content button {
  background-color: green;
  padding: 10px;
  margin: 10px 0;
  color: #fff;
  border-radius: 10px;
}

@media (max-width: 991.98px) {
  .students-life-block .content-wrapper {
    margin-bottom: 2rem;
  }

  .students-life-block .visual-grid .main-visual img {
    height: 300px;
  }

  .students-life-block .visual-grid .secondary-visuals .small-visual img {
    height: 140px;
  }

  .students-life-block .highlights-section {
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .students-life-block .stats-row {
    justify-content: center;
    text-align: center;
  }

  .students-life-block .visual-grid .main-visual .overlay-badge {
    top: 20px;
    right: 20px;
    padding: 0.75rem 1.25rem;
  }

  .students-life-block .visual-grid .secondary-visuals {
    grid-template-columns: 1fr;
  }

  .students-life-block .visual-grid .secondary-visuals .small-visual img {
    height: 200px;
  }

  .students-life-block .highlights-section {
    margin-top: 3rem;
  }

  .students-life-block .highlights-section .highlight-card .highlight-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .students-life-block .visual-grid .main-visual .overlay-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
    display: inline-flex;
  }
}

.students-life-block-2{
  margin: -40px 10px 10px 10px;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .section-title {
  margin-bottom: 3rem;
}

.events .section-title h2 {
  margin-top: 40px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.events .section-title p {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.events .event-filters .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #666;
}

.events .event-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.events .event-card {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.events .event-card:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  transform: translateY(-5px);
}

.events .event-card .event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: #5F8575;
  color: #fff;
  text-align: center;
  min-width: 100px;
}

.events .event-card .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.events .event-card .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}

.events .event-card .event-date .year {
  font-size: 0.9rem;
}

.events .event-card .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events .event-card .event-content h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.events .event-card .event-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.events .event-card .event-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.events .event-card .event-tag.academic {
  background-color: #e3f2fd;
  color: #0d47a1;
}

.events .event-card .event-tag.sports {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.events .event-card .event-tag.arts {
  background-color: #ffebee;
  color: #c62828;
}

.events .event-card .event-tag.community {
  background-color: #fff3e0;
  color: #e65100;
}

.events .event-card .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.events .event-card .event-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.events .event-card .event-meta .meta-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events .event-card .event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.events .event-card .event-actions .btn-learn-more {
  padding: 0.5rem 1.25rem;
  background-color: #5F8575;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.events .event-card .event-actions .btn-learn-more:hover {
  background-color: #355E3B;
}

.events .event-card .event-actions .btn-calendar {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: #333;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  border: 1px solid #5F8575;
}

.events .event-card .event-actions .btn-calendar i {
  margin-right: 0.3rem;
}

.events .event-card .event-actions .btn-calendar:hover {
  background-color: #5F8575;
}

.events .btn-view-all {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #5F8575;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  margin-bottom: 30px;
}

.events .btn-view-all:hover {
  background-color: #355E3B;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .events .event-card {
    flex-direction: column;
  }

  .events .event-card .event-date {
    flex-direction: row;
    padding: 1rem;
    gap: 0.5rem;
    min-width: auto;
  }

  .events .event-card .event-date .month,
  .events .event-card .event-date .day,
  .events .event-card .event-date .year {
    margin: 0;
  }

  .events .event-card .event-date .day {
    font-size: 1.5rem;
    margin: 0 0.3rem;
  }

  .events .event-actions {
    flex-direction: column;
  }
}


/*--------------------------------------------------------------
# Special Buttons
--------------------------------------------------------------*/
.button-search {
  position: relative;
  overflow: hidden;
  width: 35%;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  margin-bottom: 5px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background-color: #000;
  background: linear-gradient(90deg, rgba(211,0,108,0.9954832274706757) 0%, rgba(14,12,9,1) 100%);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.button-search span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-search span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(235%) translateX(-50%);
  height: 6px;
  line-height: 10px;
}

.button-search:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E20074;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-search:hover:after {
  transform-origin: bottom center;
  transform: skewY(3.3deg) scaleY(2);
}

.button-search:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

.button-57 {
  position: relative;
  overflow: hidden;
  width: 250px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  margin-bottom: 5px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background-color: #000;
  background: linear-gradient(90deg, rgba(211,0,108,0.9954832274706757) 0%, rgba(14,12,9,1) 100%);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.button-57 span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-57 span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 6px;
  line-height: 10px;
}

.button-57:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E20074;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-57:hover:after {
  transform-origin: bottom center;
  transform: skewY(3.3deg) scaleY(2);
}

.button-57:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

.btn-data {
  border: rgb(230, 9, 9) 2px solid;
  background-color: #fff;
  color: rgb(230, 9, 9);
  font-size: 16px;
  padding: 5px 20px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  border: rgb(230, 9, 9) 2px solid;
  text-align: center;
  font-weight: 500;
  box-shadow: none;
  margin-top: 10px;
}
.btn-data:hover {
  background-color: rgb(230, 9, 9);
  border: rgb(230, 9, 9) 2px solid;
  color: white;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
color: #fff;
font-size: 14px;
background: #111111;
}

#footer .footer-top {
padding: 60px 0 30px 0;
background: #000;
}

#footer .footer-top .footer-contact {
margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
font-size: 26px;
line-height: 1;
font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
color: #E20074;
}

/* #footer .footer-contact .footer-logo{
height: 40px;
width: 40px;
} */

#footer .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
font-size: 16px;
font-weight: bold;
position: relative;
padding-bottom: 12px;
}

#footer .footer-top h4::after {
content: "";
position: absolute;
display: block;
width: 20px;
height: 2px;
background: green;
bottom: 0;
left: 0;
}

#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: white;
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: #aaaaaa;
transition: 0.3s;
display: inline-block;
text-decoration: none;
line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #fff;
}

#footer .footer-newsletter {
font-size: 15px;
}

#footer .footer-newsletter p {
font-size: 14px;
text-align: justify;
color: #ccc;
position: relative;
padding-bottom: 12px;
}

#footer .social-links a {
font-size: 18px;
display: inline-block;
background: #2b2b2b;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 4px;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}

#footer .social-links a:hover {
background: green;
color: #fff;
text-decoration: none;
}


/*--------------------------------------------------------------
# Home-Page Contact Section
--------------------------------------------------------------*/
.cta {
  background: green;
  background: linear-gradient(to right, green, #530229);
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
}

.cta p {
  color: #fff;
  text-align: justify;
  font-size: 16px;
  letter-spacing: 0.6px;
}

.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  text-decoration: none;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: green;
  border: 2px solid #fff;
}

@media (min-width: 1023px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Multi-Step Form Section 
--------------------------------------------------------------*/


/* 
.swiper-container {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.pricing-card {
  max-width: 335px;
  margin: 10px;
}

@media (max-width: 768px) {
  .swiper-slide {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .swiper-slide {
    max-width: 100%;
  }
} */

.swiper-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0; /*
  overflow: hidden; /* Ensure no overflow */
}

.swiper-container .swiper-slide {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.swiper-container .swiper-slide:hover {
  transform: translateY(-10px); /* Add slight hover effect */
}

.swiper-container .car-image {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.swiper-container h5 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
  text-align: center;
}

.swiper-container p {
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* Navigation and Pagination Styles */
.swiper-container .swiper-pagination-bullet {
  background-color: #007aff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  color: #007aff!important;
}

/* Media Queries for better responsiveness */
@media (max-width: 768px) {
  .swiper-container .car-image {
      width: 80px; /* Adjust image size for smaller screens */
  }
}

@media (max-width: 640px) {
  .swiper-container .car-image {
      width: 70px;
  }
  .swiper-container h5 {
      font-size: 16px;
  }
  .swiper-container p {
      font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #356E35;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #173017;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #333;
  background-color: #fff;
  position: relative;
  padding: 80px 0 10px 0;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: #EEF7EE;
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.page-title nav ol li+li {
  padding-left: 10px;
  text-decoration: none;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #333;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history {
  padding: 50px 0;
}

.history .hero-content {
  margin-bottom: 60px;
}

.history .hero-content .hero-title {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #333;
}

@media (max-width: 992px) {
  .history .hero-content .hero-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .history .hero-content .hero-title {
    font-size: 25px;
  }
}

.history .hero-content .hero-description {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
  text-align: justify;
}

.history .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #000;
}

@media (max-width: 992px) {
  .history .section-heading {
    font-size: 2rem;
  }
}

.history .section-text {
  font-size: 16px;
  line-height: 2.2;
  color: #333;
  margin-bottom: 2rem;
  text-align: justify;
}

.history .leadership-showcase {
  margin-bottom: 30px;
}

.history .leadership-showcase .leadership-content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .history .leadership-showcase .leadership-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.history .leadership-showcase .leader-profile {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 10px;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 2px;
}

.history .leadership-showcase .leader-profile .profile-image {
  flex-shrink: 0;
}

.history .leadership-showcase .leader-profile .profile-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.history .leadership-showcase .leader-profile .profile-info h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.history .leadership-showcase .leader-profile .profile-info .title {
  display: block;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.history .leadership-showcase .leader-profile .profile-info .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.history .leadership-showcase .faculty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.history .leadership-showcase .faculty-grid .faculty-member {
  text-align: center;
}

.history .leadership-showcase .faculty-grid .faculty-member:first-child {
  grid-column: 1/-1;
}

.history .leadership-showcase .faculty-grid .faculty-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border-bottom: 10px solid #B0D9B0;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.history .leadership-showcase .faculty-grid .faculty-member-2 img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border-bottom: 10px solid #B0D9B0;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.history .leadership-showcase .faculty-grid .faculty-member .member-info h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.history .leadership-showcase .faculty-grid .faculty-member .member-info span {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 400;
}

.history .values-section {
  margin-bottom: 100px;
}

.history .values-section .values-header {
  margin-bottom: 60px;
}

.history .values-section .value-block {
  padding: 3rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
}

.history .values-section .value-block:hover .value-number {
  color: green;
  transform: scale(1.1);
}

.history .values-section .value-block .value-number {
  font-size: 4rem;
  font-weight: 100;
  color: #C1E1C1;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.history .values-section .value-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.history .values-section .value-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.history .values-section .value-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3rem;
  bottom: 3rem;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .history .values-section .value-block::after {
    display: none;
  }
}

.history .values-section .value-block:last-child::after {
  display: none;
}

.history .accomplishments-section .campus-visual {
  position: relative;
}

.history .accomplishments-section .campus-visual .main-image {
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.history .accomplishments-section .campus-visual .floating-stats {
  position: absolute;
  bottom: -20px;
  right: 20px;
}

@media (max-width: 992px) {
  .history .accomplishments-section .campus-visual .floating-stats {
    position: static;
    margin-top: 2rem;
    text-align: center;
  }
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 180px;
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 200;
  color: green;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card .stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.history .accomplishments-section .accomplishments-content {
  padding-left: 4rem;
}

@media (max-width: 992px) {
  .history .accomplishments-section .accomplishments-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.history .accomplishments-section .achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.history .accomplishments-section .achievements-grid .achievement-item {
  text-align: left;
}

.history .accomplishments-section .achievements-grid .achievement-item .achievement-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.history .accomplishments-section .achievements-grid .achievement-item .achievement-desc {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
}

.history .accomplishments-section .credentials .credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.history .accomplishments-section .credentials .credential-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.history .accomplishments-section .credentials .credential-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 768px) {
  .history {
    padding: 60px 0;
  }

  .history .leadership-showcase,
  .history .values-section {
    margin-bottom: 60px;
  }

  .history .values-section .value-block {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .history .accomplishments-section .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-card {
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease-in-out;
}

.contact .info-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.contact .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #C1E1C1;
}

.contact .info-card .icon-box i {
  font-size: 24px;
  color: #356E35;
}

.contact .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #53AC53;
}

.contact .info-card p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.contact .form-wrapper .input-group .input-group-text {
  color: #356E35;
  background-color: #C1E1C1;
  border-color: #333;
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control {
  color: #777;
  background-color: #f0f0f0;
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.contact .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .form-wrapper select.form-control {
  appearance: none; 
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contact .form-wrapper textarea.form-control {
  min-height: 160px;
}

.contact .form-wrapper button {
  background-color: #448D44;
  border: 0;
  margin: 20px;
  padding: 12px 40px;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.contact .form-wrapper button:hover {
  background-color: #173017;
}

.leadership-showcase .students-zone {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.leadership-showcase .students-zone:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.leadership-showcase .students-zone h3{
  font-size: 18px;
  color: #333;
}