﻿:root {
    --blue:#2E3192;
    --orange:#F7931E;
    --white:#fff;
}

body{
    font-family:'Segoe UI';
    overflow-x:hidden;
}

.top-bar{
    background:var(--blue);
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

.logo{
    height:70px;
}

.navbar-nav .nav-link{
    font-weight:600;
    margin:0 8px;
}

.hero-section {

    position: relative;
    min-height:auto;

    padding-top:120px;
    padding-bottom:80px;
    display: flex;
    align-items: center;

    background:
    linear-gradient(
    135deg,
    #1E3A8A 0%,
    #2563EB 55%,
    #F97316 100%);

    overflow: hidden;

    padding-top: 110px;
    padding-bottom: 70px;

}
.hero-tag{
    background:var(--orange);
    color:white;
    padding:10px 20px;
    border-radius:30px;
}

.hero-section h1{
    color:white;
    font-size:60px;
    font-weight:800;
    margin-top:20px;
}

.hero-section p{
    color:white;
    font-size:20px;
}

.btn-primary-custom{
    background:var(--orange);
    color:white;
    border:none;
    padding:14px 35px;
    border-radius:40px;
}

.btn-primary-custom:hover{
    background:#ff8400;
    color:white;
}

.btn-outline-custom{
    border:2px solid white;
    color:white;
    padding:14px 35px;
    border-radius:40px;
}

.hero-form{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
}

.hero-stats{

    margin-top:30px;
    gap:25px;

}

.hero-stats h3{
    color:var(--orange);
    font-weight:700;
}

.section-padding{
    padding:100px 0;
}

.section-title{
    color:var(--orange);
    font-weight:700;
    text-transform:uppercase;
}

.founder-box{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.founder-card{
    background:#f5f5f5;
    padding:20px;
    border-radius:15px;
}

.course-section{
    background:#f8fafc;
    padding:100px 0;
}

.course-card{
    background:white;
    padding:30px;
    border-radius:20px;
    height:100%;
    transition:.3s;
}

.course-card:hover{
    transform:translateY(-10px);
}

.course-card h4{
    color:var(--blue);
}

.crash-course{
    background:
    linear-gradient(
    90deg,
    var(--orange),
    var(--blue));

    color:white;
    padding:80px 0;
}

footer{
    background:#0f172a;
    color:white;
    padding:60px 0;
}

@media(max-width:768px){

.hero-section h1{
    font-size:38px;
}

.hero-stats{
    flex-direction:column;
}

.founder-box{
    flex-direction:column;
}

}

    /* =================================== */
/* ROOT COLORS */
/* =================================== */

:root {

    --primaryBlue: #2E3192;
    --primaryOrange: #F7931E;
    --white: #ffffff;
    --dark: #1f2937;

}

body {

    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;

}

/* =================================== */
/* NAVBAR */
/* =================================== */

.custom-navbar {

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

}

.logo {

    height: 75px;

}

.nav-link {

    color: #222 !important;
    font-weight: 600;
    margin-left: 15px;

}

.nav-link:hover {

    color: var(--primaryOrange) !important;

}

/* =================================== */
/* HERO SECTION */
/* =================================== */

.hero-section::before {

content:'';

position:absolute;

width:100%;
height:100%;

background:
radial-gradient(
circle at 20% 20%,
rgba(255,255,255,.10),
transparent 25%),

radial-gradient(
circle at 80% 80%,
rgba(255,255,255,.08),
transparent 25%);

}

#particles-js {

    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.hero-title {

    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;

}

@media(max-width:991px){

.hero-title{

    font-size:42px;

}

}

.hero-title span {

    color: #FFD54F;

}

.hero-subtitle {

    font-size: 26px;
    color: white;
    margin-top: 20px;
    font-weight: 600;

}

.hero-text {

    color: rgba(255,255,255,.9);
    font-size: 18px;
    margin-top: 20px;
    max-width: 600px;

}

.board-box {

    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 20px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);

}

.admission-badge {

    background: #fff;
    color: var(--primaryOrange);

    padding: 10px 25px;

    border-radius: 50px;

    font-weight: 700;

    box-shadow: 0 5px 20px rgba(0,0,0,.15);

}

.hero-buttons {

    margin-top: 30px;

}

.btn-apply {

    background: var(--primaryOrange);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    margin-right: 15px;

}

.btn-call {

    background: white;
    color: var(--primaryBlue);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;

}

.btn-apply:hover {

    background: #ff8300;
    color: white;

}

.btn-call:hover {

    background: var(--primaryBlue);
    color: white;

}

/* =================================== */
/* HERO STATS */
/* =================================== */

.hero-stats {

    display: flex;
    gap: 40px;
    margin-top: 50px;

}

.stat-item h3 {

    color: #FFD54F;
    font-size: 36px;
    font-weight: 800;

}

.stat-item span {

    color: white;

}

/* =================================== */
/* IMAGE */
/* =================================== */

.student-image-box {

    position: relative;

}

.hero-student {

    max-height: 650px;

    animation: floatImage 4s ease-in-out infinite;

}

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =================================== */
/* MOBILE */
/* =================================== */

@media(max-width:991px) {

    .hero-title {

        font-size: 42px;
        text-align: center;

    }

    .hero-subtitle,
    .hero-text,
    .board-box,
    .hero-buttons,
    .hero-stats {

        text-align: center;

    }

    .hero-stats {

        justify-content: center;
        flex-wrap: wrap;

    }

    .student-image-box {

        margin-top: 50px;

    }

}

    /* ===================================== */
/* QUICK HIGHLIGHTS */
/* ===================================== */

.highlights-section {

    padding: 90px 0;
    background: #ffffff;
    margin-top: -60px;
    position: relative;
    z-index: 10;

}

.highlight-card {

    background: #ffffff;

    padding: 40px 30px;

    border-radius: 25px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    transition: all .4s ease;

    height: 100%;

    border: 1px solid rgba(0,0,0,.05);

}

.highlight-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 20px 50px rgba(46,49,146,.18);

}

.icon-box {

    width: 80px;
    height: 80px;

    margin: auto;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #2E3192,
    #F7931E);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

}

.icon-box i {

    color: white;
    font-size: 32px;

}

.highlight-card h3 {

    font-size: 42px;
    font-weight: 800;
    color: #2E3192;

}

.highlight-card h5 {

    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;

}

.highlight-card p {

    color: #6b7280;
    line-height: 1.7;

}

/* ===================================== */
/* ABOUT SECTION */
/* ===================================== */

.about-section {

    padding: 120px 0;
    background: #f8fafc;

}

.section-subtitle {

    color: #F7931E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.section-heading {

    font-size: 42px;
    font-weight: 800;
    color: #2E3192;
    margin: 15px 0 25px;

}

.about-text {

    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;

}

.about-image-wrapper {

    position: relative;

}

.about-image {

    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);

}

