.hero{
    height: 60vh;
    max-height: 800px;
    position: relative;
  }
  
  .hero::before{
    content: "";
    position: absolute ;
    top: 0;
    left: 0;
    background:#0000006f;
    z-index: 2;
    width: 100%;
    height: 100%;
  }
  
  .hero-img{
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  
  .hero-text{
    position: absolute ;
    top: 50%;
    left: 30%;
    transform: translate(-30%, -50%);
    z-index: 3;
    width: 100%;
    margin: auto;
    max-width: 780px;
  }
  
  .hero-text p{
    color: white;
  }
  .acad-intro-content{
    font-size: 1.1em;
    line-height: 1.6;
    font-family: "Open Sans", sans-serif;
  }

.acad-mission .card-header, .acad-vision .card-header{
  background-color: var(--primary-color-light);
  color: #f5f5f5;
  font-weight: 600;
}

.acad-mission .card-body, .acad-vision .card-body{
  /* background-color: orange; */
  background-color: #eee;
  font-size: 1.0rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;

}

.course-section .acad-intro-content{
  max-width: 760px;

}

.course .card{
  background-color: aliceblue;
}

.course .course-img{
  height: 200px;
  object-fit: cover;
}

.course .card-title{
  color: var(--primary-color-dark);
  font-family: "Open Sans", sans-serif;
}

.course .card-body{
  font-size: 1.0rem;
  font-family: "Quicksand", sans-serif;

}
.course .card-footer{
  background-color: inherit;
  border: none;
}

.curriculum-section{
  background-color: var(--dark-bg);
}

  .curriculum-item{
    position: relative;
    background: var(--light-bg);
    min-height: 120px;
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
  }
  .curriculum-box{
    margin-top: 3.5em;
  }
  
  .curriculum-icon{
    position: absolute ;
    top: 50%;
    background: #014683;
    width: 70px;
    height: 80px;
    z-index:3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .curriculum-box:nth-child(even) .curriculum-icon {
    right: 0;
    transform: translate(50%, -50%);
  }
  
  .curriculum-box:nth-child(odd) .curriculum-icon {
    left: 0;
    transform: translate(-50%, -50%);
  }
  
  
  
  .curriculum-header{
    position: absolute ;
    top: 0;
    transform: translateY(-100%);
    background: #014683;
    color: white;
    display : inline-block;
  }
  
  .curriculum-box:nth-child(even) .curriculum-header{
    right: 60px;
  }
  .curriculum-box:nth-child(odd) .curriculum-header{
    left: 60px;
  }
  .curriculum-text{
    margin-left: 45px;
    overflow: hidden;
  }

  .features .feature-box{
    background-color: var(--primary-color-light);
  }
  
  .feature-box{
  font-family: "Open Sans", sans-serif;

  }
  .feature-box{
    color: #353535;
  }
  .feature-box .h5{
    color: #333;
  }

  
  .testimony-box{
    max-width: 500px;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    gap: 1.5rem;
    border-radius: 12px;
  }
  
  .testimony-img{
    width: 150px;
    height: 150px;
    padding: 3px;
    border: 2px solid orange;
    border-radius: 50%;
  }
  
  .testimony-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .tesimony{
    font-family: "Quicksand", sans-serif;
  }
  .testifyer{
    font-weight: bold;
    text-align: center;
    color: #353535;
    font-family: "Open Sans", sans-serif;
  }

  .bi-quote{
    color: var(--primary-color);
  }
  .q-last::before{
    transform: rotateY(180deg);
  }

  /* Apply shadow and adjust styling for carousel icons */
  .shadow-icon i {
    color: #333; /* Adjust icon color if needed */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  }

  /* Optional styling to make icons more prominent */
  .shadow-icon i:hover {
    color: #000; /* Darken icon on hover */
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Enhance shadow on hover */
  }