* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Noto Serif Devanagari", serif;

    background: #fff7e8;

    color: #4b260b;
}


/* Navbar */

.navbar {

    height: 85px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 2%;

    width: 100%;

    background: #4b2208;

    color: white;
}




.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.logo-symbol {

    font-size: 35px;

    color: #e8ad4d;
}


.logo h2 {

    font-size: 21px;

}


.logo p {

    font-size: 12px;

    color: #e8c895;

}
/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

/* SS Logo Image */
.logo-image {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

/* Logo ke neeche text */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text h2 {
    margin: 2px 0 0;
    font-size: 16px;
    line-height: 1.2;
    color: white;
    white-space: nowrap;
}

.logo-text p {
    margin: 2px 0 0;
    font-size: 10px;
    line-height: 1.2;
    color: #e8c895;
    white-space: nowrap;
}


.nav-links {

    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: auto;
    margin-right: auto;
}


.nav-links a {

    color: white;

    text-decoration: none;

}


.enroll-btn {

    background: #e8ad4d;

    color: #4b2208;

    padding: 12px 22px;

    border-radius: 5px;

    text-decoration: none;

    flex-shrink: 0;

}


/* Hero */

.hero {

    height: 600px;
    
    background:

        linear-gradient(
            rgba(45, 20, 5, .45),
            rgba(45, 20, 5, .45)
        ),

        url("../images/gurukul_hero_no_text_HD.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;
}


.hero-content {

    margin-left: 10%;

    max-width: 550px;

    color: white;

}


.hero-content h1 {

    font-size: 60px;

    line-height: 1.2;

}


.hero-content p {

    font-size: 20px;

    margin: 25px 0;

    line-height: 1.7;

}


.main-btn {

    display: inline-block;

    padding: 14px 28px;

    background: #8b4a16;

    color: white;

    text-decoration: none;

    border-radius: 5px;

}


/* Sections */

/* ============================= */
/* Subjects Carousel */
/* ============================= */

.subjects {
    position: relative;
    width: 100%;
    padding: 60px 5%;
    overflow: hidden;
}

.subjects h2 {
    text-align: center;
    margin-bottom: 35px;
}


/* Carousel Wrapper */

.subjects-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}


/* Cards Container */

.subject-container {
    display: flex;
    gap: 25px;

    width: 100%;

    overflow-x: auto;
    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    padding: 10px 5px;
}

.subject-container::-webkit-scrollbar {
    display: none;
}


/* Individual Card */

.subject-card {
    flex: 0 0 calc(33.333% - 17px);

    min-width: 280px;

    scroll-snap-align: start;

    padding: 30px 25px;

    text-align: center;

    border-radius: 15px;

    background: #fff;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.subject-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}


/* Icon */

.subject-card .icon {
    font-size: 45px;
    margin-bottom: 15px;
}


/* Heading */

.subject-card h3 {
    margin-bottom: 12px;

    font-size: 22px;

    color: #7b3f00;
}


/* Paragraph */

.subject-card p {
    line-height: 1.7;

    min-height: 75px;

    color: #555;
}


/* Learn Button */

.learn-btn {
    display: inline-block;

    margin-top: 15px;

    padding: 10px 20px;

    border-radius: 25px;

    background: #8b4513;

    color: white;

    text-decoration: none;

    transition: background 0.3s ease;
}

.learn-btn:hover {
    background: #5c2e0b;
}


/* Carousel Arrows */

.carousel-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #8b4513;

    color: white;

    font-size: 25px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    transition: 0.3s ease;
}

.carousel-btn:hover {
    background: #5c2e0b;

    transform: translateY(-50%) scale(1.08);
}


.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}


/* ============================= */
/* Tablet */
/* ============================= */

@media (max-width: 900px) {

    .subject-card {
        flex: 0 0 calc(50% - 13px);
    }

}


/* ============================= */
/* Mobile */
/* ============================= */