.experience-badge {

    position: absolute;

    bottom: 20px;
    right: -20px;

    background: linear-gradient(
        135deg,
        #2E3192,
        #F7931E);

    color: white;

    padding: 25px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

}

.experience-badge h3 {

    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0;

}

.founders-wrapper {

    display: flex;
    gap: 20px;
    margin-top: 30px;

}

.founder-card {

    flex: 1;

    background: white;

    padding: 25px;

    border-radius: 20px;

    text-align: center;

    transition: .4s;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

}

.founder-card:hover {

    transform: translateY(-10px);

}

.founder-icon {

    width: 70px;
    height: 70px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2E3192,
        #F7931E);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

}

.founder-icon i {

    color: white;
    font-size: 28px;

}

.founder-card h5 {

    font-weight: 700;
    color: #2E3192;

}

.founder-card span {

    color: #F7931E;
    font-weight: 600;

}

.founder-card p {

    margin-top: 10px;
    color: #6b7280;

}

/* Vision Mission */

.vision-card,
.mission-card {

    background: white;

    padding: 35px;

    border-radius: 20px;

    margin-top: 30px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    transition: .4s;

}

.vision-card:hover,
.mission-card:hover {

    transform: translateY(-10px);

}

.vision-card i,
.mission-card i {

    font-size: 40px;
    color: #F7931E;
    margin-bottom: 15px;

}

.vision-card h4,
.mission-card h4 {

    color: #2E3192;
    font-weight: 700;
    margin-bottom: 15px;

}

.vision-card p,
.mission-card p {

    color: #6b7280;
    line-height: 1.8;

}

/* Mobile */

@media(max-width:991px) {

    .section-heading {

        font-size: 32px;
        text-align: center;

    }

    .section-subtitle,
    .about-text {

        text-align: center;

    }

    .founders-wrapper {

        flex-direction: column;

    }

    .experience-badge {

        right: 0;

    }

}

 .admission-badge {

    background: white;
    color: #F97316;

    padding: 10px 20px;

    border-radius: 50px;

    font-weight: 700;

    display: inline-block;

    margin-bottom: 25px; /* Add this */

}
    .btn-apply{

background:#F97316;

color:white;

border-radius:50px;

padding:15px 40px;

font-weight:700;

}
    .btn-call{

background:white;

color:#1E3A8A;

border-radius:50px;

padding:15px 40px;

font-weight:700;

}
   .student-image{

    max-height:520px;
    width:auto;

}

    .highlight-card{

background:
rgba(255,255,255,.95);

backdrop-filter:
blur(10px);

border-radius:24px;

padding:35px;

box-shadow:
0 20px 40px rgba(30,58,138,.08);

transition:.4s;

}
    .highlight-card:hover{

transform:
translateY(-15px);

box-shadow:
0 25px 50px rgba(30,58,138,.15);

}

    .icon-circle{

width:85px;
height:85px;

background:
linear-gradient(
135deg,
#1E3A8A,
#F97316);

border-radius:50%;

}
    .about-section{

background:#F8FAFC;

padding:120px 0;

}
    .section-heading{

font-size:48px;

font-weight:800;

color:#0F172A;

}
    .heading-line{

width:100px;
height:5px;

background:#F97316;

border-radius:50px;

margin:20px 0;

}
    .founder-card{

background:white;

border-top:
5px solid #F97316;

padding:30px;

border-radius:20px;

box-shadow:
0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}
    .founder-card:hover{

transform:
translateY(-10px);

box-shadow:
0 25px 50px rgba(30,58,138,.15);

}

    .hero-row{
    min-height:650px;
}

.hero-student{

    max-height:450px;
    width:auto;

}
/* ===================================== */
/* COURSES SECTION */
/* ===================================== */

.courses-section {

    padding: 120px 0;
    background: #ffffff;

}

.section-description {

    max-width: 700px;
    margin: auto;
    color: #64748B;

}

.course-card {

    background: white;

    border-radius: 25px;

    padding: 35px;

    height: 100%;

    transition: .4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    overflow: hidden;

    position: relative;

}

.course-card:hover {

    transform: translateY(-12px);

}

.foundation-card {

    border-top: 6px solid #2563EB;

}

.board-card {

    border-top: 6px solid #F97316;

}

.senior-card {

    border-top: 6px solid #1E3A8A;

}

.course-icon {

    width: 85px;
    height: 85px;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #1E3A8A,
    #F97316);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

}

.course-icon i {

    color: white;
    font-size: 32px;

}

.course-card h3 {

    color: #1E3A8A;
    font-weight: 700;

}

.course-tag {

    color: #F97316;
    font-weight: 600;
    margin-bottom: 20px;

}

.course-card ul {

    list-style: none;
    padding: 0;

}

.course-card ul li {

    padding: 10px 0;

    border-bottom:
    1px solid #eee;

    position: relative;

    padding-left: 25px;

}

.course-card ul li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: #F97316;

    font-weight: bold;

}

.stream-box {

    background: #F8FAFC;

    padding: 15px;

    border-radius: 12px;

    margin-bottom: 12px;

}

.stream-box h6 {

    color: #1E3A8A;
    font-weight: 700;

}

.btn-course {

    display: inline-block;

    margin-top: 20px;

    background: #F97316;

    color: white;

    padding: 12px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

}

.btn-course:hover {

    background: #EA580C;
    color: white;

}

/* ===================================== */
/* BOARDS WE SERVE */
/* ===================================== */

.boards-section {

    padding: 120px 0;

    background: #F8FAFC;

}

.board-card {

    background: #ffffff;

    padding: 40px 30px;

    text-align: center;

    border-radius: 25px;

    height: 100%;

    transition: .4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    position: relative;

    overflow: hidden;

}

.board-card:hover {

    transform: translateY(-12px);

    box-shadow:
    0 25px 50px rgba(30,58,138,.15);

}

.board-icon {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #1E3A8A,
    #F97316);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

}

.board-icon i {

    color: white;

    font-size: 34px;

}

.board-card h3 {

    color: #1E3A8A;

    font-weight: 800;

    margin-bottom: 10px;

}

.board-card h6 {

    color: #F97316;

    font-weight: 600;

    min-height: 45px;

}

.board-card p {

    color: #64748B;

    line-height: 1.8;

}

/* Top Accent Border */

.cbse-card {

    border-top: 5px solid #2563EB;

}

.icse-card {

    border-top: 5px solid #F97316;

}

.up-card {

    border-top: 5px solid #1E3A8A;

}

/* ===================================== */
/* CRASH COURSE SECTION */
/* ===================================== */

.crash-course-section {

    padding: 100px 0;

    background:
    linear-gradient(
    135deg,
    #F97316 0%,
    #EA580C 50%,
    #1E3A8A 100%);

    position: relative;

    overflow: hidden;

}

.crash-course-section::before {

    content: '';

    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    background:
    radial-gradient(
    circle at 20% 20%,
    rgba(255,255,255,.12),
    transparent 25%),

    radial-gradient(
    circle at 80% 80%,
    rgba(255,255,255,.08),
    transparent 20%);

}

.limited-badge {

    background: white;

    color: #F97316;

    padding: 12px 25px;

    border-radius: 50px;

    font-weight: 700;

    display: inline-block;

}

.crash-title {

    color: white;

    font-size: 52px;

    font-weight: 900;

    margin-top: 25px;

}

.crash-subtitle {

    color: white;

    font-size: 24px;

    margin-top: 15px;

}

.board-pill {

    display: inline-block;

    margin-top: 15px;

    background: rgba(255,255,255,.15);

    padding: 12px 25px;

    border-radius: 50px;

    color: white;

    backdrop-filter: blur(8px);

}

.crash-features {

    margin-top: 30px;

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}

.crash-features span {

    color: white;

    background: rgba(255,255,255,.12);

    padding: 10px 18px;

    border-radius: 50px;

}

.crash-features i {

    color: #FFD166;

}

.crash-buttons {

    margin-top: 35px;

}

.btn-enroll {

    background: white;

    color: #F97316;

    padding: 14px 35px;

    border-radius: 50px;

    font-weight: 700;

    text-decoration: none;

    margin-right: 15px;

}

.btn-call-course {

    background: #1E3A8A;

    color: white;

    padding: 14px 35px;

    border-radius: 50px;

    font-weight: 700;

    text-decoration: none;

}

.countdown-card {

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(10px);

    border-radius: 25px;

    padding: 40px;

    text-align: center;

    color: white;

}

.countdown-card h4 {

    margin-bottom: 25px;

    font-weight: 700;

}

.countdown-wrapper {

    display: flex;

    justify-content: center;

    gap: 15px;

}

.time-box {

    background: white;

    color: #1E3A8A;

    width: 85px;

    height: 85px;

    border-radius: 15px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}

.time-box span {

    font-size: 24px;

    font-weight: 800;

}

.time-box small {

    color: #64748B;

}

/* ===================================== */
/* WHY CHOOSE US */
/* ===================================== */

.why-us-section {

    padding: 120px 0;

    background:
    linear-gradient(
    180deg,
    #FFFFFF 0%,
    #F8FAFC 100%);

}

.feature-card {

    background: #ffffff;

    border-radius: 25px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    transition: .4s;

    position: relative;

    overflow: hidden;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

.feature-card:hover {

    transform: translateY(-12px);

    box-shadow:
    0 25px 50px rgba(30,58,138,.15);

}

.feature-card::before {

    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background:
    linear-gradient(
    90deg,
    #1E3A8A,
    #F97316);

}

.feature-icon {

    width: 85px;
    height: 85px;

    margin: auto;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #1E3A8A,
    #F97316);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

}

.feature-icon i {

    color: white;

    font-size: 32px;

}

.feature-card h5 {

    color: #1E3A8A;

    font-weight: 700;

    margin-bottom: 15px;

}

.feature-card p {

    color: #64748B;

    line-height: 1.7;

}

/* ===================================== */
/* FACULTY SECTION */
/* ===================================== */

.faculty-section {

     padding:120px 0;
    background:#FFFFFF;

}

/* Founder Profile */

.founder-profile {

    background: white;

    border-radius: 30px;

    overflow: hidden;

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

    transition: .4s;

    height: 100%;

}

.founder-profile:hover {

    transform: translateY(-10px);

}

.faculty-image {

    height: 320px;

    overflow: hidden;

}

.faculty-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.faculty-content {

    padding: 30px;

}

.faculty-badge {

    background: #F97316;

    color: white;

    padding: 8px 18px;

    border-radius: 50px;

    display: inline-block;

    font-size: 14px;

    margin-bottom: 15px;

}

.faculty-content h3 {

    color: #1E3A8A;

    font-weight: 800;

}

.faculty-content h6 {

    color: #F97316;

    font-weight: 700;

    margin-bottom: 15px;

}

.faculty-content p {

    color: #64748B;

    line-height: 1.8;

}

/* Subject Experts */

.expert-card {

    background: white;

    text-align: center;

    padding: 30px;

    border-radius: 20px;

    transition: .4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

}

.expert-card:hover {

    transform: translateY(-10px);

    background:
    linear-gradient(
    135deg,
    #1E3A8A,
    #2563EB);

}

.expert-card:hover h5,
.expert-card:hover span,
.expert-card:hover i {

    color: white;

}

.expert-card i {

    font-size: 40px;

    color: #F97316;

    margin-bottom: 15px;

}

.expert-card h5 {

    color: #1E3A8A;

    font-weight: 700;

}

.expert-card span {

    color: #64748B;

}
/* ===================================== */
/* RESULTS SECTION */
/* ===================================== */

.results-section {

    padding: 120px 0;

    background: #ffffff;

}

/* Counters */

.result-counter {

    background: white;

    padding: 35px;

    text-align: center;

    border-radius: 25px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition: .4s;

}

.result-counter:hover {

    transform: translateY(-10px);

}

.result-counter h3 {

    font-size: 48px;

    font-weight: 800;

    color: #F97316;

}

.result-counter p {

    color: #64748B;

    font-weight: 600;

}

/* Topper Cards */

.topper-card {

    background: white;

    border-radius: 25px;

    overflow: hidden;

    text-align: center;

    position: relative;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition: .4s;

}

.topper-card:hover {

    transform: translateY(-12px);

}

.rank-badge {

    position: absolute;

    top: 15px;
    right: 15px;

    background: #F97316;

    color: white;

    padding: 8px 15px;

    border-radius: 50px;

    font-size: 13px;

    z-index: 10;

}

.topper-image {

    height: 280px;

    overflow: hidden;

}

.topper-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.topper-card h2 {

    color: #1E3A8A;

    font-size: 42px;

    font-weight: 800;

    margin-top: 20px;

}

.topper-card h5 {

    font-weight: 700;

}

.topper-card span {

    color: #64748B;

}

/* Achievement Strip */

.achievement-strip {

    margin-top: 70px;

    padding: 40px;

    border-radius: 25px;

    background:
    linear-gradient(
    135deg,
    #1E3A8A,
    #2563EB);

    color: white;

}

.achievement-strip i {

    font-size: 42px;

    color: #FFD166;

    margin-bottom: 15px;

}
/* ===================================== */
/* TESTIMONIALS */
/* ===================================== */

.testimonial-section {

    padding: 120px 0;

    background:
    linear-gradient(
    180deg,
    #F8FAFC,
    #FFFFFF);

}

.testimonial-card {

    background: white;

    padding: 40px;

    border-radius: 25px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

    transition: .4s;

    height: 100%;

}

.testimonial-card:hover {

    transform: translateY(-10px);

}

.stars {

    color: #FFD166;

    font-size: 24px;

    margin-bottom: 20px;

}

.testimonial-card p {

    color: #64748B;

    line-height: 1.9;

    margin-bottom: 25px;

}

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 15px;

}

.testimonial-user img {

    width: 65px;
    height: 65px;

    border-radius: 50%;

    object-fit: cover;

}

.testimonial-user h6 {

    margin-bottom: 5px;

    color: #1E3A8A;

    font-weight: 700;

}

.testimonial-user span {

    color: #64748B;

}

.swiper-pagination-bullet-active {

    background: #F97316 !important;

}

/* ===================================== */
/* GALLERY SECTION */
/* ===================================== */

.gallery-section {

    padding: 120px 0;

    background: #F8FAFC;

}

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

.gallery-item img {

    width: 100%;

    height: 300px;

    object-fit: cover;

    transition: .5s;

}

.gallery-overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
    rgba(30,58,138,.2),
    rgba(30,58,138,.9));

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: .4s;

}

.gallery-overlay h5 {

    color: white;

    font-size: 24px;

    font-weight: 700;

}

.gallery-item:hover img {

    transform: scale(1.1);

}

.gallery-item:hover .gallery-overlay {

    opacity: 1;

}

/* ===================================== */
/* CONTACT SECTION */
/* ===================================== */

.contact-section {

    padding: 120px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #F8FAFC);

}

.contact-info-card,
.contact-form-card {

    background: white;

    padding: 40px;

    border-radius: 25px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}

.contact-item {

    display: flex;

    gap: 20px;

    margin-bottom: 30px;

}

.contact-icon {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #1E3A8A,
    #F97316);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.contact-icon i {

    color: white;

    font-size: 22px;

}

.contact-item h5 {

    color: #1E3A8A;

    font-weight: 700;

}

.contact-item p {

    color: #64748B;

}

.whatsapp-link {

    color: #25D366;

    font-weight: 700;

    text-decoration: none;

}

.contact-form-card h4 {

    color: #1E3A8A;

    font-weight: 800;

}

.form-control,
.form-select {

    height: 55px;

    border-radius: 12px;

    border: 1px solid #ddd;

}

textarea.form-control {

    height: auto;

}

.btn-submit {

    background: #F97316;

    color: white;

    border: none;

    padding: 14px 40px;

    border-radius: 50px;

    font-weight: 700;

}

.btn-submit:hover {

    background: #EA580C;

}

.map-container {

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

/* ===================================== */
/* FLOATING SOCIAL ICONS */
/* ===================================== */

.social-floating {

    position: fixed;

    left: 20px;
    bottom: 25px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.social-icon {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 24px;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);

    transition: all .3s ease;

}

.social-icon:hover {

    transform: translateY(-5px) scale(1.08);

    color: #fff;

}

/* Facebook */

.facebook {

    background: #1877F2;

}

/* Instagram */

.instagram {

    background: linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );

}

/* Existing WhatsApp */

.whatsapp-float {

    position: fixed;

    right: 20px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    z-index: 9999;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);

    animation: pulseWhatsapp 2s infinite;

}

.whatsapp-float:hover {

    color: white;

    transform: scale(1.08);

}

@keyframes pulseWhatsapp {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

    .social-floating {

        left: 10px;
        bottom: 15px;

    }

    .social-icon {

        width: 48px;
        height: 48px;

        font-size: 20px;

    }

    .whatsapp-float {

        width: 52px;
        height: 52px;

        right: 10px;
        bottom: 15px;

        font-size: 24px;

    }

}

    /* ===================================== */
/* FOOTER */
/* ===================================== */

.footer-section {

    background: #0F172A;

    color: white;

    padding-top: 80px;

}

.footer-logo {

    height: 80px;

    margin-bottom: 20px;

}

.footer-about p {

    color: #CBD5E1;

    line-height: 1.9;

}

.footer-section h4 {

    color: white;

    margin-bottom: 25px;

    font-weight: 700;

    position: relative;

}

.footer-section h4::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 50px;
    height: 3px;

    background: #F97316;

}

.footer-section ul {

    list-style: none;

    padding: 0;

}

.footer-section ul li {

    margin-bottom: 12px;

}

.footer-section ul li a {

    color: #CBD5E1;

    text-decoration: none;

    transition: .3s;

}

.footer-section ul li a:hover {

    color: #F97316;

    padding-left: 5px;

}

.footer-contact p {

    color: #CBD5E1;

    margin-bottom: 18px;

}

.footer-contact i {

    color: #F97316;

    width: 25px;

}

.footer-social {

    margin-top: 25px;

}

.footer-social a {

    width: 42px;

    height: 42px;

    background: rgba(255,255,255,.08);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: white;

    margin-right: 10px;

    transition: .3s;

    text-decoration: none;

}

.footer-social a:hover {

    background: #F97316;

    transform: translateY(-5px);

}

.footer-bottom {

    border-top:
    1px solid rgba(255,255,255,.08);

    margin-top: 60px;

    padding: 25px 0;

    color: #94A3B8;

}   

.footer-contact a{

    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;

}

.footer-contact a:hover{

    color:#F97316;

}

.developer-name {

    color: #F97316;

    font-weight: 600;

}
.footer-bottom {

    background:
    linear-gradient(
    90deg,
    #020617,
    #0F172A,
    #020617);

    padding: 20px 0;

    border-top:
    1px solid rgba(249,115,22,.2);

}

.footer-section {

    background: #0F172A;

}

.faculty-section{

    padding:120px 0;

    background:#FFFFFF;

    border-top:
    1px solid rgba(30,58,138,.08);

}

.hero-slider{

    margin-top:0;

}

.hero-slide{

    height:750px;

    display:flex;

    align-items:center;

    padding:0;

}

.hero-slide {

    min-height:650px;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
    135deg,
    #1E3A8A 0%,
    #2563EB 55%,
    #F97316 100%);

}

.hero-title {

    color:white;

    font-size:60px;

    font-weight:900;

    line-height:1.1;

}

.hero-title span {

    color:#FFD166;

}

.hero-subtitle {

    color:white;

    font-size:22px;

    font-weight:600;

}

.hero-description {

    color:white;

    opacity:.9;

    margin:20px 0;

}

.hero-image {

    max-height:520px;

}

.hero-features {

    color:white;

    list-style:none;

    padding:0;

}

.hero-features li {

    margin-bottom:12px;

}

.hero-features li:before {

    content:"✓ ";

    color:#FFD166;

}

.admission-badge {

    background:white;

    color:#F97316;

    padding:10px 20px;

    border-radius:50px;

    font-weight:700;

}

.hero-title {

    color: white;

    font-size: 60px;

    font-weight: 900;

    line-height: 1.15;

    margin-bottom: 20px;

}

.hero-subtitle {

    color: white;

    font-size: 22px;

    font-weight: 600;

    margin-bottom: 15px;

}
.hero-text {

    color: white;

    font-size: 20px;

    margin-bottom: 20px;

}

.hero-buttons{

    margin-top: 35px;

    margin-bottom: 60px;

}
.hero-buttons{

    margin-top: 35px;

    margin-bottom: 60px;

}

.hero-slide{

    min-height: 700px;

    display: flex;

    align-items: center;

}

.hero-content{

    padding-top: 40px;

    padding-bottom: 70px;

}

.hero-slide{

    min-height: 720px;

    padding: 80px 0;

}
.hero-buttons{

    margin-top: 35px;

    margin-bottom: 50px;

}



.hero-slide {

    background: #ffffff;

    min-height: 650px;

    display: flex;

    align-items: center;

}

.hero-badge {

    background: #FFF7ED;

    color: #F97316;

    padding: 12px 24px;

    border-radius: 50px;

    font-weight: 700;

    display: inline-block;

    margin-bottom: 25px;

}

.hero-title {

    font-size: 62px;

    font-weight: 900;

    line-height: 1.15;

    color: #0F172A;

    margin-bottom: 20px;

}

.hero-title span {

    color: #1E3A8A;

}

.hero-subtitle {

    color: #F97316;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;

}

.hero-desc {

    font-size: 22px;

    color: #475569;

    line-height: 1.8;

}

.hero-buttons {

    margin-top: 35px;

}

.btn-apply {

    background: #F97316;

    color: white;

    padding: 14px 35px;

    border-radius: 50px;

    text-decoration: none;

    margin-right: 15px;

    font-weight: 600;

}

.btn-call {

    background: #1E3A8A;

    color: white;

    padding: 14px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

}

.hero-student {

    max-height: 520px;

}

/* ===================================== */
/* TOP HEADER */
/* ===================================== */

.top-header{
    background:#0F172A;

    height:45px;

    position:relative;

    z-index:9999;

}

.navbar{

    position:relative;

    z-index:9998;

}

.top-contact {

    color: #ffffff;

}

.top-contact a {

    color: #ffffff;

    text-decoration: none;

    margin-right: 10px;

    transition: .3s;

}

.top-contact a:hover {

    color: #F97316;

}

.top-contact i {

    color: #F97316;

    margin-right: 5px;

}

.separator {

    margin-left: 15px;

}

.top-social a {

    width: 32px;

    height: 32px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.1);

    color: white;

    border-radius: 50%;

    margin-left: 8px;

    transition: .3s;

    text-decoration: none;

}

.top-social a:hover {

    background: #F97316;

    color: white;

    transform: translateY(-3px);

}

.hero-slide {

    position: relative;

    height: 750px;

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
    90deg,
    rgba(15,23,42,.85) 0%,
    rgba(15,23,42,.45) 50%,
    rgba(15,23,42,.15) 100%);

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 650px;

}

.hero-title {

    color: white;

    font-size: 68px;

    font-weight: 900;

    line-height: 1.1;

}

.hero-title span {

    color: #F97316;

}

.hero-subtitle {

    color: white;

    font-size: 24px;

}

.hero-desc {

    color: white;

    font-size: 20px;

}

.slide-1{

    background-image:
    url('../images/slider/admission-banner.jpeg');

}

.slide-2{

    background-image:
    url('../images/slider/board-preparation.jpeg');

}

.slide-3{

    background-image:
    url('../images/slider/Science-Class.jpeg');

}

.carousel,
.carousel-inner,
.carousel-item{

    margin:0 !important;
    padding:0 !important;

}

/* ===================================== */
/* HERO SLIDER ARROWS */
/* ===================================== */

.custom-arrow {

    width: auto;

    opacity: 1;

}

.arrow-circle {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    backdrop-filter: blur(10px);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .4s ease;

}

.arrow-circle i {

    color: white;

    font-size: 24px;

}

.custom-arrow:hover .arrow-circle {

    background: #F97316;

    transform: scale(1.1);

}

/* Position */

.carousel-control-prev {

    left: 25px;

}

.carousel-control-next {

    right: 25px;

}

.header-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.enquiry-btn{

    background:#F97316;

    color:#fff;

    animation:pulseBtn 2s infinite;

}

.career-btn{

    background:#0B4F9C;

    color:#fff;

    margin-left:12px;

}

.header-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.18);

}

