/* ===== RESET & VARIABEL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ===== FONT POPPINS - MODERN & BERSIH ===== */
    --font-main: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: 'Poppins', 'Georgia', serif;

    /* Warna */
    --merah: #746c6c;
    --merah-gelap: #A0161B;
    --merah-muda: #F5E6E7;
    --kuning: #F5C518;
    --kuning-muda: #FFF3D6;
    --kuning-gelap: #D4A800;
    --abu: #D5CDC5;
    --abu-muda: #EDE8E0;
    --abu-gelap: #8A827A;
    --abu-tua: #5A524A;
    --putih: #FFFFFF;
    --putih-kotor: #F9F7F5;
    --hitam: #2A2520;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--putih-kotor);
    color: var(--hitam);
    line-height: 1.6;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SEMUA TEXT JADI TITLE CASE (HURUF BESAR AWAL KATA) ===== */
.logo-text,
.hero-text h1,
.section h2,
.tentang-item h3,
.card-exp h4,
.guru-card h4,
.footer-logo span,
.kontak-box h2 {
    text-transform: none;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--hitam);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    border-bottom: 3px solid var(--kuning);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    /* DIUBAH DARI 700 */
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-family: var(--font-display);
}

.logo-text {
    color: var(--putih);
    font-weight: 500;
    /* TAMBAHKAN - lebih tipis */
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--kuning);
    border-radius: 50%;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--abu);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
    font-family: var(--font-main);
}

.nav-links a:hover {
    color: var(--kuning);
}

.btn-outline {
    border: 2px solid var(--kuning);
    padding: 6px 20px;
    border-radius: 40px;
    color: var(--kuning) !important;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: var(--kuning);
    color: var(--hitam) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--putih);
    border-radius: 4px;
    transition: 0.25s;
}

/* ===== HERO ===== */
.hero {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, var(--putih) 0%, var(--kuning-muda) 100%);
    border-bottom: 3px solid var(--kuning);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 30, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--putih);
    padding: 6px 18px 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--abu-tua);
    border: 1px solid var(--abu);
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    font-family: var(--font-main);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kuning);
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    font-family: var(--font-display);
}

.highlight-red {
    color: var(--merah);
}

.highlight-yellow {
    color: var(--kuning);
    text-shadow: 0 2px 8px rgba(245, 197, 24, 0.2);
}

.highlight-dark {
    color: var(--hitam);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--abu-tua);
    max-width: 90%;
    line-height: 1.8;
    font-weight: 400;
    font-family: var(--font-main);
}

.hero-sub strong {
    color: var(--hitam);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.btn-primary {
    background: var(--merah);
    color: var(--putih);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(196, 30, 36, 0.25);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
}

.btn-primary:hover {
    background: var(--merah-gelap);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(196, 30, 36, 0.35);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-outline-light {
    border: 2px solid var(--abu-tua);
    color: var(--abu-tua);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    background: transparent;
    font-family: var(--font-main);
}

.btn-outline-light:hover {
    background: var(--abu-tua);
    color: var(--putih);
    transform: translateY(-3px);
}

.btn-outline-light svg {
    width: 18px;
    height: 18px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 2px solid var(--abu);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--hitam);
    line-height: 1.2;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--abu-gelap);
    font-weight: 500;
    display: flex;
    align-items: center;
    font-family: var(--font-main);
}

.stat-divider {
    width: 2px;
    height: 30px;
    background: var(--abu);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

/* Lingkaran utama */
.hero-circle-main {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 4px solid transparent;
}

.circle-ring-1 {
    width: 320px;
    height: 320px;
    border-color: var(--abu);
    border-top-color: var(--merah);
    animation: spin-slow 12s linear infinite;
}

.circle-ring-2 {
    width: 280px;
    height: 280px;
    border-color: var(--abu);
    border-bottom-color: var(--kuning);
    animation: spin-slow 8s linear infinite reverse;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.circle-content {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 6px solid var(--kuning);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: var(--putih);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.circle-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--putih);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--abu);
    animation: float 4s ease-in-out infinite;
    white-space: nowrap;
    z-index: 3;
    font-family: var(--font-main);
}

