* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}


/* ================= BANNER ================= */
.banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ================= SLIDER IMAGES ================= */
.banner-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* ================= OVERLAY ================= */
.banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 100%);
    z-index: 1;
}

/* ================= HEADER ================= */
.header {
    position: absolute;
    width: 100%;
    z-index: 1000;
    color: #fff;
    transition: all 0.3s ease;
}

/* TOP BAR */
.top-bar {
    padding: 10px 0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.top-bar span {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.top-bar i {
    font-size: 20px;
    color: #ffffff;
}

.top-bar .social-links a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.2s;
}

.top-bar .social-links a:hover {
    color: #4db8ff;
}

/* NAVBAR */
.navbar {
    transition: all 0.3s ease;
}

/* ================= STICKY STATE ================= */
.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.header.scrolled .top-bar {
    display: none !important;
}

.header.scrolled .navbar {
    padding: 8px 0;
    background: #002e46;
    z-index: 999;
}

.header.scrolled .navbar-brand img {
    height: 40px;
    transition: 0.3s;
}

/* Spacer when fixed */
.header-spacer {
    height: 0;
    transition: height 0.3s ease;
}

.header.scrolled+.header-spacer {
    height: 80px;
}

/* ================= BANNER CONTENT WRAPPER ================= */
.banner-content-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14%;
    z-index: 10;
    color: #fff;
}

/* ================= SLIDE CONTENT ================= */
.slide-content {
    display: none;
    position: relative;
    z-index: 1;
}

.slide-content.active {
    display: block;
    animation: contentFadeUp 0.7s ease forwards;
}

@keyframes contentFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TAG PILL */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    color: #e0f0ff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4db8ff;
    display: inline-block;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

/* HEADINGS */
.slide-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.slide-content h1 span {
    color: #ff6b35;
}

.slide-content h4 {
    font-size: 20px;
    font-weight: 400;
    color: #c0d8f0;
    margin: 0 0 14px;
}

.slide-content p {
    font-size: 15px;
    color: #b0c8e0;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 24px;
}

/* ================= BUTTONS ================= */
.btn-group-custom {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-accent {
    background: #ffffff;
    color: #00233a;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-accent:hover {
    background: #79ccff;
    color: #00233a;
    transform: translateY(-2px);
}

.btn-outline-light-custom {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-learn {
    background: transparent;
    color: #4db8ff;
    font-weight: 600;
    padding: 11px 18px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: gap 0.2s, color 0.2s;
}

.btn-learn:hover {
    gap: 12px;
    color: #79ccff;
}

/* ================= ARROW BUTTONS ================= */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    background: rgba(77, 184, 255, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.arrow-prev {
    left: 20px;
}

.arrow-next {
    right: 20px;
}

/* ================= INDICATORS ================= */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    border: none;
}

.indicator.active {
    background: #ffffff;
    width: 44px;
}

/* ================= COUNTER ================= */
.slide-counter {
    position: absolute;
    bottom: 32px;
    right: 60px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.slide-counter #currentSlide {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-right: 2px;
}

/* ================= SCROLL CUE ================= */
.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .navbar {
        background: #002E46;
    }

    .banner-content-wrapper {
        bottom: 12%;
        margin-left: 10px;
    }

    .slide-content h1 {
        font-size: 26px;
    }

    .slide-content h4 {
        font-size: 16px;
    }

    .slide-content p {
        font-size: 13px;
    }

    .btn-group-custom {
        flex-direction: column;
        width: fit-content;
    }

    .arrow-btn {
        display: none;
    }

    .scroll-cue {
        display: none;
    }

    .banner {
        height: 700px;
    }

    .slide-counter {
        right: 20px;
    }

    .slide-content {
        bottom: 20px;
    }

    /* .banner-slider {
        height: 700px;
    } */

    .banner .overlay {
        height: 700px !important;
    }


}





.cource {
    padding: 80px 0;
    /* background: #f8f9fa; */
}

.heading-1 {
    text-align: center;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 50px;
}

.heading-1 h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002E46;
}

.heading-1 hr {
    width: 100%;
    max-width: 500px;
    height: 3px;
    background: #FF6B35;
    border: none;
    margin: 10px auto;
    opacity: 1;
}

.heading-1 p {
    color: #000000;
    font-size: 16px;
}

.cource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 25px;
}

/* CARD */
.cource-card {
    background: #EAF6FF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cource-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* DURATION BADGE */
.duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 46, 70, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* CONTENT */
.cource-card .card-content {
    padding: 20px;
}

.tag {
    display: inline-block;
    background: #FF6B35;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.cource-card h2 {
    font-size: 19px;
    font-weight: 700;
    color: #002E46;
    margin-bottom: 10px;
}

.cource-card p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 15px;
    text-align: justify;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-between;
    /* gap: 40px;
    justify-content: center; */
    margin-top: 20px;
}

.feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 13px;
    color: #002E46;
}

.feature i {
    background: #d7ecff;
    padding: 20px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 20px;
}

.feature span {
    font-size: 15px;
    font-weight: 600;
}

/* CTA */
.see-btn {
    background: #002E46;
    padding: 15px;
    text-align: center;
}

.see-btn a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.see-btn:hover {
    background: #003d5e;
}


/* =========================
   RESPONSIVE FIX ONLY
========================= */

