.v4-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:rgba(15, 23, 42, 0.8);
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255, 255, 255, 0.1);
transition:all 0.3s ease;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.nav-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
height:75px;
}

.logo-text{
font-size:22px;
font-weight:700;
color:#fff;
text-decoration:none;
}

.logo-text span{
color:#38bdf8;
}

.nav{
display:flex;
gap:35px;
}

.nav a{
text-decoration:none;
color:#e9e9e9;
font-weight:600;
transition:.3s;
}

.nav a:hover{
color:#38bdf8;
}

.nav-actions{
display:flex;
align-items:center;
gap:12px;
}

.call-btn{
    border: 2px solid red;
/* background:#22c55e; */
color:#fff;
padding:7px 14px;
border-radius:8px;
text-decoration:none;
}

.apply-btn{
background:#ffff;
color:#0f172a;
padding:10px 18px;
border-radius:8px;
font-weight:600;
text-decoration:none;
}

.menu-toggle{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;
}

@media(max-width:768px){

.nav{
position:fixed;
top:75px;
left:0;
width:100%;
background:#0f172a;
flex-direction:column;
align-items:center;
gap:20px;
padding:30px 0;
display:none;
}

.nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.call-btn,
.apply-btn{
display:none;
}

}

.mobile-call{
position:fixed;
bottom:20px;
right:20px;
background:#22c55e;
color:#fff;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,.4);
z-index:998;
}

@media(min-width:769px){
.mobile-call{display:none;}
}

.hero{
position:relative;
height:100vh;
min-height:700px;
display:flex;
align-items:center;
justify-content:center;
background:url("images/hero_new.png") center/cover no-repeat;
overflow:hidden;
text-align:center;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* BLUE OVERLAY */

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.7) 100%);
}

/* BOTTOM FADE */

.hero-bottom-fade{
position:absolute;
bottom:0;
left:0;
width:100%;
height:70px;

background:linear-gradient(
to bottom,
rgba(255,255,255,0),
rgba(255,255,255,1)
);
}

.hero-content-centered{
position:relative;
z-index:10;
width:100%;
}