.floating-card svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.f-card-1 {
    top: 8%;
    left: -18%;
    background: var(--kuning-muda);
    border-color: var(--kuning);
    animation-delay: 0s;
    padding: 12px 22px;
    font-size: 0.9rem;
}

.f-card-1 svg {
    stroke: var(--kuning-gelap);
}

.f-card-2 {
    bottom: 8%;
    right: -18%;
    background: var(--hitam);
    color: var(--putih);
    border: none;
    animation-delay: 1.5s;
    padding: 12px 22px;
    font-size: 0.9rem;
}

.f-card-2 svg {
    stroke: var(--putih);
}

.f-card-3 {
    top: 42%;
    right: -24%;
    background: var(--putih);
    border-color: var(--merah);
    animation-delay: 3s;
    padding: 12px 22px;
    font-size: 0.9rem;
}

.f-card-3 svg {
    stroke: var(--merah);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Decorative Dots */
.deco-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--kuning);
    opacity: 0.3;
    z-index: 1;
}

.dot-1 {
    width: 12px;
    height: 12px;
    top: 5%;
    right: 5%;
    animation: float 5s ease-in-out infinite;
}

.dot-2 {
    width: 8px;
    height: 8px;
    bottom: 20%;
    left: 0%;
    background: var(--merah);
    opacity: 0.2;
    animation: float 4.5s ease-in-out infinite 1s;
}

.dot-3 {
    width: 16px;
    height: 16px;
    top: 30%;
    right: -2%;
    background: var(--abu-gelap);
    opacity: 0.12;
    animation: float 5.5s ease-in-out infinite 2s;
}

.dot-4 {
    width: 6px;
    height: 6px;
    bottom: 40%;
    left: -5%;
    background: var(--kuning);
    opacity: 0.4;
    animation: float 3.5s ease-in-out infinite 0.5s;
}

/* ===== SECTION UMUM ===== */
.section {
    padding: 70px 0;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--abu-tua);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: var(--font-main);
}

.section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
    font-family: var(--font-display);
}

/* ===== TENTANG ===== */
.tentang {
    background: var(--abu-muda);
}

.tentang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tentang-item {
    background: var(--putih);
    padding: 32px 24px;
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 5px solid var(--kuning);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tentang-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--putih);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    border: 2px solid var(--abu);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.tentang-item:hover .icon-wrapper {
    border-color: var(--kuning);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.tentang-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: var(--font-display);
}

.tentang-item p {
    color: var(--abu-tua);
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.7;
}

/* ===== PENGALAMAN ===== */
.pengalaman {
    background: var(--putih);
    border-top: 2px solid var(--abu);
    border-bottom: 2px solid var(--abu);
}

.pengalaman-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-exp {
    background: var(--putih-kotor);
    padding: 30px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--kuning);
    transition: transform 0.2s;
}

.card-exp:hover {
    transform: translateY(-4px);
}

.exp-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--putih);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 14px;
    border: 2px solid var(--abu);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.card-exp:hover .exp-icon-wrapper {
    border-color: var(--kuning);
    transform: scale(1.05) rotate(5deg);
}

.exp-icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.card-exp h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 700;
    font-family: var(--font-display);
}

.card-exp p {
    color: var(--abu-tua);
    font-size: 0.95rem;
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.7;
}

/* ===== GURU ===== */
.guru {
    background: var(--abu-muda);
}

.guru-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.guru-card {
    background: var(--putih);
    padding: 26px 18px 22px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--abu);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.guru-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.guru-avatar-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--putih);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    border: 3px solid var(--abu);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.guru-card:hover .guru-avatar-wrapper {
    border-color: var(--kuning);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.guru-avatar-wrapper svg {
    width: 36px;
    height: 36px;
}

.guru-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.guru-card p {
    color: var(--abu-tua);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-family: var(--font-main);
}

.guru-tag {
    display: inline-block;
    background: var(--kuning);
    color: var(--hitam);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    font-family: var(--font-main);
}

/* ===== KONTAK ===== */
.kontak {
    background: var(--merah);
    color: var(--putih);
    text-align: center;
}

.kontak-box h2 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-weight: 700;
}

