/* ================= HERO ================= */
.hero-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    animation: fadeVideo 1.5s forwards;
    animation-delay: 0.3s;
}

/* Black Overlay */
.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.705);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 600px;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeUp 1s forwards;
    animation-delay: 0.5s;
}

.hero-content p {
    font-size: 16px;
    opacity: 0;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.7px;
    line-height: 1.8em;
    animation: fadeUp 1s forwards;
    animation-delay: 0.8s;
}

/* Hero Button */
.hero-btn {
    display: inline-block;
    padding: 12px 70px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    opacity: 0;
    animation: fadeUp 1s forwards;
    animation-delay: 1.1s;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes logoBounce {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { transform: translateY(5px); opacity: 1; }
    100% { transform: translateY(0); }
}

@keyframes navFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeVideo {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .auth-buttons {
        flex-direction: column;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0b1c4d;
    padding: 0 20px;
}

/* Highlighted Text */
.section-title span {
    color: #ffb400;
}

/* ===== HEADING ===== */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ===== PARAGRAPH ===== */
.section-title p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    font-weight: 400;
    color: #555;
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

/* ===== FADE UP ANIMATION ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 15px;
    }
}

/* ================= SECTION TITLE ================= */
.section-title {
    text-align: center;
    background:#ffffff;
    padding: 60px 20px 30px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

.section-title span {
    color: #ffb400;
}

.section-title p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ================= INFO SECTION ================= */
.info-section {
    padding: 80px 50px;
    background:#000000;
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    color: #fff;
    width: 100%;
}

/* ================= INFO CONTAINER ================= */
.info-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* ================= LEFT IMAGE ================= */
.info-image {
    border-radius: 20px;
    border: 2px solid white;
    overflow: hidden;
    animation: zoomInFade 1s ease forwards;
}

.info-image img {
    width: 100%;
    display: block;
    animation: floatImage 5s ease-in-out infinite;
}

/* ================= RIGHT CONTENT ================= */
.info-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center; /* center align all cards */
}

/* ================= FLIP CARD ================= */
/* ================= INFO BOX CONTAINER ================= */
.info-box {
    perspective: 1200px;
    height: 160px; /* box height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= FLIP INNER ================= */
.info-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    transition: transform 0.9s ease;
    transform-style: preserve-3d;
}

/* flip on hover */
.info-box:hover .info-box-inner {
    transform: rotateY(180deg);
}

/* ================= FRONT & BACK ================= */
.info-box-front,
.info-box-back {
    position: absolute;
    inset: 0;
    padding: 20px 15px;
    border-radius: 14px;
    backface-visibility: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;

    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* base shadow */
    border: 1px solid rgba(255, 255, 255, 0.2); /* base border */
    transition: box-shadow 0.4s ease, border 0.4s ease;
}

/* ================= FRONT ================= */
.info-box-front i {
    font-size: 30px;
    color: #ffffff;
}

.info-box-front h3 {
    font-size: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

/* ================= BACK ================= */
.info-box-back {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.12);
}

.info-box-back p {
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
    margin: 0;
}

/* ================= GLOW ON HOVER ================= */
.info-box:hover .info-box-front,
.info-box:hover .info-box-back {
    border: 1px solid rgba(255, 180, 0, 0.6);
    box-shadow:
        0 0 10px rgba(255, 180, 0, 0.4),
        0 0 20px rgba(255, 140, 0, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ================= ALWAYS GLOW FRONT ================= */
.info-box-front {
    box-shadow:
        0 4px 15px rgba(255, 180, 0, 0.2),
        0 0 10px rgba(255, 180, 0, 0.1);
    border: 1px solid rgba(255, 180, 0, 0.15);
}

/* ================= ANIMATIONS ================= */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes zoomInFade {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .info-container {
        grid-template-columns: 1fr;
    }

    .info-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
}


/* ===== BASE RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ===== COURSES SECTION ===== */
.courses-section {
    margin: 0;
    padding: 50px 20px; /* spacing around content */
    background: linear-gradient(-45deg, #0b1c4d, #10296c, #1a2a75, #0b1c4d); /* gradient applied */
}

/* ===== HEADER ===== */
.courses-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    color: #000000; /* text color for blue background */
}

.courses-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff; /* white text */
    letter-spacing: 1px;
    position: relative;
}

.courses-header h2 span {
    color: #ffb400; /* yellow highlight */
}

.courses-header p {
    color: #e0e0e0; /* light gray for paragraph */
    margin-top: 10px;
    line-height: 1.6;
}



/* ===== GRID ===== */
.courses-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.course-card {
    background: linear-gradient(-45deg, #0b1c4d, #10296c, #1a2a75, #0b1c4d);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    transition: transform 0.5s, box-shadow 0.5s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Stagger animation delays */
.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }
.course-card:nth-child(4) { animation-delay: 0.4s; }
.course-card:nth-child(5) { animation-delay: 0.5s; }
.course-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== CARD IMAGE ===== */
.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
}

/* CARD HOVER EFFECTS */
.course-card:hover {
    transform: translateY(-15px) scale(1.05) rotateZ(0.5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.course-card:hover img {
    transform: scale(1.1) rotateZ(1deg);
    filter: brightness(1.1);
}

/* BACKGROUND SHIMMER */
.course-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.5s;
}

.course-card:hover::before {
    opacity: 1;
}

/* ===== COURSE CONTENT ===== */
.course-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

/* META INFO */
.course-meta {
    font-size: 13px;
    color: #777;
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.course-meta span {
    display: flex;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

.course-meta i {
    margin-right: 5px;
    color: #ffb400;
    transition: transform 0.3s;
}

.course-card:hover .course-meta i {
    transform: rotate(20deg);
}

.course-card:hover .course-meta span {
    color: #ffb400;
    transform: translateX(3px);
}

/* COURSE TITLE */
.course-content h3 {
    font-size: 20px;
    color: #0b1c4d;
    margin-bottom: 12px;
    position: relative;
    transition: color 0.3s;
}

.course-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: #ffb400;
    transition: width 0.3s;
}

.course-card:hover .course-content h3 {
    color: #ffb400;
}

.course-card:hover .course-content h3::after {
    width: 50px;
}

/* PARAGRAPH */
.course-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    transition: transform 0.4s, opacity 0.4s;
}

.course-card:hover .course-content p {
    transform: translateY(-5px);
    opacity: 0.9;
}

/* APPLY BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1a5280, #15a3a3) !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 82, 128, 0.4);
}

.apply-btn:hover,
.apply-btn:focus,
.apply-btn:active {
    background: linear-gradient(135deg, #1a5280, #15a3a3) !important;
    color: #fff !important;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 25px rgba(21, 163, 163, 0.5);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .courses-header h2 {
        font-size: 28px;
    }

    .course-content h3 {
        font-size: 18px;
    }

    .course-content p {
        font-size: 13px;
    }

    .apply-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}


/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ===== SECTION ===== */
.why-choose-us {
    padding: 0px 20px;
    background: linear-gradient(135deg, #eef2ff, #ffffff);
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
  

}

/* ===== TITLE ===== */
.section-title {
    text-align: center;
    animation: fadeDown 1s ease forwards;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
}

.section-title span {
    color: #4f46e5;
}

.section-title p {
    margin-top: 10px;
    color: #555;
}

/* ===== COURSES SECTION ===== */
.courses-section {
    padding: 0px 50px;
    background: #f9f9f9; /* section background light */
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1c4d;
}

.section-title h2 span {
    color: #5e5eff;
}

.section-title p {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 12px auto 0 auto;
    line-height: 1.8;
}

/* ===== GRID (BLUE BACKGROUND) ===== */
.choose-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 5em 5em 5em 5em;
    background: linear-gradient(-45deg, #0b1c4d, #10296c, #1a2a75, #0b1c4d);
    background-size: 400% 400%;
    animation: gradientBG 18s ease infinite;
    border-radius: 20px;
}

/* ===== CARD ===== */
.choose-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(60px);
    animation: slideUp 1s ease forwards;
    transition: 0.4s;
}

.choose-card:hover {
    transform: translateY(-15px) scale(1.04);
    box-shadow: 0 35px 70px rgba(79,70,229,0.35);
}

/* ===== ICON ===== */
.choose-card i {
    font-size: 42px;
    color: #0b1c4d;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

/* ===== TEXT ===== */
.choose-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0b1c4d;
}

.choose-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== ANIMATION DELAYS ===== */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .choose-grid { grid-template-columns: 1fr; }
}


/* ===== CATEGORY CARDS CONTAINER ===== */
.category-cards {
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;

    background: #000000;
    padding: 4em 5em;
    border-radius: 12px;
}

/* ===== BIG SLOW BUBBLES ===== */
.category-cards::before,
.category-cards::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: repeat;
    z-index: 0;
    animation: bubbleMoveSlow 70s linear infinite; /* VERY SLOW */
}

/* medium–big bubbles */
.category-cards::before {
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.35) 20px, transparent 21px),
        radial-gradient(circle, rgba(255,255,255,0.25) 30px, transparent 31px),
        radial-gradient(circle, rgba(255,255,255,0.2) 18px, transparent 19px);
    background-size: 350px 350px, 500px 500px, 280px 280px;
}

