/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero {
    background: url('https://images.unsplash.com/photo-1507668077129-56e32842fceb?auto=format&fit=crop&w=1600&q=60')
        center/cover no-repeat;
    text-align: center;
    padding: 160px 20px;
    color: #fff;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    max-width: 620px;
    margin: 20px auto;
}

.btn-primary {
    background: #00c3ff;
    padding: 12px 26px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: #008ecc;
}


/* ----------------------------------------------------
   MISSION / VISION / COMMITMENT (CARD STYLE)
---------------------------------------------------- */
.mission-vision {
    padding: 70px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.mission-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    border-left: 6px solid #0B3D91;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.mission-box i {
    font-size: 46px;
    margin-bottom: 15px;
    color: #0B3D91;
}

.mission-box:hover {
    transform: translateY(-6px);
}


/* ----------------------------------------------
   SERVICES SECTION
---------------------------------------------- */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0B3D91;
    margin-bottom: 10px;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


/* ---------- SERVICE GRID ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


/* ---------- SERVICE CARD ---------- */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}


/* ---------- SERVICE CARD IMAGE ---------- */
.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}


/* ---------- CONTENT ---------- */
.service-card h3 {
    text-align: center;
    font-size: 20px;
    margin: 18px 0 10px;
    color: #0B3D91;
    font-weight: 600;
}

.service-card p {
    text-align: center;
    font-size: 15px;
    color: #555;
    padding: 0 20px 25px;
    line-height: 1.5;
}


/* ---------- RESPONSIVE FIXES ---------- */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .service-img img {
        height: 180px;
    }
}



/* ----------------------------------------------------
   ABOUT (50% TEXT + 50% IMAGE)
---------------------------------------------------- */
.about {
    background: #f9fbff;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-left,
.about-right {
    flex: 1;
    min-width: 330px;
}

.about-right img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.about-list {
    margin-top: 15px;
    list-style: none;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

/* Mobile About */
@media(max-width: 768px) {
    .about-flex {
        flex-direction: column;
    }
    .about-right img {
        height: 300px;
    }
}


/* ----------------------------------------------------
   CHOOSE US
---------------------------------------------------- */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
}

.choose-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.choose-box:hover {
    transform: translateY(-5px);
}

.choose-icon i {
    background: #0B3D91;
    color: #fff;
    font-size: 42px;
    padding: 18px;
    border-radius: 50%;
    margin-bottom: 15px;
}


/* ----------------------------------------------------
   TIMELINE
---------------------------------------------------- */
.timeline-section {
    background: #eef3fa;
    padding: 70px 0;
}

.timeline {
    position: relative;
    margin-left: 20px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 4px;
    height: 100%;
    background: #0B3D91;
    border-radius: 4px;
}

.timeline-item {
    margin-bottom: 40px;
    padding-left: 50px;
}

.timeline-item .year {
    background: #0B3D91;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    position: absolute;
    left: -10px;
}

.timeline-item p {
    margin-top: 10px;
    font-size: 16px;
}

/* ----------------------------------------------------
   SERVICE CTA
---------------------------------------------------- */


.services-cta {
    background: #0a3d62;
    padding: 10px 20px;
    text-align: center;
    margin-top: 10px;
    border-radius: 10px;
}

.services-cta .cta-box h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-cta .cta-box p {
    color: #dcdcdc;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.services-cta .btn-primary {
    background: #f1c40f;
    color: #000;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: 0.3s;
}

.services-cta .btn-primary:hover {
    background: #fff;
    color: #0a3d62;
}

/* TRAINING SECTION */
.training {
    padding: 80px 0;
    background: #f8f9ff;
}

.training .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.training .section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.training-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.08);
    transition: transform .3s;
}

.training-box:hover {
    transform: translateY(-6px);
}

.training-icon {
    font-size: 45px;
    color: #1b4fc9;
    margin-bottom: 15px;
}
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1516383607781-913a19294fd1?w=1200') center/cover;
    text-align: center;
    color: #fff;
}

.cta-inner h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-inner p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 25px;
}

/* Base floating button style */
.float-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    right: 25px;   /* same right position */
}

/* Hover effect for all icons */
.float-icon:hover {
    transform: scale(1.1);
}

/* WhatsApp */
.whatsapp {
    background-color: #25d366;
    bottom: 25px;
}
.whatsapp:hover {
    background-color: #20b858;
}

/* Facebook */
.facebook {
    background-color: #1877f2;
    bottom: 95px; /* Stack above WhatsApp */
}
.facebook:hover {
    background-color: #0f5fcc;
}

/* Instagram */
.instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, 
                                #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    bottom: 165px; /* Stack above Facebook */
}
.instagram:hover {
    filter: brightness(1.1);
}


/* ================= REVIEWS SECTION ================= */
.reviews-section {
    padding: 60px 20px;
    background: #f6fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.review-photo {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #00a2ff;
}

.review-name {
    font-size: 20px;
    font-weight: 600;
}

.review-role {
    color: #777;
    margin-bottom: 10px;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.6;
}

/* ================= VIDEO TESTIMONIALS ================= */
.video-grid {
    margin-top: 40px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-card iframe {
    width: 100%;
    height: 220px;
    border-radius: 12px;
}

.video-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
}
