@font-face {
    font-family: "Panamera-Bold";
    src: local("Panamera-Bold");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

:root {
    --red: #dc3545;
    --green: #0b7b0b;
    --black: #111111;
    --white: #ffffff;
}

.hero-section {
    font-family: "Panamera-Bold", sans-serif;
    background: linear-gradient(135deg, #eef6ee 0%, #f7faf7 50%, #f0f4ff 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── Decorative dot grids (CSS) ── */
.hero-shape {
    position: absolute;
    pointer-events: none;
    display: flex;
}

.shape-dots-tl {
    top: 60px;
    left: 40px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, #0b7b0b 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.45;
    animation: floatY 5s ease-in-out infinite;
}

.shape-dots-bl {
    bottom: 80px;
    left: 80px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #dc3545 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.35;
    animation: floatY 6s ease-in-out infinite reverse;
}

.shape-dots-tr {
    top: 80px;
    right: 60px;
    width: 70px;
    height: 90px;
    background-image: radial-gradient(circle, #0b7b0b 1.5px, transparent 1.5px);
    background-size: 13px 13px;
    opacity: 0.3;
    animation: floatY 7s ease-in-out infinite;
}

/* ── Layout ── */
.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* ── LEFT ── */
.hero-left {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #0b7b0b33;
    border-radius: 50px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.7s ease both;
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0b7b0b;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 13px;
    color: #0b7b0b;
    letter-spacing: 0.4px;
}

.hero-headline {
    font-family: "Panamera-Bold", sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.13;
    color: var(--black);
    margin-bottom: 22px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-headline .accent-red {
    color: var(--red);
}
.hero-headline .accent-green {
    color: var(--green);
}

.hero-sub {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.btn-primary {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 15px;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition:
        background 0.25s,
        transform 0.2s,
        box-shadow 0.25s;
    text-decoration: none;
    box-shadow: 0 6px 24px #0b7b0b33;
}

.btn-primary:hover {
    background: #095e09;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px #0b7b0b44;
}

.btn-primary .arrow {
    font-size: 18px;
    transition: transform 0.2s;
}
.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 14px;
    color: var(--black);
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-secondary:hover {
    color: var(--red);
}

.play-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--red);
    transition: box-shadow 0.2s;
}

.btn-secondary:hover .play-icon {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.25);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid #dde8dd;
    animation: fadeSlideUp 0.8s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 26px;
    color: var(--black);
    line-height: 1;
}

.stat-number span {
    color: var(--red);
}

.stat-label {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 12px;
    color: #888;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    background: #dde8dd;
    align-self: stretch;
}

/* ── RIGHT ── */
.hero-right {
    position: relative;
    height: 580px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-bg-circle {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 40% 40%,
        #d4edda 0%,
        #e8f5e9 60%,
        transparent 100%
    );
    z-index: 1;
    animation: fadeIn 1s ease both;
}

.hero-student-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 540px;
    width: auto;
    object-fit: contain;
    z-index: 3;
    animation: heroImageIn 1s ease 0.2s both;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.12));
}

/* Animated shape images */
.shape-img {
    position: absolute;
    pointer-events: none;
    z-index: 4;
}

.shape-img-wave {
    top: 60px;
    right: 20px;
    width: 74px;
    animation: floatY 4s ease-in-out infinite;
    opacity: 0.85;
}

.shape-img-circle-dash {
    top: 38%;
    right: -14px;
    width: 120px;
    animation: spinSlow 16s linear infinite;
    opacity: 0.75;
}

.shape-img-circle-sm {
    bottom: 100px;
    right: 8px;
    width: 48px;
    animation: pulse 3s ease-in-out infinite;
}

.shape-img-yellow {
    bottom: 195px;
    left: 16px;
    width: 50px;
    animation: pulse 3.5s ease-in-out infinite 0.5s;
}

/* Semester badge */
.semester-badge {
    position: absolute;
    top: 90px;
    left: -20px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeSlideRight 0.9s ease 0.5s both;
}

.semester-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c8e6c8, #a5d6a7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.semester-text strong {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 14px;
    color: var(--black);
    display: block;
    line-height: 1.2;
}

.semester-text span {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 11px;
    color: var(--green);
}

/* Instructor card */
.instructor-card {
    position: absolute;
    bottom: 80px;
    right: -20px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 10;
    min-width: 210px;
    animation: fadeSlideUp 0.9s ease 0.6s both;
}