/* Fix grid for smaller screens */
@media (max-width: 992px) {
    .cource-cards {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .cource-cards {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .card-img img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cource-cards {
        grid-template-columns: 1fr;
    }

    .features {
        flex-wrap: wrap;
        gap: 10px;
    }

    .feature {
        flex: 1 1 100%;
    }

    .card-img img {
        height: 180px;
    }

    .cource-card h2 {
        font-size: 16px;
    }

    .cource-card p {
        font-size: 14px;
    }
}





.why-choose {
    background: #f9f9f9;
}

/* HEADING */
.heading-2 h4 {
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 20px;
}

.heading-2 h1 {
    font-size: 35px;
    font-weight: 700;
}

.heading-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.heading-top .dot {
    width: 10px;
    height: 10px;
    background: #FF6B35;
    border-radius: 50%;
}

/* WHY POINTS */
.why-points {
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
    background: #EAF6FF;
    padding: 10px;
    border-radius: 10px;
}

.why-icon {
    background: #002E46;
    padding: 5px;
    border-radius: 10px;
}

.why-icon img {
    width: 75px !important;
    height: 75px;
    object-fit: contain;
}

.why-text h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.why-text p {
    margin: 0;
    color: #000000;
    font-size: 16px;
}

/* IMAGE */
.why-choose i {
    /* width: 100%; */
    font-size: 35px;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .heading-2 h1 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .why-points {
        flex-direction: row;
    }

    .why-text h5 {
        font-size: 16px;
    }

    .why-text p {
        font-size: 14px;
    }
}



.mission {
    padding: 80px 0;
}

.heading-3 {
    text-align: left;
    /* max-width: 900px; */
    margin: 0 auto 50px;
}

.main-heading {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}

.main-heading .line {
    width: 4px;
    height: 70px;
    background: #ff5a2c;
    position: absolute;
    left: -15px;
    top: 5px;
}

.main-heading h4 {
    color: #ff5a2c;
    font-weight: 600;
    margin-bottom: 5px;
}

.main-heading h1 {
    font-size: 38px;
    font-weight: 700;
    color: #0b2c3d;
}

.heading-3 p {
    color: #000000;
    line-height: 1.7;
}

/* IMAGE */
.mission img {
    width: 100%;
    border-radius: 10px;
}

/* RIGHT CONTENT BOX */
.vision {
    background: #eef3f7;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.vision h4 {
    font-weight: 700;
    color: #0b2c3d;
}

.vision hr {
    width: 50px;
    height: 2px;
    background: #ff5a2c;
    border: none;
    margin: 10px 0 15px;
    opacity: 1;
}

.vision p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .main-heading h1 {
        font-size: 30px;
    }

    .mission {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .heading-3 {
        text-align: center;
        margin-bottom: 20px;
    }

    .main-heading .line {
        display: none;
    }

    .main-heading h1 {
        font-size: 26px;
    }

    .vision {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-heading h1 {
        font-size: 22px;
    }

    .heading-3 p {
        font-size: 14px;
    }
}


.about {
    padding: 80px 0;
    background-image: url(images/about-bg.jpg);
    background-size: cover;
    background-position: center;
}

/* LAYOUT */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* TEXT */
.about-text {
    flex: 1;
    text-align: center;
}

.heading-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: orange;
    border-radius: 50%;
}

.about-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-text p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 0px;
}

/* BUTTON */
.discover {
    display: inline-block;
    /* important for centering */
    background: #0c3b4a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
    /* if using <a> */
}

/* Center using parent */
.discover-wrapper {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.discover:hover {
    background: #082a34;
}

/* IMAGE */
.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
}

/* DETAILS */
.details {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.detail-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.detail-box h1 {
    font-size: 40px;
    color: #0c3b4a;
    font-weight: 700;
}

.detail-box h3 {
    color: #000000;
    font-weight: 700;
    font-size: 25px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-text h1 {
        font-size: 28px;
    }

    .details {
        grid-template-columns: 1fr;
    }
}


.experts {
    padding: 80px 0;
}

.experts-list {
    display: flex;
    overflow-x: hidden;
    /* hides scrollbar but allows JS scrolling */
    scroll-behavior: smooth;
    gap: 20px;
}

/* CARD */
.experts-card {
    min-width: 250px;
    flex: 0 0 25%;
    background: #EAF6FF;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.experts-card:hover {
    transform: translateY(-10px);
}

.experts-img img {
    width: 100%;
    border-radius: 50%;
}

.experts-card h4 {
    margin-top: 15px;
    text-transform: capitalize;
}

.experts-card p {
    font-size: 14px;
    color: #777;
}

.social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background-color: #002E46;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.social i:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .experts-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .experts-card {
        flex: 0 0 100%;
    }
}

.slider-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.slider-btns button {
    border: none;
    padding: 8px 14px;
    background: #002E46;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.acadamy {
    padding: 80px 0;
}

.acadamy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.4s;
}

.acadamy img:hover {
    transform: scale(1.05);
}

/* spacing */
.acadamy .row>div {
    padding: 10px;
}

/* fixed height layout */
.acadamy .col-6 {
    height: 300px;
}

.acadamy .col-3 {
    height: 300px;
}

/* MOBILE */
@media (max-width: 992px) {

    .acadamy .col-6,
    .acadamy .col-3 {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .acadamy .row {
        display: flex;
        flex-wrap: wrap;
    }

    .acadamy .col-6,
    .acadamy .col-3 {
        width: 100%;
        height: 200px;
    }
}


.testimonial {
    padding: 80px 20px;
    /* background: #f8fbff; */
    text-align: center;
}

/* Wrapper */
.testimonial-wrapper {
    overflow: hidden;
    /* max-width: 900px; */
    margin: auto;
    position: relative;
}

/* Slider */
.testimonial-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
}

/* Card */
.testimonial-card {
    flex: 0 0 400px;
    padding: 25px;
    background: #f5f5f5;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: scale(0.9);
}

/* Active */
.testimonial-card.active {
    transform: scale(1.1);
    opacity: 1;
    background: #EAF6FF;
    border-radius: 10px;
}

/* Side */
.testimonial-card.side {
    opacity: 0.7;
    transform: scale(0.95);
}

/* Image */
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Text */
.testimonial-card h3 {
    margin-bottom: 5px;
}

.testimonial-card span {
    display: block;
    margin-bottom: 10px;
    color: #555;
}

/* Dots */
.dots {
    margin-top: 30px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.dots span.active {
    background: #333;
}



.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 20px 0;
}

.client-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    width: 100px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    width: 100%;
    height: auto;
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: 0.3s;
}