@media (max-width: 600px) {

    .subjects {
        padding: 45px 4%;
    }

    .subject-card {
        flex: 0 0 85%;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;

        font-size: 20px;
    }

}


/* Features */

/* ================================
   GURUKUL FEATURES SECTION
================================ */

.features-section {
    position: relative;
    padding: 90px 50px;
    background: #fde8c1;
    overflow: hidden;
}


/* Decorative background circles */

.features-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(217, 154, 50, 0.08);
    top: -120px;
    left: -100px;
}

.features-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(107, 50, 18, 0.06);
    bottom: -150px;
    right: -100px;
}


/* Heading */

.features-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 55px;
}

.features-heading h2 {
    display: inline-block;
    margin: 0 20px;

    font-size: 44px;
    font-weight: 700;

    color: #713813;
}

.features-heading span {
    color: #d99a32;
    font-size: 28px;
}

.features-heading p {
    margin-top: 15px;

    color: #79543b;
    font-size: 18px;
}


/* Cards container */

.features-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid ;
    grid-template-columns: repeat(4, minmax(0, 1fr)) ;

    gap: 25px;
}



/* Individual card */

.feature-card {
    position: relative;

    background: #ffffff;

    padding: 18px 15px;

    text-align: center;

    border-radius: 18px;

    border: 1px solid #e0a344;

    box-shadow:
        0 8px 25px rgba(91, 45, 15, 0.10);

    transition: all 0.35s ease;

    overflow: hidden;
}


/* Top decorative line */

.feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: #d99a32;
}


/* Hover */

.feature-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(91, 45, 15, 0.18);

    border-color: #d99a32;
}


/* Icon */

.feature-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff3d9;

    border: 2px solid #e0a344;

    font-size: 34px;

    box-shadow:
        0 5px 15px rgba(181, 118, 30, 0.15);
}


/* Heading */

.feature-card h3 {
    margin: 10px 0 15px;

    color: #713813;

    font-size: 24px;

    font-weight: 700;
}


/* Description */

.feature-card p {
    margin: 0;

    color: #684b36;

    font-size: 17px;

    line-height: 1.7;
}


/* Mobile */

@media (max-width: 1000px) {

   .features-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid ;
    grid-template-columns: repeat(4, minmax(0, 1fr)) ;

    gap: 25px;
}

}


@media (max-width: 600px) {

    .features-section {
        padding: 60px 20px;
    }

    .features-heading h2 {
        font-size: 32px;
        margin: 0 10px;
    }

    .features-heading span {
        font-size: 20px;
    }

    .features-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        width: 100%;
    }
}


/* =========================================
   GURUKUL KI JHALAK - IMAGE CAROUSEL
========================================= */

.gallery {
    background: #fff8eb;
    padding: 70px 40px;
    overflow: hidden;
}

.gallery h2 {
    text-align: center;
    font-size: 50px;
    color: #6b3212;
    margin-bottom: 35px;
}

.gallery-carousel {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: gurukulCarousel 20s linear infinite;
}

/* Images */

.gallery-track img {
    width: 280px;
    height: 190px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Image hover */

.gallery-track img:hover {
    transform: scale(1.04);
}

/* Automatic movement */

@keyframes gurukulCarousel {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }

}

/* Mouse image/section par aaye to movement ruk jaye */

