/* =========================
   HERO SECTION
========================= */
html{
  scroll-behavior: smooth;
}
.hero-section{
position:relative;
width:100%;
min-height:720px;
background:url('../images/homebannerimag.png') center center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
padding:120px 5% 80px;
}

.hero-section::before{
content:'';
position:absolute;
top:-180px;
right:-100px;
width:420px;
height:420px;
background:rgba(255,255,255,.05);
border-radius:50%;
z-index:1;
}

.hero-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
to right,
rgba(0,0,0,.58),
rgba(0,0,0,.35)
);
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
max-width:1150px;
width:100%;
margin:auto;
}

/* =========================================
BADGE
========================================= */

.hero-badge{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
background:rgba(209,240,79,.15);
border:1px solid rgba(209,240,79,.28);
backdrop-filter:blur(10px);
color:#fff;
min-height:48px;
padding:10px 24px;
border-radius:100px;
font-size:14px;
font-weight:700;
margin-bottom:28px;
box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* =========================================
TITLE
========================================= */

.hero-title{
font-size:72px;
line-height:86px;
font-weight:800;
color:#fff;
margin-bottom:24px;
text-shadow:0 6px 18px rgba(0,0,0,.25);
letter-spacing:-1px;
}

.hero-title span{
color:#d1f04f;
display:inline-block;
}

/* =========================================
DESCRIPTION
========================================= */

.hero-desc{
font-size:20px;
line-height:34px;
color:#edf4fb;
max-width:820px;
margin:auto;
margin-bottom:42px;
font-weight:400;
}

.hero-desc strong{
font-weight:700;
color:#fff;
}

/* =========================================
MODERN INQUIRY FORM
========================================= */

.neo-inquiry-main{
display:flex;
justify-content:center;
align-items:center;
width:100%;
margin-bottom:45px;
}

.neo-inquiry-form{
width:100%;
max-width:720px;
display:flex;
align-items:center;
gap:14px;
padding:14px;
border-radius:28px;
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.15);
backdrop-filter:blur(14px);
box-shadow:0 18px 45px rgba(0,0,0,.15);
}

/* INPUT BOX */

.neo-input-wrap{
flex: 1;
    height: 65px;
    background: #fff;
    border-radius: 22px;
    display: flex
;
    align-items: center;
    padding: 0px 13px;
    border: 2px solid transparent;
    transition: .35s;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}

.neo-input-wrap:focus-within{
border-color:#d1f04f;
transform:translateY(-2px);
}

.neo-input-icon{
width:48px;
height:48px;
border-radius:14px;
background:#d1f04f;
display:flex;
align-items:center;
justify-content:center;
margin-right:14px;
flex-shrink:0;
}

.neo-input-icon i{
font-size:18px;
color:#465700;
}

.neo-input-wrap input{
width:100%;
border:none;
outline:none;
background:transparent;
font-size:16px;
font-weight:600;
color:#0f172a;
}

.neo-input-wrap input::placeholder{
color:#94a3b8;
font-weight:500;
}

/* BUTTON */

.neo-submit-btn{
height:65px;
padding:0 34px;
border:none;
border-radius:22px;
background:linear-gradient(135deg,#d1f04f,#bfe43a);
color:#3d4d00;
font-size:16px;
font-weight:800;
cursor:pointer;
transition:.35s;
white-space:nowrap;
box-shadow:0 14px 30px rgba(209,240,79,.28);
position:relative;
overflow:hidden;
}

.neo-submit-btn::before{
content:'';
position:absolute;
top:0;
left:-120%;
width:100%;
height:100%;
background:rgba(255,255,255,.35);
transform:skewX(-20deg);
transition:.6s;
}

.neo-submit-btn:hover::before{
left:120%;
}

.neo-submit-btn:hover{
transform:translateY(-5px);
box-shadow:0 18px 34px rgba(209,240,79,.45);
}

/* =========================================
FEATURES
========================================= */

.hero-features{
display:flex;
align-items:center;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.feature-item{
padding:14px 22px;
background:rgba(255,255,255,.10);
border:1px solid rgba(255,255,255,.12);
backdrop-filter:blur(10px);
border-radius:100px;
color:#fff;
font-size:14px;
font-weight:600;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1199px){

.hero-title{
font-size:58px;
line-height:72px;
}

.hero-desc{
font-size:18px;
line-height:32px;
}

}

@media(max-width:991px){

.hero-section{
min-height:auto;
padding:110px 5% 70px;
}

.hero-title{
font-size:46px;
line-height:62px;
}

.hero-desc{
font-size:17px;
line-height:30px;
max-width:700px;
}

.neo-inquiry-form{
max-width:650px;
}

}

@media(max-width:767px){

.hero-section{
padding:90px 5% 60px;
background-position:center;
}

.hero-badge{
font-size:12px;
padding:10px 18px;
min-height:42px;
margin-bottom:22px;
}

.hero-title{
font-size:30px;
line-height:44px;
margin-bottom:14px;
letter-spacing:0;
}

.hero-desc{
font-size:14px;
line-height:27px;
margin-bottom:30px;
}

.neo-inquiry-main{
margin-bottom:30px;
}

.neo-inquiry-form{
flex-direction:column;
padding:16px;
border-radius:24px;
gap:14px;
}

.neo-input-wrap,
.neo-submit-btn{
width:100%;
height:58px;
border-radius:18px;
}

.neo-input-wrap{
padding:9px 14px;
}

.neo-input-icon{
width:40px;
height:40px;
border-radius:12px;
margin-right:10px;
}

.neo-input-icon i{
font-size:15px;
}

.neo-input-wrap input{
font-size:14px;
}

.neo-submit-btn{
font-size:14px;
padding:0 20px;
}

.hero-features{
flex-direction:column;
gap:12px;
}

.feature-item{
width:100%;
max-width:320px;
text-align:center;
font-size:13px;
padding:13px 16px;
}

}

@media(max-width:480px){

.hero-title{
font-size: 20px;
        line-height: 35px;
}

.hero-desc{
font-size:13px;
line-height:25px;
}

.neo-inquiry-form{
padding:14px;
}

}







/* =========================
   PARTNER SECTION
========================= */

.partner-section{
  width:100%;
  background:#0463b3;
  padding:85px 0;
  overflow:hidden;
}

.partner-section .container{
  max-width:1320px;
}

/* =========================
   HEADING
========================= */

.partner-heading{
  text-align:center;
  margin-bottom:45px;
}

.partner-tag{
  display:block;
  color:#fff;
  opacity:.9;
  font-size:13px;
  font-weight:600;
  letter-spacing:3px;
  margin-bottom:12px;
}

.partner-heading h2{
  color:#fff;
  font-size:38px;
  font-weight:700;
  margin:0;
}

/* =========================
   LOGOS
========================= */

.partner-logos{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:55px;
}

/* IMAGE */

.partner-logos img {
    height: 80px;
    width: auto;
    border-radius: 16px;
    object-fit: contain;
    opacity: 40%;
    filter: grayscale(10%) blur(.7px);
    transition: all .4s ease;
}

/* HOVER CLEAR */

.partner-logos img:hover{
  opacity:1;
  filter:grayscale(0%) blur(0);
  transform:translateY(-6px) scale(1.04);
}

/* =========================
   STATS
========================= */

.partner-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* CARD */

.stat-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:20px 24px;

  /* transparent glass effect */
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  transition:all .35s ease;
}

/* HOVER */

.stat-card:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,0.14);
  border-color:rgba(255,255,255,0.22);
}