/* .client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
} */

/* Smooth infinite scroll */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



/* SECTION */
.placements {
    padding: 80px 0;
    /* background: #f9fbfd; */
}


/* CARDS GRID */
.placements-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* CARD */
.placements-card {
    background: #ABD8F1;
    border-radius: 10px;
    padding: 20px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.placements-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.student-img {
    width: 175px;
    height: 175px;
    margin: 0 auto 15px;
}

.student-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    /* border: 3px solid #007bff; */
}

/* DETAILS */
.placed-deatails h1 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000000;
}

.placed-deatails p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 10px;
}

.placed-deatails h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    text-transform: capitalize;
    margin-bottom: 12px;
}

/* LOCATION */
.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #000000;
    font-size: 18px;
}

.location h4 {
    font-size: 20px;
    margin: 0px;
}

.location i {
    width: 40px;
    color: #002E46;
    background: #ffff;
    padding: 10px;
    border-radius: 50%;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
    .placements-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .placements {
        padding: 60px 15px;
    }

    .heading-2 h1 {
        font-size: 26px;
    }

    .placements-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .placements-card {
        padding: 20px;
    }
}



.enquire {
    padding: 80px 0px 0px;
    background: url('images/Enquire-bg.jpg') no-repeat center center/cover;
    position: relative;
    z-index: 1;
}


/* Layout */
.enquire-details {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 0px;
}

/* Form */
.Message-form-wrap {
    flex: 1;
    /* background: #fff; */
    /* padding: 40px; */
    /* border-radius: 15px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.Message-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Message-form input,
.Message-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.Message-form input:focus,
.Message-form textarea:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 45px 14px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    appearance: none;
    background: #fff;
    cursor: pointer;
}

/* Font Awesome Arrow */
.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 14px;
}

/* Focus effect */
.select-wrapper select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
}

/* Button */
.submit-btn {
    background: #002E46;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e05500;
}

/* Image */
.enquire-img {
    flex: 1;
}

.enquire-img img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* ========================= */
/* 📱 Responsive Design */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
    .enquire-details {
        gap: 30px;
    }

    .heading-2 h1 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .enquire {
        padding: 60px 0px 0px;
    }

    .enquire-details {
        flex-direction: column;
    }

    /* .Message-form-wrap {
        padding: 25px;
    } */

    .heading-2 h1 {
        font-size: 26px;
    }

    .enquire-img img {
        height: 250px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .heading-2 h1 {
        font-size: 22px;
    }

    .Message-form input,
    .Message-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
    }
}



.workshops {
    padding: 80px 0;
    /* background: #f9f9f9; */
    text-align: center;
}

/* =====================
   HEADING SECTION FIX
   ===================== */
.heading-4 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

/* Left line */
.h-line {
    width: 5px;
    min-height: 80px;
    background: #ff6b00;
}

/* Text wrapper */
.heading-4 h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: right;
}

.heading-4 p {
    font-size: 16px;
    color: #000000;
    max-width: 700px;
}

/* =====================
   CARD DESIGN
   ===================== */

.exhibitions-boxs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.exhibitions-box {
    background: #EAF6FF;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 15px;
}

.exhibitions-box a {
    text-decoration: none;
}

.exhibitions-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Meta */
.exhibitions-box .meta {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    color: #000000;
    border: none;
}

.exhibitions-box .meta i {
    margin-right: 6px;
    color: #ff6b35;
}

/* Image */
.box-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

/* Text */
.box-txt {
    /* padding: 20px; */
    margin-top: 15px;
}

.box-txt h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.box-txt p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin: 0px;
}


/* =====================
   RESPONSIVE DESIGN
   ===================== */

/* Tablet */
@media (max-width: 992px) {

    .exhibitions-boxs {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .heading-4 {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .h-line {
        width: 60px;
        height: 4px;
        min-height: auto;
    }

    .heading-4 h1 {
        font-size: 30px;
        text-align: center;
    }

    .box-img img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .exhibitions-boxs {
        grid-template-columns: 1fr;
    }


    .workshops {
        padding: 60px 0;
    }

    .heading-4 h1 {
        font-size: 26px;
        text-align: center;
    }

    .heading-4 p {
        font-size: 14px;
    }

    .meta {
        /* flex-direction: column; */
        gap: 5px;
        font-size: 13px;
    }

    .box-img img {
        height: 180px;
    }

    .box-txt h3 {
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .heading-4 h1 {
        font-size: 22px;
        text-align: center;
    }

    .box-img img {
        height: 200px;
    }

    .discover {
        width: 100%;
        text-align: center;
    }
}



/* ================= FOOTER ================= */
footer {
    background: #CAE8FF;
    color: #000;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

/* Grid Layout */
.academy-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ================= LOGO ================= */
.logo img {
    width: 160px;
    margin-bottom: 15px;
}

.logo p {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    text-align: justify;
}

/* ================= LINKS ================= */
.links h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    margin-bottom: 10px;
}

.links ul li a {
    text-decoration: none;
    color: #000;
    font-size: 17px;
    transition: 0.3s ease;
    font-weight: 600;
}

.links ul li a:hover {
    color: #002E46;
    padding-left: 5px;
}

/* ================= CONTACT ================= */
.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 17px;
}

.footer-contact i {
    color: #002E46;
    margin-top: 4px;
    font-size: 18px;
}

/* ================= SOCIAL ================= */
.footer-social {
    margin-top: 10px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 12px;
    /* better than margin-right */
}

.footer-social a {
    background-color: #002E46;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* ================= MAP ================= */
.map iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: none;
}

/* ================= BOTTOM SECTION ================= */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
}

/* Terms */
.terms {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 0px;
    /* font-weight: 600; */
}

.terms p {
    margin: 0px;
}

.ft-line {
    width: 1.5px;
    height: 20px;
    background: #000;
}

/* Divider */
.footer-bottom hr {
    margin: 5px auto;
    width: 100%;
    border: none;
    height: .5px;
    background: #002E46;
    opacity: 1;
}

/* Copyright */
.copyright {
    font-size: 17px;
    color: #000000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .academy-footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .academy-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }

    .terms {
        flex-direction: column;
        gap: 8px;
    }

    .ft-line {
        display: none;
    }
}




/* about page */




/* BANNER SECTION */
.c-banner {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

/* IMAGE */
.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* HEADER ON TOP */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
}

/* NAVBAR LINKS */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #FF6B35;
}

