:root {
  --primary: #0a2a66;   /* Deep Blue – trust & security */
  --secondary: #f4a300; /* Orange – energy & action */
  --light: #f7f9fc;     /* Light background */
  --dark: #111111;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body
{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: var(--primary);
    color: rgb(172, 205, 25);
    line-height: 1.6;
}

/* ===== COMMON ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1, h2, h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

h1 {
    font-size: 42px;
    font-weight: 800;
}

h2 {
    font-size: 32px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
}

p {
    color: #cbd5e1;
    margin-bottom: 15px;
}

section {
  padding: 60px 20px;
}

section:nth-child(even) {
    background: #020617;
}

.container {
  max-width: 1200px;
  margin: auto;
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #d48c00;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e11d48;
}

/* ===== HEADER ===== */
header {
    background: #020617;
    border-bottom: 1px solid #1f2933;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 120px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    position: relative;
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #e11d48;
    transition: 0.3s ease;
}

nav a:hover {
    color: #e11d48;
}
nav a:hover::after {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 20px;
    background: linear-gradient(rgba(10,42,102,0.85), rgba(10,42,102,0.85)),
                url('hero-bg.jpg') center/cover no-repeat;
    text-align: center;
    color: white;
}

.hero p {
    font-size: 18px;
    margin: auto;
    max-width: 700px;
}

.hero .btn {
    box-shadow: 0 12px 30px rgba(225,29,72,0.4);
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;

}
.hero-points {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-points span {
    background: #020617;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #1f2933;
}

/* ===== ABOUT ===== */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.about-highlights div {
    background: #020617;
    padding: 20px;
    text-align: center;
    border: 1px solid #1f2933;
    font-weight: 600;
}

/* ===== SERVICES ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(180deg, #020617, #020617);
    padding: 35px 25px;
    border-radius: 8px;
    border: 1px solid #1f2933;
    text-align: center;
    font-weight: 600;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(225,29,72,0.15), transparent);
    opacity: 0;
    transition: 0.35s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #e11d48;
}

/* ===== INDUSTRIES ===== */
.industry-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    list-style: none;
    gap: 15px;
    margin-top: 30px;
}

.industry-list li {
    background: #020617;
    padding: 15px;
    border-left: 4px solid #e11d48;
}

/* ===== WHY US ===== */
.why-list {
    list-style: none;
    margin-top: 30px;
}

.why-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.why-list li::before {
    content: "✔";
    color: #e11d48;
    position: absolute;
    left: 0;
}

.trust-note {
    margin-top: 25px;
    font-weight: 600;
    color: #fff;
}

/* ===== TRAINING ===== */
#training {
    background: #020617;
}

/* ===== MISSION & VISION ===== */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* ===== CTA ===== */
.cta {
    background: #e11d48;
    text-align: center;
    color: #fff;
}

.cta h2, .cta p {
    color: #fff;
}

/* ===== CONTACT ===== */
#contact form {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

#contact input,
#contact textarea {
    padding: 12px;
    background: #020617;
    border: 1px solid #1f2933;
    color: #fff;
}

#contact button {
    background: #e11d48;
    border: none;
    padding: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

#contact button:hover {
    background: #be123c;
}

/* ===== FOOTER ===== */
footer {
    background: #020617;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #1f2933;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    nav ul {
        display: none;
        position:absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #020617;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #1f2933;

    }

    nav ul li {
        border-bottom: 1px solid #1f2933;
    }

    nav ul li a {
        display: block;
        padding: 16px;
        border-bottom: 1px solid #1f2933;
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: none; /* show only on mobile */
    }

    .header-cta { 
        display: none;
    }
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    /* ===== FLOATING WHATSAPP & CALL BUTTONS ===== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* WhatsApp */
.float-btn.whatsapp {
    background: #25d366;
}

/* Call */
.float-btn.call {
    background: #e11d48;
}

/* ===== FLOATING BUTTONS WITH TOOLTIP ===== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 32px rgba(0,0,0,0.55);
}

/* Tooltip */
.tooltip {
    position: absolute;
    right: 65px;
    background: #020617;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: 0.25s ease;
    border: 1px solid #1f2933;
}

.float-btn:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

.floating-contact a {
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    font-size: 14px;
}


/* WhatsApp */
.float-btn.whatsapp {
    background: #25d366;
}

/* Call */
.float-btn.call {
    background: #e11d48;
}

.menu-toggle {
    display: none;   /* hidden by default */
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    
}
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    position: sticky;
    top: 0;
    background: #020617;
    z-index: 1000;
}