/* NUMBER */

.stat-card h3{
  color:#d1f04f;
  font-size:34px;
  font-weight:700;
  margin-bottom:10px;
}

/* TEXT */

.stat-card p{
  color:#fff;
  font-size:16px;
  font-weight:500;
  margin:0;
  line-height:24px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

  .partner-stats{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:991px){

  .partner-heading h2{
    font-size:32px;
  }

}

@media(max-width:767px){

  .partner-section{
    padding:25px 0;
  }

  .partner-heading{
    margin-bottom:35px;
  }

  .partner-heading h2{
    font-size: 15px;
        line-height: 15px;
  }

  .partner-tag{
    font-size:12px;
    letter-spacing:2px;
  }

  /* LOGOS */

  .partner-logos{
    gap:14px;
    margin-bottom:40px;
  }

  .partner-logos img{
    height:58px;
    border-radius:12px;
  }

  /* STATS */

  .partner-stats{
    /* grid-template-columns:1fr; */
    gap:16px;
  }

  .stat-card{
    padding:24px 20px;
  }

  .stat-card h3{
    font-size:19px;
      margin-bottom:5px;

  }

  .stat-card p{
    font-size:11px;
  }

}

/* =========================
AUTO SCROLL LOGOS
========================= */

.partner-logo-slider{
  width:100%;
  overflow:hidden;
  position:relative;
  margin-bottom:55px;
}

/* TRACK */

.partner-track {
    width: max-content;
    display: flex
;
    align-items: center;
    gap: 24px;
    animation: scrollLogo 24s linear infinite;
    margin-top: 10px;
}

/* HOVER STOP */

.partner-logo-slider:hover .partner-track{
  animation-play-state:paused;
}

/* IMAGE */

.partner-track img{
  height:80px;
  width:auto;
  border-radius:16px;
  object-fit:contain;

  opacity:.4;
  filter:grayscale(10%) blur(.7px);

  transition:all .4s ease;
  flex-shrink:0;

  background:#fff;
  padding:10px 18px;
}

/* HOVER EFFECT */

.partner-track img:hover{
  opacity:1;
  filter:grayscale(0%) blur(0);
  transform:translateY(-6px) scale(1.04);
}

/* ANIMATION */

@keyframes scrollLogo{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:767px){

  .partner-logo-slider{
    margin-bottom:40px;
  }

  .partner-track{
    gap:16px;
    animation-duration:18s;
  }

  .partner-track img{
    height:58px;
    border-radius:12px;
    padding:8px 14px;
  }

}





/* ===================================
MODERN COLLEGE SECTION
=================================== */

.modern-college-section{
  padding:90px 6%;
  background:#f5f9fd;
}

.modern-college-heading{
  text-align:center;
  margin-bottom:55px;
}

.modern-college-heading span{
  display:inline-block;
  padding:8px 18px;
  border-radius:50px;
  background:#d1f04f;
  color:#5a6c00;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:16px;
}

.modern-college-heading h2{
  font-size:32px;
  color:#0463b3;
  margin-bottom:14px;
  font-weight:700;
}

.modern-college-heading p{
  max-width:620px;
  margin:auto;
  font-size:14px;
  line-height:26px;
  color:#5f6b7a;
}

/* GRID */

.modern-college-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top: 20px;
}

/* CARD */

.modern-college-card{
  background:#fff;
  border-radius:30px;
  padding:26px;
  position:relative;
  overflow:hidden;
  border:1px solid #e6eef6;
  transition:.35s;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.modern-college-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(4,99,179,.12);
}

.modern-college-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:120px;
  height:120px;
  background:#2089ff30;
  border-radius:0 0 0 100%;
}

/* HEADER */

.modern-card-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:24px;
  position:relative;
  z-index:2;
}

.modern-college-logo{
  width:62px;
  height:62px;
  border-radius:20px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  box-shadow:0 10px 25px rgba(4,99,179,.2);
}

.modern-badge{
  padding:8px 16px;
  border-radius:50px;
  background:#d1f04f;
  color:#2f3803;
  font-size:11px;
  font-weight:700;
}

/* TITLE */

.modern-college-card h3{
  font-size:20px;
  line-height:30px;
  color:#111827;
  margin-bottom:10px;
  font-weight:700;
  position:relative;
  z-index:2;
}

.modern-location{
  font-size:13px;
  color:#6b7280;
  margin-bottom:24px;
  position:relative;
  z-index:2;
}

.modern-location i{
  color:#0463b3;
  margin-right:5px;
}

/* DETAILS */

.modern-college-details{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:24px;
}

.modern-detail-item {
    background: #f8fbff;
    padding: 5px 12px 5px 12px;
    border-radius: 6px;
    border: 1px solid #edf3f8;
}

.modern-detail-item span{
  display:block;
  font-size:11px;
  color:#6b7280;
  margin-bottom:2px;
}

.modern-detail-item strong{
  font-size:14px;
  color:#111827;
  font-weight:700;
}