/* BANNER HEADING CENTER */
.banner-heading {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
}

/* BREADCRUMB CONTAINER */
.flow {
    position: absolute;
    bottom: 30px;
    left: 10%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px 18px;
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;

    z-index: 2;
}

/* LINKS */
.flow a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.flow a:hover {
    color: #FF6B35;
}

/* CURRENT PAGE */
.flow span {
    color: #FF6B35;
    font-weight: 600;
}

/* SEPARATOR */
.flow a::after {
    content: "/";
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.6);
}


/* ================= RESPONSIVE ================= */

/* TABLETS */
@media (max-width: 992px) {

    .c-banner {
        height: 50vh;
    }

    .banner-heading {
        font-size: 24px;
        top: 55%;
        text-align: center;
        width: 90%;
    }

    .flow {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .c-banner {
        height: 40vh;
    }

    .contact-banner {
        height: 100%;
    }

    .banner-heading {
        font-size: 18px;
        top: 55%;
        width: 95%;
        line-height: 1.4;
    }

    .flow {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 6px;
        bottom: 15px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .flow a::after {
        margin-left: 6px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 400px) {

    .banner-heading {
        font-size: 16px;
    }

    .flow {
        font-size: 10px;
        padding: 5px 10px;
    }
}




.about-us {
    padding: 80px 0;
    /* background: #f9fbff; */
}

/* Image */
.about-us-img img {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Heading */
.about-us .heading-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
    justify-content: left;
}

.about-us .heading-top .dot {
    width: 10px;
    height: 10px;
    background: #FF6B35;
    border-radius: 50%;
}

.about-us .heading-top h6 {
    font-size: 15px;
    color: #FF6B35;
    margin: 0;
    text-transform: uppercase;
}

.about-us .heading-2 h1 {
    text-align: left;
}

/* Title */
.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

/* Text */
.main-text,
.sub-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    text-align: justify;
}

/* Small Image */
.para-img {
    border-radius: 10px;
    max-width: 100%;
    /* height: 300px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Fix */
@media (max-width: 992px) {
    .about-us {
        text-align: center;
    }

    .heading-top {
        justify-content: center;
    }

    .about-title {
        font-size: 26px;
    }

    .main-text,
    .sub-text {
        text-align: justify;
    }
}


/* SECTION BACKGROUND */
.group {
    padding: 80px 0;
    background: url('images/group-bg.jpg') no-repeat center/cover;
    position: relative;
}


.group .container {
    position: relative;
    z-index: 2;
}


/* CARD STYLE */
.hawaii-group {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #ff6b35;
    height: 100%;
    transition: 0.3s ease;
}

.hawaii-group .heading-1 {
    text-align: center;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 0px;
}

.hawaii-group:hover {
    transform: translateY(-5px);
}

/* INNER CONTENT */
.hawaii-group .heading-1 {
    text-align: left;
    color: #333;
}

.hawaii-group h1 {
    font-size: 22px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 10px;
}

.hawaii-group hr {
    margin: 0px auto 10px;
    text-align: center;
}

.hawaii-group p {
    font-size: 16px;
    color: #000000;
    text-align: justify;
}

/* LIST STYLE */
.hawaii-group ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.hawaii-group ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
}

/* ARROW ICON */
.hawaii-group ul li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b35;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .col-6 {
        width: 100%;
        margin-bottom: 20px;
    }
}


/* CSS */

/* SECTION BASE */
.industry {
    /* background: #f8fbff; */
    padding: 80px 0;
    position: relative;
}



/* TEXT BOXES WRAPPER — must be relative + have height so absolute children don't collapse it */
.talent-boxes-wrapper {
    position: relative;
    min-height: 320px;
    /* adjust to match your tallest text box */
}

/* TEXT BOX — absolutely stacked so they don't push each other down */
.talent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

/* ACTIVE TEXT */
.talent-box.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    /* pull back into flow so wrapper height adapts */
}

/* INNER TEXT */
.talent-box .heading-1 h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.talent-box .heading-1 hr {
    width: 60px;
    height: 3px;
    background: #FF6B35;
    border: none;
    margin: 0px auto 15px;
}

.talent-box .heading-1 p {
    font-size: 17px;
    color: #000000;
    line-height: 1.7;
    text-align: justify;
}

/* IMAGE CONTAINER */
.vision-img {
    position: relative;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
}

/* IMAGES — stacked absolutely inside the container */
.vision-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.7s ease, transform 0.7s ease;
    z-index: 0;
}