/* extra BIG bubbles */
.category-cards::after {
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.25) 60px, transparent 61px),
        radial-gradient(circle, rgba(255,255,255,0.18) 90px, transparent 91px);
    background-size: 900px 900px, 700px 700px;
    animation-duration: 100s; /* ULTRA SLOW */
}

/* Slow upward floating */
@keyframes bubbleMoveSlow {
    0% {
        background-position: 0 120%;
    }
    100% {
        background-position: 0 -120%;
    }
}

/* content stays above bubbles */
.category-cards > * {
    position: relative;
    z-index: 1;
}



/* ===== FLIP CARD ===== */
.flip-card {
    background: transparent;
    width: calc((100% / 3) - 20px);
    height: 260px; /* extra height for more content */
    perspective: 1000px;
}

/* ===== INNER ===== */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* ===== FRONT & BACK ===== */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    backface-visibility: hidden;
    display: flex;
    border: 2px solid #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    font-size: 17px;
}

/* ===== FRONT FACE ===== */
.flip-card-front {
    background: #10296c;
    color: #0f172a;
}

.flip-card-front i {
    font-size: 25px;
    padding: 18px;
    border-radius: 50%;
    background: #f1f4f9;
    margin-bottom: 12px;
    color: #1e293b;
}

.flip-card-front h3 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.flip-card-front p {
    font-size: 17px;
    margin: 4px 0;
    color: #ffffff;
}

