/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Karla',sans-serif;
}

/* 🟢 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: 30px 20px;
}

/* 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:0px 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;
    }
}


/* 🟡 Slider Styling */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust as needed */
    overflow: hidden;
}

/* Slides Wrapper */
.slides {
    display: flex;
    width: 100%;
    transition: transform 1s ease-in-out;
}

/* Individual Slide */
.slide {
    min-width: 100%;
    height: 500px; /* Same height as container */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Styling */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps full image visible */
}


/* 🔹 Zoom-in Effect */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* 🔹 Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* 🟣 Responsive Slider */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
    .slide {
        height: 300px;
    }
}
/* 🟡 Why This Platform Section */
.why-platform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%; /* Adjust width as needed */
    margin: 50px auto; /* Centering */
    padding: 20px;
}

/* Left Side: Text Content */
.text-content {
    width: 60%;
    padding-right: 20px;
}

.text-content h2 {
    font-size: 28px;
    color: #004080;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Right Side: Image */
.image-content {
    width: 40%;
    text-align: center;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 🟢 Responsive Design */
@media (max-width: 768px) {
    .why-platform {
        flex-direction: column;
        text-align: center;
    }

    .text-content, .image-content {
        width: 100%;
        padding: 10px;
    }

    .image-content img {
        width: 100%;
    }
}
/* 🟡 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%;
    }
}

/* 🟡 Skill Development Section */
.skill-development {
    width: 80%;
    margin: 50px auto; 
    padding: 30px;
    background-color: #3b58a7;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    box-shadow: 0px -10px 0px #FF8C00;
    margin-bottom: 0%;
}

.skill-development h2 {
    font-size: 28px;
    color: #fbfcfd;
    margin-bottom: 15px;
}

.skill-development p {
    font-size: 18px;
    line-height: 1.6;
    color: #faf8f8;
    margin-top: 10px;
    margin-left:  20px;
    margin-right: 20px ;
    text-align: left;
}

/* 🟢 Responsive Design */
@media (max-width: 768px) {
    .skill-development {
        width: 100%;
        padding: 20px;
    }

    .skill-development h2 {
        font-size: 24px;
    }

    .skill-development p {
        font-size: 16px;
    }
}
.mes-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
}

.mes-section h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 20px;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    background: #004080;
    color: #fff;
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 5px;
    margin-top: 8px;
}

.accordion-header:hover {
    background: #0066cc;
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    border-radius: 5px;
}

.accordion-body ul,
.accordion-body ol {
    padding: 15px 0;
}

.accordion-body p {
    padding: 15px 0;
}

.accordion-header.active + .accordion-body {
    max-height: 500px;
}


/* 🟡 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;
    }
}