/* TAGS */

.modern-course-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}

.modern-course-tags span{
  padding:8px 14px;
  border-radius:50px;
  background:#eef5ff;
  color:#0463b3;
  font-size:11px;
  font-weight:600;
}

/* BUTTONS */

.modern-card-btns{
  display:flex;
  gap:12px;
}

.modern-card-btns a {
    flex: 1;
    height: 42px;
    border-radius: 37px;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
}

.modern-card-btns a:first-child{
  background:#eef5ff;
  color:#0463b3;
}

.modern-card-btns a:last-child{
  background:#d1f04f;
  color:#5a6c00;
}

.modern-card-btns a:hover{
  transform:translateY(-3px);
}

/* VIEW ALL */

.modern-view-all{
  text-align:center;
  margin-top:50px;
}

.modern-view-all a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  color:#0463b3;
  transition:.3s;
}

.modern-view-all a i{
  transition:.3s;
}

.modern-view-all a:hover i{
  transform:translateX(5px);
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:991px){

  .modern-college-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:767px){

  .modern-college-section{
    padding:30px 5%;
  }

  .modern-college-heading{
    margin-bottom:40px;
  }

  .modern-college-heading h2{
    font-size: 17px;
        line-height: 19px;
  }

  .modern-college-heading p{
    font-size:12px;
    line-height:24px;
  }

  .modern-college-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .modern-college-card{
    padding:22px;
    border-radius:24px;
  }

  .modern-college-card h3{
    font-size:18px;
    line-height:28px;
  }

  .modern-detail-item{
    padding:12px;
  }

  .modern-card-btns{
    flex-direction:column;
  }

  .modern-card-btns a{
    width:100%;
  }

  .modern-view-all{
    margin-top:35px;
  }
  .modern-card-btns a{
padding: 12px;
  }

}




/* =========================================
ULTRA PREMIUM ABOUT SECTION
========================================= */

.ultra-about-section{
position:relative;
padding:50px 5%;
background:
linear-gradient(135deg,#f4f8ff 0%,#eef5ff 45%,#ffffff 100%);
overflow:hidden;
z-index:1;
}

/* =========================================
ANIMATED BUBBLE BACKGROUND
========================================= */

.ultra-about-section::before{
content:'';
position:absolute;
top:-120px;
left:-120px;
width:420px;
height:420px;
background:rgba(4,99,179,.06);
border-radius:50%;
filter:blur(10px);
animation:floatBubble 8s ease-in-out infinite;
}

.ultra-about-section::after{
content:'';
position:absolute;
bottom:-160px;
right:-120px;
width:500px;
height:500px;
background:rgba(209,240,79,.18);
border-radius:50%;
filter:blur(20px);
animation:floatBubble2 10s ease-in-out infinite;
}

/* EXTRA BUBBLES */

.ultra-about-bubble-one{
position:absolute;
top:18%;
right:10%;
width:140px;
height:140px;
background:rgba(4,99,179,.08);
border-radius:50%;
backdrop-filter:blur(10px);
animation:updown 6s ease-in-out infinite;
}

.ultra-about-bubble-two{
position:absolute;
bottom:14%;
left:7%;
width:90px;
height:90px;
background:rgba(209,240,79,.25);
border-radius:50%;
animation:updown 5s ease-in-out infinite;
}

.ultra-about-bubble-three{
position:absolute;
top:50%;
left:45%;
width:55px;
height:55px;
background:rgba(4,99,179,.10);
border-radius:50%;
animation:updown 4s ease-in-out infinite;
}

/* =========================================
CONTAINER
========================================= */

.ultra-about-container{
max-width:1320px;
margin:auto;
display:grid;
grid-template-columns:1fr 1.05fr;
gap:75px;
align-items:center;
position:relative;
z-index:2;
}

/* =========================================
LEFT IMAGE SIDE
========================================= */

.ultra-about-left{
position:relative;
}

.ultra-about-image-wrap{
position:relative;
border-radius:38px;
overflow:hidden;
box-shadow:
0 25px 70px rgba(4,99,179,.14);
background:#fff;
padding:14px;
}

.ultra-about-image-wrap::before{
content:'';
position:absolute;
top:-60px;
right:-60px;
width:180px;
height:180px;
background:rgba(209,240,79,.22);
border-radius:50%;
z-index:0;
}

.ultra-about-image-wrap img{
position:relative;
z-index:2;
width:100%;
height:720px;
object-fit:cover;
display:block;
border-radius:28px;
transition:.5s;
}

.ultra-about-image-wrap:hover img{
transform:scale(1.04);
}

/* =========================================
RIGHT CONTENT
========================================= */

.ultra-about-right{
position:relative;
}

/* BADGE */

.ultra-about-badge{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 22px;
background:#d1f04f;
color:#4b5c00;
border-radius:100px;
font-size:11px;
font-weight:700;
letter-spacing:1px;
margin-bottom:22px;
box-shadow:0 10px 20px rgba(209,240,79,.25);
}

/* HEADING */

.ultra-about-right h2{
font-size:38px;
line-height:52px;
font-weight:800;
color:#0f172a;
margin-bottom:20px;
max-width:700px;
}

.ultra-about-right h2 span{
display:block;
font-size:54px;
line-height:66px;
margin-top:6px;
background:linear-gradient(135deg,#0463b3,#00a2ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* TEXT */

.ultra-about-text{
font-size:14px;
line-height:30px;
color:#64748b;
margin-bottom:18px;
max-width:700px;
}

/* =========================================
PREMIUM STATS
========================================= */

.ultra-about-stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
margin-top:34px;
margin-bottom:34px;
}

.ultra-stat-box{
background:rgba(255,255,255,.85);
backdrop-filter:blur(10px);
padding:26px 20px;
border-radius:26px;
border:1px solid rgba(4,99,179,.08);
box-shadow:0 10px 35px rgba(0,0,0,.05);
transition:.35s;
text-align:center;
}

.ultra-stat-box:hover{
transform:translateY(-7px);
box-shadow:0 18px 40px rgba(4,99,179,.10);
}

.ultra-stat-box h3{
font-size:34px;
font-weight:800;
color:#0463b3;
margin-bottom:8px;
}

.ultra-stat-box p{
font-size:12px;
font-weight:600;
line-height:22px;
color:#64748b;
}

/* =========================================
FEATURE LIST
========================================= */

.ultra-feature-list{
display:grid;
grid-template-columns:1fr 1fr;
gap:16px;
margin-bottom:34px;
}

.ultra-feature-item{
background:rgba(255,255,255,.85);
backdrop-filter:blur(10px);
padding:18px 20px;
border-radius:20px;
font-size:13px;
font-weight:600;
color:#0f172a;
border:1px solid rgba(4,99,179,.08);
box-shadow:0 8px 20px rgba(0,0,0,.03);
transition:.35s;
}

.ultra-feature-item:hover{
background:#0463b3;
color:#fff;
transform:translateY(-4px);
}

/* =========================================
VIEW LINK
========================================= */

.ultra-view-link{
display:inline-flex;
align-items:center;
gap:10px;
font-size:14px;
font-weight:700;
color:#0463b3;
text-decoration:none;
transition:.3s;
}

.ultra-view-link i{
transition:.3s;
}

.ultra-view-link:hover{
color:#023f72;
}

.ultra-view-link:hover i{
transform:translateX(6px);
}

/* =========================================
ANIMATIONS
========================================= */

@keyframes updown{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0px);
}

}