.instructor-card-title {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.instructor-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    object-fit: cover;
    margin-left: -8px;
    background: #e0e0e0;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-plus {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: "Panamera-Bold", sans-serif;
    border: 2.5px solid #fff;
    margin-left: -8px;
}

.instructor-count {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

.instructor-count strong {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 15px;
    color: var(--black);
    line-height: 1.1;
}

.instructor-count span {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 11px;
    color: #999;
}

/* ── Keyframes ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.13);
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        text-align: center;
    }
    .hero-right {
        height: 340px;
    }
    .hero-student-img {
        height: 320px;
    }
    .hero-bg-circle {
        width: 290px;
        height: 290px;
    }
    .instructor-card {
        right: 0;
        bottom: 20px;
    }
    .semester-badge {
        left: 0;
        top: 20px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
}

/* about section */
.about-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: "Panamera-Bold", sans-serif;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
}

/* make about us container column inverse on mobile view so about left will be at bottom and about right will be at top */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        padding: 0 28px;
        gap: 60px;
    }
    .about-left {
        order: 2;
    }
    .about-right {
        order: 1;
    }
}

/* ══ LEFT IMAGE STACK ══ */
.about-left {
    position: relative;
    height: 520px;
}

/* Blob shape behind images */
.about-blob {
    position: absolute;
    top: 20px;
    left: -10px;
    width: 300px;
    height: 300px;
    background: #d4edda;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite;
}

/* Dot grid top-left */
.about-dots-tl {
    position: absolute;
    top: 10px;
    left: 30px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(circle, #dc3545 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.35;
    z-index: 1;
    animation: floatY 5s ease-in-out infinite;
}

/* Dot grid bottom-right */
.about-dots-br {
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, #0b7b0b 1.5px, transparent 1.5px);
    background-size: 13px 13px;
    opacity: 0.35;
    z-index: 1;
    animation: floatY 6s ease-in-out infinite reverse;
}

/* Main student photo */
.about-main-img {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 300px;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
    animation: fadeSlideUp 0.9s ease 0.1s both;
}

/* Video card (top-right) */
.about-video-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 210px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
    z-index: 5;
    animation: fadeSlideUp 0.9s ease 0.3s both;
}

.about-video-thumb {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
}

.play-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #dc3545;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.about-video-body {
    padding: 10px 14px 12px;
}

.about-video-bar {
    height: 6px;
    border-radius: 4px;
    background: #eee;
    margin-bottom: 6px;
    overflow: hidden;
}

.about-video-bar-fill {
    height: 100%;
    width: 65%;
    border-radius: 4px;
    background: linear-gradient(90deg, #0b7b0b, #34c759);
}

.about-video-bar.short {
    width: 80%;
}
.about-video-bar.short .about-video-bar-fill {
    width: 40%;
    background: #e0e0e0;
}

/* Award badge (bottom centre) */
.about-award-card {
    position: absolute;
    bottom: 30px;
    left: 160px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
    z-index: 6;
    animation: fadeSlideUp 0.9s ease 0.5s both;
}

.award-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8e6c8, #a5d6a7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.award-text strong {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 20px;
    color: #0b7b0b;
    display: block;
    line-height: 1.1;
}

.award-text span {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 12px;
    color: #888;
}

/* Decorative shape images */
.shape-abs {
    position: absolute;
    pointer-events: none;
}

.shape-circle-yellow {
    top: 50%;
    right: -30px;
    width: 56px;
    transform: translateY(-50%);
    animation: pulse 3.5s ease-in-out infinite;
    z-index: 2;
}

.about-float-image {
    position: absolute;
    bottom: 160px;
    right: -20px;
    width: 220px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    animation: fadeSlideUp 0.9s ease 0.4s both;
    z-index: 4;
}
.about-float-image img {
    border-radius: 14px;
}
@media screen and (max-width: 500px) {
    .about-float-image {
        display: none;
    }
}
/* ══ RIGHT CONTENT ══ */
.about-right {
}

.about-label {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
    animation: fadeSlideUp 0.7s ease both;
}

