* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Karla',sans-serif;
}
html, body {
    height: 100%;
    overflow-x: hidden;
}

/* 🟢 First Header (Contact Info) */
.header { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004080;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

.contact-info {
    display: flex;
    flex-direction: column; /* Stack email and phone number */
    align-items: flex-start; /* Align text to the left */
    gap: 5px;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
    color: #ffcc00;
}

.apply-btn {
    background: linear-gradient(45deg, #ff8c00, #ff4500); /* Orange Gradient */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Prevents text from breaking */
    margin-left: auto; /* Pushes button to the right */
}

/* Background Animation */
.apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #88ff00, #00ffea);
    z-index: -1;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
    transform-origin: right;
}

/* Hover Effect */
.apply-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .header {
        display: flex;
        flex-direction: row; /* Keep elements in a row */
        justify-content: space-between;
    }

    .contact-info {
        font-size: 12px;
    }

    .apply-btn {
        margin-left: auto; /* Keeps it on the right */
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* 🟠 Second Header (Navigation) */
.secondheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsl(210, 22%, 96%);
    color: rgb(3, 0, 0);
    padding: 15px 10px;
}

/* Logo Styling */


.logo img {
    height: 70px; /* Default height for desktop */
    width: auto;  /* Maintain aspect ratio */
}

/* Responsive logo for mobile screens */
@media (max-width: 768px) {
    .logo img {
        height: 50px;  /* Reduce size on smaller screens */
    }
}
/* Navigation Menu */
.nav-links {
    display: flex;
    margin-top: 5px;
    gap: 30px;
    list-style: none;
  margin-right: 80px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffcc00;
}

.hamburger {
    font-size: 20px;
    cursor: pointer;
    display: none;
    
}


/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
         
        display: none; /* Initially hidden */
        flex-direction: column;
        background: rgb(202, 201, 201,0.5);
    
        position: absolute;
        top: 100px;
        column-gap: 0px;
        right: 0px;
        width: 130px;
        text-align: right;
        /* padding:5px 10px;   */
        box-shadow: 5px 10px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links a {
        display: block;
        padding: 0px 10px; /* Reduce padding */
        font-size: 16px; /* Adjust font size if necessary */
        row-gap: 1px;
    }
    .nav-links.active {
        display: flex; /* Show menu when active */
    }

    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
        z-index: 1100;
    }
}

.salient-section {
    padding: 80px 10px;
    background: #f9fafc;
}

.salient-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.salient-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a2540;
}

.salient-content h2 span {
    color: #f57c00;
}

.salient-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.salient-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0a2540;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .salient-grid {
        grid-template-columns: 1fr;
    }

    .salient-cards {
        grid-template-columns: 1fr;
    }
}
/* ===== COURSES TABLE ===== */
.courses-table-section {
    background: #ffffff;
    padding: 60px 0;
}

.courses-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.table-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Responsive wrapper */
.table-wrapper {
    overflow-x: auto;
}

/* Table styling */
.courses-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.courses-table thead {
    background: #ff8c00;
    color: #ffffff;
}

.courses-table th,
.courses-table td {
    padding: 14px 16px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 15px;
}

.courses-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.courses-table tbody tr:hover {
    background: #fff3e0;
}

/* Mobile readability */
@media (max-width: 768px) {
    .table-title {
        font-size: 26px;
    }
}
/* 🟡 Courses Section */
.courses-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.courses-section h2 {
    font-size: 30px;
    color: #004080;
    margin-bottom: 30px;
}

/* 🟢 Course Boxes Container (Right to Left) */
.courses-container {
    display: flex;
    flex-direction: row-reverse; /* Right to left layout */
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 🔹 Individual Course Box */
.course-box {
    width: 250px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.course-box:hover {
    transform: translateY(-10px);
}

/* 🖼️ Image Styling */
.course-box img {
    width: 100%;
    height: 75%; /* 75% of box height */
    object-fit: cover;
    border-radius: 10px;
}

/* 🏷️ Course Name */
.course-box h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

/* 📌 Read More Button */
.read-more {
    font-family: 'Karla', sans-serif;
    background-color: #0C1A70; /* Deep Blue */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease-in-out;
    
    /* Solid Orange Shadow (No Blur) */
    box-shadow: 0px -6px 0px #FF8C00; /* Orange shadow without blur */
}

.read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0px -8px 15px rgba(255, 165, 0, 0.9);
}

/* 🟢 Responsive Design */
@media (max-width: 768px) {
    .courses-container {
        flex-direction: column;
        align-items: center;
    }

    .course-box {
        width: 80%;
    }
}
/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #0b3c78;
    --secondary: #f5f7fb;
    --text-dark: #222;
    --text-light: #555;
    --border-radius: 14px;
    --section-gap: 70px;
}

/* ===== GLOBAL ===== */
.about-section {
    padding: 70px 20px;
    background: #ffffff;
}

.about-section.light-bg {
    background: var(--secondary);
}

.container {
    max-width: 1150px;
    margin: auto;
}

/* ===== HEADINGS ===== */
.about-section h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 18px;
    position: relative;
}

.about-section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin-top: 8px;
    border-radius: 10px;
}

/* ===== TEXT ===== */
.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ===== LISTS ===== */
.feature-list,
.number-list {
    margin: 20px 0 0;
    padding-left: 0;
}

.feature-list li {
    list-style: none;
    padding: 12px 15px;
    background: #ffffff;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding-left: 40px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 12px;
    color: var(--primary);
    font-weight: bold;
}

/* ===== NUMBERED LIST ===== */
.number-list {
    counter-reset: step;
}

.number-list li {
    list-style: none;
    margin-bottom: 14px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    position: relative;
    padding-left: 55px;
    color: var(--text-dark);
}

.number-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 15px;
    top: 12px;
    background: var(--primary);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 15px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .about-section p {
        font-size: 15px;
    }
}
/* ===== BASE ===== */
.dual-section {
    background: #f5f7fb;
    padding: 50px 15px;
}

.dual-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* ===== CARD ===== */
.dual-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.dual-card h2 {
    font-size: 28px;
    color: #0b3c78;
    margin-bottom: 12px;
}

.card-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* ===== BENEFICIARY LIST ===== */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    background: #f2f4f8;
    padding: 14px 16px 14px 42px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 14.5px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 14px;
    color: #0b3c78;
    font-weight: bold;
}

/* ===== AGE ELIGIBILITY ===== */
.age-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.age-box {
    background: #f2f4f8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.age-box span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.age-box strong {
    font-size: 20px;
    color: #222;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .dual-container {
        grid-template-columns: 1fr;
    }
}


/* 🟡 Footer Styling */
.footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    /* margin-top: 30px; */
}

/* 🟢 Responsive Design */
@media (max-width: 768px) {
    .footer {
        font-size: 14px;
        padding: 10px 0;
    }
}