:root {
    --primary-color: #ffbd2e;
    --primary-color-transparent: #ffd230ad;
    --secondary-color: #35476f;
    --accent-color: #7493d4;
    --bg-light: #fff8e1;
    --success-color: #4caf50;
    --warning-color: #ff9800;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Neue', cursive, sans-serif;
    background: var(--bg-light);
    overflow-x: hidden;
}


.form-control {
    box-shadow: none !important;
    border-radius: 20px;
    outline: none;
    color: rgb(53, 53, 53);
    font-weight: 300;
    background-color: rgb(230, 230, 240) !important;
    border: 0px;
}

.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-login {
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.5;
}

.btn-login:hover {
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-login:focus {
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.navbar-custom {
    background: var(--primary-color);
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: var(--secondary-color) !important;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 100%);
    padding: 100px 0 80px 0;
    text-align: center;
    border-bottom-left-radius: 60px 40px;
    border-bottom-right-radius: 60px 40px;
    position: relative;
    overflow: hidden;
}

.hero-section h2 {
    font-size: 3.5rem;
    font-family: 'Fredoka One', cursive;
    color: var(--secondary-color);
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero-section p {
    font-size: 1.3rem;
    color: #444;
    margin: 20px 0;
}

.hero-section img {
    width: 60%;
    max-width: 500px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.btn-warning,
.btn-outline-secondary,
.btn-success {
    border-radius: 30px;
    font-size: 1.1rem;
    padding: 12px 32px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* About Section */
/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');

/* Container Utama Yang Lama*/
/* .about-container {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .about-container::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.1;
        }

        .about-container::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 60px;
            height: 60px;
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0.1;
        } */

/* Container Utama untuk video*/
.about-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 3rem;

    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.1;
}

.about-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    opacity: 0.1;
}

/* Kartu Misi */
.mission-card {
    background: linear-gradient(135deg, var(--primary-color), #fff3a0);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(248, 237, 21, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '🌟';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.3;
}

/* Kartu Keunggulan */
.advantages-card {
    background: linear-gradient(135deg, var(--accent-color), #a8c3f0);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 0;
    height: 100%;
    box-shadow: 0 10px 25px rgba(116, 147, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
}

/* Kartu Visi */
.vision-card {
    background: linear-gradient(135deg, var(--secondary-color), #4a5d7a);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(53, 71, 111, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Slider Sertifikat */

/* Slider Sertifikat */
.certificate-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.certificate-header {
    background: transparent;
    color: var(--secondary-color);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.certificate-content {
    position: relative;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}


.certificate-slide {
    display: none;
    text-align: center;
    width: 100%;
}

.certificate-slide.active {
    display: block;
}

.certificate-slide img {
    width: 80%;
    height: 190px;
    object-fit: cover;
    border: none;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.certificate-name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Content Wrapper untuk centering */
.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Slider Video */
.video-slider {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    border: 3px dashed var(--accent-color);
    border-radius: 24px;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    max-width: 700px;
    width: 100%;
}

.video-header {
    background: linear-gradient(135deg, var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.video-header i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.video-content {
    position: relative;
    padding: 2.5rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slide {
    display: none;
    text-align: center;
    width: 100%;
}

.video-slide.active {
    display: block;
}

.video-slide iframe {
    width: 100%;
    height: 315px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.video-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.video-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-controls:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    padding: 1rem;

}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #d0d0d0;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--accent-color);
}

/* Elemen Dekoratif Mengambang */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-star {
    position: absolute;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Program */
.program-card {
    border: 3px dashed var(--accent-color);
    border-radius: 24px;
    padding: 18px 18px;
    padding-bottom: 0px;
    margin-bottom: 24px;
    background: linear-gradient(145deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 215, 41, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
    /* Tambahkan ini */
}

.program-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}

.program-card:hover {
    transform: translateY(-15px) rotate(1deg);
    background: linear-gradient(145deg, #fffde7 0%, #fff3e0 100%);
    box-shadow: 0 20px 40px rgba(244, 215, 41, 0.3);
    border-color: var(--primary-color);
}

.program-card h5 {
    font-family: 'Fredoka One', cursive;
    color: var(--secondary-color);
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.program-card p {
    position: relative;
    z-index: 2;
    /* Tambahkan ini */
}

.program-card img {
    transition: transform 0.3s ease;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.program-card:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.price-tag {
    background: linear-gradient(45deg, var(--warning-color), #ffb347);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    animation: pulse-glow 2s infinite;
    position: relative;
    z-index: 2;
}

/* Tambahkan CSS khusus untuk tombol bergabung */
.program-card .btn {
    position: relative;
    z-index: 3;
    /* Z-index lebih tinggi dari elemen lain */
    transition: all 0.3s ease;
}

.program-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    }

    50% {
        box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 35px;
    margin: 20px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '💬';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(116, 147, 212, 0.2);
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    background: #fff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.star-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 10px 0;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.facility-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
}

.facility-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(244, 215, 41, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.facility-card:hover::after {
    opacity: 1;
}

.facility-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(116, 147, 212, 0.2);
}

.facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-card:hover img {
    transform: scale(1.1);
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(244, 215, 41, 0.3);
}

.accordion-button {
    font-weight: bold;
    border-radius: 20px !important;
    font-family: 'Comic Neue', cursive;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    transform: translateX(5px);
}

.accordion-item {
    border: 2px solid var(--accent-color);
    border-radius: 20px !important;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(116, 147, 212, 0.2);
}

.footer {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: #fff;
    padding: 50px 0 30px 0;
    border-top-left-radius: 60px 40px;
    border-top-right-radius: 60px 40px;
}

.footer a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-star {
    position: absolute;
    color: var(--accent-color);
    animation: twinkle 2s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-section::before {
    width: 150px;
    height: 150px;
    left: -50px;
    top: 50px;
    background: var(--accent-color);
    opacity: 0.3;
    animation: pulse 3s infinite;
}

.hero-section::after {
    width: 100px;
    height: 100px;
    right: -20px;
    bottom: 80px;
    background: var(--secondary-color);
    opacity: 0.25;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.fun-facts {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    padding: 60px 0;
    border-radius: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.fun-facts::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fun-fact-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.fun-fact-item:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.fun-fact-number {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: bold;
    text-shadow: 2px 2px 0 #fff;
    animation: bounce-number 2s infinite;
}

@keyframes bounce-number {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.contact-info {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 35px;
    border: 2px solid var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(116, 147, 212, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.contact-info:hover::before {
    opacity: 1;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(116, 147, 212, 0.2);
}

.contact-info h5 {
    color: var(--secondary-color);
    font-family: 'Fredoka One', cursive;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-info:hover i {
    transform: scale(1.2);
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(116, 147, 212, 0.2);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: #fff;
    padding: 80px 0;
    border-radius: 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.cta-section h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    animation: bounce-float 2s infinite;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes bounce-float {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Interactive Elements */
.interactive-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.interactive-icon:hover {
    transform: scale(1.2) rotate(10deg);
}

.emoji-float {
    display: inline-block;
    animation: float-emoji 3s ease-in-out infinite;
}

@keyframes float-emoji {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hover-grow {
    transition: all 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

/* Playful section backgrounds */
.playful-bg {
    background: linear-gradient(135deg, #fff8e1 0%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.playful-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(244, 215, 41, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(116, 147, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 2.5rem;
    }

    .hero-section img {
        width: 80%;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-container {
        padding: 2rem;
        margin: 1rem;
    }

    .video-slide iframe {
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-header {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Career */
.career-form {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    border: 3px dashed var(--accent-color);
    border-radius: 24px;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    max-width: 700px;
    width: 100%;
}

.career-form-header {
    background: linear-gradient(135deg, var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.career-form-header i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

.career-form-body {
    position: relative;
    padding: 2.5rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .career-form-header {
        font-size: 1.2rem;
        padding: 1.2rem;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .career-form-header i {
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .career-form-header span {
        word-break: break-word;
        text-align: center;
    }
}