/* ===== BACK FACE ===== */
.flip-card-back {
    transform: rotateY(180deg);
    line-height: 1.5;
    font-size: 17px;
}

/* ===== CARD COLORS ===== */
.development .flip-card-back {
    background: #c7e7c7;
    color: #000000;
}

.data-science .flip-card-back {
    background: #c7e7c7;
    color: #000000;
}

.design .flip-card-back {
    background: #c7e7c7;
    color: #000000;
}

.marketing .flip-card-back {
    background: #c7e7c7;
    color: #000000;
}

.business .flip-card-back {
    background: #c7e7c7;
    color: #000000;
}

.mobile .flip-card-back {
    background: #c7e7c7;
    color: #000000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .flip-card {
        width: calc((100% / 2) - 20px);
    }
}

@media (max-width: 600px) {
    .flip-card {
        width: 100%;
    }
}
/* testimonial */

/* ===== SECTION ===== */
.testimonial-section{
  
  padding-bottom: 40px;
  background: linear-gradient(-45deg, #0b1c4d, #10296c, #1a2a75, #0b1c4d);
  font-family:"Segoe UI", sans-serif;
}

/* ===== TITLE ===== */
.section-title{
  text-align:center;
}

.section-title h2{
  font-size:34px;
  color:#0f172a;
}

.section-title h2 span{
  color:#15a3a3;
}

.section-title p{
  color:#64748b;
  margin-top:10px;
}

.underline{
  width:60px;
  height:4px;
  background:#15a3a3;
  margin:15px auto 0;
}

/* ===== CONTAINER ===== */
.container-test{
  width:100%;
  padding-top: 3em;
}

/* ===== SLIDER ===== */
.testimonial-slider{
  overflow:hidden;
  position:relative;
  width:100%;
}

/* 🔥 FIXED TRACK */
.testimonial-track{
  display:flex;
  animation: slide 15s infinite;
}

/* 🔥 FIXED CARD */
.testimonial-card{
  min-width:100%;          /* IMPORTANT */
  background:#ffffff;
  padding-bottom:40px;
  border-radius:14px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  text-align:center;
}

/* ===== CONTENT ===== */
.testimonial-card h3{
  font-size:22px;
  color:#0f172a;
}

.role{
  font-size:14px;
  color:#64748b;
  margin-bottom:15px;
}

.quote{
  font-size:16px;
  color:#334155;
  line-height:1.7;
  margin-bottom:20px;
}

.stars{
  color:#facc15;
  font-size:20px;
}

/* ===== ANIMATION ===== */
@keyframes slide{
  0%, 25%{
    transform:translateX(0);
  }
  33%, 58%{
    transform:translateX(-100%);
  }
  66%, 100%{
    transform:translateX(-200%);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .testimonial-card{
    padding:30px 20px;
  }

  .section-title h2{
    font-size:28px;
  }
}
/* ===== SLIDER ===== */
.testimonial-slider{
  overflow:hidden;
  width:100%;
  
}

.testimonial-track{
  display:flex;
  gap:20px;                 /* 👈 CARD GAP */
  width:200%;
  animation: scroll 20s linear infinite;
}

.testimonial-card{
  min-width:calc(20% - 16px); /* 👈 GAP adjust */
  background:#fff;
  padding:40px;
  border-radius:14px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  text-align:center;
}


/* ===== CONTINUOUS ANIMATION ===== */
@keyframes scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}


/* COURSES PAGE */

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8fafc;
    color: #1e293b;
}

