/* ----------------------------------------------------
   GLOBAL RESET
---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f8f9fb;
    color: #333;
    line-height: 1.6;
    background-color: #e9f7f3;

/* Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Section spacing */
section {
    padding: 90px 0;
}


/* ----------------------------------------------------
   HEADER
---------------------------------------------------- */
/* HEADER BASE */
.site-header {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO + TEXT */
.logo-box {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 55px;
    margin-right: 12px;
}

.logo-text h2 {
    font-size: 20px;
    margin: 0;
    color: #003366;
    font-weight: 700;
}

.logo-text span {
    font-size: 12px;
    color: #555;
    display: block;
    margin-top: -2px;
}

/* NAV */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #003366;
    font-weight: 500;
}

/* MOBILE */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
}

/* RESPONSIVE */
@media(max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        right: 10px;
        background: #fff;
        width: 200px;
        padding: 15px;
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .main-nav.nav-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    /* Resize logo + tagline */
    .nav-logo {
        height: 45px;
    }

    .logo-text h2 {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 10px;
    }
}


/* Navigation */
.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.main-nav a {
    color: #0a1a2f;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #00c3ff;
}


.main-nav a.active {
    color: #00c3ff !important;
    border-bottom: 2px solid #00c3ff;
    padding-bottom: 3px;
}




/* LOGO */
.logo img {
    height: 55px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}



/* Mobile Menu Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #0a1a2f;
}

/* Mobile Menu */
@media(max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #0a1a2f;
        padding: 20px;
        border-radius: 10px;
        width: 230px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 18px;
    }

    .main-nav a {
        color: #fff;
    }

    .main-nav.nav-open {
        display: block;
        animation: slideDown .3s ease;
    }

    .nav-toggle {
        display: block;
    }
}

@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* ----------------------------------------------------
   HERO
---------------------------------------------------- */
.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 {
    font-size: 18px;
    margin: 18px auto 28px;
    max-width: 620px;
}

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

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

@media(max-width: 768px) {
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 16px; max-width: 90%; }
}


/* ----------------------------------------------------
   SECTIONS TITLES
---------------------------------------------------- */
.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #0a1a2f;
    text-align: center;
    margin-bottom: 40px;
}


/* ----------------------------------------------------
   SERVICES
---------------------------------------------------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 40px;
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 80px;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #0a1a2f;
}
.service-intro {
    padding: 50px 0;
}

.service-intro .section-title {
    margin-bottom: 15px;
}

.service-hero {
            background: linear-gradient(#00000090, #00000090), url('img/service-banner.jpg') center/cover;
            padding: 140px 0;
            text-align: center;
            color: #fff;
        }

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

/* ----------------------------------------------------
   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;
    }
}


/* ----------------------------------------------------
   TEAM
---------------------------------------------------- */
.team-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    text-align: center;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}


/* ----------------------------------------------------
   CONTACT
---------------------------------------------------- */
.contact-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-left { flex: 1; }

.contact-form {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
}


/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
/* ===== FOOTER STYLE ===== */
.site-footer {
    background: #0b1d36;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    color: #d0d8e6;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #d0d8e6;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* SOCIAL ICONS */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    margin-right: 12px;
    font-size: 26px;      /* Increased Size */
    color: #ffffff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00aced;
}

/* NEWSLETTER */
.footer-newsletter {
    display: flex;
    margin-top: 10px;
}

.footer-newsletter input {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-newsletter button {
    width: 30%;
    background: #007bff;
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    background: #005dc4;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1c3352;
    font-size: 14px;
    color: #9eb3cc;
}
.footer-bottom .credit {
    font-size: 14px;
    color: #b8c6d9;
}

.footer-bottom .credit a {
    color: #00aced;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom .credit a:hover {
    color: #ffffff;
}


/* RESPONSIVE */
@media(max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media(max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-newsletter {
        justify-content: center;
    }
}


/* 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);
}


/* 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;
}
.choose-us {
    padding: 70px 0;
    background: #f4f9ff;
}

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

.choose-box {
    background: #fff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 1px solid #e5eaf2;
}

.choose-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #0059b3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
}

.choose-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.choose-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
.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;
    }
}

.mission-vision {
    padding: 70px 0;
}

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

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

.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

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


/* ================= ABOUT HERO ================= */
.inner-hero {
    padding: 160px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://sailorsflightservices.co.in//img/Navy_Aviation_Hospitality.jpg?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

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

.inner-hero p {
    font-size: 18px;
    margin-top: 10px;
}
/* ================= WHO WE ARE ================= */
.about-story {
    padding: 70px 0;
}

.about-flex-ab {
    display: flex;
    align-items: center;
    gap: 45px;
}

.story-left p {
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

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

.story-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ============ Responsive About Section ============ */
@media (max-width: 900px) {
    .about-flex-ab {
        flex-direction: column;
    }
}

/* ================= MISSION VISION COMMITMENT ================= */
.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: 12px;
    color: #0B3D91;
}

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

/* ================= WHY CLIENTS TRUST US ================= */
.choose-us {
    padding: 70px 0;
}

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

.choose-box {
    background: #ffffff;
    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 {
    font-size: 45px;
    margin-bottom: 15px;
    color: #fff;
}

/* ================= 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;
    position: relative;
}

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

.timeline-item p {
    font-size: 16px;
    margin-top: 10px;
}
 /*contact page */
.image-box {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

