* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
body {
    background-color: #f4f4f4;
}
.navbar {
    background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Ensure it stays above other elements */
    z-index: 1000; /* High priority */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    font-size: 20px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: orangered;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #d2dce7, #6610f2);
        text-align: center;
        padding: 10px 0;
        z-index: 1100; /* Ensures it appears above other elements */
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        z-index: 1200; /* Ensuring the menu button is on top */
    }
}


.footer {
    background: linear-gradient(135deg, #001f3f, #3d0c78);
    color: white;
    padding: 40px 20px;
    text-align: left;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #f39c12;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ddd;
}
.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}
.footer-column ul li a:hover {
    color: orange;
    text-decoration: underline;
}
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
    border-top: 1px solid #444;
    padding-top: 10px;
    text-align: center;
}

/* WhatsApp Floating Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}
.whatsapp-icon img {
    width: 35px;
    height: 35px;
}
.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-icon img {
        width: 30px;
        height: 30px;
    }
}

.job-ready-program {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background: #f9f9f9;
}
.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}
.content {
    width: 60%;
    padding-right: 20px;
}
.content h2, .content h3, .content h4 {
    color: #333;
}
.content ul {
    list-style-type: none;
    padding: 0;
}
.content li {
    margin: 10px 0;
}
.registration-form {
    width: 35%;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.registration-form input, .registration-form select, .registration-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.registration-form button {
    background: #a6192e;
    color: white;
    border: none;
    cursor: pointer;
}
.registration-form button:hover {
    background: #7e131f;
}
@media (max-width: 1024px) {
    .content {
        width: 55%;
    }
    .registration-form {
        width: 40%;
    }
}
@media (max-width: 768px) {
    .job-ready-program {
        flex-direction: column;
        align-items: left;
        text-align: left;
    }
    .content, .registration-form {
        width: 90%;
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .content, .registration-form {
        width: 100%;
        padding: 10px;
    }
}

.certificate-section {
    background: linear-gradient(to right, #a6192e, #7e131f);
    color: white;
    padding: 50px 20px;
    text-align: center;
}
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}
.certificate-image {
    flex: 1;
    text-align: center;
}
.certificate-image img {
    max-width: 100%;
    height: auto;
    border: 5px solid white;
    border-radius: 10px;
}
.certificate-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}
.certificate-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.certificate-content p {
    font-size: 18px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .certificate-content {
        text-align: center;
    }
}


/* ===== Services Section ===== */
section.services {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.service-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ===== About Us Section ===== */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
    background-color: #f1ebe0;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding-top: 20px;
    }
}

/* Industry Section */
.industry-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}

.industry-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: black;
}

/* Responsive */
@media (max-width: 600px) {
    .carousel img {
        height: 200px;
    }
}

.industries-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}

.industries-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.industry-box {
    min-width: 25%;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
}

.industry-box img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.industry-box p {
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: black;
}

/* Responsive */
@media (max-width: 768px) {
    .industry-box { min-width: 50%; }
}

@media (max-width: 480px) {
    .industry-box { min-width: 100%; }
}

.clients-section {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
}
.clients-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.clients-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}
.clients-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.clients-logos img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.clients-logos img:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .clients-logos {
        flex-direction: column;
        align-items: center;
    }
}

.faq-section {
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}
.faq-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.faq {
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid #ccc;
}
.faq-question {
    width: 100%;
    background: #f0f0f0;
    border: none;
    padding: 15px;
    font-size: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    outline: none;
}
.faq-question span {
    font-weight: bold;
}
.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    font-size: 14px;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.poster {
    position: relative;
    display: inline-block;
    width: 100%;
}
.poster img {
    width: 100%;
    height: auto;
    display: block;
}
.poster-text {
    position: absolute;
   
}


/* Our Vision & Mission Section CSS */
.our-vision-section, .our-mission-section {
    background-color: #f4f4f4;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.our-vision-section h2, .our-mission-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.our-vision-section ul, .our-mission-section ul {
    text-align: left;
    display: inline-block;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
}

.our-vision-section li, .our-mission-section li {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .our-vision-section, .our-mission-section {
        padding: 20px;
    }
    .our-vision-section h2, .our-mission-section h2 {
        font-size: 24px;
    }
    .our-vision-section li, .our-mission-section li {
        font-size: 14px;
    }
}










