/* ================= RESET ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter', sans-serif;
background:#f5f7fb;
padding-top:80px;
color:#1a1a1a;
line-height:1.6;
}

img{
max-width:100%;
height:auto;
display:block;
}

/* ================= CONTAINER ================= */
.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* ================= HEADER ================= */
.site-header{
position:fixed;
top:0;
width:100%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
z-index:100;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo-img{
height:60px;
}

.nav-right{
display:flex;
align-items:center;
gap:20px;
}

nav a{
color:#0b2c5f;
text-decoration:none;
font-weight:500;
margin:0 8px;
transition:0.3s;
}

nav a:hover{
color:#e63946;
}

/* ================= BUTTONS ================= */
.btn{
padding:12px 22px;
border-radius:8px;
text-decoration:none;
display:inline-block;
font-weight:600;
transition:0.3s;
}

.btn-primary{
background:#e63946;
color:#fff;
box-shadow:0 8px 20px rgba(230,57,70,0.3);
}

.btn-primary:hover{
transform:translateY(-2px);
}

.btn-outline{
border:2px solid #0b2c5f;
color:#0b2c5f;
}

.btn-outline:hover{
background:#0b2c5f;
color:#fff;
}

.btn-header{
background:#e63946;
color:#fff !important;
}

/* ================= HERO (HOME ONLY) ================= */
.hero-home{
min-height:600px;
padding:120px 0 80px;
display:flex;
align-items:center;

background:
linear-gradient(
to right,
rgba(255,255,255,0.95) 40%,
rgba(255,255,255,0.8) 60%,
rgba(255,255,255,0.2) 80%,
rgba(255,255,255,0) 100%
),
url("images/hero.jpg") center/cover no-repeat;
}

.hero-content{
max-width:600px;
margin-left:60px;
}

.hero-content h1{
font-size:46px;
font-weight:700;
margin-bottom:15px;
}

.hero-content p{
font-size:18px;
color:#444;
margin-bottom:25px;
}

.hero-buttons{
display:flex;
gap:15px;
}

/* ================= SECTION ================= */
.section{
padding:60px 20px;
}

.section + .section{
padding-top:40px;
}

.section h2{
text-align:center;
margin-bottom:30px;
color:#0b2c5f;
}

/* ================= GRID ================= */
.grid{
display:grid;
gap:25px;
}

.services-grid{
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

/* ================= CARDS ================= */
.card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
text-align:center;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* ================= SLIDER ================= */
.home-slider{
overflow:hidden;
padding:30px 0 50px;
background:#fff;
}

.slide-track{
display:flex;
gap:30px;
animation:scroll 70s linear infinite;
}

@keyframes scroll{
from{transform:translateX(0);}
to{transform:translateX(-50%);}
}

.slide-item{
width:240px;
flex-shrink:0;
text-align:center;
}

.slide-item img{
width:100%;
height:150px;
object-fit:cover;
border-radius:10px;
}

.slide-item p{
margin-top:8px;
font-size:14px;
}

/* ================= CTA ================= */
.cta{
background:#0b2c5f;
color:#fff;
text-align:center;
padding:80px 20px;
margin-top:40px;
}

/* ================= FOOTER ================= */
footer{
background:#0b2c5f;
color:#fff;
text-align:center;
padding:20px;
}

/* ================= ANIMATION ================= */
.fade-up{
opacity:0;
transform:translateY(40px);
transition:0.8s;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

/* ================= ABOUT HERO (UPDATED WITH BANNER) ================= */
.hero-about{
color:white;
text-align:center;
padding:140px 20px 100px;

background:
linear-gradient(
rgba(11,44,95,0.85),
rgba(11,44,95,0.85)
),
url("images/about-banner.jpg") center/cover no-repeat;
}

.hero-about h1{
font-size:44px;
font-weight:700;
}

.hero-about p{
font-size:18px;
opacity:0.95;
}

/* ================= ABOUT ================= */
.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-text h2{
text-align:left;
margin-bottom:20px;
}

.about-text .lead{
font-size:18px;
font-weight:500;
margin-bottom:15px;
}

.positioning{
margin-top:20px;
padding:20px;
background:#fff;
border-left:4px solid #e63946;
}

.about-image img{
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* ================= PREMIUM TEAM SECTION ================= */

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:20px;
}

/* CARD */
.team-card{
background:#fff;
padding:20px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
text-align:center;
transition:all 0.3s ease;
position:relative;
overflow:hidden;
}

/* subtle top accent */
.team-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#e63946;
opacity:0;
transition:0.3s;
}

/* hover */
.team-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.team-card:hover::before{
opacity:1;
}

/* IMAGE */
.team-card img{
width:140px;
height:140px;
object-fit:cover;
border-radius:50%;
margin:0 auto 15px;
border:4px solid #f5f7fb;
}

/* NAME */
.team-card h3{
font-size:18px;
font-weight:600;
margin-bottom:5px;
color:#0b2c5f;
}

/* ROLE */
.team-card p{
font-size:14px;
color:#555;
margin-bottom:10px;
}

/* OPTIONAL ICONS (future use) */
.team-icons{
display:flex;
justify-content:center;
gap:10px;
margin-top:10px;
}

.team-icons a{
color:#0b2c5f;
font-size:14px;
transition:0.3s;
}

.team-icons a:hover{
color:#e63946;
}

/* ================= MOBILE ================= */
@media (max-width:768px){

.hero-home{
padding:80px 0;
}

.about-grid{
grid-template-columns:1fr;
}

.hero-content{
margin-left:20px;
}
}
/* ================= ELITE TRAINING CARDS ================= */

.training-card{
position:relative;
text-decoration:none !important;
color:#1a1a1a !important;
display:block;
padding:30px;
border-radius:18px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:all 0.3s ease;
overflow:hidden;
}

/* HOVER LIFT */
.training-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* ICON */
.training-card i{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 15px;
border-radius:50%;
background:rgba(11,44,95,0.08);
color:#0b2c5f;
font-size:22px;
transition:0.3s;
}

/* ICON HOVER */
.training-card:hover i{
background:#0b2c5f;
color:#fff;
transform:scale(1.1);
}

/* TEXT */
.training-card h3{
color:#0b2c5f !important;
margin-bottom:10px;
font-size:18px;
}

.training-card p{
color:#444 !important;
font-size:14px;
}

/* ARROW */
.training-card .arrow{
position:absolute;
bottom:20px;
right:20px;
font-size:20px;
color:#e63946;
opacity:0;
transition:0.3s;
}

/* SHOW ARROW ON HOVER */
.training-card:hover .arrow{
opacity:1;
transform:translateX(5px);
}
/* ================= TRAINING HERO (ADD THIS) ================= */

.hero-training{
color:#fff;
text-align:center;
padding:140px 20px 100px;

background:
linear-gradient(rgba(11,44,95,0.85),rgba(11,44,95,0.85)),
url("images/training-banner.jpg") center/cover no-repeat;
}
/* ================= RESOURCES HERO (ADD THIS) ================= */

.hero-resources{
color:#fff;
text-align:center;
padding:140px 20px 100px;

background:
linear-gradient(rgba(11,44,95,0.85),rgba(11,44,95,0.85)),
url("images/resources-banner.jpg") center/cover no-repeat;
}
/* ================= CONTACT HERO ================= */

.hero-contact{
color:#fff;
text-align:center;
padding:140px 20px 100px;

background:
linear-gradient(rgba(11,44,95,0.85), rgba(11,44,95,0.85)),
url("images/contact-banner.jpg") center/cover no-repeat;
}
/* ================= PREMIUM SERVICE ICONS ================= */

.service-card i{
width:60px;
height:60px;

display:flex;
align-items:center;
justify-content:center;

margin:0 auto 15px;

border-radius:50%;
background:rgba(11,44,95,0.08);
color:#0b2c5f;

font-size:22px;

transition:all 0.3s ease;
}

/* HOVER EFFECT */
.service-card:hover i{
background:#0b2c5f;
color:#fff;
transform:scale(1.1);
}
/* ================= CONTACT PAGE ================= */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
margin-top:30px;
}

/* FORM */
.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border-radius:8px;
border:1px solid #ddd;
font-family:inherit;
font-size:14px;
transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#0b2c5f;
outline:none;
}

