:root{

--primary:#0F3D91;
--secondary:#1E5EFF;
--gold:#F4B400;
--orange:#FF7A00;
--dark:#071A3D;
--light:#F8FAFC;

}

body{
font-family:'Poppins',sans-serif;
overflow-x:hidden;
}

/* TOP BAR */

.top-bar{
background:var(--dark);
color:#fff;
padding:8px 0;
font-size:14px;
}

.top-bar-content{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:15px;
}

/* NAVBAR */

.custom-navbar{
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.logo-img{
height:60px;
margin-right:12px;
}

.brand-text h5{
margin:0;
font-weight:700;
color:var(--primary);
}

.brand-text small{
color:#666;
}

.nav-link{
font-weight:600;
color:#333 !important;
}

.btn-apply{
background:var(--orange);
color:#fff;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

/* HERO */

.hero-section{
padding:100px 0;
background:
linear-gradient(
135deg,
#f8fbff,
#eef5ff
);
}

.hero-badge{
display:inline-block;
background:#e8f0ff;
padding:10px 18px;
border-radius:50px;
font-weight:600;
color:var(--primary);
margin-bottom:20px;
}

.hero-title{
font-size:58px;
font-weight:800;
line-height:1.2;
color:var(--dark);
}

.hero-subtitle{
font-size:20px;
color:var(--primary);
margin:20px 0;
}

.hero-text{
font-size:18px;
line-height:1.8;
color:#555;
}

.hero-btns{
margin-top:30px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary-custom{
background:var(--orange);
color:#fff;
padding:15px 30px;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

.btn-outline-custom{
border:2px solid var(--primary);
color:var(--primary);
padding:15px 30px;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

.hero-image-wrapper{
position:relative;
}

.floating-card{
position:absolute;
background:#fff;
padding:15px 20px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
text-align:center;
}

.card-one{
top:10%;
left:-20px;
}

.card-two{
top:45%;
right:-20px;
}

.card-three{
bottom:10%;
left:30px;
}

/* TRUST BAR */

.trust-bar{
background:var(--primary);
padding:14px 0;
overflow:hidden;
}

.trust-track{
display:flex;
gap:50px;
white-space:nowrap;
color:#fff;
font-weight:600;
animation:scroll 25s linear infinite;
}

@keyframes scroll{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}

/* COUNTERS */

.counter-section{
padding:80px 0;
background:#fff;
}

.counter-card{
background:#fff;
padding:30px;
border-radius:20px;
text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.counter-card:hover{
transform:translateY(-8px);
border-color:var(--gold);
}

.counter-card h2{
font-size:50px;
color:var(--primary);
font-weight:800;
}
.counter-card:before{

content:'';

position:absolute;

top:0;
left:0;

width:100%;
height:5px;

background:var(--orange);

}


/* SECTION TITLE */

.section-header{
margin-bottom:60px;
}

.section-tag{
color:var(--orange);
font-weight:700;
letter-spacing:1px;
}

.courses-section{

padding:90px 0;

background:#f8fafc;

}

.course-card{

background:#fff;

border-radius:22px;

overflow:hidden;

height:100%;

display:flex;

flex-direction:column;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:all .45s ease;

position:relative;

}

/* Orange Top Border */

.course-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:0;
height:5px;

background:var(--orange);

transition:.45s;

z-index:2;

}

.course-card:hover::before{

width:100%;

}

/* Card Hover */

.course-card:hover{

transform:translateY(-12px);

box-shadow:0 22px 45px rgba(0,0,0,.15);

}

/* Image Wrapper */

.course-card img{

width:100%;

height:220px;

object-fit:cover;

transition:transform .6s ease;

}

/* Image Zoom */

.course-card:hover img{

transform:scale(1.08);

}

/* Content */

.course-content{

padding:25px;

display:flex;

flex-direction:column;

flex:1;

}

.course-content h4{

font-size:24px;

font-weight:700;

color:var(--primary);

margin-bottom:12px;

}

.course-content p{

color:#666;

line-height:1.7;

flex-grow:1;

}

/* Link */

.course-content a{

display:inline-flex;

align-items:center;

gap:10px;

font-weight:700;

color:var(--orange);

text-decoration:none;

transition:.3s;

}

.course-content a i{

transition:.3s;

}

.course-content a:hover{

color:var(--primary);

}

.course-content a:hover i{

transform:translateX(8px);

}

/* Mobile */

@media(max-width:768px){

.course-card img{

height:180px;

}

}

.services-section{
padding:100px 0;
background:#f8fafc;
}

.service-card{
background:#fff;
padding:35px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.service-card:hover{
background:var(--primary);
color:#fff;
transform:translateY(-10px);
}

.service-card i{
font-size:50px;
color:var(--gold);
margin-bottom:20px;
}

/* Right Side */

.why-section h2{

font-size:48px;

font-weight:800;

line-height:1.2;

margin-bottom:35px;

}

.why-item{

display:flex;

align-items:center;

padding:18px 22px;

margin-bottom:16px;

background:#fff;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

transition:.4s;

}

.why-item:hover{

transform:translateX(10px);

border-left:5px solid var(--orange);

}

.why-item i{

font-size:20px;

margin-right:15px;

color:var(--orange);

}

/* Mobile */

@media(max-width:991px){

.why-image-wrapper{

height:auto;

margin-bottom:50px;

}

.circle-bg{

width:320px;

height:320px;

}

.why-image{

width:100%;

}



.why-section h2{

font-size:34px;

text-align:center;

}

}

.why-image-wrapper{

position:relative;

height:650px;

display:flex;

align-items:center;

justify-content:center;

}

/* Decorative Circle */

.circle-bg{

position:absolute;

width:580px;
height:580px;

background:#eef5ff;

border-radius:50%;

z-index:1;

}

/* Image */

.why-image{

position:relative;

width:110%;

z-index:2;

transition:.5s;

}

.why-image:hover{

transform:scale(1.05);

}

.enquiry-section{
padding:100px 0;
background:linear-gradient(
135deg,
var(--primary),
var(--secondary)
);
color:#fff;
}

.enquiry-card{
background:#fff;
padding:35px;
border-radius:20px;
}

.enquiry-card input,
.enquiry-card textarea{

color:#333;

}

.btn-submit{
background:var(--orange);
border:none;
padding:14px 30px;
color:#fff;
border-radius:40px;
font-weight:600;
width:100%;
}

.college-section{
padding:100px 0;
background:#fff;
}

.college-slider{
overflow:hidden;
}

.college-track{
display:flex;
gap:40px;
animation:slide 25s linear infinite;
}

.college-logo img{
height:80px;
max-width:160px;
object-fit:contain;
}

@keyframes slide{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

.testimonial-section{
padding:100px 0;
background:#f8fafc;
}

.testimonial-slider{
overflow:hidden;
position:relative;
width:100%;
}

.testimonial-track{
display:flex;
gap:25px;
width:max-content;
animation:testimonialScroll 10s linear infinite;
}

.testimonial-track:hover{
animation-play-state:paused;
}

.testimonial-card{
width:350px;
min-width:350px;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@keyframes testimonialScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


.map-section{
padding:100px 0;
}

/* CTA SECTION */

.cta-section{

    padding:120px 0;

    background:
    linear-gradient(
        rgba(7,26,61,.80),
        rgba(15,61,145,.80)
    ),
    url('../images/cta-bg.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;
    overflow:hidden;

}

/* Floating Animation */

.cta-title{

font-size:52px;
font-weight:800;
color:#fff;

animation:floatText 3s ease-in-out infinite;

}

@keyframes floatText{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}

.cta-subtitle{

font-size:18px;
max-width:750px;

margin:20px auto;

color:#fff;

}

.cta-tag{

display:inline-block;

background:rgba(255,255,255,.15);

padding:10px 20px;

border-radius:50px;

color:#fff;

margin-bottom:20px;

backdrop-filter:blur(10px);

}

/* BUTTONS */

.cta-buttons{

display:flex;

justify-content:center;

gap:25px;

margin-top:40px;

flex-wrap:wrap;

}

.cta-btn-primary,
.cta-btn-secondary{

padding:16px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

display:inline-flex;

align-items:center;

gap:12px;

transition:.4s;

position:relative;

overflow:hidden;

}

/* APPLY BUTTON */

.cta-btn-primary{

background:var(--orange);

color:#fff;

}

/* CALL BUTTON */

.cta-btn-secondary{

background:#fff;

color:var(--primary);

}

/* Hover Effects */

.cta-btn-primary:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(255,122,0,.45);

color:#fff;

}

.cta-btn-secondary:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(255,255,255,.25);

color:var(--primary);

}

/* Icon Animation */

.cta-btn-primary i,
.cta-btn-secondary i{

transition:.3s;

}

.cta-btn-primary:hover i{

transform:translateX(6px);

}

.cta-btn-secondary:hover i{

transform:rotate(15deg);

}

/* Shine Effect */

.cta-btn-primary:before,
.cta-btn-secondary:before{

content:'';

position:absolute;

top:0;
left:-100%;

width:100%;
height:100%;

background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,.3),
transparent
);

transition:.7s;

}

.cta-btn-primary:hover:before,
.cta-btn-secondary:hover:before{

left:100%;

}

/* =====================================
GLOBAL BUTTON STYLE
===================================== */

.btn-primary-custom,
.btn-outline-custom,
.btn-submit,
.btn-apply,
.cta-btn-primary,
.cta-btn-secondary{

display:inline-flex;
align-items:center;
justify-content:center;

gap:10px;

padding:14px 30px;

border-radius:50px;

font-weight:700;

text-decoration:none;

position:relative;

overflow:hidden;

transition:.4s ease;

}

/* SHINE EFFECT */

.btn-primary-custom:before,
.btn-outline-custom:before,
.btn-submit:before,
.btn-apply:before,
.cta-btn-primary:before,
.cta-btn-secondary:before{

content:'';

position:absolute;

top:0;
left:-100%;

width:100%;
height:100%;

background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,.35),
transparent
);

transition:.7s;

}

.btn-primary-custom:hover:before,
.btn-outline-custom:hover:before,
.btn-submit:hover:before,
.btn-apply:hover:before,
.cta-btn-primary:hover:before,
.cta-btn-secondary:hover:before{

left:100%;

}

/* LIFT EFFECT */

.btn-primary-custom:hover,
.btn-outline-custom:hover,
.btn-submit:hover,
.btn-apply:hover,
.cta-btn-primary:hover,
.cta-btn-secondary:hover{

transform:translateY(-5px);

}

/* ICON ANIMATION */

.btn-primary-custom i,
.btn-outline-custom i,
.btn-submit i,
.btn-apply i,
.cta-btn-primary i,
.cta-btn-secondary i{

transition:.3s;

}

.btn-primary-custom:hover i,
.btn-submit:hover i,
.cta-btn-primary:hover i{

transform:translateX(6px);

}

.btn-outline-custom:hover i,
.cta-btn-secondary:hover i{

transform:rotate(15deg);

}

.footer-section{
background:var(--dark);
color:#fff;
padding:70px 0 20px;
}

.footer-section ul{
list-style:none;
padding:0;
}

.footer-section ul li{
margin-bottom:10px;
}

.footer-section ul li a{

display:inline-block;
transition:.3s;

}

.footer-section ul li a:hover{

padding-left:6px;
color:var(--orange);

}

.footer-section ul li i{
width:20px;
color:var(--orange);
margin-right:8px;
}

.footer-title{
position:relative;
padding-bottom:12px;
margin-bottom:20px;
font-weight:700;
}

.footer-title:after{

content:'';

position:absolute;

left:0;
bottom:0;

width:60px;
height:3px;

background:var(--orange);

}

.footer-section a{

color:#fff;
text-decoration:none;
transition:.3s;

}

.footer-section a:hover{

color:var(--orange);

}

.footer-logo-box{

display:flex;
align-items:center;
gap:12px;

margin-bottom:15px;

}

.social-icons{

display:flex;
gap:12px;
margin-top:20px;

}

.social-icons a{

width:42px;
height:42px;

border-radius:50%;

background:rgba(255,255,255,.12);

display:flex;
align-items:center;
justify-content:center;

color:#ffffff;

transition:.3s;

}

.social-icons a i{

color:#ffffff;

font-size:18px;

}

.social-icons a:hover{

background:var(--orange);

transform:translateY(-3px);

}

.social-icons a:hover i{

color:#ffffff;

}



/* ==========================================
FLOATING ACTION BUTTONS
========================================== */

.floating-whatsapp,
.floating-call,
.floating-apply{

position:fixed;

right:25px;

width:60px;
height:60px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:#fff;

font-size:24px;

text-decoration:none;

z-index:9999;

transition:all .35s ease;

animation:floatButton 3s ease-in-out infinite;

box-shadow:0 12px 30px rgba(0,0,0,.25);

}

/* Positions */

.floating-whatsapp{

bottom:220px;

background:#25D366;

}

.floating-call{

bottom:125px;

background:#ff7a00;

}

.floating-apply{

bottom:30px;

background:#0F3D91;

}

/* Floating Animation */

@keyframes floatButton{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}

/* Ripple Effect */

.floating-whatsapp::before,
.floating-call::before,
.floating-apply::before{

content:"";

position:absolute;

width:100%;
height:100%;

border-radius:50%;

background:inherit;

z-index:-1;

animation:ripple 2s infinite;

opacity:.6;

}

@keyframes ripple{

0%{
transform:scale(1);
opacity:.45;
}

100%{
transform:scale(1.35);
opacity:0;
}

}

/* Hover */

.floating-whatsapp:hover,
.floating-call:hover,
.floating-apply:hover{

transform:scale(1.18);

box-shadow:0 18px 45px rgba(0,0,0,.35);

color:#fff;

}

/* Icon Animation */

.floating-whatsapp i,
.floating-call i,
.floating-apply i{

transition:.4s;

}

.floating-whatsapp:hover i{

transform:rotate(-15deg);

}

.floating-call:hover i{

transform:rotate(20deg);

}

.floating-apply:hover i{

transform:translateX(5px);

}

/* Labels */

.floating-whatsapp::after,
.floating-call::after,
.floating-apply::after{

position:absolute;

right:75px;

padding:8px 15px;

border-radius:30px;

background:#071A3D;

color:#fff;

font-size:14px;

font-weight:600;

white-space:nowrap;

opacity:0;

transform:translateX(20px);

transition:.35s;

pointer-events:none;

}

/* Individual Text */

.floating-whatsapp::after{

content:"WhatsApp";

}

.floating-call::after{

content:"Call Now";

}

.floating-apply::after{

content:"Admission Enquiry";

}

/* Show Label */

.floating-whatsapp:hover::after,
.floating-call:hover::after,
.floating-apply:hover::after{

opacity:1;

transform:translateX(0);

}

.floating-whatsapp{
animation:floatButton 3s ease-in-out infinite;
}

.floating-call{
animation:floatButton 3s ease-in-out infinite .5s;
}

.floating-apply{
animation:floatButton 3s ease-in-out infinite 1s;
}


/* Mobile */

@media(max-width:768px){

.floating-whatsapp,
.floating-call,
.floating-apply{

width:55px;
height:55px;

font-size:22px;

right:15px;

}

.floating-whatsapp::after,
.floating-call::after,
.floating-apply::after{

display:none;

}

}



/* COLLEGE SHOWCASE */


.hero-showcase{

position:relative;

}

.featured-college{

position:relative;

overflow:hidden;

border-radius:30px;

box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.college-main-image{

height:560px;

width:100%;

object-fit:cover;

transition:transform .8s ease;

}

.carousel-item.active .college-main-image{

animation:zoomImage 4s ease-in-out;

}

@keyframes zoomImage{

0%{
transform:scale(1);
}

100%{
transform:scale(1.08);
}

}

.premium-badge{

position:absolute;

top:25px;
left:25px;

background:#fff;

padding:12px 18px;

border-radius:50px;

display:flex;

align-items:center;

gap:10px;

font-weight:700;

box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.premium-badge i{

color:var(--orange);

font-size:22px;

}

.college-overlay{

position:absolute;

left:0;
right:0;
bottom:0;

padding:35px;

background:linear-gradient(
to top,
rgba(0,0,0,.88),
transparent
);

color:#fff;

}

.college-overlay h3{

font-size:30px;

font-weight:700;

margin-bottom:8px;

}

.college-overlay p{

margin:0;

font-size:17px;

}

#collegeCarousel .carousel-control-prev,
#collegeCarousel .carousel-control-next{

width:50px;
height:50px;

background:rgba(255,255,255,.95);

border-radius:50%;

top:50%;

transform:translateY(-50%);

opacity:.9;

}

#collegeCarousel .carousel-control-prev{

left:20px;

}

#collegeCarousel .carousel-control-next{

right:20px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

filter:invert(1);

}




.featured-college{
position:relative;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.featured-college img{
width:100%;
height:500px;
object-fit:cover;
}

.premium-badge{
position:absolute;
top:20px;
left:20px;
background:#fff;
padding:15px 20px;
border-radius:15px;
font-weight:600;
display:flex;
gap:10px;
align-items:center;
}

/* .college-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:25px;
background:linear-gradient(
to top,
rgba(0,0,0,.85),
transparent
);
color:#fff;
} */



.slider-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#fff;
font-size:22px;
cursor:pointer;
}

.prev-btn{
left:20px;
}

.next-btn{
right:20px;
}

.hero-features{
display:flex;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

.feature-box{
text-align:center;
min-width:100px;
}

.feature-box i{
font-size:32px;
color:#0F3D91;
margin-bottom:10px;
}

@media(max-width:768px){

.hero-stats-card{
display:none;
}

.college-main-image{
height:300px;
}

}


/* =====================================
COLLEGE SLIDER
===================================== */

.college-section{

padding:110px 0;

background:#fff;

}

.collegeSwiper{

padding:20px 0 40px;

}

.swiper-slide{

display:flex;

justify-content:center;

align-items:center;

height:auto;

}

.college-logo{

background:#fff;

width:220px;

height:140px;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

padding:20px;

border:1px solid #eee;

transition:.4s;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.college-logo:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.12);

border-color:var(--orange);

}

.college-logo img{

max-width:160px;

max-height:90px;

object-fit:contain;

transition:.4s;

}

.college-logo:hover img{

transform:scale(1.08);

}



.success-section{
padding:100px 0;
background:#f8fafc;
}

.success-card{

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.success-card:hover{

transform:translateY(-10px);

}

.student-photo{

width:100px;
height:100px;

border-radius:50%;

object-fit:cover;

margin-bottom:20px;

border:4px solid var(--orange);

}

.success-card h4{

color:var(--primary);

font-weight:700;

margin-bottom:5px;

}

.success-card span{

display:block;

color:var(--orange);

font-weight:600;

margin-bottom:15px;

}

#successCarousel .carousel-control-prev,
#successCarousel .carousel-control-next{

width:50px;
height:50px;

background:var(--primary);

border-radius:50%;

top:50%;

transform:translateY(-50%);

}

/* PRELOADER */

#preloader{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:#fff;

z-index:99999;

display:flex;
align-items:center;
justify-content:center;

}

.loader-box{
text-align:center;
}

.loader-box img{
height:80px;
margin-bottom:20px;
}

.loader-spinner{

width:50px;
height:50px;

border:5px solid #eee;
border-top:5px solid var(--orange);

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{
transform:rotate(360deg);
}

}


.contact-info-card{

background:#fff;

padding:30px;

height:100%;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-info-card p{

margin-bottom:20px;

}

.contact-info-card i{

color:var(--orange);

width:25px;

}



.copyright-bar{

background:#05112b;

color:#fff;

text-align:center;

padding:15px;

font-size:14px;

}

/* COLLEGE SHOWCASE */



/* MOBILE */

@media(max-width:768px){

.hero-title{
font-size:38px;
}

.hero-section{
text-align:center;
padding-top:130px;
}

.hero-btns a{
margin-bottom:10px;
}

.section-heading h2{
font-size:32px;
}

.enquiry-box{
position:relative;
top:0;
margin-top:40px;
}

}

@media(max-width:768px){

.card-one,
.card-two,
.card-three{

position:relative;
left:auto;
right:auto;
top:auto;
bottom:auto;
margin:10px auto;

}

}

