:root {
    --blue: #0057b8;
    --yellow: #ffcc00;
    --light: #fffbdd;
    --muted: #6b7280;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --card-bg: rgba(255, 255, 255, 0.9);
    --accent: #ff6b6b;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #000;
}

/* =========================
   GLOBAL RESET
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
header {
    background: yellow;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/* LOGO */
.logo img {
    width: 165px;
}

/* =========================
   DESKTOP NAV
========================= */
#mobileMenu {
    display: flex;
    align-items: center;
    gap: 18px;
}

#mobileMenu a,
.dropdown-toggle {
    color: blue;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 12px 14px;
    white-space: nowrap;
}

#mobileMenu a:hover,
.dropdown-toggle:hover,
#mobileMenu a.active {
    background: #911c79;
    color: #fff;
}
.nav-link{
    display: block;
}

/* =========================
   DESKTOP DROPDOWN
========================= */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 10000;
}

.dropdown-content a {
    display: block;
    padding: 12px 18px;
    color: blue;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: #911c79;
    color: #fff;
}

@media (min-width: 821px) {
    .nav-dropdown:hover .dropdown-content {
        display: block;
    }
}

/* =========================
   HAMBURGER
========================= */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 820px) {

    .menu-icon {
        display: block;
    }

    #mobileMenu {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }

    #mobileMenu a,
    .dropdown-toggle {
        width: 100%;
        text-align: left;
        padding: 14px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border-left: 4px solid #911c79;
    }

    .dropdown-content a {
        padding-left: 40px;
        font-size: 15px;
    }

    .nav-dropdown.open .dropdown-content {
        display: block;
    }
}
@media (max-width: 768px) {
    #mobileMenu .dropdown-content {
        max-height: 29vh;     /* fits mobile screen */
        overflow-y: auto;     /* enables vertical scroll */
        -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
        border: 2px solid aqua;
        border-radius: 5px;
        box-shadow: 5px 10px #888888;
    }
}


/* video section */
.hero-video-section {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    /* fixed header offset */
}

/* Desktop / Tablet Video */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== TEXT OVER VIDEO ==================== */
.video-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px 15px;

    /* gradient background to highlight text */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0));

    text-align: center;
}

.video-text h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ==================== RESPONSIVE RULES ==================== */