@keyframes floatBubble{

0%{
transform:translateY(0px) rotate(0deg);
}

50%{
transform:translateY(20px) rotate(6deg);
}

100%{
transform:translateY(0px) rotate(0deg);
}

}

@keyframes floatBubble2{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0px);
}

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1199px){

.ultra-about-container{
gap:45px;
}

.ultra-about-right h2{
font-size:32px;
line-height:46px;
}

.ultra-about-right h2 span{
font-size:44px;
line-height:56px;
}

}

@media(max-width:991px){

.ultra-about-container{
grid-template-columns:1fr;
}

.ultra-about-image-wrap img{
height:520px;
}

.ultra-about-right{
text-align:center;
}

.ultra-about-right h2,
.ultra-about-text{
max-width:100%;
}

}

@media(max-width:767px){

.ultra-about-section{
padding:80px 5%;
}

.ultra-about-container{
gap:32px;
}

.ultra-about-image-wrap{
padding:10px;
border-radius:24px;
}

.ultra-about-image-wrap img{
height:340px;
border-radius:18px;
}

.ultra-about-badge{
font-size:10px;
padding:8px 16px;
margin-bottom:16px;
}

.ultra-about-right h2{
font-size:22px;
line-height:34px;
margin-bottom:14px;
}

.ultra-about-right h2 span{
font-size:30px;
line-height:40px;
margin-top:2px;
}

.ultra-about-text{
font-size:13px;
line-height:25px;
margin-bottom:14px;
}

.ultra-about-stats{
grid-template-columns:1fr;
gap:14px;
margin-top:24px;
margin-bottom:24px;
}

.ultra-stat-box{
padding:18px;
border-radius:18px;
}

.ultra-stat-box h3{
font-size:26px;
margin-bottom:4px;
}

.ultra-stat-box p{
font-size:11px;
line-height:18px;
}

.ultra-feature-list{
grid-template-columns:1fr;
gap:12px;
margin-bottom:24px;
}

.ultra-feature-item{
padding:16px;
font-size:12px;
border-radius:16px;
}

.ultra-view-link{
font-size:13px;
justify-content:center;
}

.ultra-about-bubble-one{
width:90px;
height:90px;
}

.ultra-about-bubble-two{
width:60px;
height:60px;
}

.ultra-about-bubble-three{
display:none;
}

}

/* ===================================
MODERN MEDICAL SECTION
=================================== */

.modern-medical-section{
  padding:90px 6%;
  background:#deecf9b0;
}

.modern-medical-heading{
  text-align:center;
  margin-bottom:55px;
}

.modern-medical-heading span{
  display:inline-block;
  padding:8px 18px;
  border-radius:50px;
  background:#d1f04f;
  color:#5a6c00;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:16px;
}

.modern-medical-heading h2{
  font-size:32px;
  color:#0463b3;
  margin-bottom:14px;
  font-weight:700;
}

.modern-medical-heading p{
  max-width:620px;
  margin:auto;
  font-size:14px;
  line-height:26px;
  color:#5f6b7a;
}

/* GRID */

.modern-medical-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top: 20px;
}

/* CARD */

.modern-medical-card{
  background:#fff;
  border-radius:30px;
  padding:26px;
  position:relative;
  overflow:hidden;
  border:1px solid #e6eef6;
  transition:.35s;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.modern-medical-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(4,99,179,.12);
}
.journey-tag1{
  color: #ffffff;
    font-size: 17px;
    background-color: #004891;
    padding: 10px 8px;
    border-radius: 30px;
}
.modern-medical-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:120px;
  height:120px;
  background:#2089ff30;
  border-radius:0 0 0 100%;
}

/* HEADER */

.modern-medical-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:24px;
  position:relative;
  z-index:2;
}

.modern-medical-logo{
  width:62px;
  height:62px;
  border-radius:20px;
  background:#0463b3;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:700;
  box-shadow:0 10px 25px rgba(4,99,179,.2);
}

.modern-medical-badge{
  padding:8px 16px;
  border-radius:50px;
  background:#d1f04f;
  color:#2f3803;
  font-size:11px;
  font-weight:700;
}

/* TITLE */

.modern-medical-card h3{
  font-size:20px;
  line-height:30px;
  color:#111827;
  margin-bottom:10px;
  font-weight:700;
  position:relative;
  z-index:2;
}

.modern-medical-location{
  font-size:13px;
  color:#6b7280;
  margin-bottom:24px;
  position:relative;
  z-index:2;
}

.modern-medical-location i{
  color:#0463b3;
  margin-right:5px;
}

/* DETAILS */

.modern-medical-details{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:24px;
}

.modern-medical-detail{
  background:#f8fbff;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #edf3f8;
}

.modern-medical-detail span{
  display:block;
  font-size:11px;
  color:#6b7280;
  margin-bottom:3px;
}

.modern-medical-detail strong{
  font-size:14px;
  color:#111827;
  font-weight:700;
}

/* BUTTONS */

