
body {
    overflow-x: hidden;
}
/*HERO*/
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; 
    background-image: url('/assets//images/w5.jpeg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay to dim the image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(129, 127, 127, 0); 
}

/* Hero text box */
.hero-text-box {
    position: absolute;
    top: 50%;
    left: 5%; 
    transform: translateY(-50%); 
    background-color: rgba(128, 128, 128, 0.876); 
    padding: 20px 40px;
    border-radius: 18px;
    max-width: 550px; 
}

/* Hero text */
.hero-text {
    font-size: 24px;
    color: white;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.hero-text {
    font-size: 44px;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 10px; 
}

/* Hero subtext */
.hero-subtext {
    font-size: 26px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px; 
}

/* Marquee within Hero Section */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: rgba(57, 51, 107, 0.781); 
    color: white;
    padding: 10px 0;
    text-align: center;
    position: absolute;
    font-size: 22px;
    top: 0;  
    left: 0;
    z-index: 1; 
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* Keyframes for marquee scrolling */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}



/* CTA button */
.cta-btn {
    display: block;  
    margin: 0 auto;    
    background-color: #200654; 
    color: white;
    font-size: 18px;
    font-weight: 200;
    padding: 10px 20px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #b7abc7; 
}

/*DESCRIPTION-SECTION*/
.description-section {
    padding: 50px 15px; 
    margin-top: 30px;
    margin-bottom: 40px;

}

.description-heading {
    font-size: 3.2rem; 
    margin-bottom: 20px; 
    color: rgb(46, 6, 116);
    text-align: center;
}

.description-text {
    font-size:20px;
    line-height: 1.5; 
    color: rgb(4, 4, 72);
    margin-left: 40px;
    margin-bottom: 40px ;
    margin-top: 80px;
    text-align: center;
}

.description-image {
    max-width: 100%; 
    height: auto; 
}

.explore-button {
    background-color: #201654; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 15px; 
    text-transform: none;
    text-decoration: none;
    font-size: 19px;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.2s; 
}

.explore-button:hover {
    background-color: #876b9f; 
    transform: translateY(-2px); 
    
}

.explore-button:focus {
    outline: none; 
    box-shadow: 0 0 5px rgba(8, 37, 67, 0.5); 
}

/* Testimonial Section */

.testimonial-heading{
    font-size: 3.2rem; 
    margin-bottom: 20px; 
    color: rgb(46, 6, 116);
    text-align: center;
}
.testimonial-section {
    position: relative;
    width: 100%;
    max-width: 100%; 
    margin: auto; 
    height: 490px; 
    background-image: url('/assets/images/we.JPG.webp'); 
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 0px;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

.testimonial-container {
    position: relative;
    height: 100%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; 
}

.swiper-wrapper {
    display: flex; 
}

.swiper-slide {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 100%; 
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.659); 
    border-radius: 20px; 
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 80%; 
}

/* Testimonial Text */
.testimonial-content p {
    font-size: 20px; 
    line-height: 1.5; 
    color: rgb(0, 0, 0); 
}

.testimonial-name {
    font-weight: bold;
    margin-top: 10px;
    font-size: 18px;
}

.testimonial-role {
    color: #302e2e; 
    font-size: 16px;
}



/* Navigation Buttons */
.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 2; 
    font-size: 34px; 
    cursor: pointer; 
}

.swiper-button-prev {
    left: 20px; 
}

.swiper-button-next {
    right: 20px; 
}



/*courses section*/
.courses-section {
    background-color: #141143; 
    padding: 50px 0;
}

.courses-heading {
    margin: 0;
    font-size: 3.2rem; 
    margin-bottom: 40px; 
    color: rgb(249, 249, 249);
    text-align: left;
}


.courses-container {
    display: flex; 
    justify-content: space-between; /* Space between boxes */
}