.gallery-track:hover {
    animation-play-state: paused;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .gallery {
        padding: 50px 20px;
    }

    .gallery h2 {
        font-size: 35px;
        margin-bottom: 25px;
    }

    .gallery-track {
        gap: 15px;
        animation-duration: 16s;
    }

    .gallery-track img {
    width: 280px;
    height: 190px;
    object-fit: cover;
    background: #fff;
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

}
/* Inner pages */

.inner-hero {

    padding: 90px 20px;

    text-align: center;

    color: white;

    background:

        linear-gradient(
            rgba(50, 25, 5, .5),
            rgba(50, 25, 5, .5)
        ),

        url("../images/gurukul_hero_no_text_HD.jpg");

    background-size: 100% 100%;
    width: 100%;
    height: 320px;
    object-fit: cover;

}


.inner-hero h1 {

    font-size: 50px;

}


/* Contact */

.contact-section {

    padding: 70px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

}


.contact-form,
.contact-info {

    background: white;

    padding: 35px;

    border-radius: 12px;

    border: 1px solid #dfc18d;

}


.contact-form form {

    display: flex;

    flex-direction: column;

}


.contact-form label {

    margin-top: 15px;

    margin-bottom: 6px;

}


.contact-form input,
.contact-form select,
.contact-form textarea {

    padding: 13px;

    border: 1px solid #d5b77d;

    border-radius: 5px;

}


.contact-form textarea {

    min-height: 130px;

}


.contact-form button {

    margin-top: 20px;

    padding: 14px;

    background: #6b3009;

    color: white;

    border: none;

    border-radius: 5px;

}


.success-message {

    padding: 12px;

    background: #e6f4e6;

    color: green;

    margin-bottom: 15px;

}


.info {

    display: flex;

    gap: 20px;

    margin: 25px 0;

}


.info span {

    font-size: 25px;

}


/* Footer */

.footer {

    background: #3a1905;

    color: white;

    padding: 40px 8%;

    display: flex;

    justify-content: space-between;

}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.footer-logo-image {
    width: 125px;
    height: 125px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text {
    text-align: center;
}

.footer-logo-text h2 {
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.footer-logo-text p {
    margin: 3px 0 0;
    color: #e8c895;
    font-size: 12px;
}

.learn-btn {
    display: inline-block;
    background: #d99a32;
    color: #2d1608;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 7px;
    font-size: 18px;
    margin-top: 20px;
    transition: 0.3s;
}

.learn-btn:hover {
    background: #b87818;
    color: white;
}

.shlok-section {
    background: #fff8eb;
    padding: 70px 20px;
}

.shlok-container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.shlok-container h2 {
    color: #6b3212;
    font-size: 36px;
    text-align: center;
    margin-bottom: 25px;
}

.shlok-container h3 {
    color: #7a3b14;
    font-size: 27px;
    margin-top: 35px;
}

.shlok-container p {
    font-size: 19px;
    line-height: 1.8;
}

.shlok-container li {
    font-size: 18px;
    margin: 12px 0;
}

.example-shlok {
    margin-top: 40px;
    padding: 30px;
    background: #fff4dc;
    border-left: 5px solid #d99a32;
    border-radius: 10px;
}

.sanskrit {
    text-align: center;
    font-size: 27px !important;
    line-height: 2 !important;
    color: #542508;
}

/* =========================================
   ABOUT PAGE
========================================= */

.about-hero {
    min-height: 450px;

    background-image: url("../images/02_about_gurukul_building_hd.jpg");

    background-size: 100% 100%;
    object-fit: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.about-hero-content {
    max-width: 850px;
    padding: 40px;
}

.about-symbol {
    display: block;
    font-size: 55px;
    color: #f2b84b;
    margin-bottom: 10px;
}

.about-hero h1 {
    font-size: 58px;
    margin: 0 0 15px;
    font-weight: 700;
}

.about-hero p {
    font-size: 23px;
    color: #f8e7c5;
}


/* =========================================
   ABOUT INTRO
========================================= */

.about-intro {
    background: #fde3b1;

    padding: 80px 8%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.about-intro-image img {
    width: 200%;
    height: 390px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow:
        0 15px 35px rgba(80, 40, 10, 0.25);

    border: 5px solid #fde3b1;
}

.about-intro-content {
    color: #63300f;
    width: 100%;
}

.about-intro-content .section-tag {
    display: block ;
    width: 100% ;
    text-align: center ;

    color: #d89524;
    font-size: 28px;
    font-weight: bold;

    margin: 0 auto 20px auto ;
}

.about-intro-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.about-highlight {
    margin-top: 25px;

    display: inline-block;

    padding: 14px 25px;

    background: #6b2f0b;
    color: #f7cf75;

    border-radius: 30px;

    font-size: 19px;
    font-weight: bold;
}

.about-highlight span {
    margin: 0 8px;
}


/* =========================================
   VALUES
========================================= */

.values-section {
    background: #542607;

    padding: 80px 6%;

    text-align: center;
}

.section-title {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;
}

.section-title h2 {
    color: #f3c86b;

    font-size: 48px;

    margin: 0;
}

.section-title span {
    color: #e6a52d;
    font-size: 30px;
}

.section-subtitle {
    color: #f6e4ca;

    font-size: 20px;

    margin: 15px 0 45px;
}


.values-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


.value-card {
    background: #fffaf0;

    padding: 30px 20px;

    border-radius: 20px;

    border-top: 5px solid #e2a02c;

    transition: 0.3s;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.20);
}

.value-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 35px rgba(0,0,0,0.30);
}

.value-icon {
    width: 75px;
    height: 75px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0cf;

    border: 3px solid #e4a331;

    border-radius: 50%;

    font-size: 35px;
}

.value-card h3 {
    color: #71340f;

    font-size: 26px;

    margin: 20px 0 10px;
}

.value-card p {
    color: #70452a;

    font-size: 17px;

    line-height: 1.6;
}


/* =========================================
   MISSION
========================================= */

.mission-section {
    background: #fff7e8;

    padding: 80px 10%;

    text-align: center;
}

.mission-content {
    max-width: 900px;

    margin: auto;
}

.mission-content h2 {
    color: #6b3010;

    font-size: 45px;

    margin: 10px 0 30px;
}

.mission-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    text-align: left;
}

.mission-list div {
    background: white;

    padding: 18px 22px;

    border-radius: 12px;

    border-left: 5px solid #dfa02e;

    color: #653313;

    font-size: 18px;

    box-shadow:
        0 5px 15px rgba(80,40,10,0.10);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .about-intro {
        grid-template-columns: 1fr;
    }

    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {

    .values-container {
        grid-template-columns: 1fr;
    }

    .mission-list {
        grid-template-columns: 1fr;
    }

    .about-intro {
        padding: 50px 25px;
    }

    .about-hero h1 {
        font-size: 35px;
    }
}
.enroll-btn {
    margin-left: auto;
}

.admin-icon {
    margin-left: 20px;
    margin-right: 5px;
    font-size: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
    transition: transform 0.2s ease;
}

.admin-icon:hover {
    transform: scale(1.15);
}

.mantra-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ganesh-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.ganesh-content {
    flex: 1;
}

.mantra-row.left {
    position: relative;
}

.mantra-row.left {
    position: relative;
}

.ganesh-image {
    position: absolute;
    right: 70px;
    top: 20px;
    width: 230px;
    z-index: 5;
}

.ganesh-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.shiv-mantra-row {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    position: relative;

    margin-bottom: 0;

}
.shiv-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.shiv-image {
    width: 230px;
    right:30%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-right: 50px;
    padding-top: 0;
}

.shiv-image img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    transform: translateY(-300px);
}
.shiv-side-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
@media (max-width: 700px) {

    .shiv-mantra-row {
        width: 100%;
        display: block;
    }

    .shiv-image {
        width: 100%;
        margin: 0 0 20px 0;
        padding-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .shiv-image img {
        width: 120px;
        height: 120px;
        transform: none;
    }

}
.durga-under-shiv {
    margin-top: -230px;
}
.durga-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 55px;
}

.durga-section .mantra-row.left {
    width: 50%;
    margin-bottom: 0;
}

.durga-image {
    position: absolute;
    left: 64%;
    top: 50%;
    transform: translateY(-55%);
}

.durga-image img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}
/* =================================
   VISHNU IMAGE
================================= */

.mantra-row.right {
    overflow: visible;
}

.vishnu-image {
    position: absolute;

    left: -400px;

    top: 50%;

    transform: translateY(-50%);

    width: 230px;

    height: 230px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 1;
}

.vishnu-image img {
    width: 280px;

    height: 280px;

    object-fit: contain;
}
/* =================================
   SURYA SECTION
================================= */

.surya-section {
    width: 100%;
    position: relative;
}


/* Surya image - page ke RIGHT side */

.surya-image {
    position: absolute;

    right: 80px;

    top: 88%;

    transform: translateY(-60%);

    width: 180px;

    height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 2;
}


.surya-image img {
    width: 250px;

    height: 250px;

    object-fit: contain;
}


/* =========================
   LOGIN PAGE
========================= */

.login-page {
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            rgba(55, 30, 15, 0.88),
            rgba(55, 30, 15, 0.88)
        ),
        url("../images/mandir-bg.jpg");

    background-size: cover;
    background-position: center;

    font-family: "Noto Serif Devanagari", serif;
}