.modern-medical-btns{
  display:flex;
  gap:12px;
}

.modern-medical-btns a{
  flex:1;
  height:42px;
  border-radius:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  transition:.3s;
}

.modern-medical-btns a:first-child{
  background:#eef5ff;
  color:#0463b3;
}

.modern-medical-btns a:last-child{
  background:#d1f04f;
  color:#5a6c00;
}

.modern-medical-btns a:hover{
  transform:translateY(-3px);
}

/* VIEW ALL */

.modern-medical-view{
  text-align:center;
  margin-top:50px;
}

.modern-medical-view a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  color:#0463b3;
  transition:.3s;
}

.modern-medical-view a i{
  transition:.3s;
}

.modern-medical-view a:hover i{
  transform:translateX(5px);
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:991px){

  .modern-medical-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:767px){

  .modern-medical-section{
    padding:30px 5%;
  }

  .modern-medical-heading{
    margin-bottom:40px;
  }

  .modern-medical-heading h2{
    font-size: 19px;
        line-height: 21px;
  }

  .modern-medical-heading p{
    font-size:13px;
    line-height:24px;
  }

  .modern-medical-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .modern-medical-card{
    padding:22px;
    border-radius:24px;
  }

  .modern-medical-card h3{
    font-size:18px;
    line-height:28px;
  }

  .modern-medical-detail{
    padding:10px;
  }

  .modern-medical-btns{
    flex-direction:column;
  }

  .modern-medical-btns a{
    width:100%;
  }

  .modern-medical-view{
    margin-top:35px;
  }

}




/* =========================
   PREMIUM COURSE SECTION
========================= */

.premium-course-section{
  position:relative;
  overflow:hidden;
  padding:90px 0;
  background:
  linear-gradient(
  180deg,
  #f8fbff 0%,
  #eef5ff 100%
  );
}

/* =========================
   BACKGROUND SHAPES
========================= */

.course-bg-shape{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  opacity:.35;
}

.shape1{
  width:280px;
  height:280px;
  background:#0463b3;
  top:-100px;
  left:-80px;
}

.shape2{
  width:240px;
  height:240px;
  background:#ffb300;
  bottom:-80px;
  right:-60px;
}

/* =========================
   CONTAINER
========================= */

.premium-course-section .container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  position:relative;
  z-index:2;
}

/* =========================
   HEADING
========================= */

.premium-course-heading{
  text-align:center;
  margin-bottom:55px;
}

.course-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  background:rgba(4,99,179,.10);
  color:#0463b3;
  font-size:13px;
  font-weight:600;
  letter-spacing:.6px;
  margin-bottom:18px;
}

.premium-course-heading h2{
  color:#0f172a;
  font-size:43px;
  font-weight:700;
  line-height:1.2;
  margin-bottom:18px;
}

.premium-course-heading p{
  color:#5b6473;
  font-size:17px;
  line-height:30px;
  max-width:700px;
  margin:auto;
}

/* =========================
   WRAPPER
========================= */

.premium-course-wrapper{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}

/* =========================
   CARD
========================= */

.premium-course-card{
  position:relative;
  width:340px;
  padding:42px 30px;
  border-radius:28px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 10px 40px rgba(4,99,179,.08);
  overflow:hidden;
  transition:.4s ease;
}

.premium-course-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(4,99,179,.16);
}

/* GLOW */

.card-glow{
  position:absolute;
  width:140px;
  height:140px;
  border-radius:50%;
  background:rgba(4,99,179,.08);
  top:-40px;
  right:-40px;
}

/* =========================
   ICON
========================= */

.premium-course-icon{
  width:82px;
  height:82px;
  border-radius:24px;
  background:
  linear-gradient(
  135deg,
  #0463b3,
  #004891
  );

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:26px;

  box-shadow:0 12px 28px rgba(4,99,179,.22);
}

.medical-icon{
  background:
  linear-gradient(
  135deg,
  #ff7b00,
  #ffb300
  );

  box-shadow:0 12px 28px rgba(255,140,0,.22);
}

.premium-course-icon i{
  color:#fff;
  font-size:34px;
}

/* =========================
   CONTENT
========================= */

.premium-course-card h3{
  font-size:28px;
  color:#111827;
  margin-bottom:14px;
  font-weight:700;
}

.premium-course-card p{
  color:#5b6473;
  font-size:15px;
  line-height:28px;
  margin-bottom:28px;
}

/* =========================
   BUTTON
========================= */

.premium-course-card a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#0463b3;
  font-size:15px;
  font-weight:600;
  transition:.3s;
}

.premium-course-card a i{
  transition:.3s;
}

.premium-course-card a:hover i{
  transform:translateX(5px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .premium-course-heading h2{
    font-size:40px;
  }

}

@media(max-width:767px){

  .premium-course-section{
    padding:30px 0;
  }

  .premium-course-heading{
    margin-bottom:40px;
  }

  .premium-course-heading h2{
    font-size:16px;
  }

  .premium-course-heading p{
    font-size:12px;
    line-height:22px;
  }

  .premium-course-wrapper{
    gap:20px;
  }

  .premium-course-card{
    width:100%;
    max-width:360px;
    padding:35px 24px;
    border-radius:24px;
  }

  .premium-course-card h3{
    font-size:24px;
  }

  .premium-course-icon{
    width:72px;
    height:72px;
    border-radius:20px;
  }

  .premium-course-icon i{
    font-size:30px;
  }

}




/* =========================
   WHY SECTION
========================= */

.why-section{
  width:100%;
  background:#002e55;
  padding:90px 0;
  overflow:hidden;
}

.why-section .container{
  max-width:1320px;
}

/* =========================
   HEADING
========================= */

.why-heading{
  text-align:center;
  margin-bottom:60px;
}

.why-heading h2{
  color:#fff;
  font-size:42px;
  font-weight:700;
  margin-bottom:18px;
}

.why-heading p{
  color:rgba(255,255,255,.85);
  font-size:17px;
  line-height:30px;
  margin:0;
}

/* =========================
   GRID
========================= */

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

/* =========================
   CARD
========================= */

.why-card{
  background:#fff;
  border-radius:18px;
  padding:32px 28px;
  transition:.35s ease;
  border:1px solid rgba(255,255,255,.10);
  min-height:260px;
}

.why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.18);
}

