* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #F8FAFC;
    color: #1e293b;
}


/* ================== Header ================== */
header {
    background: #0A1F44;
    color: white;
    
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
   /* font-size: 22px;
    font-weight: bold;
    */
   display:grid;
   
    
}
.logo img{
    width: 150px;
   box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    text-transform: uppercase;
}

nav a:hover {

    color: #F97316;
}

/* ================== Hero Section ================== */
.hero {
    background: linear-gradient(rgba(10,31,68,0.85), rgba(10,31,68,0.85)),
    url('https://images.unsplash.com/photo-1523240795612-9a054b0db644');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 8%;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ================== Buttons ================== */
.btn {
    background: #F97316;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: #ea580c;
}

/* ================== Sections ================== */
.section {
    padding: 70px 8%;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #0A1F44;
}

/* ================== Grid & Cards ================== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column; /* Stack content vertically */
}

.card:hover {
    transform: translateY(-5px);
}

.card p,
.card ul {
    margin-bottom: 15px; /* Space below text */
}

/* Apply Now button spacing */
.card .btn-wrapper {
    margin-top: 15px; /* Simple spacing below Duration */
}

.card .btn {
    display: block; /* Ensure full width inside wrapper if needed */
    text-align: center;
    padding: 12px 28px;
    border-radius: 6px;
    background: #F97316;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.card .btn:hover {
    background: #ea580c;
}

/* ================== Footer ================== */
footer {
    background: #0A1F44;
    color: white;
    text-align: center;
    padding: 30px 8%;
    margin-top: 50px;
}

/* ================== Contact Box ================== */
.contact-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}




.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}
/* ================== Responsive ================== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
        position: relative;

    }
    
}

/* ================== Mobile Navigation ================== */


/* Mobile Styles */
@media (max-width: 768px) {

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0A1F44;
        position: absolute;
        top: 120px;
        left: 0;
        padding: 15px 0;
        opacity: 70%;
    }

    nav a {
        margin: 10px 20px;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: white;
    }

   
}