*{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html, body {
   overflow-x: hidden;
}

:root{
   --navyBlue: #0B1F5B;
   --skyBlue: #38BDF8;
   --yellow: #FACC15;
   --white: #FFFFFF;
   --redAccent: #DC2626;
   --darkText: #1F2937;
   --softText: #4B5563;

   --overlayColor: rgba(11, 31, 91, 0.25);

   --rem2: 2rem; 
   --rem1-3: 1.3rem;
   --rem1-1: 1.1rem;
   --rem1-05: 1.05rem;
}

html{
   scroll-behavior: smooth;
}

body{
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p{
   color: var(--softText);
}

.logo img {
    height: 60px;   /* adjust as needed */
    width: auto;    /* keeps proportions */
    object-fit: contain;
}

.apply-btn {
    background-color: #1e88e5;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s ease;
}

.apply-btn:hover {
    background-color: #1565c0;
}

/* Div one starts ========================== */
.coverDiv.hero{
   width: 100%;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   background-position: center;
   background-size: cover;
   background-attachment: fixed;
   transition: background-image 1s ease-in-out;
}

.coverDiv .mainHeader{
   width: 100%;
   height: 80px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: rgba(1, 18, 65, 0.9);
   padding-inline: max(5%, 50px);
   padding-top: 10px;
}

.coverDiv .mainHeader .logoSec{
   width: auto;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
}

.coverDiv .mainHeader .logoSec>i{
   font-size: xx-large;
   color: var(--yellow);
   overflow: hidden;
}

.coverDiv .mainHeader .logoSec>span{
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   font-weight: bold;
   color: white;
   padding-left: 5px;
   font-size: large;
}

.coverDiv .mainHeader .navItems{
   display: flex;
   align-items: center;
   gap: 20px;
   overflow: visible;
}

.coverDiv .mainHeader .navItems>span{
   position: relative;
   width: auto;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
}

.coverDiv .mainHeader .navItems>span>a{
   color: white;
   text-decoration: none;
   padding: 10px 15px 10px;
   font-weight: bold;
   display: block;
}

.coverDiv .mainHeader .navItems>span>a::after{
   content: " ";
   width: 0%;
   height: 5%;
   background-color: red;
   position: absolute;
   bottom: 0;
   right: 0%;
   transition: 0.5s;
}

.coverDiv .mainHeader .navItems>span:hover>a::after{
   left: 0%;
   width: 95%;
}

.coverDiv .mainHeader .hamburgerIcon{
   display: none;
   width: auto;
   height: auto;
   color: white;
   overflow: hidden;
}

.coverDiv .mainHeader .hamburgerIcon>i{
   font-size: x-large;
}

.coverDiv .mainDiv{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: calc(100vh - 80px);
   background-color: var(--overlayColor);
   position: relative;
}

.coverDiv .mainDiv .mainSec{
   width: 80%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   color: white;
   animation: topSlide 1s ease-out;
}

@keyframes topSlide {
   from{margin-top: -20%; opacity: 0;}
   to{margin-top: 0%; opacity: 1;}

   
}

.coverDiv .mainDiv .mainSec>h1{
   font-size: 70px;
   text-align: center;
}

.coverDiv .mainDiv .mainSec>p{
   width: 80%;
   font-size: 1.5rem;
   text-align: center;
   padding-block: 10px;
   font-weight: lighter;
   color: white;
}

.coverDiv .mainDiv .mainSec>a{
   text-decoration: none;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-weight: bold;
   position: relative;
   z-index: 2;
   color: white;
   padding: 10px 50px 10px;
   margin-top: 8px;
   text-decoration: none;
   color: white;
   border: 2px solid var(--yellow);
}

.coverDiv .mainDiv .mainSec>a::before{
   content: " ";
   width: 0%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 50%;
   background-color: white;
   z-index: -1;
   transition: 0.5s;
}

.coverDiv .mainDiv .mainSec>a::after{
   content: " ";
   width: 0%;
   height: 100%;
   position: absolute;
   top: 0;
   right: 50%;
   background-color: white;
   z-index: -1;
   transition: 0.5s;
}

.coverDiv .mainDiv .mainSec>a:hover{
   color: black;
}

.coverDiv .mainDiv .mainSec>a:hover::before, .coverDiv .mainDiv .mainSec>a:hover::after{
   width: 50%;
}
/* Div one ends ========================== */


/* Div Two starts ========================== */
.divTwo{
   width: 100%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding-block: 50px;
   /* border: 1px solid red; */
}

.divTwo>section{
   width: 85%;
   /* border: 1px solid red; */
}


/* General Heading Sec ================== */
.headingSec{
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   text-align: center;
}

.headingSec>h1{
   width: 100%;
   text-align: center;
   font-size: var(--rem2);
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   margin-bottom: 5px;
}

.headingSec>h1 .highlight{
   color: var(--skyBlue);
   /* background: linear-gradient(20deg, rgba(255, 0, 0, 1) , rgba(0, 0, 255, 1));
   -webkit-background-clip: text;
   color: transparent;
   transition: 0.5s; */
}

.headingSec>p{
   font-size: var(--rem1-1);
}
/* General Heading Sec ================== */


.divTwo .firstSec{
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   margin-top: 30px;
}

.divTwo .firstSec .courseSec{
   width: 30%;
   height: auto;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   background-color: rgba(0, 0, 0, 0.05);
   padding: 20px;
   padding-block: 30px;
   border: 0.5px solid silver;
   border-radius: 10px;
   margin: 1.66%;
   transition: 0.5s;
}

.divTwo .firstSec .courseSec:nth-child(1){
   border-left: 5px solid var(--yellow);
   background-color: rgba(250, 204, 21, 0.06);
}

.divTwo .firstSec .courseSec:nth-child(2){
   border-left: 5px solid var(--skyBlue);
   background-color: rgba(56, 189, 248, 0.06);
}

.divTwo .firstSec .courseSec:nth-child(3){
   border-left: 5px solid var(--navyBlue);
   background-color: rgba(11, 31, 91, 0.06);
}

.divTwo .firstSec .courseSec:hover{
   box-shadow: 0px 5px 10px silver;
   margin-top: -1%;
}

.divTwo .firstSec .courseSec>h3{
   font-size: var(--rem1-3);
   position: relative;
   padding-bottom: 8px;
}

.divTwo .firstSec .courseSec>h3::after{
   content: " ";
   width: 50%;
   height: 5%;
   position: absolute;
   bottom: 0%;
   left: 20%;
   background-color: red;
}

.divTwo .firstSec .courseSec>p{
   width: 95%;
   margin-top: 20px;
   text-align: center;
   font-size: var(--rem1-05);
}
/* Div Two ends ========================== */



/* Div Three starts ========================== */
.divThree{
   width: 100%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding-block: 50px;
}

.divThree>section{
   width: 85%;
}

.divThree .firstSec{
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   margin-top: 30px;
}

.divThree .firstSec .imgSec{
   width: 30%;
   height: 450px;
   margin: 1.66%;
   border-radius: 10px;
   position: relative;
   overflow: hidden;
   transition: 0.5s;
   
}

.divThree .firstSec .imgSec>img{
   position: absolute;
   width: 200%;
   min-height: 100%;
   top: 0;
   left: -50%;
   transition: 0.5s;
}

.divThree .firstSec .imgSec::after{
   content: var(--university);
   width: 100%;
   height: 100%;
   position: absolute;
   top: 100%;
   left: 0%;
   background-color: rgba(0, 0, 0, 0.3);
   transition: 0.8s;
   opacity: 0;
   color: white;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 1.5rem;
}

.divThree .firstSec .imgSec:hover::after{
   opacity: 1;
   top: 0%;
}


/* Div Three ends ========================== */


/* Div Four starts ========================== */
.divFour{
   width: 100%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding-block: 50px;
}

.divFour>section{
   width: 85%;
}

.divFour .firstSec{
   height: auto;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   flex-wrap: wrap;
   margin-top: 30px;
}

.divFour .firstSec .subSec{
   width: 30%;
   height: auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin: 1.66%;
}

.divFour .firstSec .subSec .imgSec{
   width: 100%;
   height: 300px;
   border-radius: 10px;
   position: relative;
   overflow: hidden;
}

.divFour .firstSec .subSec .imgSec>img{
   position: absolute;
   width: 100%;
   min-height: 100%;
   top: 0;
   left: 0%;
   object-fit: cover;
}

.divFour .firstSec .subSec>h3{
   width: 100%;
   text-align: left;
   padding-top: 15px;
   padding-bottom: 8px;
   font-size: var(--rem1-3);
}

.divFour .firstSec .subSec>p{
   font-size: var(--rem1-05);
   padding-bottom: 20px;
}
/* Div Four ends ========================== */


/* Div Five starts ========================== */
.divFive{
   width: 100%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding-block: 50px;
}

.divFive>section{
   width: 85%;
}

.divFive .firstSec{
   height: auto;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   margin-top: 30px;
   
   flex-wrap: nowrap;
   overflow-x: auto;
   overflow-y: hidden;
   cursor: grab;

   scroll-snap-type: inline mandatory;
}

.divFive .firstSec > *{
   scroll-snap-align: center; /*or start */
}

.divFive .firstSec .subSec:first-child{
   margin-left: 85%;
}


.divFive .firstSec::-webkit-scrollbar{
   display: none;
}

.divFive .firstSec .subSec{
   width: 43%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   margin: 1.5%;
   padding: 15px 20px 15px;
   border-radius: 10px;
   background-color: rgba(255, 0, 0, 0.05);
   flex-shrink: 0;
}

.divFive .firstSec .subSec .imgSec{
   width: 50px;
   height: 50px;
   margin-right: 15px;
   border-radius: 50%;
   overflow: hidden;
   position: relative;
}

.divFive .firstSec .subSec .imgSec>img{
   position: absolute;
   top: 0%;
   width: 100%;
   height: fit-content;
}

.divFive .firstSec .subSec .quoteSec{
   width: 80%;
   height: auto;
   display: flex;
   flex-direction: column;
}

.divFive .firstSec .subSec .quoteSec>p{
   font-style: italic;
   font-weight: 350;
}

.divFive .firstSec .subSec .quoteSec .name{
   font-weight: bold;
   margin-top: 8px;
}

.divFive .firstSec .subSec .quoteSec .rating{
   font-size: x-small;
   margin-top: 5px;
}

/* Div Five ends ========================== */


/* Div Six starts ========================== */
.divSix{
   width: 100%;
   min-height: 400px;
   background-color: var(--navyBlue);
}

.divSix .overlay{
   width: 100%;
   min-height: inherit;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding-block: 50px;
   background: linear-gradient( rgba(11, 31, 91, 0.35));
}

.divSix .overlay .mainSec{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   position: relative;
}

.divSix .overlay .mainSec>h1{
   font-size: var(--rem2);
   color: white;
   text-align: center;
   line-height: 4rem;
   text-transform: uppercase;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.divSix .overlay .mainSec>a{
   color: white;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   padding: 15px 50px 15px;
   font-weight: bold;
   text-decoration: none;
   text-transform: uppercase;
   margin-top: 10px;
   position: relative;
   background-color: transparent;
   z-index: 1;
   overflow: visible;
}

.divSix .overlay .mainSec>a::before{
   content: " ";
   position: absolute;
   top: 0%;
   left: 0%;
   width: calc(100% - 2px);
   height: calc(100% - 2px);
   z-index: -1;
   border-top: 2px solid white;
   border-left: 2px solid white;
   transition: 0.5s;
}

.divSix .overlay .mainSec>a::after{
   content: " ";
   position: absolute;
   top: 0%;
   right: 0%;
   width: calc(100% - 2px);
   height: calc(100% - 2px);
   z-index: -1;
   border-right: 2px solid white;
   border-bottom: 2px solid white;
   transition: 0.5s;
}

.divSix .overlay .mainSec>a:hover::before{
   margin-top: -5px;
   margin-left: -5px;
}

.divSix .overlay .mainSec>a:hover::after{
   margin-right: -5px;
   margin-bottom: -5px;
}

/* Div Six ends ========================== */


/* Div Seven starts ========================== */
.divSeven{
   width: 100%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding-block: 15px;
}

.divSeven>section{
   width: 85%;
}

.divSeven .firstSec{
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   margin-top: 10px;
   overflow-y: hidden;
}

.divSeven .firstSec>a{
   width: 40px;
   height: 40px;
   background-color: rgba(0, 0, 0, 0.05);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-inline: 10px;
   color: white;
   text-decoration: none;
   transition: 0.5s;
}

.divSeven .firstSec>a:hover{
   transform: rotate(360deg);
   background-color: rgba(0, 0, 0, 0.1);
   color: gray;
}

.divSeven .firstSec>p>i{
   color: blue;
}

.divSeven .firstSec>p>a{
   color: blue;
}
/* Div Seven ends ========================== */

.aboutfirstSec {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.aboutsubSec {
    display: flex;
    align-items: center;
    gap: 30px; /* space between image and text */
    max-width: 1000px;
}

.aboutimgSec img {
    width: 600px;
    height: auto;
    border-radius: 10px;
}

/* Optional: make text look better */
.aboutsubSec h3 {
    margin-bottom: 10px;
}

.aboutsubSec p {
    max-width: 500px;
}

@media (max-width: 768px) {
    .aboutsubSec {
        flex-direction: column;
        text-align: center;
    }
}

.firsttextSec p {
    font-size: 22px; /* you can increase to 20px, 22px etc */
}

/* ===== MAIN CONTAINER ===== */
.container {
    width: 90%;
    max-width: 900px;
    margin: 10px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ===== TITLE ===== */
.container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    text-align: center;
    margin-bottom: 25px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 16px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 18px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* ===== FORM ===== */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

input, textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

input:focus, textarea:focus {
    border-color: #1abc9c;
}

/* ===== SUBMIT BUTTON ===== */
button {
    padding: 12px;
    background: #2c3e50;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #1abc9c;
}

/* ===== MAP ===== */
.map {
    margin-top: 30px;
}

.map h3 {
    text-align: center;
    margin-bottom: 10px;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 15px;
    background: #2c3e50;
    color: white;
    margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mainHeader {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .container {
        padding: 20px;
    }
}

/* Navbar container */
.navItems {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Normal navbar links */
.navItems a {
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
}

/* Dropdown wrapper */
.dropdown {
    position: relative;
    display: inline-block;
}

/* About button */
.dropbtn {
    cursor: pointer;
}

/* Hidden dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0d47a1;
    min-width: 230px;
    z-index: 9999;
    border-radius: 6px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    overflow: visible;
}

/* Dropdown links */
.dropdown-content a {
    padding: 12px 16px;
    display: block;
    white-space: nowrap;
}

/* Hover effects */
.dropdown-content a:hover {
    background-color: #910a0a; /* Gold */
    color: #0d1b2a;            /* Dark navy for clear contrast */
    font-weight: 600;
}

/* THIS makes hover work */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Optional navbar hover */
.navItems a:hover,
.dropdown:hover .dropbtn {
    color: #f9a825;
}

/* ===== FACILITIES CAROUSEL ===== */
.facilitiesCarousel {
   position: relative;
   width: 85%;
   margin: 40px auto 0;
   border-radius: 14px;
   overflow: hidden;
   box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.facilitySlide {
   display: none;
   position: relative;
   width: 100%;
}

.facilitySlide.active {
   display: block;
}

.facilitySlide img {
   width: 100%;
   height: 500px;
   object-fit: cover;
   display: block;
}

.facilityCaption {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   background: linear-gradient(transparent, rgba(11, 31, 91, 0.85));
   color: white;
   padding: 30px 40px;
}

.facilityCaption h3 {
   font-size: 1.6rem;
   margin-bottom: 8px;
   color: var(--yellow);
}

.facilityCaption p {
   font-size: 1rem;
   color: white;
   max-width: 700px;
}

/* Arrows */
.facilityArrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background-color: rgba(11, 31, 91, 0.7);
   color: white;
   border: none;
   padding: 14px 18px;
   font-size: 1.2rem;
   cursor: pointer;
   border-radius: 50%;
   transition: 0.3s;
   z-index: 10;
}

.facilityArrow:hover {
   background-color: var(--yellow);
   color: var(--navyBlue);
}

.leftArrow { left: 15px; }
.rightArrow { right: 15px; }

/* Dots */
.facilityDots {
   position: absolute;
   bottom: 15px;
   right: 20px;
   display: flex;
   gap: 8px;
}

.facilityDot {
   width: 10px;
   height: 10px;
   background-color: rgba(255,255,255,0.5);
   border-radius: 50%;
   cursor: pointer;
   transition: 0.3s;
}

.facilityDot.active {
   background-color: var(--yellow);
   transform: scale(1.3);
}

/* Responsive */
@media (max-width: 700px) {
   .facilitySlide img {
      height: 300px;
   }

   .facilityCaption {
      padding: 20px;
   }

   .facilityCaption h3 {
      font-size: 1.2rem;
   }

   .facilityCaption p {
      font-size: 0.85rem;
   }
}

/* ===== ACHIEVEMENTS SLIDER ===== */
.achievementCard {
   padding-top: 0 !important;
   overflow: hidden !important;
}

.achieveSlider {
   position: relative;
   width: 100%;
   height: 220px;
   border-radius: 10px 10px 0 0;
   overflow: hidden;
   margin-bottom: 15px;
}

.achieveSlide {
   display: none;
   width: 100%;
   height: 100%;
}

.achieveSlide.active {
   display: block;
}

.achieveSlide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Arrows */
.achieveArrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background-color: rgba(11, 31, 91, 0.6);
   color: white;
   border: none;
   padding: 8px 12px;
   font-size: 0.9rem;
   cursor: pointer;
   border-radius: 50%;
   transition: 0.3s;
   z-index: 10;
}

.achieveArrow:hover {
   background-color: var(--yellow);
   color: var(--navyBlue);
}

.leftBtn { left: 8px; }
.rightBtn { right: 8px; }

/* Dots */
.achieveDots {
   position: absolute;
   bottom: 8px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 6px;
}

.achieveDot {
   width: 8px;
   height: 8px;
   background-color: rgba(255,255,255,0.5);
   border-radius: 50%;
   transition: 0.3s;
}

.achieveDot.active {
   background-color: var(--yellow);
   transform: scale(1.3);
}

/* Responsive */
@media (max-width: 700px) {
   .achieveSlider {
      height: 180px;
   }
}

/* ===== SLOGAN ===== */
.sloganDiv {
   width: 100%;
   padding: 30px 20px;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: var(--navyBlue);
}

.sloganText {
   font-size: 3rem;
   font-weight: 900;
   color: var(--yellow);
   text-align: center;
   text-transform: uppercase;
   letter-spacing: 8px;
   font-family: 'Georgia', serif;
   position: relative;
}

.sloganText::after {
   content: "";
   display: block;
   width: 80px;
   height: 4px;
   background-color: var(--skyBlue);
   margin: 15px auto 0;
   border-radius: 2px;
}

/* Responsive */
@media (max-width: 600px) {
   .sloganText {
      font-size: 2rem;
      letter-spacing: 4px;
   }
}

/* ===== ACADEMICS HERO SLIDER ===== */
.academicsHero {
   position: relative;
   width: 100%;
   height: calc(100vh - 80px);
   overflow: hidden;
}

.academicSlide {
   display: none;
   width: 100%;
   height: 100%;
}

.academicSlide.active {
   display: block;
}

.academicSlide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Overlay Text */
.academicsOverlay {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   padding: 40px 50px;
   background: linear-gradient(transparent, rgba(11, 31, 91, 0.92));
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   align-items: flex-start;
   text-align: left;
}

.academicsOverlay h1 {
   font-size: 2.5rem;
   color: var(--yellow);
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   margin-bottom: 10px;
   border-left: 5px solid var(--skyBlue);
   padding-left: 15px;
}

.academicsOverlay p {
   font-size: 1rem;
   color: white;
   max-width: 600px;
   line-height: 1.8;
   padding-left: 20px;
   opacity: 0.9;
}

/* Arrows */
.academicArrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background-color: rgba(11, 31, 91, 0.6);
   color: white;
   border: none;
   padding: 14px 18px;
   font-size: 1.2rem;
   cursor: pointer;
   border-radius: 50%;
   transition: 0.3s;
   z-index: 10;
}

.academicArrow:hover {
   background-color: var(--yellow);
   color: var(--navyBlue);
}

.academicLeft { left: 15px; }
.academicRight { right: 15px; }

/* Dots */
.academicDots {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 8px;
}

.academicDot {
   width: 10px;
   height: 10px;
   background-color: rgba(255,255,255,0.5);
   border-radius: 50%;
   cursor: pointer;
   transition: 0.3s;
}

.academicDot.active {
   background-color: var(--yellow);
   transform: scale(1.3);
}

/* Responsive */
@media (max-width: 700px) {
   .academicsOverlay h1 {
      font-size: 1.8rem;
   }

   .academicsOverlay p {
      font-size: 1rem;
   }
}

/* ===== STATS BAR ===== */
.statsBar {
   width: 100%;
   background-color: var(--navyBlue);
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   padding: 30px 20px;
   gap: 40px;
}

.statItem {
   display: flex;
   flex-direction: column;
   align-items: center;
   color: white;
}

.statNumber {
   font-size: 2.5rem;
   font-weight: 900;
   color: var(--yellow);
   line-height: 1;
}

.statLabel {
   font-size: 0.95rem;
   color: white;
   margin-top: 5px;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ===== PROGRAM CARDS ===== */
.programCard {
   padding-top: 0 !important;
   overflow: hidden !important;
}

.programImg {
   width: 100%;
   height: 200px;
   overflow: hidden;
   border-radius: 10px 10px 0 0;
   margin-bottom: 15px;
}

.programImg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.5s;
}

.programCard:hover .programImg img {
   transform: scale(1.05);
}

/* ===== APPROACH CARDS ===== */
.approachCard {
   text-align: center;
   padding: 30px 20px;
   border-radius: 10px;
   background-color: rgba(0,0,0,0.03);
   border: 0.5px solid silver;
   transition: 0.3s;
}

.approachCard:hover {
   box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   margin-top: -5px;
}

.approachIcon {
   width: 65px;
   height: 65px;
   background-color: var(--navyBlue);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto 15px;
}

.approachIcon i {
   font-size: 1.5rem;
   color: var(--yellow);
}

.approachCard h3 {
   font-size: 1.2rem;
   margin-bottom: 10px;
   color: var(--navyBlue);
}

/* ===== VIDEO SECTION ===== */
.videoSection {
   width: 100%;
   padding: 60px 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   background-color: rgba(11, 31, 91, 0.04);
}

.videoSection .headingSec {
   width: 85%;
   margin-bottom: 30px;
}

.videoWrapper {
   width: 85%;
   max-width: 900px;
   border-radius: 14px;
   overflow: hidden;
   box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.videoWrapper video {
   width: 100%;
   height: auto;
   display: block;
}

/* ===== CTA STRIP ===== */
.academicCTA {
   width: 100%;
   background: linear-gradient(135deg, var(--navyBlue), #1a3a8f);
   padding: 60px 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
}

.academicCTA h2 {
   font-size: 2rem;
   color: var(--yellow);
   margin-bottom: 12px;
}

.academicCTA p {
   color: white;
   font-size: 1rem;
   max-width: 600px;
   margin-bottom: 25px;
   opacity: 0.9;
}

.academicCTA a {
   padding: 14px 50px;
   background-color: var(--yellow);
   color: var(--navyBlue);
   text-decoration: none;
   font-weight: 900;
   border-radius: 6px;
   font-size: 1rem;
   transition: 0.3s;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.academicCTA a:hover {
   background-color: var(--skyBlue);
   color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
   .statNumber {
      font-size: 2rem;
   }

   .videoSection,
   .videoWrapper {
      width: 95%;
   }

   .academicCTA h2 {
      font-size: 1.5rem;
   }
}