.hero-text-box{
max-width:900px;
margin:auto;
background:rgba(255, 255, 255, 0.05);
backdrop-filter:blur(15px);
-webkit-backdrop-filter:blur(15px);
padding:60px 40px;
border-radius:24px;
border:1px solid rgba(255, 255, 255, 0.1);
box-shadow:0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-text-box h1{
font-size:64px;
color:white;
line-height:1.1;
font-weight:800;
margin-bottom:20px;
}

.hero-text-box span{
display:block;
background:linear-gradient(135deg, #3fd3ff 0%, #38bdf8 100%);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-text-box p{
font-size:20px;
color:#e2e8f0;
margin-bottom:40px;
line-height:1.6;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.apply-btn-yellow{
background:linear-gradient(135deg, #3fd3ff 0%, #38bdf8 100%);
color:white;
padding:18px 40px;
border-radius:12px;
font-weight:700;
font-size:18px;
text-decoration:none;
transition:all 0.3s ease;
box-shadow:0 10px 15px -3px rgba(56, 189, 248, 0.4);
display:inline-block;
}

.apply-btn-yellow:hover{
transform:translateY(-3px);
box-shadow:0 20px 25px -5px rgba(56, 189, 248, 0.5);
filter:brightness(1.1);
}

/* STATS */

.hero-stats{
display:flex;
gap:35px;
margin-top:35px;
color:white;
}

.hero-stats h3{
color:#3fd3ffcc;
font-size:26px;
}

.hero-stats p{
font-size:13px;
opacity:.9;
}

/* FORM */

.hero-form{
background:#2aaabfc7;
padding:26px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.25);
max-width:450px;
}

.hero-form h3{
font-size:21px;
margin-bottom:5px;
color:white
}

.form-sub{
color:white;
font-size:19px;
margin-bottom:18px;
font-weight: 300;
}

/* FORM INPUTS */

.hero-form form{
display:flex;
flex-direction:column;
gap:8px;
}

.hero-form label{
font-size:13px;
font-weight:500;
margin-top:6px;
}

.hero-form input,
.hero-form select{
padding:11px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

/* SUBMIT */

.submit-btn{
margin-top:12px;
background:#a5213d;
color:white;
border:none;
padding:13px;
border-radius:8px;
font-weight:600;
cursor:pointer;
}

.form-note{
font-size:12px;
text-align:center;
color:#777;
margin-top:6px;
}

/* MOBILE */

@media(max-width:768px){
.hero-text-box{
padding:40px 20px;
border-radius:16px;
}
.hero-text-box h1{
font-size:38px;
}
.hero-text-box p{
font-size:16px;
}
.apply-btn-yellow{
padding:14px 28px;
font-size:16px;
}
}
/* why choose */
.why-section-modern{
padding:80px 0;
background:white;
color:black;
position:relative;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title p{
max-width:700px;
margin:auto;
color:#cbd5f5;
}

.timeline{
position:relative;
max-width:1100px;
margin:auto;
}

/* center line */

.timeline::before{
content:'';
position:absolute;
left:50%;
top:0;
width:4px;
height:100%;
background:#a5213d;
transform:translateX(-50%);
}

/* timeline item */

.timeline-item{
width:50%;
padding:20px 40px;
position:relative;
}

.timeline-item.left{
left:0;
text-align:right;
}

.timeline-item.right{
left:50%;
}

/* card */

.timeline-content{
background:rgba(202, 8, 8, 0.07);
padding:30px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.1);
backdrop-filter:blur(10px);
transition:.3s;
}

.timeline-content:hover{
transform:translateY(-6px);
background:rgba(28, 75, 145, 0.12);
}

/* icon */

.icon{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
background:#a5213d;
border-radius:12px;
font-size:24px;
color:#0f172a;
margin-bottom:15px;
}
.icone{
    color:white
}

.timeline-item.left .icon{
margin-left:auto;
}

/* dot */

.timeline-item::before{
content:'';
position:absolute;
top:35px;
width:18px;
height:18px;
background:#38bdf8;
border-radius:50%;
z-index:1;
}

.timeline-item.left::before{
right:-9px;
}

.timeline-item.right::before{
left:-9px;
}

/* mobile */

@media(max-width:900px){

.timeline{
position:relative;
padding-left:40px;
}

.timeline::before{
left:10px;
width:3px;
}

.timeline-item{
width:100%;
left:0;
padding:0;
margin-bottom:30px;
}

.timeline-item.left,
.timeline-item.right{
left:0;
text-align:left;
}

.timeline-item::before{
left:-28px;
top:35px;
}

.timeline-content{
padding:22px;
border-radius:12px;
}
.timeline-item.right::before{left: -26px;}
.icon{
margin-bottom:12px;
}

}


/* program */
.programs-modern{
padding:20px 0;
background:#f8f9fb;
}

.program-columns{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.program-col{
background:white;
padding:30px;
border-radius:14px;
border:1px solid #e6e6e6;
transition:.3s;
}

.program-col:hover{
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transform:translateY(-4px);
}

.program-heading{
font-size:22px;
margin-bottom:18px;
display:flex;
align-items:center;
gap:10px;
color:#111;
}

.program-heading i{
color:#38bdf8;
font-size:24px;
}

.program-list{
list-style:none;
padding:0;
margin:0;
}

.program-list li{
display:flex;
align-items:center;
gap:10px;
padding:10px 0;
border-bottom:1px solid #eee;
font-size:15px;
}

.program-list li:last-child{
border:none;
}

.program-list i{
color:#38bdf8;
font-size:18px;
}

/* responsive */

@media(max-width:1000px){

.program-columns{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.program-columns{
grid-template-columns:1fr;
}

}


/* cam */
.campus-section-modern{
padding:100px 0;
background:#f8fafc;
}

.campusSwiper{
margin-top:60px;
}

.campus-card{
position:relative;
border-radius:18px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.campus-card img{
width:100%;
height:420px;
object-fit:cover;
transition:.6s;
}

.campus-card:hover img{
transform:scale(1.1);
}

.campus-content{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;

background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);

color:white;
}

.campus-content h3{
font-size:22px;
margin-bottom:5px;
}

.campus-content p{
font-size:14px;
opacity:.9;
}

/* pagination */

.swiper-pagination-bullet{
background:#38bdf8;
opacity:.6;
}

.swiper-pagination-bullet-active{
opacity:1;
}

/* mobile */

@media(max-width:600px){

.campus-card img{
height:300px;
}

}


/* placement */

/* section */
.placement-modern{
padding:100px 0;
background:linear-gradient(135deg,#0f172a,#1e293b);
color:white;
text-align:center;
}

/* title */

.placement-header{
max-width:700px;
margin:auto;
margin-bottom:70px;
}

.placement-header h2{
font-size:40px;
margin-bottom:10px;
}

.placement-header p{
color:#cbd5f5;
}

/* stats */

.placement-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stat-card{
background:rgba(255,255,255,0.08);
border-radius:16px;
padding:35px;
border:1px solid rgba(255,255,255,0.1);
transition:.35s;
}

.stat-card:hover{
transform:translateY(-8px);
background:rgba(255,255,255,0.12);
}

.stat-card i{
font-size:32px;
color:#38bdf8;
margin-bottom:10px;
display:block;
}

.stat-card h3{
font-size:36px;
margin-bottom:5px;
}

.stat-card p{
color:#cbd5f5;
}

/* company slider */

.placement-companies{
margin-top:80px;
}

.company-slider{
overflow:hidden;
position:relative;
margin-top:40px;
}

.slide-track{
display:flex;
width:calc(250px * 12);
animation:scroll 30s linear infinite;
gap:60px;
align-items:center;
}

.slide-track img{
height:40px;
filter:brightness(0) invert(1);
opacity:.8;
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* responsive */

@media(max-width:992px){

.placement-stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.placement-stats{
grid-template-columns:1fr;
}

.placement-header h2{
font-size:30px;
}

}

/* testomonial */

.testimonial-section{
padding:50px 0;
background:#f8f9fb;
text-align:center;
}

/* title */

.section-title{
max-width:700px;
margin:auto;
}

.section-title h2{
font-size:38px;
margin-bottom:10px;
}

.section-title p{
color:#666;
}

/* grid */

.testimonial-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* card */

.testimonial-card{
background:linear-gradient(135deg, #ff4a4ae8, #0000008c);
padding:40px 30px;
border-radius:18px;

box-shadow:0 20px 50px rgba(0,0,0,0.08);

transition:.35s;
position:relative;

text-align:left;
}

/* hover */

.testimonial-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* quote */

.quote{
font-size:40px;
color:#38bdf8;
margin-bottom:10px;
}

/* text */

.testimonial-card p{
font-size:20px;
color:white;
line-height:1.7;
margin-bottom:25px;
}

/* student */

.student-info h4{
font-size:16px;
margin-bottom:3px;
}

.student-info span{
font-size:13px;
color:white;
}

/* stars */

.stars{
margin-top:15px;
color:#ffb703;
font-size:16px;
}

/* responsive */

@media(max-width:992px){

.testimonial-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.testimonial-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:28px;
}

}

/* faq */
.faq-section{
padding:20px 0;
background:#f7f9fc;
}

.faq-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* IMAGE */

.faq-image img{
width:100%;
border-radius:16px;
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* TITLE */

.section-title h2{
font-size:36px;
margin-bottom:10px;
}

.section-title p{
color:#666;
margin-bottom:30px;
}

/* FAQ */

.faq-item{
background:white;
border-radius:12px;
margin-bottom:15px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
overflow:hidden;
}

/* QUESTION */

.faq-question{
width:100%;
background:none;
border:none;
padding:18px 20px;
font-size:16px;
font-weight:500;
text-align:left;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}

/* ICON */

.icon{
font-size:22px;
color:#4a5cff;
}

/* ANSWER */

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 20px;
}

.faq-answer p{
padding-bottom:18px;
color:#555;
line-height:1.6;
}

/* ACTIVE */

.faq-item.active .faq-answer{
max-height:200px;
}

.faq-item.active .icon{
transform:rotate(45deg);
}

/* RESPONSIVE */

@media(max-width:900px){

.faq-wrapper{
grid-template-columns:1fr;
}

.faq-image{
order:-1;
}

.section-title h2{
font-size:28px;
}

}

/* cta */

/* section */

.admission-cta{
padding:40px 0;
background:#f5f7fb;
}

/* box */

.cta-box{

max-width:750px;
margin:auto;

background:#a5213d;

padding:55px 40px;

border-radius:18px;

text-align:center;

color:white;

box-shadow:0 25px 60px rgba(0,0,0,0.15);

position:relative;
overflow:hidden;
}

/* glow effect */

.cta-box::before{

content:"";

position:absolute;

width:300px;
height:300px;

background:rgba(255,255,255,0.2);

filter:blur(120px);

top:-100px;
left:-100px;

}

/* title */

.cta-box h2{

font-size:34px;
margin-bottom:12px;

}

/* text */

.cta-box p{

color:#e6e9ff;
max-width:520px;
margin:auto;

margin-bottom:30px;

line-height:1.6;

}

/* buttons */

.cta-buttons{

display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;

}

/* call */

.btn-call{

background:white;
color:#4a5cff;

padding:12px 26px;

border-radius:8px;

font-weight:600;

display:flex;
align-items:center;
gap:8px;

text-decoration:none;

transition:.3s;

}

.btn-call:hover{

transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);

}

/* whatsapp */

.btn-whatsapp{

background:#25D366;
color:white;

padding:12px 26px;

border-radius:8px;

font-weight:600;

display:flex;
align-items:center;
gap:8px;

text-decoration:none;

transition:.3s;

}

.btn-whatsapp:hover{

transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);

}

/* responsive */

@media(max-width:600px){

.cta-box{
padding:40px 25px;
}

.cta-box h2{
font-size:26px;
}

}




/* footer */
.footer{
background:#0f1a2c;
color:#cbd3e4;
padding-top:60px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1.5fr;
gap:40px;
}

.footer-logo img{
height:55px;
margin-bottom:15px;
}

.footer-desc{
font-size:14px;
line-height:1.6;
margin-bottom:20px;
}

.footer-col h4{
margin-bottom:15px;
color:white;
font-size:16px;
}

/* links */

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col a{
color:#cbd3e4;
text-decoration:none;
font-size:14px;
}

.footer-col a:hover{
color:white;
}

/* social */

.social-icons{
display:flex;
gap:10px;
}

.social-icons a{
width:36px;
height:36px;
background:#1e2a44;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:16px;
text-decoration:none;
transition:.3s;
}

.social-icons a:hover{
background:#4a57d4;
}

/* contact */

.footer-col p{
font-size:14px;
margin-bottom:10px;
display:flex;
gap:8px;
align-items:flex-start;
}

/* bottom */

.footer-bottom{
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.1);
padding:18px 0;
display:flex;
justify-content:space-between;
font-size:13px;
flex-wrap:wrap;
}

.disclaimer{
opacity:.7;
}

/* responsive */

@media(max-width:900px){

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.footer-grid{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
gap:8px;
text-align:center;
}

}

/* ─── WhatsApp floating button (mobile only) ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 998;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}
@media (min-width: 769px) {
  .whatsapp-btn { display: none; }
}

/* ─── Mobile sticky bottom bar ─── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0f172a;
  z-index: 997;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.mobile-sticky-bar a:nth-child(2) {
  background: #25D366;
  color: #fff;
}
.mobile-sticky-bar a:last-child {
  background: #a5213d;
  color: #fff;
}
.mobile-sticky-bar a:hover {
  filter: brightness(1.1);
}
.mobile-sticky-bar i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 60px;
  }
}
/* COMPLIANCE STYLES */

.disclaimer-text {
    font-size: 11px;
    margin: 15px auto;
    max-width: 900px;
    opacity: 0.8;
    line-height: 1.5;
    color: #cbd5f5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.footer-bottom .disclaimer-text {
    color: #94a3b8;
    border-top-color: #334155;
}

.source-note {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-style: italic;
    color: #94a3b8;
}

.compliance-bar {
    background: #1e293b;
    color: #f8fafc;
    text-align: center;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #334155;
}

@media (max-width: 768px) {
    .compliance-bar {
        font-size: 10px;
        padding: 10px;
    }
}