/* Tablets & Medium Screens */
@media (max-width: 768px) {
    .hero-video-section {
        height: 260px;
        /* smaller height for phones */
        margin-top: 75px;
        /* adjust for header */
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-text h1 {
        font-size: 24px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero-video-section {
        height: 200px;
        /* very small screens */
        margin-top: 70px;
    }

    .video-text {
        padding: 18px 10px;
    }

    .video-text h1 {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
}



/* video sec end */

.hero {
    height: 60vh;
    position: relative;
    overflow: hidden;

}

.hero-slider-box {
    width: 100%;
    height: 74%;
    position: relative;
    padding-top: 87px !important;
}

.hero-slide-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .6s ease-in-out;
}

.hero-slide-active {
    opacity: 1 !important;
}

.hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-prev-btn,
.hero-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.hero-prev-btn {
    left: 10px;
}

.hero-next-btn {
    right: 10px;
}

/* Default: show big image, hide small image */
.hero-img-large {
    display: block;
}

.hero-img-small {
    display: none;
}

/* On small screens show small image */
@media (max-width: 600px) {
    .hero-img-large {
        display: none;
    }

    .hero-img-small {
        display: block;
    }
}

/* Optional – medium screens (tablet) */
@media (max-width: 900px) {
    .hero {
        height: 40vh;
        /* reduce slider height */
    }
}


/* event Start */
.events-wrapper {
    background: #f4d250;
    padding: 40px 5%;
}

.section-block {
    margin-bottom: 50px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-row h2 {
    font-size: 32px;
    font-weight: 700;
}

.nav-buttons button {
    background: #911c79;
    color: #fff;
    border: none;
    padding: 8px 12px;
    margin-left: 6px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    position: relative;
}

.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.date-tag {
    position: absolute;
    bottom: 50px;
    left: 12px;
    background: #911c79;
    color: #fff;
    padding: 5px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

.event-card p {
    padding: 12px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* --- Responsive mobile --- */
@media (max-width: 768px) {
    .header-row h2 {
        font-size: 24px;
    }

    .event-card img {
        height: 180px;
    }
}

/* Event End */

/* Slider */
.slider {
    max-width: 1100px;
    margin: 24px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.slides {
    display: flex;
    transition: transform 0.6s ease
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px;
    color: #fff;
    background-size: cover;
    background-position: center
}

.slide .card {
    background: rgba(0, 0, 0, 0.35);
    padding: 24px;
    border-radius: 8px;
    max-width: 640px
}

.slider-controls {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between
}

.ctrl {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

/* heading */
/* Courses Section */
.courses {
    width: 95%;
    margin: 0 auto;
}

.courses h2 {
    text-align: center;
    color: var(--blue);
    margin: 0 0 22px;
    font-size: 28px;
}

/* 2-column layout */
.course-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: stretch !important;
    /* <-- ensures equal height */
}


/* left list */
.left {
    position: relative;
}

/* left list – FIXED HEIGHT + SMOOTH SCROLL */
.left {
    position: relative;
    max-height: 410px;
    /* same as right card height */
    overflow-y: auto;
    padding-right: 6px;
}

/* scrollbar styling */
.left::-webkit-scrollbar {
    width: 6px;
}

.left::-webkit-scrollbar-thumb {
    background: rgba(0, 87, 184, 0.35);
    border-radius: 10px;
}

.left::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}


.course-list {
    overflow-x: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    background: var(--light);
    border-left: 4px solid var(--blue);
    border-radius: 10px;
    padding: 12px 12px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: box-shadow .28s ease, transform .22s ease, background .22s;
    box-shadow: 0 4px 10px rgba(11, 17, 32, 0.03);
}

.course-list li img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.course-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 87, 184, 0.12);
    filter: brightness(1.02);
}

.course-list li:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.12);
}

.course-list li.active-course {
    background: linear-gradient(180deg, #fff7d6, #ffefb2);
    border-left-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(255, 204, 0, 0.12);
}

/* right card - modern glass card */


.card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
    box-shadow: 0 12px 40px rgba(11, 17, 32, 0.06);
    overflow: hidden;
    min-height: 300px;
    position: relative;
}

.card {
    min-height: 410px;
    /* same height as left side */
}


/* left side of card content */
.card-content {
    flex: 1 1 360px;
    min-width: 220px;
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.card-title h3 {
    margin: 0;
    font-size: 20px;
    color: #0d1b2a;
}

.card-desc {
    color: var(--muted);
    margin: 6px 0 12px;
    line-height: 1.45;
}

/* feature grid inside card */
.features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.feature {
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-left: 4px solid var(--blue);
    box-shadow: 0 6px 18px rgba(11, 17, 32, 0.04);
}

/* CTA buttons */
.cta-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    border: 0;
}

.btn-apply {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 87, 184, 0.18);
}

.btn-brochure {
    background: transparent;
    color: var(--blue);
    border: 1px solid rgba(0, 87, 184, 0.12);
}

/* right side image area */
.card-media {
    width: 44%;
    max-width: 420px;
    min-width: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
}

.media-stage {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
    box-shadow: 0 6px 20px rgba(11, 17, 32, 0.06);
}

/* slider visuals */
.media-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .55s cubic-bezier(.2, .9, .25, 1), opacity .45s ease;
    opacity: 0;
    transform: translateX(20px) scale(.98);
    padding: 18px;
}

.media-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* active slide */
.media-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

/* small pager */
.media-pager {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.pager-dot {
    width: 2px;
    height: 2px;
    border-radius: 5px;
    background: rgba(11, 17, 32, 0.18);
    cursor: pointer;
}

.pager-dot.active {
    background: var(--blue);
    transform: scale(0.5);
}

/* responsive */
@media (max-width:980px) {
    .course-container {
        grid-template-columns: 1fr;
    }

    .card {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 14px;
    }

    .card-media {
        width: 100%;
        height: 220px;
    }

    .media-stage {
        height: 220px;
    }

    .card-content {
        padding: 10px 4px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* keyboard focus */
.course-list li {
    outline: none;
}



/* Admission modal/form */
/* ===========================
   POPUP BACKDROP
=========================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    /* Show using JS */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* ===========================
   POPUP CARD
=========================== */
.modal-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    animation: popupFade 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

@keyframes popupFade {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Heading */
.modal-card h3 {
    text-align: center;
    font-size: 22px;
    color: #004aad;
    margin-bottom: 15px;
    font-weight: 700;
}

/* ===========================
   INPUTS & SELECTS
=========================== */
#name,
#email,
#phone,
#courseSelect,
#city,
#message {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.2s ease;
}

#name:focus,
#email:focus,
#phone:focus,
#courseSelect:focus,
#city:focus,
#message:focus {
    border-color: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.15);
}

/* group space */
.form-row,
.modal-card>div {
    width: 100%;
}

/* ===========================
   BUTTONS
=========================== */
.apply-btn {
    background: #004aad;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.25s ease;
}

.apply-btn:hover {
    background: #00337a;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

#closeModal {
    font-size: 15px;
    transition: 0.2s ease;
}

#closeModal:hover {
    background: #f3f3f3;
}