.enquiry-btn:hover{

    background:#E55D00;

    color:#fff;

}

.career-btn:hover{

    background:#F97316;

    color:#fff;

}

.header-btn i{

    transition:.3s;

}

.header-btn:hover i{

    transform:translateX(4px);

}

@keyframes pulseBtn{

0%{

box-shadow:0 0 0 0 rgba(249,115,22,.6);

}

70%{

box-shadow:0 0 0 14px rgba(249,115,22,0);

}

100%{

box-shadow:0 0 0 0 rgba(249,115,22,0);

}

}

/*====================================
POPUP MODAL
====================================*/

.custom-modal{

    border:none;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 30px 60px rgba(0,0,0,.25);

}

.custom-modal .modal-header{

    background:linear-gradient(135deg,#0B4F9C,#173B8F,#F97316);

    color:#fff;

    padding:25px 35px;

    border:none;

}

.custom-modal .modal-header h3{

    font-size:28px;

    font-weight:700;

}

.custom-modal .modal-body{

    padding:35px;

    background:#fff;

}

.custom-modal .form-control,

.custom-modal .form-select{

    height:55px;

    border-radius:12px;

    border:1px solid #ddd;

    box-shadow:none;

}

.custom-modal textarea.form-control{

    height:auto;

    resize:none;

}

.custom-modal .form-control:focus,

.custom-modal .form-select:focus{

    border-color:#F97316;

    box-shadow:0 0 0 .2rem rgba(249,115,22,.15);

}

.popup-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#F97316,#FF8C2A);

    color:#fff;

    font-size:18px;

    font-weight:600;

    transition:.4s;

}