.about-headline {
    font-family: "Panamera-Bold", sans-serif;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.15;
    color: #111;
    margin-bottom: 14px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.about-headline .accent-red {
    color: #dc3545;
}

.about-underline {
    width: 70px;
    height: 4px;
    border-radius: 2px;
    background: #0b7b0b;
    margin-bottom: 26px;
    animation: expandWidth 0.9s ease 0.3s both;
}

.about-body {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

/* Checklist */
.about-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Panamera-Bold", sans-serif;
    font-size: 15px;
    color: #111;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 22px;
    height: 22px;
}

/* ══ Keyframes ══ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 70px;
        opacity: 1;
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.12);
    }
}

@keyframes blobMorph {
    0%,
    100% {
        border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    }
    33% {
        border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
    }
    66% {
        border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
    }
}

@keyframes spinSlow {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@media (max-width: 960px) {
    .about-container {
        grid-template-columns: 1fr;
        padding: 0 28px;
        gap: 60px;
    }
    .about-left {
        height: 420px;
    }
    .about-main-img {
        width: 240px;
        height: 300px;
    }
}

/* about section ends */

/* popular courses category section */
.categories-section {
    background: #fff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
    font-family: "Panamera-Bold", sans-serif;
}

.categories-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ── Header ── */
.categories-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
}

.categories-title {
    font-family: "Panamera-Bold", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    color: #111;
    margin-bottom: 10px;
    animation: fadeSlideUp 0.7s ease both;
}

.categories-underline-wrap {
    margin-bottom: 18px;
    animation: fadeIn 0.8s ease 0.2s both;
}

.categories-underline-wrap svg {
    width: 90px;
    height: 12px;
}

.categories-sub {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #888;
    max-width: 520px;
    line-height: 1.65;
    animation: fadeSlideUp 0.7s ease 0.15s both;
}

/* ── Cards grid via flex ── */
.categories-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.categories-row {
    display: flex;
    gap: 20px;
}

.cat-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    animation: fadeSlideUp 0.7s ease both;
    text-decoration: none;
}

.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

/* Individual card colours */
.cat-card.green-bg {
    background: #e8f5e9;
}
.cat-card.red-bg {
    background: #fdecea;
}
.cat-card.teal-bg {
    background: #e0f4f1;
}
.cat-card.yellow-bg {
    background: #fff8e1;
}
.cat-card.purple-bg {
    background: #ede7f6;
}
.cat-card.pink-bg {
    background: #fce4ec;
}

.cat-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s;
}

.cat-card:hover .cat-icon-wrap {
    transform: rotate(-6deg) scale(1.08);
}

.cat-name {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 16px;
    color: #111;
    line-height: 1.3;
}

.cat-count {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* ── Stagger delays ── */
.cat-card:nth-child(1) {
    animation-delay: 0.1s;
}
.cat-card:nth-child(2) {
    animation-delay: 0.18s;
}
.cat-card:nth-child(3) {
    animation-delay: 0.26s;
}

.categories-row:nth-child(2) .cat-card:nth-child(1) {
    animation-delay: 0.2s;
}
.categories-row:nth-child(2) .cat-card:nth-child(2) {
    animation-delay: 0.28s;
}
.categories-row:nth-child(2) .cat-card:nth-child(3) {
    animation-delay: 0.36s;
}

/* ── CTA button ── */
.categories-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    animation: fadeSlideUp 0.7s ease 0.4s both;
}

.btn-view-all {
    font-family: "Panamera-Bold", sans-serif;
    font-size: 15px;
    color: #0b7b0b;
    background: transparent;
    border: 2px solid #0b7b0b;
    padding: 13px 38px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.2s,
        box-shadow 0.25s;
}

.btn-view-all:hover {
    background: #0b7b0b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px #0b7b0b33;
}

.btn-view-all .arrow {
    font-size: 17px;
    transition: transform 0.2s;
}

.btn-view-all:hover .arrow {
    transform: translateX(4px);
}

/* ── Keyframes ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .categories-inner {
        padding: 0 24px;
    }
    .categories-row {
        flex-direction: column;
    }
}
/* popular courses category section */

/* our patners section */
#our-patners {
    background-color: white;
    padding: 120px 15px;
}

.our-patners-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-patners-intro {
    width: 40%;
}

.our-patners-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 55%;
}

.our-patners-images .patner-img-holder {
    width: 30%;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}
.our-patners-images .patner-img-holder img {
    object-fit: contain;
    padding: 15px;
}

@media screen and (max-width: 500px) {
    .our-patners-container {
        flex-direction: column;
        gap: 40px;
    }

    .our-patners-intro {
        width: 100%;
    }

    .our-patners-images {
        width: 100%;
    }
}
/* our patners section ends */