/* ACTIVE IMAGE */
.vision-img img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* HOVER MICRO-INTERACTION */
.vision-img:hover img.active {
    transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .heading-2 h1 {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .industry {
        padding: 60px 0;
    }

    .heading-2 h1 {
        font-size: 26px;
    }

    .heading-1 h1 {
        font-size: 24px;
    }

    /* On mobile, stack both boxes normally — no absolute positioning */
    .talent-boxes-wrapper {
        min-height: unset;
    }

    .talent-box {
        position: relative;
        /* back in normal flow */
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-bottom: 30px;
    }

    /* Image container becomes normal height, images stack vertically */
    .vision-img {
        height: auto;
        margin-top: 30px;
        overflow: visible;
        /* let images flow */
    }

    .vision-img img {
        position: relative;
        /* back in flow */
        inset: auto;
        width: 100%;
        height: 280px;
        opacity: 1;
        transform: none;
        z-index: auto;
        display: block;
        margin-bottom: 15px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .heading-2 h1 {
        font-size: 22px;
    }

    .heading-1 p {
        font-size: 14px;
    }

    .vision-img img {
        height: 220px;
    }
}



/* ── Section ── */
.adavantages {
    padding: 80px 0;
    /* background: #eef5fb; */
}

/* ── Wrapper ── */
.advantages-wrapper {
    position: relative;
}

.adavantages .main-heading {
    margin-bottom: 0px;
}

.adavantages .main-heading p {
    margin-bottom: 0px;
}

.heading-3 h1 {
    font-weight: 700;
    color: #002E46;
    font-size: 35px;
}

/* ── Slider ── */
.different {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px 30px;
    /* bottom padding so hover shadow isn't clipped */
}

.different::-webkit-scrollbar {
    display: none;
}

/* ── Cards ── */
.adavantages-card {
    position: relative;
    /* needed for icon absolute positioning */
    /* min-width: 300px;
    max-width: 300px; */
    width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: visible;
    /* don't clip the floating icon */
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .adavantages-card {
        width: 98%;
    }
}

.adavantages-card:hover {
    transform: translateY(-5px);
}

/* Wrap the top image so we can clip it independently */
.card-img-wrap {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.adavantages-card img.card-img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
}

/* ── Floating Icon ── */
.advantages-icon {
    position: absolute;
    top: 160px;
    left: 15px;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages-icon i {
    font-size: 24px;
    color: #FF6B35;
}

.adavantages-card h2 {
    font-size: 19px;
    padding: 15px 10px 0px;
    color: #0d2b3e;
    font-weight: 700;
}

.adavantages-card p {
    padding: 0 10px;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    text-align: justify;
}

/* ── Slider Buttons ── */
.slider-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background: #0d2b3e;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.slider-btn:hover {
    background: #1a4a6b;
}

.slider-btn.prev {
    left: -50px;
}

.slider-btn.next {
    right: -50px;
}

/* Push slider content away from the buttons */
.different {
    /* padding-left: 55px; */
    /* padding-right: 55px; */
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .adavantages-card {
        /* min-width: 260px; */
        /* max-width: 260px; */
    }
}

@media (max-width: 480px) {
    .adavantages-card {
        /* min-width: 230px; */
        /* max-width: 230px; */
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
        top: 100%;
    }

    .slider-btn.next {
        right: 150px;
    }

    .slider-btn.prev {
        left: 150px;
    }
}

.training {
    padding: 80px 0;
    /* background: #f8f9fb; */
}


/* HEADING */
.training .heading-2 h4 {
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 20px;
}

.training .heading-2 h1 {
    font-size: 35px;
    font-weight: 700;
    text-align: left;
}

.training .heading-top-1 {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}

.training .heading-top .dot {
    width: 10px;
    height: 10px;
    background: #FF6B35;
    border-radius: 50%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 20px;
    align-items: center;
}

/* LEFT */
.left {
    max-width: 600px;
}

.panel-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.panel-body {
    font-size: 17px;
    color: #000000;
    line-height: 1.7;
    text-align: justify;
}

/* BULLETS */
.bullet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: 0.3s;
}

/* Icon Style */
.bullet-item i {
    color: #ff6b00;
    font-size: 14px;
    transition: 0.3s;
}

/* Hover Effect */
.bullet-item:hover i {
    transform: translateX(5px);
}

.bullet-item:hover {
    color: #ff6b00;
}

/* PROGRESS */
.prog-row {
    margin-top: 15px;
    margin-bottom: 20px;
    background: #002e46;
    padding: 10px;
    color: #FFFF;
    border-radius: 10px;
}

.prog-track {
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
}

.prog-fill {
    height: 100%;
    width: 0;
    background: #ff6b35;
    transition: width 0.6s ease;
}

/* CENTER LINE */
.center-col {
    position: relative;
    height: 400px;
}

.center-col::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #ddd;
    transform: translateX(-50%);
}

#line-fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0%;
    background: #0d3b66;
    transform: translateX(-50%);
    transition: height 0.3s;
}

/* DOTS */
.step-dot {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s;
}

.step-dot.active {
    background: #0d3b66;
    color: #fff;
}

#dot-0 {
    top: 0%;
}

#dot-1 {
    top: 33%;
}

#dot-2 {
    top: 66%;
}

#dot-3 {
    top: 100%;
}

/* RIGHT IMAGES */
.right {
    position: relative;
    height: 450px;
}

.step-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s;
}

.step-img.active {
    opacity: 1;
}

/* FADE TEXT */
.fadeable {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.fadeable.active {
    opacity: 1;
    transform: translateY(0);
}

/* STICKY */
#sticky-container {
    position: sticky;
    top: 100px;
}

#scroll-spacer {
    height: 200vh;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .center-col {
        order: 2;
        height: 200px;
        display: none;
    }

    .left {
        order: 1;
    }

    .right {
        order: 3;
        height: 250px;
    }

    .bullet-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .training .heading-2 h1 {
        font-size: 30px;
    }

    .panel-title {
        font-size: 22px;
    }

    .panel-body {
        font-size: 14px;
    }
}


.inside {
    padding: 80px 0;
    /* background: #f9f9f9; */
}

.inside .container {
    width: 100%;
    /* max-width: 1200px; */
    margin: auto;
}


/* Image Box */
.inside-img {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    margin-bottom: 10px;
}

.inside-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Different Heights for Masonry Feel */
.col-4:nth-child(1) .inside-img:nth-child(1) {
    /* height: 250px; */
}

.col-4:nth-child(1) .inside-img:nth-child(2) {
    /* height: 180px; */
}

.col-4:nth-child(2) .inside-img:nth-child(1) {
    height: 220px;
}

.col-4:nth-child(2) .inside-img:nth-child(2) {
    height: 250px;
}

.col-4:nth-child(2) .inside-img:nth-child(3) {
    height: 220px;
}

.col-4:nth-child(3) .inside-img:nth-child(1) {
    /* height: 220px; */
}

