*{
    margin: 0;
    padding: 0;
}
body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      overflow-x: hidden;
    }


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 20px;
    padding: 15px 30px;
    /* background: linear-gradient(360deg, #0c32db 0%, #0606d9 100%); */
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* border: none; */
    /* position: fixed; */
    /* margin-bottom: 60px; */
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    margin-left: -10px;
    border-radius: 8px;
}

.celebration-title {
    color: #e74c3c;
    font-size: 24px;
    font-weight: bolder;
    margin-left: 15px;
    font-family: Broadway;
    font-size: 25px;
    /* text-shadow: 0px 0px 20px rgba(2, 3, 3, 2); */
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    padding: 8px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: blue;
}

.dropdown {
    position: relative;
    display: inline-block;
    /* scrollbar-width: auto; */
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 5px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 18px;
}

.dropdown-item .dropdown-p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.course-highlight {
    color: #e7473c !important;
    font-weight: bold;
}

.contact-btn {
    /* background: linear-gradient(60deg, #ec0707, #cf3e31); */
    background-color: blue;
    color: white;
    padding: 12px 12px;
    border: none;
    border-radius: 25px;
    font-weight: bolder;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.gallery-link:hover {
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .celebration-title {
        font-size: 18px;
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .dropdown-content {
        min-width: 200px;
    }
}
/* Hero Section */
  .hero-bg {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 30%, white 30%, white 70%, #e9ecef 70%, #dee2e6 100%);
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding: 20px;
            margin-top: 30px;
        }

        #fireworks-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        #hero-content {
            position: relative;
            z-index: 2;
            max-width: 50%;
            padding-left: 5%;
            opacity: 0;
            animation: fadeInUp 2s ease-out 2s forwards;
        }

        .right-section {
            position: absolute;
            right: 3%;
            top: 15%;
            max-width: 45%;
            opacity: 0;
            animation: fadeInRight 2s ease-out 2.5s forwards;
        }

        /* FIXED IMAGE SECTION - Developer Friendly */
        .institute-image {
            width: 100%;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative;
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            /* margin-left: 30px; */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .institute-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            /* transition: transform 0.3s ease; */
            /* margin-left: 30px; */
        }

        /* .institute-image:hover {
            transform: scale(1.05);
        }

        .institute-image:hover img {
            transform: scale(1.1);
        } */

        /* Fallback text when no image */
        .image-fallback {
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            z-index: 2;
            position: relative;
            display: none;
        }

        .main-title {
            font-size: 70px;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientMove 3s ease-in-out infinite, typeWriter 3s steps(18) 1s forwards;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid #ff6b6b;
        }

        .main-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            animation: shine 2s infinite;
        }

        .main-title:hover {
            animation: gradientMove 0.5s ease-in-out infinite, shake 0.5s ease-in-out infinite;
        }

        .rotating-slogans {
            font-size: 24px;
            margin-top: 20px;
            height: 60px;
            display: flex;
            align-items: center;
            color: #333;
            font-weight: 600;
        }

        .slogan {
            opacity: 0;
            position: absolute;
            animation: rotateSlogan 30s infinite;
        }

        .slogan:nth-child(1) { animation-delay: 0s; }
        .slogan:nth-child(2) { animation-delay: 3s; }
        .slogan:nth-child(3) { animation-delay: 6s; }
        .slogan:nth-child(4) { animation-delay: 9s; }
        .slogan:nth-child(5) { animation-delay: 12s; }
        .slogan:nth-child(6) { animation-delay: 15s; }
        .slogan:nth-child(7) { animation-delay: 18s; }
        .slogan:nth-child(8) { animation-delay: 21s; }
        .slogan:nth-child(9) { animation-delay: 24s; }
        .slogan:nth-child(10) { animation-delay: 27s; }

        .date-info {
            font-size: 18px;
            margin-top: 15px;
            color: #666;
            font-weight: 500;
        }

        #countdown {
            font-size: 40px;
            margin: 40px 0 50px 0;
            color: #e74c3c;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            opacity: 0;
            animation: timerFadeIn 2s ease-out 3s forwards, pulse 2s infinite;
        }

        .join-btn {
            font-size: 30px;
            color: white;
            text-decoration: none;
            background: linear-gradient(45deg, #2196F3, #1976D2);
            padding: 15px 30px;
            border-radius: 15px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
            border: none;
            cursor: pointer;
        }

        .join-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(33, 150, 243, 0.4);
            background: linear-gradient(45deg, #1976D2, #0D47A1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes typeWriter {
            from {
                width: 0;
            }
            to {
                width: 100%;
                border-right: none;
            }
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        @keyframes rotateSlogan {
            0%, 10% { opacity: 1; transform: translateY(0); }
            15%, 85% { opacity: 0; transform: translateY(-20px); }
            90%, 100% { opacity: 0; transform: translateY(20px); }
        }

        @keyframes timerFadeIn {
            0% { opacity: 0; transform: scale(0.8); }
            50% { opacity: 0.5; transform: scale(1.1); }
            100% { opacity: 1; transform: scale(1); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 15% auto;
            padding: 30px;
            border-radius: 20px;
            width: 95%;
            max-width: 700px;
            height: auto;
            max-height: 60vh;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: #000;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #2196F3;
        }

        .submit-btn {
            background: linear-gradient(45deg, #4CAF50, #45a049);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        .success-message {
            display: none;
            text-align: center;
            color: #4CAF50;
            font-size: 18px;
            font-weight: bold;
            padding: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-bg {
                flex-direction: column;
                text-align: center;
            }
            
            #hero-content {
                max-width: 90%;
                padding-left: 0;
                margin-bottom: 40px;
            }
            
            .right-section {
                position: relative;
                right: auto;
                top: auto;
                max-width: 90%;
            }
            
            .institute-image {
                height: 280px;
            }
            
            .main-title {
                font-size: 40px;
            }
            
            .rotating-slogans {
                font-size: 18px;
            }
            
            #countdown {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .institute-image {
                height: 220px;
            }
            
            .main-title {
                font-size: 32px;
            }
            
            .rotating-slogans {
                font-size: 16px;
            }
        }



        /* body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        } */

        /* body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 3px, transparent 3px),
                radial-gradient(circle at 90% 20%, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 100px 100px, 50px 50px, 80px 80px, 120px 120px;
            animation: moveDots 20s linear infinite;
            pointer-events: none;
            z-index: 0;
        } */

        .container-1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
        }

        .header h1 {
            color: gray;
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease, glow 2s ease-in-out infinite alternate;
        }

        .section {
            /* background: rgba(255, 255, 255, 0.95); */
            margin: 30px 0;
            padding: 40px;
            border-radius: 20px;
            /* box-shadow: 0 15px 35px rgba(0,0,0,0.1); */
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            animation: slideInUp 0.8s ease;
        }

        .section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 3s infinite;
            pointer-events: none;
        }

        .section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.1) 3px, transparent 3px);
            background-size: 60px 60px, 40px 40px, 80px 80px;
            animation: rotateDots 15s linear infinite;
            pointer-events: none;
            border-radius: 20px;
        }

        .section-title {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-content {
            color: #34495e;
            font-size: 1.1rem;
            text-align: justify;
            position: relative;
            z-index: 2;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.15;
            animation: float 6s ease-in-out infinite;
        }

        .shape1 {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            border-radius: 50%;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
        }

        .shape2 {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            top: 70%;
            right: 10%;
            animation-delay: 2s;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            box-shadow: 0 0 15px rgba(231, 76, 60, 0.3);
        }

        .shape3 {
            width: 100px;
            height: 50px;
            background: linear-gradient(45deg, #2ecc71, #27ae60);
            top: 30%;
            right: 2%;
            animation-delay: 4s;
            border-radius: 25px;
            box-shadow: 0 0 18px rgba(46, 204, 113, 0.3);
        }

        .shape4 {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #f39c12, #e67e22);
            top: 50%;
            left: 8%;
            animation-delay: 1s;
            transform: rotate(45deg);
            box-shadow: 0 0 12px rgba(243, 156, 18, 0.3);
        }

        .shape5 {
            width: 90px;
            height: 90px;
            background: linear-gradient(45deg, #9b59b6, #8e44ad);
            top: 80%;
            left: 70%;
            animation-delay: 3s;
            border-radius: 50%;
            box-shadow: 0 0 16px rgba(155, 89, 182, 0.3);
        }

        .shape6 {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #1abc9c, #16a085);
            top: 15%;
            right: 30%;
            animation-delay: 5s;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            box-shadow: 0 0 10px rgba(26, 188, 156, 0.3);
        }

        .director-section, .teachers-section, .staff-section {
            display: grid;  
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .person-card-0 {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            /* background-image: url('../img/h/id.jpg'); */
            /* opacity: 0.2; */
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .person-card-0::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }

        .person-card-0:hover::before {
            left: 100%;
        }

        .person-card-0:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border-color: #667eea;
        }

        .person-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            /* background-image: url('../img/h/id.jpg'); */
            /* opacity: 0.4; */
            padding: 25px;
            /* height: 100%; */
            /* width: 100%; */
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            background-image: url('../img/h/id.jpg');
            background-size: cover;
            overflow: hidden;
        }

        .person-card::before {
            content: '';
            position: absolute;
            opacity: 0.4;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }

        .person-card:hover::before {
            left: 100%;
        }

        .person-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border-color: #667eea;
        }

        .person-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
            border: 4px double #0756ea;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
            animation: pulse 3s ease-in-out infinite;
        }

        .person-image::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px dashed rgba(102, 126, 234, 0.5);
            border-radius: 50%;
            animation: rotateBorder 4s linear infinite;
        }

        .person-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            border-radius: 50%;
        }

        .image-note {
            margin: 20px 0;
            padding: 15px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 10px;
            text-align: center;
            font-size: 0.9rem;
            color: #555;
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .facility-item {
            /* background: linear-gradient(135deg, #667eea, #764ba2); */
            /* background-image: url('../img/web1_all_img/ban/WhatsApp\ Image\ 2025-06-24\ at\ 15.14.32_95d2e955.jpg'); */
            /* background-image: url(''); */
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .facility-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .facility-item:hover::before {
            width: 300px;
            height: 300px;
        }

        .facility-item:hover {
            transform: scale(1.08) rotate(2deg);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .highlight {
            background: linear-gradient(120deg, #ffeaa7, #fab1a0);
            padding: 3px 8px;
            border-radius: 5px;
            color: #2d3436;
            font-weight: bold;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(90deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
            75% { transform: translateY(-15px) rotate(270deg); }
        }

        @keyframes glow {
            from { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,255,255,0.3); }
            to { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.6), 0 0 30px rgba(102,126,234,0.4); }
        }

        @keyframes moveDots {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-100px) translateY(-100px); }
        }

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

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

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

        @media (max-width: 768px) {
            .header h1 { font-size: 2rem; }
            .section { padding: 20px; margin: 20px 0; }
            .section-title { font-size: 2rem; }
            .section-content { font-size: 1rem; }
        }
        .staff-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            color: #333;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .section-content > p {
            text-align: center;
            font-size: 1.1em;
            color: #666;
            margin-bottom: 30px;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
        }

        .slide {
            display: flex;
            min-width: 100%;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .person-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 280px;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .person-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .person-image {
            margin-bottom: 15px;
        }

        .person-image img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e74c3c;
        }

        .person-card h3 {
            color: #e74c3c;
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .position {
            font-weight: bold;
            color: #333;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .person-card p:not(.position) {
            color: #666;
            font-size: 14px;
            line-height: 1.4;
            text-align: center;
        }



        .dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bdc3c7;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: #e74c3c;
        }

        @media (max-width: 768px) {
            .person-card {
                width: 240px;
                min-height: 320px;
            }
            
            .slide {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .person-card {
                width: 200px;
                min-height: 300px;
            }
            
            .section-title {
                font-size: 2em;
            }
        }