/* ===========================
Google Font
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f8fbff;
color:#222;
overflow-x:hidden;
}

a{
text-decoration:none;
}

section{
padding:90px 0;
}

/* Navbar */

.navbar{
transition:.4s;
background:#fff;
}

.navbar-brand{
font-size:32px;
font-weight:700;
}

.nav-link{
font-weight:500;
margin-left:15px;
transition:.3s;
}

.nav-link:hover{
color:#0d6efd!important;
}

/* Hero */

.hero{

min-height:95vh;

display:flex;

align-items:center;

background:
linear-gradient(135deg,#eef7ff,#ffffff);

}

.hero h1{

font-size:58px;

font-weight:800;

line-height:1.2;

}

.hero p{

font-size:18px;

color:#666;

}

.hero img{

animation:float 5s infinite ease-in-out;

}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/* Buttons */

.btn{

border-radius:50px;

padding:14px 30px;

font-weight:600;

transition:.3s;

}

.btn:hover{

transform:translateY(-4px);

}

/* Cards */

.card{

border-radius:20px;

transition:.4s;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/* Section Heading */

h2{

font-weight:700;

margin-bottom:15px;

}

section p{

color:#666;

}

/* Course Icons */

.card i{

margin-bottom:20px;

}

/* Abroad Section */

#abroad img{

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/* Contact */

#contact{

background:linear-gradient(135deg,#0d6efd,#0b5ed7);

}

#contact p{

color:#fff;

}

#contact form{

border-radius:20px;

}

#contact input,
#contact textarea,
#contact select{

height:55px;

border-radius:12px;

}

textarea{

height:140px!important;

resize:none;

}

/* Footer */

footer{

background:#111;

}

footer h4{

font-weight:700;

}

/* WhatsApp */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

color:#fff;

box-shadow:0 15px 30px rgba(0,0,0,.3);

z-index:999;

transition:.3s;

}

.whatsapp:hover{

color:white;

transform:scale(1.1);

}

/* Responsive */

@media(max-width:992px){

.hero{

text-align:center;

padding-top:80px;

}

.hero h1{

font-size:40px;

}

.hero img{

margin-top:40px;

}

}

@media(max-width:768px){

.hero h1{

font-size:34px;

}

.navbar-brand{

font-size:26px;

}

.btn{

width:100%;

margin-bottom:10px;

}

.card{

margin-bottom:15px;

}

section{

padding:70px 0;

}

}

/* ===========================
SECTION TITLE
=========================== */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
font-weight:800;
color:#0d6efd;
}

.section-title p{
max-width:700px;
margin:auto;
font-size:18px;
}

/* Statistics */

.counter-box{

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.counter-box:hover{

transform:translateY(-10px);

}

.counter-box h2{

font-size:48px;

font-weight:700;

color:#0d6efd;

}

.counter-box p{

margin-top:10px;

font-weight:500;

}

/* Service Cards */

.service-card{

background:#fff;

padding:35px;

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card i{

font-size:55px;

margin-bottom:20px;

color:#0d6efd;

}

/* Testimonial */

.testimonial{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.testimonial:hover{

transform:translateY(-8px);

}

.testimonial img{

width:70px;

height:70px;

border-radius:50%;

margin-bottom:20px;

}

/* Country Badges */

.country{

display:inline-block;

padding:12px 20px;

margin:8px;

border-radius:50px;

background:#0d6efd;

color:white;

font-weight:600;

transition:.3s;

}

.country:hover{

background:#198754;

transform:translateY(-5px);

}

/* Contact Form */

form{

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

form button{

height:55px;

font-size:18px;

}

/* Scroll Animation */

.fade-up{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.fade-up.active{

opacity:1;

transform:translateY(0);

}

/* Loader */

.loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader::after{

content:"";

width:60px;

height:60px;

border:6px solid #ddd;

border-top:6px solid #0d6efd;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eee;

}

::-webkit-scrollbar-thumb{

background:#0d6efd;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#198754;

}