.popup-btn:hover{

    background:linear-gradient(135deg,#0B4F9C,#173B8F);

    transform:translateY(-3px);

}

.upload-label{

    font-weight:600;

    color:#0B4F9C;

    margin-bottom:10px;

    display:block;

}

.modal.fade .modal-dialog{

    transform:translateY(-50px) scale(.9);

    transition:all .35s ease;

}

.modal.show .modal-dialog{

    transform:translateY(0) scale(1);

}

.modal-backdrop.show{

    opacity:.75;

    backdrop-filter:blur(6px);

}

.btn-close{

    filter:invert(1);

}

.modal{

    z-index:99999;

}

.modal-backdrop{

    z-index:99998;

}

.modal{

    z-index:99999;

}

.modal-backdrop{

    z-index:99998;

}

/*==============================
PREMIUM TOP HEADER
==============================*/

.top-header{

    background:linear-gradient(90deg,#071B3A,#0B4F9C);

    color:#fff;

    padding:10px 0;

    font-size:14px;

}

.top-contact{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-contact a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.top-contact a:hover{

    color:#FFD54F;

}

.top-contact i{

    color:#F97316;

    margin-right:8px;

}

.top-announcement{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:rgba(255,255,255,.12);

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    animation:pulseAnnouncement 2s infinite;

}

.top-announcement i{

    color:#FFD54F;

}

@keyframes pulseAnnouncement{

    0%{

        box-shadow:0 0 0 0 rgba(255,255,255,.30);

    }

    70%{

        box-shadow:0 0 0 12px rgba(255,255,255,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(255,255,255,0);

    }

}

.top-right{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:15px;

}

.demo-btn{

    background:#F97316;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.demo-btn:hover{

    background:#fff;

    color:#0B4F9C;

}

.top-social{

    display:flex;

    gap:10px;

}

.top-social a{

    width:36px;

    height:36px;

    background:rgba(255,255,255,.12);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.top-social a:hover{

    background:#F97316;

    transform:translateY(-3px);

}

.top-header{

    height:60px;

    display:flex;

    align-items:center;

    background:linear-gradient(90deg,#071B3A,#0B4F9C);

}

.top-contact{

    display:flex;

    align-items:center;

    gap:30px;

}

.top-contact a{

    font-size:15px;

    font-weight:500;

}

.top-contact i{

    width:24px;

    text-align:center;

    color:#F97316;

    margin-right:8px;

}

.top-announcement{

    padding:10px 24px;

    font-size:15px;

    border-radius:40px;

}

.demo-btn{

    padding:11px 22px;

    font-size:15px;

    border-radius:35px;

}
.top-social a{

    width:40px;

    height:40px;

    font-size:15px;

}
.top-right{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:18px;

}