.contact-form textarea{
min-height:120px;
resize:none;
}

/* INFO */
.contact-info{
padding:20px;
background:#fff;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.contact-info h3{
margin-bottom:15px;
color:#0b2c5f;
}

.contact-info p{
margin-bottom:10px;
}

.response-note{
margin-top:15px;
font-size:14px;
color:#555;
}

/* MOBILE */
@media (max-width:768px){
.contact-grid{
grid-template-columns:1fr;
}
}
/* ================= CONTACT (CONVERSION UPGRADE) ================= */

.contact-intro{
text-align:center;
max-width:700px;
margin:0 auto 30px;
color:#555;
}

/* FORM CARD */
.form-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.form-card h3{
margin-bottom:15px;
color:#0b2c5f;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border-radius:8px;
border:1px solid #ddd;
font-family:inherit;
font-size:14px;
transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#0b2c5f;
outline:none;
}

.contact-form textarea{
min-height:120px;
resize:none;
}

.form-note{
margin-top:10px;
font-size:13px;
color:#777;
}

#form-status{
background:#e6f9ed;
border:1px solid #2ecc71;
padding:12px;
border-radius:8px;
color:#1e7e34;
}
.form-success{
display:none;
opacity:0;
transform:translateY(10px);
transition:all 0.4s ease;
}

.form-success.show{
display:block;
opacity:1;
transform:translateY(0);
}

/* TRUST SIDE */
.contact-info{
padding:30px;
background:#fff;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.contact-info h3{
margin-bottom:20px;
color:#0b2c5f;
}