/* =========================
   ICON
========================= */

.why-icon{
  width:58px;
  height:58px;
  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:22px;

  transition:.3s;
}

.why-icon i{
  font-size:24px;
}

/* COLORS */

.green{
  background:rgba(172,203,50,.12);
}

.green i{
  color:#accb32;
}

.yellow{
  background:rgba(250,204,21,.12);
}

.yellow i{
  color:#facc15;
}

.lightgreen{
  background:rgba(74,222,128,.12);
}

.lightgreen i{
  color:#4ade80;
}

.purple{
  background:rgba(192,132,252,.12);
}

.purple i{
  color:#c084fc;
}

.red{
  background:rgba(220,38,38,.12);
}

.red i{
  color:#dc2626;
}

.cyan{
  background:rgba(4,202,162,.12);
}

.cyan i{
  color:#04caa2;
}

.blue{
  background:rgba(4,99,179,.12);
}

.blue i{
  color:#0463b3;
}

.darkblue{
  background:rgba(0,72,145,.12);
}

.darkblue i{
  color:#004891;
}

/* =========================
   CARD TEXT
========================= */

.why-card h3{
  font-size:22px;
  font-weight:700;
  color:#1a1c1e;
  margin-bottom:14px;
  line-height:32px;
}

.why-card p{
  color:#5d6570;
  font-size:15px;
  line-height:28px;
  margin:0;
}

/* =========================
   HOVER EFFECT
========================= */

.why-card:hover .why-icon{
  transform:scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:767px){

  .why-section{
    padding:65px 0;
  }

  .why-heading{
    margin-bottom:40px;
  }

  .why-heading h2{
    font-size:32px;
  }

  .why-heading p{
    font-size:13px;
    line-height:27px;
  }

  .why-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .why-card{
    padding:28px 22px;
    min-height:auto;
  }

  .why-card h3{
    font-size:20px;
    line-height:30px;
  }

  .why-card p{
    font-size:14px;
    line-height:25px;
  }

}




/* =========================
   ADMISSION PROCESS
========================= */

.process-section{
  width:100%;
  padding:90px 0;
  background:#fff;
  overflow:hidden;
}

.process-section .container{
  max-width:1320px;
}

/* =========================
   HEADING
========================= */

.process-heading{
  text-align:center;
  margin-bottom:70px;
}

.process-heading h2{
  font-size:42px;
  font-weight:700;
  color:#424752;
  margin:0;
}

/* =========================
   PROCESS WRAPPER
========================= */

.process-wrapper{
  position:relative;

  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
}

/* TOP LINE */

.process-wrapper::before{
  content:"";
  position:absolute;
  top:32px;
  left:0;
  width:100%;
  height:2px;
  background:rgba(194,198,212,.35);
  z-index:0;
}

/* =========================
   CARD
========================= */

.process-card{
  position:relative;
  z-index:2;

  background:#fff;
  border-radius:20px;
  padding:20px;

  text-align:center;

  transition:.35s ease;
}

.process-card:hover{
  transform:translateY(-8px);
}

/* =========================
   NUMBER
========================= */

.process-number{
  width:64px;
  height:64px;

  margin:auto;
  margin-bottom:22px;

  border-radius:50%;

  background:#004891;
  color:#fff;

  font-size:22px;
  font-weight:700;

  display:flex;
  align-items:center;
  justify-content:center;

  border:4px solid #f9f9fc;

  transition:.3s;
}

/* ACTIVE */

.active-number{
  background:#d1f04f;
  color:#5a6c00;
}

/* =========================
   TEXT
========================= */

.process-card h3{
  font-size:20px;
  font-weight:700;
  color:#1a1c1e;
  margin-bottom:14px;
}

.process-card p{
  color:#5d6570;
  font-size:15px;
  line-height:26px;
  margin:0;
}

/* =========================
   HOVER EFFECT
========================= */