/* ===== HEADER ===== */
.courses-header {
    text-align: center;
    padding: 20px 20px ;
    
}

.courses-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
  
}

.courses-header p {
    font-size: 15px;
    max-width: 680px;
    color: #64748b;
    line-height: 1.6;
}

/* ===== COURSES GRID ===== */
.courses-container {
    width: 100%;
    padding-left: 5em;
    padding-right: 5em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== COURSE CARD ===== */
.course-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ===== IMAGE ===== */
.course-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* ===== CONTENT ===== */
.course-content {
    padding: 22px 22px 26px;
}

.course-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.course-meta b {
    color: #0f172a;
    font-weight: 500;
    margin-left: 4px;
}

/* ===== TITLE & TEXT ===== */
.course-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

.course-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* ===== BUTTON ===== */
.apply-btn {
    display: inline-block;
    padding: 9px 22px;
    background: #f59e0b;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .courses-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .courses-container {
        grid-template-columns: 1fr;
        padding: 30px 1.5em;
    }

    .courses-header h1 {
        font-size: 30px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    width: 100%;
    padding: 50px 2em;
    background: linear-gradient(135deg, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
}

/* ===== TEXT ===== */
.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* ===== BUTTONS ===== */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 30px;
    background: linear-gradient(135deg, #1a5280, #15a3a3);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn-outline {
    padding: 13px 30px;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #5b4df1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 30px;
    }

    .cta-section {
        padding: 70px 1.5em;
    }
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

/* ===== SECTION ===== */
.pricing-section {
    padding-top: 2em;
    padding-left: 5em;
    padding-bottom: 4em;
    padding-right: 5em;
    text-align: center;
}

/* ===== TOGGLE ===== */
.pricing-toggle {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 40px;
    margin-bottom: 30px;
}

.pricing-toggle span {
    padding: 10px 24px;
    font-size: 14px;
    color: #475569;
    cursor: default;
}

.pricing-toggle .active {
    background: linear-gradient(135deg, #1a5280, #15a3a3);
    color: #ffffff;
    border-radius: 30px;
}

/* ===== CARDS GRID ===== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 32px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* ===== POPULAR ===== */
.pricing-card.popular {
    border: 2px solid #1a5280;
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a5280, #15a3a3);
    color: #ffffff;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
}

/* ===== TEXT ===== */
.pricing-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sub-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.pricing-card h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-card h2 span {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

/* ===== LIST ===== */
.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #334155;
}

.pricing-card ul i {
    color: #22c55e;
    margin-right: 8px;
}

/* ===== BUTTON ===== */
.btn {
    
    width: 250px;
    padding: 12px 0px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.4s;
    background: linear-gradient(135deg, #1a5280, #15a3a3);
    text-align: center;

}

.btn:hover {
    background:#064168;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 60px 1.5em;
    }
}


/* ===== PRICING HEADER ===== */
.pricing-header {
    width: 100%;
    padding: 50px 50px;
    text-align: center;
    background: linear-gradient(135deg, #000000);
}

.pricing-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 16px;
    color: #e0e7ff;
    max-width: 700px;
    margin: 0 auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  align-items: center;
}

.logo-card {
  background: #f8f9fb;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.3s ease;
}

.logo-card img {
  max-width: 120px;
  max-height: 45px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