.login-container {
    width: 340px;
    padding: 30px 30px;

    text-align: center;

    background: rgba(255, 248, 235, 0.97);

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35);

    border: 1px solid rgba(160, 100, 40, 0.35);
}

.login-symbol {
    font-size: 52px;
    margin-bottom: 10px;
}

.login-container h1 {
    margin: 5px 0;

    font-size: 30px;

    color: #6b3518;
}

.login-subtitle {
    margin: 6px 0 20px;

    color: #8b5a35;

    font-size: 15px;
}

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
    
    color: #5b301b;
}

.input-group input {
    width: 100%;
    box-sizing: border-box;

    padding: 11px 13px;

    border: 1px solid #d5b28a;
    border-radius: 8px;

    outline: none;

    background: #fffdf9;

    font-size: 14px;
}

.input-group input:focus {
    border-color: #a96d32;

    box-shadow:
        0 0 0 2px rgba(169, 109, 50, 0.12);
}

.login-btn {
    width: 100%;

    padding: 11px;

    margin-top: 3px;

    border: none;
    border-radius: 8px;

    background: #8b4a21;
    color: white;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.login-btn:hover {
    background: #6e3617;

    transform: translateY(-1px);
}

.login-message {
    margin-top: 18px;

    padding: 10px;

    border-radius: 7px;

    background: #f8dddd;
    color: #9b2525;

    font-size: 14px;
}

.login-note {
    margin-top: 25px;

    font-size: 13px;

    color: #8a725e;
}

.signup-link {
    margin-top: 20px;
    font-size: 14px;
    color: #6b513e;
}

.signup-link a {
    color: #8b4a21;
    font-weight: 600;
    text-decoration: none;
}

.signup-link a:hover {
    color: #6e3617;
    text-decoration: underline;
}
.social-links a {
    font-size: 20px;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* WhatsApp */
.social-links a:nth-of-type(1) {
    color: #25D366;
}

/* Instagram */
.social-links a:nth-of-type(2) {
    color: #e4405f;
}

/* YouTube */
.social-links a:nth-of-type(3) {
    color: #FF0000;
}

/* Hover */
.social-links a:hover {
    transform: scale(1.2);
}
@media (max-width: 600px) {

    .navbar {
        height: auto;
        min-height: 75px;
        padding: 8px 10px;
        gap: 8px;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .logo-text h2 {
        font-size: 12px;
    }

    .logo-text p {
        font-size: 8px;
    }

    .nav-links {
        gap: 10px;
        margin-left: 5px;
        margin-right: 0;
        justify-content: center;
    }

    .nav-links a {
        font-size: 12px;
    }

    .enroll-btn {
        padding: 8px 10px;
        font-size: 11px;
        white-space: nowrap;
    }

    .admin-icon {
        margin-left: 5px;
        margin-right: 0;
        font-size: 20px;
    }
}

