/* ===========================
   NEXT UPNOVA PREMIUM CSS
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* ===========================
TOP BAR
===========================*/

.top-bar{
    background:#0B4EA2;
    padding:8px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left{
    display:flex;
    gap:25px;
}

.top-left a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
}

.top-left i{
    margin-right:8px;
}

.top-btn{
    text-decoration:none;
    background:#FFD54F;
    color:#0B4EA2;
    padding:8px 20px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.top-btn:hover{
    background:#fff;
}

/* ===========================
HEADER
===========================*/

header{
position:sticky;
top:0;
z-index:999;
background:rgba(255,255,255,.92);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border-bottom:1px solid rgba(11,78,162,.08);
box-shadow:0 10px 35px rgba(0,0,0,.06);
transition:all .35s ease;
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
min-height:64px;
padding:0;
}

.logo img{
width:125px;
height:auto;
display:block;
transition:.35s;
}

nav ul{
display:flex;
list-style:none;
gap:38px;
align-items:center;
}

nav ul li a{
text-decoration:none;
color:#222;
font-size:16px;
font-weight:600;
position:relative;
transition:.35s;
padding:8px 0;
}

nav ul li a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0%;
height:3px;
background:#0B4EA2;
border-radius:20px;
transition:.35s;
}

nav ul li a:hover::after,
nav ul li a.active::after{
width:100%;
}

nav ul li a:hover,

nav ul li a.active{

color:#0B4EA2;

}

.main-btn{
display:inline-flex;
align-items:center;
justify-content:center;
text-decoration:none;
background:#0B4EA2;
color:#fff;
padding:11px 24px;
border-radius:50px;
font-weight:600;
font-size:16px;
border:none;
cursor:pointer;
transition:all .35s ease;
box-shadow:0 8px 20px rgba(11,78,162,.25);
}

.main-btn:hover{
background:#073D82;
transform:translateY(-3px);
box-shadow:0 14px 30px rgba(11,78,162,.35);
}

.outline-btn{
display:inline-flex;
align-items:center;
justify-content:center;
text-decoration:none;
border:2px solid #0B4EA2;
padding:11px 24px;
border-radius:50px;
font-weight:600;
font-size:16px;
color:#0B4EA2;
background:#fff;
transition:all .35s ease;
}

.outline-btn:hover{
background:#0B4EA2;
color:#fff;
transform:translateY(-3px);
box-shadow:0 14px 30px rgba(11,78,162,.25);
}

/* ===========================
HERO
===========================*/