.col-4:nth-child(3) .inside-img:nth-child(2) {
    /* height: 200px; */
}

/* Hover Effect */
.inside-img:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .row {
        flex-direction: column;
    }

    .col-4 {
        flex-direction: row;
    }

    .inside-img {
        height: 200px !important;
        flex: 1;
    }
}

@media (max-width: 576px) {
    .inside {
        padding: 40px 0px;
    }

    .col-4 {
        flex-direction: column;
    }

    .inside-img {
        height: 180px !important;
    }
}





.career {
    padding: 80px 0;
}

.career-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* LEFT */
.career-left .heading-top {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}

.career-left .heading-2 h4 {
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 20px;
}

.career-left .heading-2 h1 {
    text-align: left;
}

.career-left .heading-2 p {
    text-align: justify;
    color: #000;
    font-size: 17px;
}

/* STATS */
.stats {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.card {
    flex: 1;
    background: #E6F1F6;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: none;
}

.card h2 {
    font-size: 24px;
    font-weight: 700;
}

.card i {
    font-size: 30px;
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 15px;
    width: 75px;
    height: 75px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h2 {
    font-size: 34px;
    color: #002E46;
    margin-bottom: 8px;
}

.card span {
    font-size: 16px;
    color: #000000;
}

/* TIMELINE */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    width: 90%;
    height: 2px;
    background: #000000;
    z-index: -1;
    text-align: center;
}

.step {
    text-align: center;
    width: 25%;
}

.circle {
    width: 60px;
    height: 60px;
    background: #0c2d48;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h4 {
    font-size: 18px;
    font-weight: 700;
}

.step p {
    font-size: 14px;
    /* font-weight: 700; */
}

.circle i {
    color: #fff;
    font-size: 18px;
}

/* RIGHT */
.career-right img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.career-box {
    background: #0c2d48;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.career-box h2 {
    font-size: 25px;
    font-weight: 700;
}

.roles {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.role {
    background: white;
    color: black;
    padding: 15px 10px;
    border-radius: 8px;
    flex: 1 1 calc(20% - 10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.role i {
    font-size: 22px;
    color: #ffffff;
    background-color: #002E46;
    padding: 20px;
    border-radius: 50%;
}

.role:hover {
    transform: translateY(-5px);
}

.optional h2 {
    font-size: 11px;
    font-style: italic;
    color: #ffff;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {

    .timeline::before {
        display: none;
    }

    .career-wrapper {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
    }

    .timeline {
        flex-wrap: wrap;
    }

    .step {
        width: 50%;
        margin-bottom: 20px;
    }

    .role {
        flex: 1 1 calc(33.33% - 10px);
    }
}

@media (max-width: 576px) {
    .career-left h1 {
        font-size: 26px;
    }

    .step {
        width: 100%;
    }

    .role {
        flex: 1 1 100%;
    }
}



/* Section */
.call {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    text-align: center;
    padding: 80px 0px;
    /* border-radius: 20px; */
    position: relative;
    overflow: hidden;
}

.call .heading-2 h1 {
    color: #fff;
}



/* Optional glow effect */
.cta-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    top: -100px;
    left: -100px;
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Heading */
.cta-box h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Paragraph */
.cta-box p {
    font-size: 17px;
    color: #ffffff;
    /* max-width: 600px; */
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    /* centers horizontally */
    gap: 15px;
    flex-wrap: wrap;
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Primary Button */
.btn.primary {
    background: #007bff;
    color: #fff;
}

.btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Secondary Button */
.btn.secondary {
    background: #fff;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn.secondary:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* Icon Styling */
.btn i {
    font-size: 14px;
}



/* contact page */


.get-in-touch {
    padding: 80px 0;
    /* background: #f8f9fb; */
}

.get-in-touch .heading-1 {
    text-align: center;
    /* max-width: 700px; */
    margin: 0 auto 50px;
}

.get-in-touch .heading-1 h1 {
    font-size: 32px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.get-in-touch .heading-1 hr {
    width: 100%;
    height: 3px;
    background: #ff6600;
    border: none;
    margin: 10px auto 20px;
}

.get-in-touch .heading-1 p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

/* GRID */
.get-in-touch .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* CARD */
.contact-card {
    background: #EAF6FF;
    padding: 20px 20px;
    text-align: center;
    border-radius: 12px;
    flex: 1 1 calc(25% - 20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ICON */
.contact-icon {
    width: 60px;
    height: 60px;
    background: #002e46;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    font-size: 22px;
}

/* TEXT */
.contact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.contact h6 {
    font-size: 15px;
    margin-bottom: 10px;
    text-transform: capitalize;
    line-height: 1.6;
}

.contact p {
    font-size: 16px;
    color: #ff6600;
    font-weight: 600;
    margin: 5px 0;
}

/* SOCIAL ICONS */
/* Icon links */
.contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 5px;
    border-radius: 50%;
    color: #002e46;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #002e46;
}


/* Responsive */
@media (max-width: 480px) {
    .contact a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact h3 {
        font-size: 18px;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .contact-card {
        flex: 1 1 100%;
    }
}


.fill-form {
    padding: 80px 0;
    /* background: #f9f9f9; */
}


/* Layout */
.enqire-form {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Form */
.Message-form {
    flex: 1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Message-form input,
.Message-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.Message-form input:focus,
.Message-form textarea:focus {
    border-color: #ff6b00;
    outline: none;
}

/* Button */
.submit-btn {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e55a00;
}

/* Map */
.location-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .enqire-form {
        flex-direction: column;
    }

    .location-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .heading-3 .main-heading h1 {
        font-size: 24px;
    }

    .Message-form {
        padding: 20px;
    }
}



.chat {
    position: relative;
    min-height: 90vh;
    /* better than fixed height */
    background: url("images/about.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    /* important for mobile */
}

/* Overlay (recommended to enable for readability) */
.chat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.content {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 20px;
    z-index: 1;
}

.content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Button */
.wtsap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.wtsap-btn i {
    font-size: 20px;
}

.wtsap-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .content h1 {
        font-size: 34px;
    }

    .content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .chat {
        min-height: auto;
        padding: 60px 20px;
    }

    .content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .content p {
        font-size: 15px;
    }

    .wtsap-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 24px;
    }

    .content p {
        font-size: 14px;
    }

    .wtsap-btn {
        width: 100%;
        justify-content: center;
    }
}





/* SECTION */
.faq {
    padding: 80px 0;
}

/* LAYOUT */
.faq-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    /* better alignment */
}

.faq-image,
.faq-content {
    flex: 1;
}

/* LEFT SIDE */
.faq-image .heading-2 h1 {
    font-size: 35px;
    font-weight: 700;
    text-align: left;
}

.faq-image .heading-top {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: left;
}

.faq-image .heading-top .dot {
    width: 10px;
    height: 10px;
    background: #FF6B35;
    border-radius: 50%;
}

.faq-image img {
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

/* COMMON HEADING */
.heading-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ff6b35;
    border-radius: 50%;
    margin-right: 8px;
}

.heading-2 h1 {
    font-size: 35px;
    color: #0b2c3d;
}

/* ACCORDION */
.accordion-item {
    background: #002e46;
    margin-top: 15px;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

/* HEADER */
.accordion-header {
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* ICON */
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.icon i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* BODY */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #EAF6FF;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* ACTIVE STATE */
.accordion-item.active {
    background: #002e46
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    /* adjust if content is larger */
    padding: 15px 20px;
    color: #000;
}

.accordion-item.active .icon i {
    transform: rotate(180deg);
}

/* HOVER EFFECT */
/* .accordion-item:hover {
    background: #bcd6ea;
} */

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-wrapper {
        flex-direction: column;
    }

    .faq-image .heading-2 h1 {
        font-size: 28px;
        text-align: center;
    }

    .heading-top {
        justify-content: center;
    }
}


/* Floating Container */
.floating-buttons {
    position: fixed;
    bottom: 50px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
}

/* Base Button */
.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    /* changed from circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

/* Glass Effect Background */
.phone-btn {
    background: rgba(0, 123, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effect */
.float-btn:hover {
    transform: translateX(-6px) scale(1.05);
}

/* Tooltip Text */
.float-btn span {
    position: absolute;
    right: 70px;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 50%;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
    pointer-events: none;
}

/* Show Tooltip */
.float-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* Small Arrow */
.float-btn span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #111;
}

/* Soft Glow on Hover */
.phone-btn:hover {
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.whatsapp-btn:hover {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* Mobile */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 14px;
    }

    /* Hide tooltip on mobile */
    .float-btn span {
        display: none;
    }
}



/* courses page */




/* COURSES SECTION */
.courses {
    padding: 80px 0;
}


/* COURSE BLOCK */
.course-details {
    background: #EAF6FF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* SUB HEADING */
.courses .heading-2 {
    margin-bottom: 40px;
}

.courses .heading-2 .heading-top {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}


.courses .heading-2 h1 {
    font-size: 30px;
    font-weight: 700;
    text-align: left;
}



/* IMAGE */
.detail-img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* TEXT */
.detail-para p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}



/* =========================
   CAREER OPPORTUNITIES
========================= */

.opportunities {
    margin-top: 15px;
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #d9e6f2;
    box-shadow:
        0 8px 24px rgba(0, 46, 70, 0.06);
    transition: .3s ease;

}

/* Optional Hover */

.opportunities:hover {
    box-shadow:
        0 14px 30px rgba(0, 46, 70, 0.10);

}

.opportunities h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #002E46;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

/* UNDERLINE */

.opportunities h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: #FF6B35;
    border-radius: 10px;
}


/* LIST */

.opportunities ul {

    list-style: none;

    padding: 0;

    margin: 0;

    columns: 2;

    column-gap: 80px;

}

.opportunities ul li {

    position: relative;

    padding-left: 24px;

    margin-bottom: 15px;

    break-inside: avoid;

    font-size: 16px;

    line-height: 1.6;

    color: #222;

}


/* RIGHT ARROW */

.opportunities ul li::before {

    content: "\f061";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    left: 0;

    top: 4px;

    color: #FF6B35;

    font-size: 12px;

}


/* TABLET */

@media(max-width:768px) {

    .opportunities h1 {

        font-size: 20px;

    }

    .opportunities ul {

        columns: 1;

    }

    .opportunities ul li {

        font-size: 15px;

    }

}

@media(max-width:768px) {

    .opportunities {

        padding: 20px;

        border-radius: 12px;

    }

}

/* DETAIL CARD */
.detail-card {
    display: flex;
    /* gap: 20px; */
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.durations {
    background: #002E46;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

/* ICON STYLE (add icons inside <i>) */
.durations i {
    font-size: 20px;
    color: #ff6b35;
    background: #ffffff;
    padding: 10px;
    width: 40px;
    border-radius: 50%;
}

.durations p {
    font-size: 16px;
    color: #ffffff;
    margin: 0px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .row {
        flex-direction: column;
    }

    .heading-2 h1 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .courses .heading-2 h1 {
        font-size: 24px;
    }

    .detail-card {
        width: 100%;
        gap: 10px;
    }

    .durations {
        width: 100%;
    }

    .heading-1 h1 {
        font-size: 26px;
    }

    .course-details {
        padding: 25px;
    }
}



/* CTA Section Styles */
.next-step {
    position: relative;
    padding: 100px 0px;
    background-image: url("images/cta-bg.jpg");
    /* replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.next-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Animated background effect */
/* .next-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 2000"><path fill="rgba(255,255,255,0.05)" d="M0,0 L2000,0 L2000,2000 L0,2000 Z M1000,500 L1500,1000 L1000,1500 L500,1000 Z"/></svg>') repeat;
    opacity: 0.1;
    animation: float 20s linear infinite;
} */

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 100px) rotate(360deg);
    }
}

.heading-2 {
    text-align: center;
}

.heading-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* margin-bottom: 20px; */
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}


.next-step .heading-2 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.next-step .heading-2 p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}


/* Base Button */
.step-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.step-btn:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

/* Secondary Button */
.step-btn.secondary {
    background: transparent;
    color: #ff6b00;
    border: 2px solid #ff6b00;
}

.step-btn.secondary:hover {
    background: #ff6b00;
    color: #fff;
}

/* WhatsApp Variant (only override color) */
.whatsapp-btns {
    background: #25D366;
}

.whatsapp-btns:hover {
    background: #1ebe5d;
}

/* Icon size */
.step-btn i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .next-step {
        padding: 60px 20px;
    }

    .next-step .heading-2 h1 {
        font-size: 1.8rem;
    }

    .next-step .heading-2 p {
        font-size: 1rem;
        padding: 0px;
    }

    .heading-2 button {
        display: block;
        margin: 15px auto;
        width: fit-content;
    }

    .step-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .heading-2 {
        margin-top: 20px;
    }

    .next-step .heading-2 h1 {
        font-size: 1.5rem;
    }

    .heading-top h4 {
        font-size: 0.85rem;
    }

    .step-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Animation for fade-up (if using AOS library) */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}




/* gallery page */




.gallery-section {
    padding: 80px 0;
}

/* TABS */
.gallery-tabs {
    text-align: center;
    margin: 40px 0;
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    background: #eee;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #ff6b00;
    color: #fff;
}

/* CONTENT */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* IMAGE CARD */
.gallery-card {
    background: #002E46;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 0px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    /* color: #ff6b00; */
}

.gallery-card .card-content p {
    font-size: 16px;
    color: #ffffff;
    margin: 0px;
    text-align: justify;
}

/* VIDEO CARD */
.video-card {
    text-align: center;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff6b00;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}





/* placement page */





/* ================= INTERNSHIP SECTION ================= */
.internship {
    padding: 80px 0px;
}


/* ================= CARDS ================= */
.internship-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ================= CARD ================= */
.intern-card {
    background: #e0f3ff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.intern-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.intern-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* DETAILS */
.intern-details {
    padding: 20px;
}

.intern-details h1 {
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: 700;
}

.intern-details hr {
    width: 100px;
    height: 2px;
    background: #ff6b00;
    border: none;
    margin: 5px auto 10px;
    opacity: 1;
}

.intern-details p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
}

.intern-details h2 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #333;
}

.intern-details span {
    color: #ff6b00;
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .internship-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .internship-cards {
        grid-template-columns: 1fr;
    }

    .heading-1 h1 {
        font-size: 24px;
    }
}





/* workshop page */




/* ================= EXHIBITION SECTION ================= */
.exhibition {
    padding: 80px 0px;
}


/* ================= GRID ================= */
.exhibition-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ================= CARD ================= */
.exhibition-box {
    background: #e0f3ff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.exhibition-box a {
    text-decoration: none;
}

.exhibition-box:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.exhibition-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* DETAILS */
.exhibition-details {
    padding: 15px;
}

.exhibition-details h1 {
    font-size: 17px;
    color: #002E46;
    margin-bottom: 10px;
    font-weight: 700;
}

.exhibition-details p {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
    text-align: justify;
    margin: 0px;
}

/* META */
.meta {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #002e46;
    font-weight: 500;
}

.meta i {
    margin-right: 6px;
    color: #ff6b35;
    font-size: 16px;

}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .exhibition-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .exhibition {
        padding: 50px 15px;
    }

    .heading-1 h1 {
        font-size: 24px;
    }

    .exhibition-cards {
        grid-template-columns: 1fr;
    }

    .exhibition-img img {
        height: 200px;
    }

    .exhibition-details {
        padding: 10px 5px;
    }
}


/*=========================
LAYOUT
=========================*/

.new {
    display: grid;

    grid-template-columns: 50% 50%;

    gap: 25px;

    align-items: stretch;

    margin: 20px 0px;
}


/*=========================
LEFT IMAGE
=========================*/

.new .cource-card {

    background: #EAF6FF;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);

    height: 100%;
}

.new .card-img {

    position: relative;

    height: 100%;
}

.new .card-img img {
    width: 100%;
    height: 100%;
    /* min-height: 550px; */
    object-fit: cover;

}


/*=========================
DURATION
=========================*/

.new .duration {

    position: absolute;

    top: 18px;

    left: 18px;

    background:
        rgba(0, 46, 70, .92);

    color: #fff;

    padding: 8px 16px;

    border-radius: 40px;

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 8px;
}


/*=========================
RIGHT CONTENT
=========================*/

.cource-cardtxt {
    background: #EAF6FF;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-self: flex-end;
    gap: 0px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);

}

.cource-cardtxt .card-content {

    padding: 20px;
}


/* TAG */

.card-tag {

    display: inline-block;

    background: #FF6B35;

    color: #fff;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;

    margin-bottom: 18px;

}


/* TITLE */

.cource-cardtxt h2 {
    font-size: 19px;
    font-weight: 700;
    color: #002E46;
    margin-bottom: 10px;
}


/* DESCRIPTION */

.cource-cardtxt p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 15px;
    text-align: justify;
}



/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .new {

        grid-template-columns: 1fr;

    }

    .new .card-img img {

        min-height: 400px;

    }

    .cource-cardtxt h2 {

        font-size: 30px;

    }

}


/*=========================
MOBILE
=========================*/

@media(max-width:768px) {

    .new {

        gap: 18px;

    }

    .new .card-img img {

        height: 300px;

        min-height: auto;

    }

    .cource-cardtxt .card-content {

        padding: 22px;

    }

    .cource-cardtxt h2 {

        font-size: 26px;

    }

    .cource-cardtxt p {

        font-size: 14px;

        line-height: 1.8;

    }

    .feature i {

        width: 50px;

        height: 50px;

        font-size: 18px;

    }

    .feature span {

        font-size: 14px;

    }

}