.process-card:hover .process-number{
  transform:scale(1.08);
  box-shadow:0 10px 25px rgba(0,72,145,.18);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

  .process-wrapper{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:767px){

  .process-section{
    padding:65px 0;
  }

  .process-heading{
    margin-bottom:45px;
  }

  .process-heading h2{
   font-size: 20px;
        line-height: 0px;
  }

  .process-wrapper{
    grid-template-columns:1fr;
    gap:0px;
  }

  .process-wrapper::before{
    display:none;
  }

  .process-card{
   padding: 6px 32px;
  }

  .process-card h3{
    font-size:19px;
  }

  .process-card p{
    font-size: 13px;
        line-height: 20px;
  }

}





/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* =========================
   READY JOURNEY SECTION
========================= */

.journey-section{
  width:100%;
  background:#F3F3F6;
  padding:96px 0;
  overflow:hidden;
  font-family:'Poppins',sans-serif;
}
.journey-section span {
    color: #ffffff;
    font-size: 17px;
    background-color: #004891;
    padding: 10px 8px;
    border-radius: 30px;
}
.journey-tag1 {
    color: #ffffff;
    font-size: 14px;
    background-color: #004891;
    padding: 8px 32px;
    border-radius: 30px;
    width: 50%;
}
.journey-section .container{
  max-width:1290px;
  margin:auto;
  padding:0 20px;

  display:grid;
  grid-template-columns:544px 544px;
  justify-content:space-between;
  align-items:center;
  gap:70px;
}

/* =========================
   LEFT SIDE
========================= */

.journey-left{
  width:544px;
}

/* TITLE */

.journey-left h2{
  color:#1A1C1E;
  font-size:35px;
  font-weight:700;
  line-height:48px;
  margin:0 0 22px;
}

/* DESC */

.journey-desc{
  color:#424752;
  font-size:18px;
  font-weight:400;
  line-height:28.8px;
  margin:0 0 48px;
}

/* FEATURES */

.journey-features{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* ITEM */

.feature-item{
  display:flex;
  align-items:flex-start;
  gap:16px;

  transition:.35s;
}

.feature-item:hover{
  transform:translateX(6px);
}

/* ICON */

.feature-icon{
  width:28px;
  height:28px;

  min-width:28px;

  background:#D1F04F;
  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#5A6C00;
  font-size:14px;
  font-weight:700;

  margin-top:4px;
}

/* TEXT */

.feature-content h4{
  color:#1A1C1E;
  font-size:16px;
  font-weight:700;
  line-height:24px;
  margin:0 0 2px;
}

.feature-content p{
  color:#424752;
  font-size:14px;
  font-weight:400;
  line-height:20px;
  margin:0;
}

/* =========================
   FORM CARD
========================= */

.journey-form-wrapper{
  width:544px;
  background:#fff;
  border-radius:32px;
  padding:41px;

  border:1px solid rgba(194,198,212,.20);

  box-shadow:
  0px 25px 50px -12px rgba(0,0,0,.25);

  transition:.4s;
}

.journey-form-wrapper:hover{
  transform:translateY(-6px);
}

/* FORM */

.journey-form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* ROW */

.form-row{
  display:flex;
  gap:15px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.form-group{
  flex:1;
  min-width:220px;
}

/* CAPTCHA STYLE */
.captcha-code{
  min-width:80px;
  height:48px;
  background:#f3f4f6;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:16px;
  padding:0 10px;
}

/* LABEL */

.form-group label{
  color:#424752;
  font-size:16px;
  font-weight:400;
  line-height:24px;

  padding-left:4px;
}

/* INPUT */

.form-group input,
.form-group select{
  width: 100%;
    height: 50px;
    background: #f8f8fb;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 0 16px;
    color: #1A1C1E;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: .3s;
    box-shadow: 2px 2px 2px 2px #d0cdcda6;
}

/* PLACEHOLDER */

.form-group input::placeholder{
  color:#6B7280;
}

/* FOCUS */

.form-group input:focus,
.form-group select:focus{
  background:#fff;

  box-shadow:
  0 0 0 3px rgba(4,99,179,.12);
}

/* SELECT */

.form-group select{
  appearance:none;
  cursor:pointer;
}

/* FULL */

.full-width{
  width:100%;
}

/* BUTTON */

.journey-btn{
  width:100%;
  height:64px;

  border:none;
  cursor:pointer;

  border-radius:16px;

  background:#004891;
  color:#fff;

  font-size:16px;
  font-weight:700;
  font-family:'Poppins',sans-serif;

  transition:.35s;
}

.journey-btn:hover{
  background:#0463B3;
  transform:translateY(-3px);

  box-shadow:
  0 18px 30px rgba(4,99,179,.25);
}

/* NOTE */

.form-note{
  margin:0;

  text-align:center;

  color:#424752;
  font-size:12px;
  font-weight:400;
  line-height:18px;
}

/* =========================
   RESPONSIVE
========================= */

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .journey-section .container{
    grid-template-columns:1fr;
    justify-content:center;
    gap:60px;
  }

  .journey-left,
  .journey-form-wrapper{
    width:100%;
    max-width:620px;
    margin:auto;
  }

}

@media(max-width:991px){

  .journey-section{
    padding:80px 0;
  }

  .journey-section .container{
    padding:0 24px;
    gap:50px;
  }

  .journey-left,
  .journey-form-wrapper{
    max-width:100%;
  }

  .journey-form-wrapper{
    padding:34px 28px;
    border-radius:28px;
  }

  .journey-left h2{
    font-size:34px;
    line-height:48px;
  }

  .journey-desc{
    font-size:15px;
    line-height:28px;
  }

  .form-row{
    gap:16px;
  }

  .form-group{
    min-width:100%;
  }

}

/* MOBILE */

@media(max-width:767px){

  .journey-section{
    padding:60px 0;
  }

  .journey-section .container{
    padding:0 16px;
    gap:40px;
  }

  /* LEFT CONTENT */

  .journey-left{
    text-align:center;
  }

  .journey-left h2{
    font-size:24px;
    line-height:36px;
    margin-bottom:14px;
  }

  .journey-desc{
    font-size:13px;
    line-height:24px;
    margin-bottom:28px;
  }

  /* FEATURES */

  .journey-features{
    gap:18px;
  }

  .feature-item{
    gap:12px;
    align-items:flex-start;
  }

  .feature-icon{
    width:42px;
    height:42px;
    font-size:16px;
    border-radius:12px;
    flex-shrink:0;
  }

  .feature-content h4{
    font-size:14px;
    line-height:22px;
    margin-bottom:4px;
  }

  .feature-content p{
    font-size:12px;
    line-height:20px;
  }

  /* FORM */

  .journey-form-wrapper{
    width:100%;
    padding:22px 18px;
    border-radius:22px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);
  }

  .journey-form{
    gap:18px;
  }

  /* ROW */

  .form-row{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:0;
  }

  .form-group{
    width:100%;
    min-width:100%;
  }

  /* LABEL */

  .form-group label{
    font-size:13px;
    line-height:20px;
    margin-bottom:8px;
    display:block;
  }

  /* INPUT */

  .form-group input,
  .form-group select{
    height:50px;
    font-size:13px;
    border-radius:12px;
    padding:0 14px;
    box-shadow:
    0 2px 10px rgba(0,0,0,.05);
  }

  .form-group input::placeholder{
    font-size:13px;
  }

  /* CAPTCHA */

  .captcha-code{
    width:100%;
    height:48px;
    border-radius:12px;
    font-size:15px;
    margin-bottom:10px;
  }

  /* BUTTON */

  .journey-btn{
    height:52px;
    font-size:14px;
    border-radius:12px;
  }

  .journey-btn:hover{
    transform:none;
  }

  /* NOTE */

  .form-note{
    font-size:11px;
    line-height:18px;
    padding:0 4px;
  }

  /* TAG */

  .journey-tag1{
    width:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    font-size:11px;
    border-radius:30px;
  }

}

/* SMALL MOBILE */

@media(max-width:480px){

  .journey-section{
    padding:50px 0;
  }

  .journey-left h2{
    font-size:20px;
    line-height:30px;
  }

  .journey-desc{
    font-size:12px;
    line-height:22px;
  }

  .journey-form-wrapper{
    padding:18px 5px;
    border-radius:18px;
  }

  .form-group label{
    font-size:12px;
  }

  .form-group input,
  .form-group select{
    height:48px;
    font-size:12px;
    border-radius:10px;
  }

  .journey-btn{
    height:50px;
    font-size:13px;
  }

  .feature-content h4{
    font-size:13px;
  }

  .feature-content p{
    font-size:11px;
    line-height:18px;
  }

}







/* =========================
   STATS SECTION
========================= */

.stats-section{
  width:100%;
  background:#004891;
  padding:80px 0;
  overflow:hidden;
}

.stats-section .container{
  max-width:1290px;
  margin:auto;
  padding:0 64px;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* =========================
   ITEM
========================= */

.stat-item{
  text-align:center;

  padding:24px 20px;

  border-radius:20px;

  transition:.35s ease;

  border:1px solid rgba(255,255,255,.08);
}

.stat-item:hover{
  transform:translateY(-8px);

  background:rgba(255,255,255,.06);

  border-color:rgba(255,255,255,.16);
}

/* NUMBER */

.stat-item h2{
  color:#fff;

  font-size:40px;
  font-weight:700;
  line-height:48px;

  margin:0 0 8px;

  font-family:'Poppins',sans-serif;
}

/* TEXT */

.stat-item p{
  color:rgba(204,220,255,.80);

  font-size:16px;
  font-weight:400;

  line-height:24px;

  letter-spacing:1.6px;

  text-transform:uppercase;

  margin:0;

  font-family:'Poppins',sans-serif;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .stats-section .container{
    grid-template-columns:repeat(2,1fr);
    padding:0 30px;
    gap:24px;
  }

}

@media(max-width:767px){

  .stats-section{
    padding:60px 0;
  }

  .stats-section .container{
    grid-template-columns:1fr;
    padding:0 16px;
    gap:18px;
  }

  .stat-item{
    padding:22px 16px;
    border-radius:16px;
  }

  .stat-item h2{
    font-size:27px;
    line-height:42px;
  }

  .stat-item p{
    font-size:14px;
    line-height:22px;
    letter-spacing:1.2px;
  }

}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.success-section {
  width: 100%;
  background: #ffffff;
  padding: 64px 20px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.success-container {
  max-width: 1530px;
  margin: 0 auto;
}

/* ================= HEADING ================= */

.success-heading {
  text-align: center;
}

.success-heading h2 {
  color: #0f172a;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.success-heading p {
  margin-top: 16px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* ================= GRID ================= */

.success-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ================= CARD ================= */

.story-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.12);
}

/* ================= STARS ================= */

.stars {
  color: #facc15;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 12px;
}

/* ================= REVIEW ================= */

.review {
  margin-top: 16px;
  color: #4b5563;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
}

/* ================= USER ================= */

.user-info {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.avatar-dark {
  background: #0f172a;
}

.avatar-yellow {
  background: #ca8a04;
}

.avatar-green {
  background: #16a34a;
}

.user-info h4 {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
 margin-bottom: 0px;
}

.user-info span {
  color: #ca8a04;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .success-section {
    padding: 56px 16px;
  }

  .success-heading h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .success-heading p {
    font-size: 15px;
    line-height: 24px;
  }

  .success-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .story-card {
    padding: 22px;
  }

  .review {
    font-size: 13px;
    line-height: 21px;
  }
}

@media (max-width: 480px) {
  .success-section {
    padding: 48px 14px;
  }

  .success-heading h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .success-heading p {
    font-size: 14px;
    line-height: 22px;
  }

  .story-card {
    padding: 20px;
    border-radius: 10px;
  }

  .review {
    font-size: 13px;
    line-height: 20px;
  }

  .user-info {
    margin-top: 20px;
  }
}









* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.faq-section {
  width: 100%;
  background: #f9fafb;
  padding: 64px 20px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.faq-container {
  max-width: 1530px;
  margin: 0 auto;
}

/* ================= HEADING ================= */

.faq-heading {
  text-align: center;
}

.faq-heading h2 {
  color: #0f172a;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.faq-heading p {
  margin-top: 16px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
/* HEADING ICON */

.faq-title-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff7b00,#ffb300);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(255,140,0,.25);
}

.faq-title-icon i{
  color:#fff;
  font-size:28px;
}

/* QUESTION LEFT */

.faq-question-left{
  display:flex;
  align-items:center;
  gap:14px;
  text-align:left;
}

.faq-question-left i{
  min-width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(255,140,0,.12);
  color:#ff7b00;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
}

/* MOBILE */

@media(max-width:600px){

  .faq-question-left{
    gap:10px;
  }

  .faq-question-left i{
    min-width:38px;
    height:38px;
    font-size:15px;
  }

}
/* ================= FAQ WRAPPER ================= */

.faq-wrapper {
  max-width: 768px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ================= FAQ ITEM ================= */

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
}

/* ================= QUESTION ================= */

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;

  padding: 24px 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  cursor: pointer;
  text-align: left;
}

.faq-question span {
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.faq-question i {
  color: #2563eb;
  font-size: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* ================= ANSWER ================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  padding: 0 25px 25px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* ================= ACTIVE ================= */

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .faq-section {
    padding: 56px 16px;
  }

  .faq-heading h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .faq-heading p {
    font-size: 15px;
    line-height: 24px;
  }

  .faq-wrapper {
    margin-top: 40px;
    gap: 14px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 15px;
    line-height: 23px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {

  .faq-section {
    padding: 48px 14px;
  }

  .faq-heading h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .faq-heading p {
    font-size: 14px;
    line-height: 22px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-question span {
    font-size: 12px;
    line-height: 22px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 12px;
    line-height: 22px;
    text-align: justify;
  }
}
















.modern-college-logo{
    overflow:hidden;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:5px;
}

.modern-college-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}




  .notice-section{
    padding:70px 0;
    background:#f8fafc;
}

.notice-heading{
    text-align:center;
    margin-bottom:50px;
}

.notice-heading h2{
    font-size:42px;
    font-weight:700;
}

.notice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.notice-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.notice-card:hover{
    transform:translateY(-8px);
}

.notice-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.notice-badge{
    padding:8px 14px;
    border-radius:50px;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

.engineering-badge{
    background:#0d6efd;
}

.medical-badge{
    background:#dc3545;
}

.notice-card h3{
    font-size:20px;
    margin-bottom:12px;
}

.notice-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:992px){

.notice-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.notice-grid{
grid-template-columns:1fr;
}

}