.hero{
position:relative;
overflow:hidden;
display:flex;
align-items:center;
padding:40px 0 90px;
background:linear-gradient(135deg,#eef6ff 0%,#ffffff 55%,#eef5ff 100%);
border-bottom:1px solid rgba(0,0,0,.05);
}

.hero::before{
    content:none;
}

.hero .container{
    position:relative;
    z-index:5;
}

.hero-box{
display:grid;
grid-template-columns:1fr 1.05fr;
align-items:start;     /* center ki jagah start */
gap:40px;
padding:10px 0;
}
.tag{

display:inline-block;

background:#FFD54F;

padding:10px 22px;

border-radius:50px;

font-weight:600;

margin-bottom:25px;

}

.hero-content{
position:relative;
margin-top:-70px;
z-index:2;
padding-top:20px;
}

.hero-content h1{
font-size:64px;
line-height:1.05;
font-weight:800;
letter-spacing:-2px;
margin-bottom:18px;
}

.hero-content h1 span{

color:#0B4EA2;

}

.hero-content p{
font-size:19px;
line-height:34px;
max-width:640px;
color:#444;
margin:20px 0 35px;
}

.hero-btns{
display:flex;
align-items:center;
gap:18px;
margin-top:15px;
margin-bottom:25px;
}

.hero-image{
display:flex;
justify-content:flex-end;
align-items:flex-start;
position:relative;
z-index:10;
}

.hero-image img{
width:100%;
max-width:900px;
border-radius:20px;
box-shadow:0 25px 60px rgba(0,0,0,.18);
transition:.4s ease;
margin-top:-5px;
}

.hero-image img:hover{
transform:translateY(-6px) scale(1.12);
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

/* ===========================
RESPONSIVE
===========================*/

@media(max-width:992px){

.navbar{

flex-direction:column;

gap:20px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

}

.hero-box{

grid-template-columns:1fr;

text-align:center;

}

.hero-btns{

justify-content:center;

}

.hero-content h1{

font-size:46px;

}

.top-bar .container{

flex-direction:column;

gap:15px;

}

}

@media(max-width:600px){

.logo img{

height:70px;

}

.hero-content h1{

font-size:34px;

}

.hero-btns{

flex-direction:column;

gap:15px;

}

.outline-btn{

margin-left:0;

}

.top-left{

flex-direction:column;

gap:8px;

}

}

/*=========================
WHY SECTION
=========================*/

.why{

padding:90px 0;

background:#fff;

}

.section-title{

text-align:center;

max-width:700px;

margin:auto;

margin-bottom:60px;

}

.section-title span{

display:inline-block;

background:#FFD54F;

padding:8px 18px;

border-radius:40px;

font-weight:600;

margin-bottom:15px;

}

.section-title h2{

font-size:42px;

margin-bottom:15px;

color:#0B4EA2;

}

.section-title p{

color:#666;

font-size:17px;

line-height:30px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

text-align:center;

}

.why-card:hover{

transform:translateY(-12px);

}

.why-card i{

font-size:45px;

color:#0B4EA2;

margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

font-size:22px;

}

.why-card p{

color:#666;

line-height:28px;

}

/*=========================
COUNTER
=========================*/

.counter{

background:#0B4EA2;

padding:80px 0;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

text-align:center;

gap:30px;

}

.counter-grid h2{

font-size:55px;

color:#FFD54F;

margin-bottom:10px;

}

.counter-grid p{

color:#fff;

font-size:20px;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.why-grid{

grid-template-columns:1fr;

}

.counter-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:32px;

}

}
/*=========================
DESTINATIONS
=========================*/

.destinations{
padding:100px 0;
background:#f8fbff;
}

.destination-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.destination-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
}

.destination-card:hover{
transform:translateY(-10px);
}

.destination-card h3{
font-size:26px;
margin-bottom:15px;
color:#0B4EA2;
}

.destination-card p{
line-height:28px;
color:#666;
margin-bottom:20px;
}

.destination-card a{
text-decoration:none;
font-weight:600;
color:#0B4EA2;
}

/*=========================
CTA
=========================*/

.cta{
padding:90px 0;
background:#0B4EA2;
text-align:center;
}

.cta h2{
font-size:46px;
color:#fff;
margin-bottom:20px;
}

.cta p{
color:#fff;
font-size:18px;
margin-bottom:35px;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.destination-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.destination-grid{
grid-template-columns:1fr;
}

.cta h2{
font-size:32px;
}

}
/*=========================
destinations
=========================*/

.destinations{
padding:100px 0;
background:#fff;
}

.university-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.university-card{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
text-align:center;
border-top:5px solid #0B4EA2;
}

.university-card:hover{
transform:translateY(-10px);
}

.university-card h3{
font-size:22px;
margin-bottom:10px;
color:#0B4EA2;
}

.university-card p{
color:#666;
}

/*=========================
PROCESS
=========================*/