.course-box {
    background-color: #f8f9fa; 
    border: 1px solid #ddd; 
    border-radius: 5px; 
    margin: 10px;

    display: flex;
    flex-direction: column; 
    height: 300px; 
    flex: 1; 
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.course-box:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}
.course-heading {
    border-radius: 5px ;
    background-color: #364682; 
    color: #fff; 
    padding: 20px; 
    text-align: center;
    font-size: 2.0em; 
}

.course-content {
    background-color: #7895aa63; 
    flex-grow: 1; 
    padding: 15px; 
    text-align: center; 
    font-size: 25px;
}

.courses-button {
    margin-left: 20px; 
}

.courses-button {
    background-color: #3b467e; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    padding: 10px 20px; 
    font-size: 1.2rem; 
    text-decoration: none; 
    transition: background-color 0.3s, transform 0.2s; 
    display: inline-block; 
}

.courses-button:hover {
    background-color: #d37435; 
    transform: scale(1.05); 
}

.courses-button:active {
    transform: scale(0.95); 
}

/* Gallery Section */
.gallery-section {
    margin-top: 50px;
    padding: 60px 0;
}

.gallery-section .img-fluid {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Add padding between image columns */
.row > div {
    padding: 0 5px;
}

.gallery-section .row {
    margin-bottom: 15px;
}

/* Gallery Heading */
.gallery-heading {
    margin-bottom: 5px;
    margin-right: -20px;
    font-size: 3.2rem;
    color: rgb(19, 6, 85);
    text-align: center;
}

/* Gallery Subheading */
.gallery-subheading {
    font-size: 2rem;
    margin-bottom: 10px;
    color: rgb(19, 6, 85);
    text-align: center;
    margin-right: -40px;
    margin-left: 40px;
}

/* Button Styling */
.gallery-button {
    margin-left: 230px;
    height: 40px;
    padding: 5px 10px;
    font-size: 20px;
    border-radius: 4px;
    background-color: #201654;
    color: white;
    border: none;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    max-width: 150px;
    white-space: nowrap;
}

.gallery-button:hover {
    background-color: #876b9f;
    color: white;
}






/*Highlights*/
.custom-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px;
    margin-left: -200px;
    margin-right: 0;
    margin-top: 80px;
    margin-bottom: 170px;
  }
  
  .custom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 195px;
  }
  
  .custom-box {
    position: relative;
    width: 300px;
    height: 350px;
    margin-bottom: 40px;
  }
  
  .image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 420px;
    border: 0.2px solid rgba(13, 13, 75, 0.279);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .image-box img {
    width: 100%;
    height: 100%;
  }
  
  .text-box {
    position: absolute;
    bottom: -140px;
    left: 130px;
    width: 350px;
    padding: 10px;
    border-radius: 15px;
    background: #200654;
    border: 0.3px solid rgba(92, 77, 134, 0.36);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  }
  

  
  .box-text {
    font-size: 20px;
    text-align: center;
    color: white;
    background-color: #200654;
  }
  
  /*faculty*/
  .faculty-section {
    margin-top: 60px;
    background-color: #141143;
    padding: 20px;
    max-width: 100%;
}

.faculty-image {
    width: 58%;
    height: 350px;
    border-radius: 8px;
    margin-bottom: -30px;
}

.faculty-description {
    font-size: 3.5rem;
    margin-right: -180px;
    margin-left: -120px;
    line-height: 1.5;
    color: rgb(255, 255, 255);
    text-align: left;
}
.faculty-desc{
    font-size: 1.8rem;
    color: rgb(255, 255, 255);
    margin-left: -135px;
    margin-top: -20px;
}

.fac-desc {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
}



.whatsapp-icon {
    background-color: #fcfbfd; 
    border-radius: 50%; 
    box-shadow: 0 2px 5px rgba(15, 15, 15, 0.3); 
    padding: 18px; 
}


 /*opportunities*/ 
.opportunity-heading {
    font-size: 50px;
    color: #141143;
    font-weight: bold;
    margin-bottom: 20px;
}

.opportunity-subheading {
    color: #364682;
    font-size: 30px;
    margin-bottom: 40px;
}

.explore-button {
    margin-left: 200px;
    width: 60%;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.d-grid.gap-2 {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