/* TRUST LIST */
.trust-points{
list-style:none;
padding:0;
margin-bottom:20px;
}

.trust-points li{
margin-bottom:10px;
color:#444;
}

/* DETAILS */
.contact-details p{
margin-bottom:8px;
}

/* MOBILE */
@media (max-width:768px){
.contact-grid{
grid-template-columns:1fr;
}
}
/* ================= FLOATING CONTACT BUTTONS ================= */

/* WhatsApp */
.whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;

width:55px;
height:55px;

background:#25D366;
color:#fff;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;
font-size:24px;

box-shadow:0 8px 20px rgba(0,0,0,0.2);

z-index:999;
transition:0.3s;
}

.whatsapp-btn:hover{
transform:scale(1.1);
}

/* Call Button */
.call-btn{
position:fixed;
bottom:90px;
right:20px;

width:55px;
height:55px;

background:#0b2c5f;
color:#fff;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;
font-size:22px;

box-shadow:0 8px 20px rgba(0,0,0,0.2);

z-index:999;
transition:0.3s;
}

.call-btn:hover{
transform:scale(1.1);
}
/* ================= CONTACT WIDGET ================= */

.contact-widget{
position:fixed;
bottom:30px;
right:20px;
z-index:9999;
}

/* TOGGLE BUTTON */
.widget-toggle{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:#0b2c5f;
color:#fff;
font-size:24px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
transition:0.3s;
}

.widget-toggle:hover{
transform:scale(1.1);
}

/* OPTIONS (HIDDEN BY DEFAULT) */
.widget-options{
display:flex;
flex-direction:column;
gap:10px;
margin-bottom:10px;
opacity:0;
transform:translateY(20px);
pointer-events:none;
transition:0.3s;
}

/* ACTIVE STATE */
.contact-widget.active .widget-options{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

/* BUTTON LINKS */
.widget-options a{
background:#fff;
color:#0b2c5f;
padding:10px 15px;
border-radius:8px;
text-decoration:none;
font-size:14px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.widget-options a:hover{
background:#0b2c5f;
color:#fff;
}
/* ================= CONTACT WIDGET ================= */

.contact-widget{
position:fixed;
bottom:80px;
right:20px;
z-index:9999;
}

/* toggle button */
.widget-toggle{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:#0b2c5f;
color:#fff;
font-size:24px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* hidden state */
.widget-options{
display:flex;
flex-direction:column;
gap:10px;
margin-bottom:10px;

opacity:0;
transform:translateY(20px);
pointer-events:none;

transition:all 0.3s ease;
}

/* 🔥 THIS IS THE KEY PART */
.contact-widget.active .widget-options{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

/* buttons */
.widget-options a{
background:#fff;
color:#0b2c5f;
padding:10px 15px;
border-radius:8px;
text-decoration:none;
font-size:14px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
/* ================= MOBILE FINAL POLISH ================= */

@media (max-width:768px){

/* better spacing */
.section{
padding:50px 15px;
}

/* form improvements */
.contact-form input,
.contact-form textarea{
font-size:16px; /* prevents zoom on iPhone */
}

/* widget spacing */
.contact-widget{
bottom:90px;
right:15px;
}

/* buttons easier to tap */
.btn{
padding:14px 20px;
}

}
/* ================= MOBILE MENU ================= */

/* hamburger icon */
.menu-toggle{
font-size:24px;
cursor:pointer;
display:none;
}

/* mobile menu panel */
.mobile-menu{
display:none;

position:fixed;
top:0;
left:-100%;
width:75%;
max-width:300px;
height:100%;

background:#0b2c5f;
padding:30px 20px;

flex-direction:column;
gap:20px;

transition:0.3s ease;
z-index:9999;
}

/* menu links */
.mobile-menu a{
color:#fff;
text-decoration:none;
font-size:18px;
}

/* open state */
.mobile-menu.active{
left:0;
display:flex;
}

/* close button */
.close-btn{
font-size:28px;
color:#fff;
cursor:pointer;
margin-bottom:20px;
}

/* mobile behavior */
@media (max-width:768px){

/* show hamburger */
.menu-toggle{
display:block;
}

/* hide desktop nav */
.desktop-menu{
display:none;
}

/* show mobile menu ONLY on mobile */
.mobile-menu{
display:flex;
}

}
/* ================= SERVICES HERO ================= */

.hero-services{
color:#fff;
text-align:center;
padding:140px 20px 100px;

background:
linear-gradient(rgba(11,44,95,0.85), rgba(11,44,95,0.85)),
url("images/services-banner.jpg") center/cover no-repeat;
}
/* ================= SLIDER MOBILE FIX ================= */
@media (max-width:768px){

.home-slider{
overflow-x:auto;
-webkit-overflow-scrolling:touch; /* smoother on phones */
}

.slide-track{
animation:none;
}

}
.g-recaptcha{
margin-top:10px;
margin-bottom:10px;
}