.process{
padding:100px 0;
background:#f7faff;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}

.process-box{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
}

.number{
width:70px;
height:70px;
background:#0B4EA2;
color:#fff;
margin:auto;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:bold;
margin-bottom:20px;
}

.process-box h3{
margin-bottom:15px;
}

.process-box p{
line-height:28px;
color:#666;
}

@media(max-width:991px){

.university-grid{
grid-template-columns:repeat(2,1fr);
}

.process-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.university-grid,
.process-grid{
grid-template-columns:1fr;
}

}

/*=========================
TESTIMONIALS
=========================*/

.testimonials{

padding:100px 0;

background:#fff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card p{

line-height:30px;

margin-bottom:20px;

color:#555;

}

.testimonial-card h3{

color:#0B4EA2;

}

/*=========================
FAQ
=========================*/

.faq{

padding:100px 0;

background:#f7faff;

}

.faq-box{

background:#fff;

padding:25px;

margin-bottom:20px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.faq-box h3{

margin-bottom:10px;

color:#0B4EA2;

}

/*=========================
FOOTER
=========================*/

footer{

background:#071D49;

color:#fff;

padding:70px 0 20px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

}

.footer-grid h3{

margin-bottom:20px;

}

.footer-grid ul{

list-style:none;

}

.footer-grid li{

margin-bottom:12px;

}

.footer-grid a{

color:#fff;

text-decoration:none;

}

.footer-grid p{

line-height:30px;

color:#ddd;

}

.copyright{

text-align:center;

margin-top:50px;

border-top:1px solid rgba(255,255,255,.2);

padding-top:20px;

}

/*=========================
WHATSAPP
=========================*/

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}

@media(max-width:991px){

.testimonial-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

}

/*=========================
MISSION
=========================*/

.mission-section{

padding:100px 0;

background:#f7faff;

}

.mission-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.mission-card{

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.mission-card:hover{

transform:translateY(-10px);

}

.mission-card .icon{

width:80px;

height:80px;

margin:auto;

background:#0B4EA2;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

margin-bottom:25px;

}

.mission-card h3{

margin-bottom:15px;

}

.mission-card p{

line-height:30px;

color:#666;

}

/*=========================
WHY ABOUT
=========================*/

.why-about{

padding:100px 0;

background:#fff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.why-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.why-card:hover{

background:#0B4EA2;

color:#fff;

transform:translateY(-10px);

}

.why-card i{

font-size:45px;

color:#FFD54F;

margin-bottom:20px;

}

.why-card:hover p{

color:#fff;

}

.why-card p{

margin-top:15px;

line-height:28px;

color:#666;

}

@media(max-width:991px){

.mission-grid,

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.mission-grid,

.why-grid{

grid-template-columns:1fr;

}

}

/*=========================
ABOUT CTA
=========================*/

.about-cta{

padding:100px 0;

text-align:center;

background:linear-gradient(135deg,#0B4EA2,#082B63);

color:#fff;

}

.about-cta h2{

font-size:48px;

margin-bottom:20px;

}

.about-cta p{

font-size:18px;

max-width:700px;

margin:auto;

line-height:32px;

margin-bottom:40px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/*=========================
ABOUT HERO
=========================*/

.about-hero{

padding:120px 0;

background:linear-gradient(rgba(11,78,162,.85),rgba(11,78,162,.85)),
url('../images/about.jpg');

background-size:cover;

background-position:center;

text-align:center;

color:#fff;

}

.about-hero h1{

font-size:60px;

margin-bottom:20px;

}

.about-hero p{

font-size:20px;

max-width:800px;

margin:auto;

line-height:34px;

}

/*=========================
ABOUT COMPANY
=========================*/

.about-company{

padding:100px 0;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-grid img{

width:100%;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.about-grid h2{

font-size:42px;

margin:20px 0;

}

.about-grid p{

line-height:32px;

color:#666;

margin-bottom:20px;

}

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

}

.about-hero h1{

font-size:42px;

}

}

/*=========================
DESTINATIONS - ABROAD
=========================*/

.abroad-section{

padding:100px 0;

background:#f7faff;

}

.country-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

margin-top:50px;

}

.country-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.country-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.country-card img{

width:100%;

height:220px;

object-fit:cover;

}

.country-content{

padding:25px;

}

.country-content h3{

margin-bottom:15px;

font-size:24px;

}

.country-content p{

color:#666;

line-height:28px;

margin-bottom:25px;

}
/*=========================
PROCESS
=========================*/

.process-section{
padding:100px 0;
background:#fff;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:50px;
}

.process-card{
background:#f8fbff;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.process-card:hover{
transform:translateY(-10px);
}

.number{
width:70px;
height:70px;
background:#0B4EA2;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
font-weight:700;
margin:0 auto 25px;
}

.process-card h3{
margin-bottom:15px;
}

.process-card p{
color:#666;
line-height:28px;
}

/*==============================
DESTINATIONS PAGE
==============================*/

.destination-hero{
padding:120px 0;
background:linear-gradient(135deg,#0B4EA2,#082B63);
text-align:center;
color:#fff;
}

.destination-hero h1{
font-size:60px;
margin:20px 0;
font-weight:800;
}

.destination-hero h1 span{
color:#FFD54F;
}

.destination-hero p{
max-width:750px;
margin:auto;
font-size:18px;
line-height:32px;
opacity:.95;
}

.hero-tag{
display:inline-block;
background:#FFD54F;
color:#0B4EA2;
padding:10px 22px;
border-radius:40px;
font-weight:700;
margin-bottom:20px;
}

.india-section,
.abroad-section{
padding:100px 0;
}

.abroad-section{
background:#f8fbff;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#0B4EA2;
font-weight:700;
letter-spacing:1px;
}

.section-title h2{
font-size:42px;
margin:15px 0;
}

.section-title p{
max-width:700px;
margin:auto;
color:#666;
line-height:30px;
}

.course-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.course-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.course-card:hover{

transform:translateY(-10px);

background:#0B4EA2;

color:#fff;

}

.course-card i{

font-size:42px;

color:#FFD54F;

margin-bottom:20px;

}

.course-card:hover p{

color:#fff;

}

.course-card p{

color:#666;

margin-top:15px;

line-height:28px;

}

.country-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.country-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.country-card:hover{

transform:translateY(-12px);

}

.country-card img{

width:100%;

height:220px;

object-fit:cover;

display:block;

}

.country-content{

padding:30px;

}

.country-content h3{

margin-bottom:15px;

font-size:26px;

}

.country-content p{

line-height:30px;

color:#666;

margin-bottom:25px;

}

@media(max-width:991px){

.destination-hero h1{

font-size:42px;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:576px){

.destination-hero{

padding:80px 0;

}

.destination-hero h1{

font-size:32px;

}

.country-grid,
.course-grid{

grid-template-columns:1fr;

}

}

/*=========================
SERVICES PAGE
=========================*/

.services-page{
padding:100px 0;
background:#fff;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:50px;
}

.service-card{
background:#fff;
padding:35px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
border-top:4px solid #0B4EA2;
}

.service-card:hover{
transform:translateY(-10px);
background:#0B4EA2;
color:#fff;
}

.service-card i{
font-size:46px;
color:#FFD54F;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
font-size:24px;
}

.service-card p{
color:#666;
line-height:28px;
}

.service-card:hover p{
color:#fff;
}

/*=========================
SERVICES HERO
=========================*/

.services-hero{
padding:140px 0;
text-align:center;
background:linear-gradient(rgba(11,78,162,.75),rgba(8,44,99,.75)),
url("../images/services-banner.jpg");
background-size:cover;
background-position:center;
background-attachment:fixed;
color:#fff;
}

.services-hero h1{
font-size:58px;
font-weight:800;
margin-bottom:20px;
}

.services-hero p{
max-width:700px;
margin:auto;
font-size:18px;
line-height:36px;
}

/*=========================
BACK TO TOP
=========================*/

#topBtn{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#0B4EA2;

color:#fff;

font-size:22px;

cursor:pointer;

display:none;

z-index:9999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transition:.35s;

}

#topBtn:hover{

background:#FFD54F;

color:#0B4EA2;

transform:translateY(-6px);

}

/*=========================
CONTACT PAGE
=========================*/

.contact-hero{
padding:140px 0;
background:linear-gradient(rgba(11,78,162,.75),rgba(8,44,99,.75)),
url("../images/contact-banner.jpg");
background-size:cover;
background-position:center;
text-align:center;
color:#fff;
}

.contact-hero h1{
font-size:58px;
margin-bottom:20px;
}

.contact-page{
padding:100px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-info,
.contact-form{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.info-box{
display:flex;
gap:20px;
margin:25px 0;
align-items:flex-start;
}

.info-box i{
font-size:28px;
color:#0B4EA2;
width:40px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:18px;
border:1px solid #ddd;
border-radius:10px;
font-family:Poppins,sans-serif;
}

.contact-form button{
border:none;
cursor:pointer;
}

.map-section iframe{
width:100%;
height:450px;
border:0;
display:block;
}

.faq-section{
padding:100px 0;
background:#f8fbff;
}

.faq-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.faq-card{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq-card h3{
margin-bottom:15px;
color:#0B4EA2;
}

.faq-card p{
line-height:28px;
color:#666;
}

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

.contact-hero h1{
font-size:38px;
}

}

/*=========================
WHATSAPP BUTTON
=========================*/

.whatsapp{

position:fixed;

left:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

text-decoration:none;

z-index:9999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

animation:whatsapp 2s infinite;

transition:.35s;

}

.whatsapp:hover{

transform:scale(1.1);

color:#fff;

}

@keyframes whatsapp{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.6);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

/*=========================
STICKY HEADER
=========================*/

/*=========================
PREMIUM STICKY HEADER
=========================*/

header.sticky{
    background:#fff;
    padding:4px 0;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}


header.sticky .logo img{
    width:135px;
    height:auto;
}

header nav ul li a{

transition:.3s;

}

header nav ul li a:hover{

color:#0B4EA2;

}

@keyframes headerDown{

from{

transform:translateY(-100%);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}


}

.main-btn:hover{

transform:translateY(-4px);

box-shadow:0 12px 30px rgba(11,78,162,.3);

}


/*================ HERO STATS FIX ================*/

.hero-stats{
    position:relative;
    margin-top:-60px;
    z-index:10;
}

.hero-stats .stats-grid{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:25px;
    align-items:center;
}

.hero-stats .stat-box{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.hero-stats .stat-box h2{
    font-size:42px;
    color:#0B4EA2;
    margin-bottom:10px;
}

.hero-stats .stat-box p{
    margin:0;
    color:#666;
    font-size:18px;
}

@media(max-width:991px){

.hero-stats .stats-grid{

grid-template-columns:repeat(2,1fr)!important;

}

}

@media(max-width:576px){

.hero-stats .stats-grid{

grid-template-columns:1fr!important;

}

}

/* Hero Content Width */
.hero-content{
display:flex;
flex-direction:column;
justify-content:flex-start;
padding-top:35px;
}

/* Footer Social Icons */

.footer-social{
display:flex;
gap:12px;
margin-top:15px;
}

.footer-social a{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
background:#0B4EA2;
color:#fff;
border-radius:50%;
text-decoration:none;
font-size:18px;
transition:.3s;
}

.footer-social a:hover{
background:#FFD54F;
color:#0B4EA2;
transform:translateY(-4px);
box-shadow:0 8px 20px rgba(0,0,0,.15);
}

/* ===========================
MOBILE RESPONSIVE
=========================== */

@media (max-width:768px){

.container{
    width:94%;
}

.top-bar .container{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

.top-left{
    flex-direction:column;
    gap:8px;
}

.navbar{
    flex-direction:column;
    padding:15px 0;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin:15px 0;
}

.logo img{
    width:120px;
}

.main-btn,
.outline-btn{
    width:100%;
    text-align:center;
    margin:8px 0;
}

.hero,
.about-section,
.contact-grid,
.footer-grid{
    grid-template-columns:1fr !important;
    display:grid;
}

.hero-content{
    text-align:center;
    max-width:100%;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.hero img{
    max-width:100%;
    height:auto;
}

.footer{
    text-align:center;
}

.footer-social{
    justify-content:center;
}

iframe{
    width:100%;
}
}

/* ========= MOBILE MENU ========= */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#0B4EA2;
}

@media(max-width:768px){

.menu-toggle{
display:block;
font-size:28px;
cursor:pointer;
color:#0B4EA2;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
padding:15px 0;
}

nav{
width:100%;
margin-top:15px;
max-height:0;
overflow:hidden;
opacity:0;
transition:all .35s ease;
}

nav.active{
max-height:500px;
opacity:1;
}

nav ul{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
padding:20px;
background:#fff;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.main-btn{
display:none;
}

}

.desktop-btn{
display:inline-flex;
}

@media(max-width:768px){

.desktop-btn{
display:none;
}

}

/* ===== Premium Mobile Header ===== */

@media(max-width:768px){

header{
padding:10px 0;
}

.logo img{
width:110px;
height:auto;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.menu-toggle{
font-size:30px;
padding:8px;
}

}

/* ===== HERO MOBILE ===== */

@media(max-width:768px){

.hero{
padding:50px 0;
}

.hero-box{
display:flex;
flex-direction:column-reverse;
align-items:center;
text-align:center;
gap:30px;
}

.hero-content{
max-width:100%;
}

.hero-content h1{
font-size:34px;
line-height:1.3;
}

.hero-content p{
font-size:16px;
line-height:1.8;
}

.hero-image img{
width:100%;
max-width:320px;
height:auto;
}

.hero-btns{
display:flex;
flex-direction:column;
gap:15px;
}

.hero-btns a{
width:100%;
}

.country-flags{
justify-content:center;
flex-wrap:wrap;
gap:12px;
margin-top:20px;
}

}