/* ===========================
   FOOTER / SMALL TEXT
=========================== */
.form-actions {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-actions small {
    color: #444;
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:500px) {
    .modal-card {
        padding: 20px;
    }

    .apply-btn,
    #closeModal {
        width: 100%;
        margin-bottom: 8px;
    }

    .form-actions {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* Floating buttons */
.fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 150;
}

.linkfab {
    background: var(--blue);
    color: white;
    padding: 12px 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    display: flex;
    /* align-items: center; */
    gap: 50px;
    float: right;
    margin-right: -20px;
    margin-top: 14px;
    letter-spacing: 2px;
    border-radius: 50px 0 5px 50px;
    width: 76px;

}

.whatsapp>a>i {
    position: relative;
    font-size: 50px;
    color: green;
    text-align: right;
    float: right;
    /* padding-bottom: 20px !important; */
}

.whatsapp {
    padding: 20px;
}



/* footer {
            background: var(--blue);
            color: #fff;
            text-align: center;
            padding: 18px;
            margin-top: 30px
        } */

@media(max-width:800px) {
    .course-container {
        flex-direction: column
    }

    .left,
    .right {
        width: 100%
    }
}

/* Faq's Start */
/* FAQ's */
.faq-section {
    font-family: Arial, sans-serif;
    /* background: #0e5ba8; */

    max-width: 900px;
    margin: auto;
}

.faq-box {
    background: #fff;
    color: black;
    border-radius: 10px;
    margin: 10px 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.faq-box:hover {
    background: #f3f4f6;
}

.faq-box::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: transform 0.3s;
}

.faq-box.active::after {
    content: "-";
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    border-left: 3px solid #2563eb;
    margin-bottom: 5px;
    line-height: 1.6;
    color: #374151;
    transition: all 0.4s ease;
}

.faq-content.show {
    max-height: 500px;
    /* enough for content */
    padding: 15px 20px;
}

.faq-content ul {
    margin: 8px 0 8px 20px;
}

.faq-content li {
    margin: 5px 0;
}

h2 {
    text-align: center;
    color: #111827;
    margin-bottom: 20px;
}

/* Faq's End */
/* Footer Start */

.footer {
    background: #1b1b1b;
    color: #fff;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-wrap {
    width: 90%;
    max-width: 1500px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #f3c237;
    border-left: 4px solid #f3c237;
    padding-left: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #f3c237;
    padding-left: 5px;
}

/* Contact Info Specific */
.footer-info li {
    margin-bottom: 12px;
}

.footer-info .loc a,
.footer-info .mil a {
    font-weight: bold;
}

.footer-mini {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 14px;
}

/* ================================
   Awards and Recognition CSS
   ================================ */

.dual-carousel-section {
    padding: 20px 10px;
    background: #f7f7f7;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
}

/* ===== Container ===== */
.carousel-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    /* keeps content centered on large screens */
    margin: auto;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

/* ===== Individual Carousel Box ===== */
.carousel-box {
    width: 30%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-box h3 {
    margin-bottom: 15px;
}

/* ===== Carousel Area ===== */
.carousel {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    /* fills empty space when image uses contain */
}

.slides-award {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

/* ===== Image Fix (MOST IMPORTANT) ===== */
.slides-award img {
    min-width: 100%;
    height: 220px;
    object-fit: contain;
    /* FULL IMAGE VISIBLE */
    border-radius: 10px;
    background: #000;
}

/* ===== Navigation Buttons ===== */
.prev,
.next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* =========================
   Responsive Media Queries
   ========================= */

/* Tablets */
@media (max-width: 992px) {
    .carousel-container {
        flex-wrap: wrap;
    }

    .carousel-box {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Small tablets / large mobiles */
@media (max-width: 768px) {
    .carousel {
        height: 200px;
    }

    .slides-award img {
        height: 200px;
    }

    .prev,
    .next {
        font-size: 16px;
        padding: 6px 10px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .carousel-box {
        padding: 5px;
        border-radius: 3px;
    }

    .carousel {
        height: 180px;
    }

    .slides-award img {
        height: 180px;
        border-radius: 8px;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .section-title {
        font-size: 20px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .carousel {
        height: 160px;
    }

    .slides-award img {
        height: 160px;
    }

    .prev,
    .next {
        font-size: 14px;
        padding: 5px 8px;
    }

    .section-title {
        font-size: 18px;
    }
}

/* ===== End of Awards and Recognition ===== */

/*     <!-- Placement Partner Start --> */
.clients {
    padding: 40px 0;
    background: #fff;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.logo-track img {
    width: 180px;
    height: 100px;
    object-fit: contain;
    border-radius: 5px;
}

.wrap {
    text-align: center;
}

/* Infinite scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* <!-- Placement Partner End --> */

/* testimonial */

:root {
    --primarytest: #4a6cf7;
    --darktest: #222;
    --whitetest: #fff;
    --graytest: #777;
    --shadowtest: 0 8px 20px rgba(0, 0, 0, .08);
}

/* ------------------ SECTION ------------------ */
.testimonial-section {
    width: 100%;
    max-width: 1250px;
    margin: auto;
    padding: 20px;
}

.testimonial-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
    color: var(--darktest);
}

.testimonial-sub {
    text-align: center;
    color: var(--graytest);
    margin-bottom: 25px;
}

/* ------------------ SLIDER ------------------ */
.testimonial-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: 0.5s ease-in-out;
}

.testimonial-card {
    background: linear-gradient(180deg, var(--yellow), rgb(234, 234, 155));
    border-radius: 12px;
    box-shadow: var(--shadowtest);
    padding: 25px;
    margin: 10px;
    min-height: 270px;
    flex: 0 0 25%;
    /* Desktop default */
    position: relative;
}

.testimonial-card:after {
    content: '\201C';
    font-size: 4rem;
    color: black;
    opacity: 0.07;
    position: absolute;
    top: 10px;
    left: 15px;
}

.testimonial-content {
    margin-top: 20px;
    font-size: .95rem;
    line-height: 1.5;
    color: #444;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primarytest);
    margin-right: 12px;
}

.author-info h3 {
    font-size: 1.05rem;
}

.author-info p {
    color: var(--primarytest);
    font-size: .9rem;
}

.badge {
    display: inline-block;
    background: #013cff;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .8rem;
    margin-top: 5px;
}

/* ------------------ NAV BUTTONS ------------------ */
.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 12px;
}

.testimonial-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--whitetest);
    color: var(--primarytest);
    box-shadow: var(--shadowtest);
    font-size: 18px;
}

/* ------------------ DOTS ------------------ */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f80000;
    cursor: pointer;
}

.testimonial-dot.active {
    background: var(--primarytest);
    transform: scale(1.2);
}

/* ------------------ RESPONSIVE ------------------ */
@media(max-width:1200px) {
    .testimonial-card {
        flex: 0 0 33.33%;
    }
}

@media(max-width:900px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

@media(max-width:600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-title {
        font-size: 1.6rem;
    }
}

/* About us section start */

.about-section {
    width: 90%;
    padding: 50px 20px;
    background: #f8f9ff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT TEXT */
.about-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.about-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

/* RIGHT VIDEO */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* About Us Section End */

/* Contact Us Form Start */
/* ================== CONTACT SECTION STYLE ================== */

.contact-section {
    width: 100%;
    padding: 50px 15px;
    background: linear-gradient(160deg, rgb(227, 227, 181), rgb(168, 168, 228));
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Left Image */
.contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Right Form */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-form h2 {
    font-size: 28px;
    color: #004aad;
    margin-bottom: 10px;
}

.contact-form p {
    color: #444;
    margin-bottom: 25px;
}

/* Inputs */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 95%;
    padding: 12px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

/* Submit Button */
.contact-btn {
    width: 100%;
    padding: 12px;
    background: #004aad;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #00337a;
}

/* ================== MOBILE RESPONSIVE ================== */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form,
    .contact-image {
        width: 90%;
    }

    .contact-section {
        padding: 40px 10px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 10px;
    }

    .contact-form h2 {
        font-size: 20px;
    }
}

/* Conatct us form End */