.kontak-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 28px;
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.7;
}

.kontak-box .btn-primary {
    background: var(--kuning);
    color: var(--hitam);
    box-shadow: 0 4px 14px rgba(245, 197, 24, 0.3);
    font-family: var(--font-main);
}

.kontak-box .btn-primary:hover {
    background: var(--kuning-gelap);
}

.kontak-small {
    margin-top: 24px;
    font-size: 0.9rem;
    opacity: 0.7;
    font-family: var(--font-main);
}

/* ===== FOOTER ===== */
footer {
    background: var(--hitam);
    color: var(--abu);
    padding: 36px 0 24px;
    border-top: 3px solid var(--kuning);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 4px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--putih);
    font-family: var(--font-display);
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.7;
    font-family: var(--font-main);
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--abu);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-family: var(--font-main);
}

.footer-links a:hover {
    color: var(--kuning);
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 8px;
    font-family: var(--font-main);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .f-card-1 {
        left: -10%;
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .f-card-2 {
        right: -10%;
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .f-card-3 {
        right: -16%;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        align-items: center;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-circle-main {
        width: 260px;
        height: 260px;
    }

    .circle-ring-1 {
        width: 260px;
        height: 260px;
    }

    .circle-ring-2 {
        width: 225px;
        height: 225px;
    }

    .circle-content {
        width: 190px;
        height: 190px;
        border-width: 5px;
        padding: 12px;
    }

    .f-card-1 {
        top: -5%;
        left: 0%;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .f-card-2 {
        bottom: -5%;
        right: 0%;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .f-card-3 {
        display: none;
    }

    .deco-dot {
        display: none;
    }

    .tentang-grid,
    .pengalaman-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guru-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--hitam);
        flex-direction: column;
        padding: 24px 0;
        gap: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        display: none;
        border-top: 2px solid var(--kuning);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--putih);
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .hero-visual {
        min-height: 260px;
    }

    .hero-circle-main {
        width: 200px;
        height: 200px;
    }

    .circle-ring-1 {
        width: 200px;
        height: 200px;
        border-width: 3px;
    }

    .circle-ring-2 {
        width: 175px;
        height: 175px;
        border-width: 3px;
    }

    .circle-content {
        width: 150px;
        height: 150px;
        border-width: 4px;
        padding: 10px;
    }

    .floating-card {
        font-size: 0.7rem;
        padding: 8px 14px;
        gap: 6px;
    }

    .floating-card svg {
        width: 16px;
        height: 16px;
    }

    .f-card-1 {
        top: -5%;
        left: 0%;
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .f-card-2 {
        bottom: -5%;
        right: 0%;
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .tentang-grid,
    .pengalaman-grid {
        grid-template-columns: 1fr;
    }

    .guru-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .kontak-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .hero-visual {
        min-height: 200px;
    }

    .hero-circle-main {
        width: 150px;
        height: 150px;
    }

    .circle-ring-1 {
        width: 150px;
        height: 150px;
        border-width: 2px;
    }

    .circle-ring-2 {
        width: 130px;
        height: 130px;
        border-width: 2px;
    }

    .circle-content {
        width: 110px;
        height: 110px;
        border-width: 3px;
        padding: 8px;
    }

    .floating-card {
        font-size: 0.55rem;
        padding: 5px 10px;
        gap: 4px;
    }

    .floating-card svg {
        width: 12px;
        height: 12px;
    }

    .f-card-1 {
        top: -8%;
        left: 0%;
        padding: 5px 10px;
        font-size: 0.55rem;
    }

    .f-card-2 {
        bottom: -8%;
        right: 0%;
        padding: 5px 10px;
        font-size: 0.55rem;
    }

    .guru-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
}