/* =========================
   TAPASSU INSTITUTE CSS
   Modern Medical Corporate Look
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root{
--primary:#0057D9;
--secondary:#00B4D8;
--accent:#00C897;
--dark:#0F172A;
--light:#F4F9FF;
--white:#FFFFFF;
--text:#334155;
--shadow:0 20px 45px rgba(15,23,42,.08);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background: #ffffff;
/* background-image: linear-gradient(to right top, #5aeeeb, #00d9ff, #00beff, #2d9aff, #aa64f6); */
color:var(--text);
overflow-x:hidden;
line-height:1.7;
}

/* Navbar */

.navbar{
padding:14px 0;
background-image: linear-gradient(to left bottom, #5aeeeb, #00d9ff, #00beff, #2d9aff, #aa64f6);
backdrop-filter:blur(10px);
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.navbar-brand{
font-size:28px;
font-weight:800;
color:var(--white)!important;
letter-spacing:.5px;
}

.nav-link{
color:#740574 !important;
font-size:15px;
font-weight:700;
margin-left:14px;
position:relative;
transition:.3s;
}

.nav-link::after{
content:'';
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#740574;
transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
width:100%;
}


/* Logo Integrate CSS */

.site-logo{
width:55px;
height:55px;
object-fit:cover;
margin-right:12px;
border-radius:50%;
padding:4px;
box-shadow:0 8px 18px rgba(0,0,0,.12);
}



.brand-text{
font-size:26px;
font-weight:800;
color:#740574;
letter-spacing:.5px;
line-height:1.1;
}

/* Mobile Responsive */

@media(max-width:768px){

.site-logo{
width:42px;
height:42px;
margin-right:8px;
}

.brand-text{
font-size:18px;
}

}
.hero-btn,
.hero-btn:link,
.hero-btn:visited{
color:rgba(3, 3, 41, 0.92) !important;
}
/* =========================
   INTRO SECTION CSS
========================= */

.intro-section{
padding:70px 0;
}
.intro-subtitle{
text-align:center;
font-size:1.1rem;
font-weight:700;
font-style:italic;
color:#00c897;
line-height:1.5;
margin-bottom:45px;
}

.intro-content{
max-width:1450px;
margin:auto;
}

.intro-content p{
font-size:1rem;
line-height:2;
color:#090000;
margin-bottom:28px;
text-align:justify;
}

/* Responsive */

@media(max-width:992px){

.intro-title{
font-size:32px;
}

.intro-subtitle{
font-size:22px;
}

.intro-content p{
font-size:20px;
line-height:1.8;
}

}

@media(max-width:768px){

.intro-section{
padding:50px 0;
}

.intro-title{
font-size:24px;
}

.intro-subtitle{
font-size:18px;
margin-bottom:25px;
}

.intro-content p{
font-size:16px;
line-height:1.8;
text-align:left;
}

}

/* =========================
   WHY CHOOSE US SECTION
========================= */



.why-box{
background:#ffffff;
padding:25px 22px;
border-radius:18px;
box-shadow:0 15px 35px rgba(14, 18, 22, 0.08);
display:flex;
align-items:flex-start;
gap:18px;
height:100%;
transition:.35s ease;
border:2px solid rgba(0,0,0,.04);
}

.why-box:hover{
transform:translateY(-8px);
box-shadow:0 22px 45px rgba(0,87,217,.12);
}

 .why-box i{
min-width:55px;
height:55px;
background:linear-gradient(135deg,#740574,#00B4D8);
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
box-shadow:0 10px 20px rgba(0,87,217,.18);
}

.why-box span{
font-size:17px;
font-weight:600;
line-height:1.6;
color:#0f172a;
}

/* Responsive */

@media(max-width:768px){

.why-box{
padding:20px;
gap:14px;
}

.why-box i{
min-width:46px;
height:46px;
font-size:18px;
}

.why-box span{
font-size:15px;
}

}


/* Hero Section */

.hero-section{
min-height:100vh;
display:flex;
align-items:center;
padding:60px 0;

background-size:cover;
background-position:center;
}

.hero-title{
font-size:62px;
font-weight:800;
line-height:1.15;
color:#00C897;
margin-bottom:18px;
}

.hero-text{
font-size:21px;
color:#202329;
margin-bottom:28px;
}

.hero-btn{
padding:15px 34px;
border-radius:50px;
background:#fff;
color:var(--primary);
font-weight:700;
font-size:16px;
border:none;
transition:.3s;
box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.hero-btn:hover{
background:var(--accent);
color:#fdf9f9;
transform:translateY(-4px);
}

.hero-slider .carousel-inner{
border-radius:30px;
overflow:hidden;
box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.hero-slider img{
width:100%;
height:100%;
object-fit:contain;   /* crop remove */
display:block;
}

/* Page Banner */

.page-banner{
padding:100px 0;
background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.page-banner h1{
color:#fff;
font-size:50px;
font-weight:800;
}

/* Section */
.section-title-one{
font-size:2rem;
font-weight:800;
color:var(--dark);
text-align:center;
margin-bottom:50px;
position:relative;
}

.section-title-one::after{
content:'';
width:90px;
height:5px;
background:linear-gradient(90deg,var(--primary),var(--secondary));
display:block;
margin:12px auto 0;
border-radius:20px;
}

section{
padding:80px 0;
}

.section-title{
font-size:42px;
font-weight:800;
color:var(--dark);
text-align:center;
margin-bottom:50px;
position:relative;
}

.section-title::after{
content:'';
width:90px;
height:5px;
background:linear-gradient(90deg,var(--primary),var(--secondary));
display:block;
margin:12px auto 0;
border-radius:20px;
}


/* Cards */

.box,
.shadow-box,
.admission-form,
.admission-info{
background:#fff;
border-radius:22px;
padding:32px;
box-shadow:var(--shadow);
transition:.35s ease;
height:100%;
border:1px solid rgba(0,0,0,.03);
}

.box{
text-align:center;
font-size:20px;
font-weight:700;
color:var(--dark);
}

.box:hover,
.shadow-box:hover,
.admission-form:hover,
.admission-info:hover{
transform:translateY(-8px);
box-shadow:0 30px 60px rgba(0,87,217,.12);
}
/* ===================================
 TAPASSU INSTITUTE - LEADERSHIP CSS
 Modern Medical Corporate Theme
=================================== */

.leaders-section{
background:#f8fbff;
padding:80px 0;
}

.leaders-subtitle{
text-align:center;
font-size:18px;
color:#00C897;
margin-top:-15px;
margin-bottom:45px;
}

/* Top Main Card */

.leader-main-card{
background:#ffffff;
border-radius:28px;
padding:35px;
display:flex;
gap:28px;
align-items:flex-start;
box-shadow:0 20px 50px rgba(0,0,0,.08);
transition:.4s ease;
border:1px solid rgba(0,0,0,.04);
}

.leader-main-card:hover{
transform:translateY(-8px);
box-shadow:0 30px 60px rgba(0,87,217,.12);
}

/* Left Side */

.leader-side{
display:flex;
flex-direction:column;
align-items:center;
min-width:180px;
}

.leader-side img{
width:150px;
height:150px;
border-radius:50%;
object-fit:cover;
border:6px solid #00b4d8;
box-shadow:0 15px 30px rgba(0,0,0,.10);
}

/* Vertical Buttons */

.vertical-actions{
display:flex;
flex-direction:column;
gap:12px;
margin-top:16px;
}

.call-btn,
.wa-btn{
width:48px;
height:48px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:20px;
color:#fff;
transition:.3s;
box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.call-btn{
background:linear-gradient(135deg,#0057D9,#00B4D8);
}

.wa-btn{
background:#25D366;
}

.call-btn:hover,
.wa-btn:hover{
transform:translateY(-4px) scale(1.05);
color:#fff;
}

/* Content */

.leader-content h3{
font-size:34px;
font-weight:800;
color:#0f172a;
margin-bottom:6px;
}

.designation{
display:inline-block;
padding:8px 18px;
border-radius:30px;
background:linear-gradient(135deg,#0057D9,#00B4D8);
color:#fff;
font-size:14px;
font-weight:700;
margin-bottom:16px;
}

.leader-content p{
font-size:17px;
line-height:1.9;
color:#475569;
margin:0;
text-align: justify;
}

/* Bottom Cards */

.leader-small-card{
background:#ffffff;
border-radius:24px;
padding:28px;
box-shadow:0 18px 45px rgba(0,0,0,.08);
height:100%;
transition:.4s ease;
}

.leader-small-card:hover{
transform:translateY(-8px);
box-shadow:0 28px 55px rgba(0,87,217,.12);
}

.small-layout{
display:flex;
gap:22px;
align-items:flex-start;
}

.small-side{
display:flex;
flex-direction:column;
align-items:center;
min-width:110px;
}

.small-side img{
width:95px;
height:95px;
border-radius:50%;
object-fit:cover;
border:4px solid #00c897;
box-shadow:0 12px 24px rgba(0,0,0,.08);
}

.small-content h4{
font-size:24px;
font-weight:800;
color:#0f172a;
margin-bottom:4px;
}

.small-content span{
display:inline-block;
font-size:13px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
color:#ffffff;
margin-bottom:10px;
}

.small-content p{
font-size:16px;
line-height:1.8;
color:#475569;
margin:0;
text-align: justify;
}

/* Responsive */

@media(max-width:992px){

.leader-main-card{
flex-direction:column;
align-items:center;
text-align:center;
}

.small-layout{
flex-direction:column;
align-items:center;
text-align:center;
}

}

@media(max-width:768px){

.leaders-section{
padding:60px 0;
}

.leader-main-card,
.leader-small-card{
padding:22px;
border-radius:18px;
}

.leader-side img{
width:120px;
height:120px;
}

.leader-content h3{
font-size:26px;
}

.small-content h4{
font-size:20px;
}

.leader-content p,
.small-content p{
font-size:15px;
line-height:1.8;

}

.call-btn,
.wa-btn{
width:44px;
height:44px;
font-size:18px;
}

}

/* ===================================
 TAPASSU INSTITUTE
 Mission | Vision | Commitment CSS
=================================== */

.mvv-section{
padding:80px 0;
background:linear-gradient(180deg,#f8fbff,#eef6ff);
}

.mvv-subtitle{
text-align:center;
font-size: 1.1rem;
color:#00C897;
max-width:760px;
margin:0 auto 45px;
line-height:1.8;
}

/* Cards */

.mvv-card{
background:#ffffff;
border-radius:26px;
padding:38px 30px;
height:100%;
text-align:center;
position:relative;
overflow:hidden;
box-shadow:0 18px 45px rgba(0,0,0,.08);
border:1px solid rgba(0,0,0,.04);
transition:.4s ease;
}

.mvv-card:hover{
transform:translateY(-10px);
box-shadow:0 28px 60px rgba(0,87,217,.14);
}

/* Top Glow Line */

.mvv-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#0057D9,#00B4D8);
}

/* Icon */

.mvv-icon{
width:82px;
height:82px;
margin:0 auto 22px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#fff;
box-shadow:0 15px 30px rgba(0,0,0,.10);
}

.mission-card .mvv-icon{
background:linear-gradient(135deg,#0057D9,#00B4D8);
}

.vision-card .mvv-icon{
background:linear-gradient(135deg,#00a86b,#00c897);
}

.commitment-card .mvv-icon{
background:linear-gradient(135deg,#ff7a00,#ffb300);
}

/* Headings */

.mvv-card h3{
font-size:30px;
font-weight:800;
color:#0f172a;
margin-bottom:16px;
position:relative;
display:inline-block;
}

/* underline hover */

.mvv-card h3::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
width:0;
height:3px;
background:#00c897;
border-radius:10px;
transition:.4s;
}

.mission-card h3::after{
background:#0057D9;
}

.vision-card h3::after{
background:#00c897;
}

.commitment-card h3::after{
background:#ff9f1c;
}

.mvv-card:hover h3::after{
width:100%;
}


/* ===== ONLY FOR DIRECTOR CARD (NO GLOBAL EFFECT) ===== */



/* COURSES.HTML PAGE CSS */


/* =====================================
TAPASSU COURSES PAGE CSS
===================================== */

.courses-page{
background:#f8fbff;
padding:80px 0;
}

/* Heading */

.courses-badge{
display:inline-block;
background:linear-gradient(135deg,#0057D9,#00B4D8);
color:#fff;
padding:10px 22px;
border-radius:40px;
font-size:14px;
font-weight:700;
margin-bottom:18px;
}

.courses-title{
font-size:46px;
font-weight:800;
color:#0f172a;
margin-bottom:15px;
}

.courses-subtitle{
font-size:18px;
color:#00c897;
max-width:760px;
margin:auto;
line-height:1.8;
}

/* Toolbar */

.courses-toolbar{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
margin:45px 0 35px;
flex-wrap:wrap;
}

.search-box{
background:#fff;
border-radius:50px;
padding:14px 20px;
display:flex;
align-items:center;
gap:12px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
min-width:320px;
}

.search-box i{
color:#0057D9;
font-size:18px;
}

.search-box input{
border:none;
outline:none;
width:100%;
font-size:16px;
}

.total-count{
font-size:18px;
font-weight:700;
color:#0f172a;
}

/* Cards */

.course-card{
background:#fff;
padding:28px;
border-radius:24px;
height:100%;
box-shadow:0 18px 45px rgba(0,0,0,.07);
transition:.4s ease;
border:1px solid rgba(0,0,0,.04);
}

.course-card:hover{
transform:translateY(-8px);
box-shadow:0 30px 60px rgba(0,87,217,.14);
}

.course-card h3{
font-size:24px;
font-weight:800;
color:#0f172a;
margin-bottom:18px;
line-height:1.4;
}

.course-card ul{
list-style:none;
padding:0;
margin:0 0 22px;
}

.course-card ul li{
font-size:16px;
color:#475569;
margin-bottom:12px;
line-height:1.7;
}

.course-card ul li i{
color:#00c897;
width:22px;
}

.apply-btn{
display:inline-block;
padding:12px 22px;
border-radius:40px;
background:linear-gradient(135deg,#0057D9,#00B4D8);
color:#fff;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.apply-btn:hover{
transform:translateY(-3px);
color:#fff;
background:linear-gradient(135deg,#00a86b,#00c897);
}

/* Responsive */

@media(max-width:768px){

.courses-page{
padding:60px 0;
}

.courses-title{
font-size:32px;
}

.courses-subtitle{
font-size:16px;
}

.search-box{
min-width:100%;
}

.course-card{
padding:22px;
border-radius:18px;
}

.course-card h3{
font-size:21px;
}

}

/* SERVICE SECTION START */

/* =====================================
services.css / style.css me add karo
Tapassu Institute Services Page
===================================== */

.services-hero{
padding:90px 0 70px;
/* background:linear-gradient(135deg,#0057D9,#00B4D8); */
text-align:center;
color:#090000;
}

.service-badge{
display:inline-block;
padding:10px 22px;
background:linear-gradient(135deg,#0057D9,#00B4D8);
border-radius:50px;
font-size:14px;
font-weight:700;
margin-bottom:20px;
backdrop-filter:blur(10px);
color:#ffffff
}

.services-hero h1{
font-size:52px;
font-weight:800;
margin-bottom:18px;
color:#090000;
}

.services-hero p{
font-size:18px;
max-width:760px;
margin:auto;
line-height:1.9;
opacity:.95;
color:#00c897
}


/* MAIN BOX */

.service-main-wrap{
padding:70px 0 30px;
background:#f8fbff;
}

.service-main-card{
background:#ffffff;
border-radius:28px;
padding:35px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
transition:.4s ease;
}

.service-main-card:hover{
transform:translateY(-6px);
box-shadow:0 28px 65px rgba(0,87,217,.14);
}


/* LIST */

.service-list{
margin:0;
padding:0;
list-style:none;
}

.service-list li{
font-size:18px;
color:#334155;
padding:12px 0;
border-bottom:1px dashed rgba(0,0,0,.06);
transition:.3s;
}

.service-list li:last-child{
border:none;
}

.service-list li:hover{
padding-left:10px;
color:#0057D9;
}

.service-list li i{
margin-right:10px;
color:#00c897;
}

.green-list li i{
color:#00c897;
}

.blue-list li::before,
.orange-list li::before{
content:"•";
font-size:28px;
margin-right:10px;
vertical-align:middle;
}

.blue-list li::before{
color:#0057D9;
}

.orange-list li::before{
color:#005;
}


/* RIGHT ICON BOX */

.service-image-box{
height:100%;
border-radius:24px;
padding:40px 30px;
/* background:linear-gradient(135deg,#0057D9,#00B4D8); */
text-align:center;
border:1px solid rgba(0,0,0,.05);
}

.service-image-box i{
font-size:68px;
color:#00c897;
margin-bottom:18px;
}

.service-image-box h3{
font-size:28px;
font-weight:800;
color:#0f172a;
margin-bottom:12px;
}

.service-image-box p{
font-size:17px;
line-height:1.8;
color:#64748b;
margin:0;
}


/* TWO CARDS */

.service-box-section{
padding:30px 0 40px;
background:#f8fbff;
}

.mini-service-card{
background:#fff;
padding:35px;
border-radius:26px;
height:100%;
box-shadow:0 18px 45px rgba(0,0,0,.07);
transition:.4s;
}

.mini-service-card:hover{
transform:translateY(-8px);
box-shadow:0 28px 60px rgba(0,87,217,.12);
}

.mini-service-card h3{
font-size:30px;
font-weight:800;
margin-bottom:24px;
color:#0f172a;
position:relative;
display:inline-block;
}

.mini-service-card h3::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:60%;
height:4px;
border-radius:10px;
background:#00c897;
}

.mini-service-card i{
margin-right:10px;
color:#0057D9;
}


/* HIGHLIGHT */

.service-highlight-sec{
padding:20px 0 80px;
background:#f8fbff;
}

.highlight-item{
background:#fff;
padding:30px 20px;
text-align:center;
border-radius:24px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
transition:.35s;
height:100%;
}

.highlight-item:hover{
transform:translateY(-8px);
background:linear-gradient(135deg,#0057D9,#00B4D8);
color:#fff;
}

.highlight-item i{
font-size:38px;
margin-bottom:15px;
color:#00c897;
transition:.35s;
}

.highlight-item:hover i{
color:#fff;
}

.highlight-item h4{
font-size:28px;
font-weight:800;
margin-bottom:8px;
}

.highlight-item p{
margin:0;
font-size:15px;
}


/* RESPONSIVE */

@media(max-width:992px){

.services-hero h1{
font-size:40px;
}

.service-main-card,
.mini-service-card{
padding:28px;
}

}

@media(max-width:768px){

.services-hero{
padding:70px 0 55px;
}

.services-hero h1{
font-size:32px;
}

.services-hero p{
font-size:16px;
}

.service-list li{
font-size:16px;
}

.service-image-box{
padding:28px 20px;
margin-top:15px;
}

.service-image-box i{
font-size:54px;
}

.service-image-box h3{
font-size:24px;
}

.mini-service-card h3{
font-size:24px;
}

.highlight-item{
padding:24px 14px;
}

.highlight-item h4{
font-size:22px;
}

}

/* aDMISSION SECTION START */

/* =====================================
Admission Page CSS
Add in style.css
===================================== */

.admission-hero{
padding:90px 0 70px;
/* background:linear-gradient(135deg,#0057D9,#00B4D8); */
color:#090000;
}

.admission-badge{
display:inline-block;
padding:10px 22px;
background:linear-gradient(135deg,#0057D9,#00B4D8);
border-radius:50px;
font-size:14px;
font-weight:700;
margin-bottom:18px;
backdrop-filter:blur(10px);
color:#ffffff;
}

.admission-hero h1{
font-size:52px;
font-weight:800;
margin-bottom:18px;
color:#090000;
}

.admission-hero p{
font-size:18px;
max-width:700px;
margin:auto;
line-height:1.8;
color:#00c897;
}

.admission-section{
padding:80px 0;
background:#f8fbff;
}

/* Left Card */

.admission-info-card{
background:#fff;
padding:35px;
border-radius:28px;
box-shadow:0 18px 45px rgba(0,0,0,.07);
height:100%;
}

.admission-info-card h3{
font-size:32px;
font-weight:800;
margin-bottom:25px;
color:#0f172a;
}

.admission-info-card ul{
list-style:none;
padding:0;
margin:0;
}

.admission-info-card ul li{
padding:12.8px 0;
font-size:17px;
color:#475569;
border-bottom:1px dashed rgba(0,0,0,.06);
}

.admission-info-card ul li i{
color:#00c897;
margin-right:10px;
}

.quick-contact{
display:flex;
gap:15px;
margin-top:28px;
flex-wrap:wrap;
}

.quick-contact a{
padding:12px 18px;
border-radius:50px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.quick-contact a:first-child{
background:#0057D9;
color:#fff;
}

.quick-contact a:last-child{
background:#25D366;
color:#fff;
}

.quick-contact a:hover{
transform:translateY(-4px);
}

/* Form Card */

.admission-form-card{
background:#fff;
padding:38px;
border-radius:28px;
box-shadow:0 18px 45px rgba(0,0,0,.07);
}

.admission-form-card h2{
font-size:38px;
font-weight:800;
color:#0f172a;
margin-bottom:8px;
}

.admission-form-card p{
font-size:16px;
color:#64748b;
margin-bottom:28px;
}

.admission-form-card label{
font-size:15px;
font-weight:700;
margin-bottom:8px;
display:block;
color:#334155;
}

.admission-form-card input,
.admission-form-card select,
.admission-form-card textarea{
width:100%;
padding:14px 16px;
border:1px solid #dbeafe;
border-radius:14px;
outline:none;
font-size:15px;
transition:.3s;
background:#f8fbff;
}

.admission-form-card input:focus,
.admission-form-card select:focus,
.admission-form-card textarea:focus{
border-color:#0057D9;
box-shadow:0 0 0 4px rgba(0,87,217,.08);
background:#fff;
}

.submit-btn{
width:100%;
padding:16px;
border:none;
border-radius:50px;
font-size:17px;
font-weight:800;
color:#fff;
background:linear-gradient(135deg,#0057D9,#00B4D8);
transition:.3s;
margin-top:8px;
}

.submit-btn:hover{
transform:translateY(-4px);
background:linear-gradient(135deg,#00a86b,#00c897);
}

/* Responsive */

@media(max-width:768px){

.admission-hero{
padding:70px 0 55px;
}

.admission-hero h1{
font-size:34px;
}

.admission-hero p{
font-size:16px;
}

.admission-form-card,
.admission-info-card{
padding:24px;
border-radius:20px;
}

.admission-form-card h2{
font-size:28px;
}

.admission-info-card h3{
font-size:26px;
}

}

/* Paragraph */

.mvv-card p{
font-size:17px;
line-height:1.9;
color:#475569;
margin:0;
text-align:justify;
text-justify:inter-word;
}

/* Different top line colors */

.vision-card::before{
background:linear-gradient(90deg,#00a86b,#00c897);
}

.commitment-card::before{
background:linear-gradient(90deg,#ff7a00,#ffb300);
}

/* Responsive */

@media(max-width:992px){

.mvv-card{
padding:30px 24px;
}

.mvv-card h3{
font-size:26px;
}

}

@media(max-width:768px){

.mvv-section{
padding:60px 0;
}

.mvv-subtitle{
font-size:16px;
margin-bottom:30px;
}

.mvv-card{
padding:26px 20px;
border-radius:18px;
}

.mvv-icon{
width:68px;
height:68px;
font-size:28px;
margin-bottom:18px;
}

.mvv-card h3{
font-size:22px;
}

.mvv-card p{
font-size:15px;
line-height:1.8;
text-align:left;
}

}

/* Forms */

form input,
form select,
form textarea{
border:1px solid #dce6f2!important;
border-radius:14px!important;
padding:14px!important;
font-size:15px;
box-shadow:none!important;
}

form input:focus,
form select:focus,
form textarea:focus{
border-color:var(--secondary)!important;
}

form textarea{
resize:none;
min-height:130px;
}

form button{
background:linear-gradient(135deg,var(--primary),var(--secondary));
color:#fff;
border:none;
padding:14px;
border-radius:14px!important;
font-size:16px;
font-weight:700;
transition:.3s;
}

form button:hover{
background:linear-gradient(135deg,var(--accent),var(--primary));
transform:translateY(-2px);
}

/* Admission */

.admission-list{
list-style:none;
padding:0;
margin:0;
}

.admission-list li{
background:#f1f7ff;
padding:16px 18px;
border-radius:14px;
margin-bottom:12px;
font-weight:600;
border-left:5px solid var(--primary);
}

.admission-contact{
margin-top:22px;
padding:25px;
border-radius:18px;
background:linear-gradient(135deg,#eef8ff,#f5fffb);
}

/* Footer */
/* =========================
     PREMIUM FOOTER CSS
========================= */

.main-footer{
background:linear-gradient(135deg,#0f172a,#003b8f);
padding:70px 0 25px;
color:#fff;
}

.footer-box{
height:100%;
}

.footer-title{
font-size:26px;
font-weight:800;
margin-bottom:25px;
position:relative;
display:inline-block;
cursor:pointer;
transition:.3s;
}

/* Underline Effect */

.footer-title::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
width:0;
height:3px;
background:#00c897;
transition:.4s;
border-radius:10px;
}

.footer-title:hover{
color:#00c897;
}

.footer-title:hover::after{
width:100%;
}

/* Quick Links */

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:14px;
}

.footer-links a{
color:rgba(255,255,255,.88);
text-decoration:none;
font-size:17px;
transition:.3s;
position:relative;
padding-left:0;
}

.footer-links a:hover{
color:#00c897;
padding-left:8px;
}

/* Social */

.social-links{
display:flex;
flex-direction:column;
gap:14px;
}

.social-links a{
text-decoration:none;
color:rgba(255,255,255,.90);
font-size:17px;
transition:.3s;
}

.social-links a i{
width:38px;
height:38px;
background:#ffffff15;
border-radius:50%;
text-align:center;
line-height:38px;
margin-right:10px;
transition:.3s;
}

.social-links a:hover{
color:#00c897;
transform:translateX(6px);
}

.social-links a:hover i{
background:#00c897;
color:#fff;
}

/* Contact */

.footer-box p{
font-size:17px;
margin-bottom:16px;
color:rgba(255,255,255,.90);
line-height:1.7;
}

.footer-box p i{
width:28px;
color:#00c897;
}

.footer-contact{
display:flex;
flex-direction:column;
gap:14px;
}

.footer-contact a{
display:flex;
align-items:flex-start;
gap:10px;
width:max-content;
max-width:100%;
color:rgba(255,255,255,.90);
font-size:17px;
line-height:1.7;
text-decoration:none;
transition:.3s ease;
}

.footer-contact a i{
flex:0 0 38px;
width:38px;
height:38px;
background:#ffffff15;
border-radius:50%;
color:#00c897;
display:flex;
align-items:center;
justify-content:center;
line-height:38px;
transition:.3s ease;
}

.footer-contact a:hover{
color:#00c897;
transform:translateX(6px);
}

.footer-contact a:hover i{
background:#00c897;
color:#fff;
}

.form-honeypot{
position:absolute;
left:-9999px;
width:1px;
height:1px;
overflow:hidden;
opacity:0;
pointer-events:none;
}

.thankyou-page{
min-height:100vh;
background:linear-gradient(135deg,#eef8ff,#f7fff8);
}

.thankyou-wrap{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:40px 18px;
}

.thankyou-card{
max-width:680px;
width:100%;
text-align:center;
background:#fff;
border-radius:8px;
padding:42px 32px;
box-shadow:0 20px 45px rgba(15,23,42,.12);
border:1px solid rgba(0,0,0,.06);
}

.thankyou-card img{
width:86px;
height:86px;
object-fit:contain;
margin-bottom:18px;
}

.thankyou-badge{
display:inline-block;
font-size:14px;
font-weight:700;
color:#0057d9;
background:#eaf4ff;
padding:7px 14px;
border-radius:30px;
margin-bottom:16px;
}

.thankyou-card h1{
font-size:38px;
font-weight:800;
color:#0f172a;
margin-bottom:12px;
}

.thankyou-card p{
font-size:17px;
color:#334155;
line-height:1.8;
margin:0 auto 26px;
max-width:560px;
}

.thankyou-actions{
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
}

/* Divider */

.footer-line{
border-color:rgba(255,255,255,.12);
margin:40px 0 22px;
}

/* Bottom */

.footer-bottom{
text-align:center;
font-size:15px;
color:rgba(255,255,255,.75);
}

/* Responsive */

@media(max-width:768px){

.main-footer{
padding:50px 0 20px;
text-align:center;
}

.footer-title{
font-size:22px;
}

.footer-title::after{
left:50%;
transform:translateX(-50%);
}

.social-links a{
justify-content:center;
}

.footer-box p{
font-size:15px;
}

.footer-contact{
align-items:center;
}

.footer-contact a{
justify-content:center;
font-size:15px;
width:100%;
}

.footer-links a,
.social-links a{
font-size:15px;
}

}

/* Floating Buttons */

.whatsapp,
.callbtn{
position:fixed;
right:18px;
z-index:999;
width:52px;
height:52px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
text-decoration:none;
font-size:22px;
box-shadow:0 18px 30px rgba(0,0,0,.14);
transition:.3s;
}

.whatsapp{
bottom:18px;
background:#25D366;
}

.callbtn{
bottom:82px;
background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.whatsapp:hover,
.callbtn:hover{
transform:scale(1.08);
color:#fff;
}

/* Utility */

.text-blue{
color:var(--primary);
}

/* Responsive */

@media(max-width:992px){

.hero-section{
text-align:center;
padding:70px 0;
}

.hero-title{
font-size:46px;
}

.hero-text{
font-size:18px;
}

.hero-slider img{
height:380px;
margin-top:20px;
}

.section-title{
font-size:36px;
}

}

@media(max-width:768px){

.navbar-brand{
font-size:22px;
}

.hero-title{
font-size:34px;
}

.hero-text{
font-size:16px;
}

.hero-btn{
padding:12px 24px;
font-size:14px;
}

.hero-slider img{
height:260px;
}

.page-banner{
padding:70px 0;
}

.page-banner h1{
font-size:34px;
}

.section-title{
font-size:28px;
}

.box,
.shadow-box,
.admission-form,
.admission-info{
padding:24px;
border-radius:18px;
}

.whatsapp,
.callbtn{
width:46px;
height:46px;
font-size:18px;
right:12px;
}

.callbtn{
bottom:70px;
}

}

@media(max-width:480px){

.hero-title{
font-size:28px;
}

.hero-text{
font-size:14px;
}

.section-title{
font-size:24px;
}

.hero-slider img{
height:220px;
}

}


/* ==============================
CONTACT PAGE CSS
============================== */

.contact-hero{
padding:90px 0 70px;
/* background:linear-gradient(135deg,#0057D9,#00B4D8); */
color:#090000;
text-align:center;
}

.contact-badge{
display:inline-block;
padding:10px 22px;
background:linear-gradient(135deg,#0057D9,#00B4D8);
/* background:rgba(255,255,255,.18); */
border-radius:50px;
margin-bottom:18px;
font-weight:700;
color:#ffffff;
}

.contact-hero h1{
font-size:48px;
font-weight:800;
margin-bottom:15px;
color:#090000;
}

.contact-hero p{
font-size:18px;
max-width:700px;
margin:auto;
line-height:1.8;
color:#00c897
}

/* SECTION */

.contact-section{
padding:80px 0;
background:#f8fbff;
}

/* LEFT */

.contact-info-card{
background:#fff;
padding:35px;
border-radius:28px;
box-shadow:0 18px 45px rgba(0,0,0,.07);
height:100%;
}

.contact-info-card h3{
font-size:30px;
font-weight:800;
margin-bottom:15px;
}

.info-text{
color:#64748b;
margin-bottom:20px;
line-height:1.7;
}

.contact-list{
list-style:none;
padding:0;
}

.contact-list li{
margin-bottom:14px;
font-size:17px;
color:#334155;
}

.contact-list i{
color:#0057D9;
margin-right:10px;
}

.contact-buttons{
margin-top:20px;
display:flex;
gap:12px;
flex-wrap:wrap;
}

.contact-buttons a{
padding:12px 18px;
border-radius:50px;
text-decoration:none;
color:#fff;
font-weight:700;
}

.contact-buttons a:first-child{
background:#0057D9;
}

.contact-buttons a:last-child{
background:#25D366;
}

/* FORM */

.contact-form-card{
background:#fff;
padding:35px;
border-radius:28px;
box-shadow:0 18px 45px rgba(0,0,0,.07);
}

.contact-form-card h2{
font-size:34px;
font-weight:800;
margin-bottom:8px;
}

.contact-form-card p{
color:#64748b;
margin-bottom:25px;
}

.contact-form-card label{
font-weight:700;
margin-bottom:6px;
display:block;
}

.contact-form-card input,
.contact-form-card textarea{
width:100%;
padding:14px;
border-radius:12px;
border:1px solid #dbeafe;
background:#f8fbff;
outline:none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{
border-color:#0057D9;
box-shadow:0 0 0 3px rgba(0,87,217,.1);
}

.contact-btn{
width:100%;
padding:15px;
border:none;
border-radius:50px;
background:linear-gradient(135deg,#0057D9,#00B4D8);
color:#fff;
font-weight:800;
font-size:16px;
transition:.3s;
}

.contact-btn:hover{
transform:translateY(-3px);
background:linear-gradient(135deg,#00a86b,#00c897);
}

/* MOBILE */

@media(max-width:768px){

.contact-hero h1{
font-size:32px;
}

.contact-form-card,
.contact-info-card{
padding:24px;
}

}.map-container{
    margin-top:80px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe{
    width:100%;
    height:250px;
    border:0;
     filter: grayscale(20%) contrast(1.1);
}

/* gradient line css */


.section-title{
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
    position: relative;
    text-align: center;   /* ye center karega */
}

/* Gradient Line */
.section-title::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* line ko bhi center karega */
    bottom: -10px;
    width: 80px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0d6efd, #00aad9);
}


/* ===== SOCIAL SIDEBAR ===== */
.social-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 999;
}

/* Individual Icons */
.social-sidebar .social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 6px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 0 25px 25px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.social-sidebar .social:hover {
    width: 55px;
    transform: translateX(5px);
}

/* Platform Colors */
.social.fb { background: #1877f2; }
.social.insta { background: #e1306c; }
.social.linkedin { background: #0077b5; }
.social.gmail { background: #d44638; }
.social.twitter { background: #1da1f2; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-sidebar {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        background: #fff;
        padding: 5px 10px;
        border-radius: 30px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .social-sidebar .social {
        border-radius: 50%;
        margin: 0 5px;
    }

    .social-sidebar .social:hover {
        transform: scale(1.1);
        width: 45px;
    }
}

