@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&display=swap');

/* ============================================
    FULL WIDTH NOTICE BOARD SECTION
    ============================================ */
.notice-board-full-section {
    padding: 0;
    margin: 0;
    background: #f8fafc;
}

.notice-board-full-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0;
}

.notice-board-full-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 20px 40px;
    text-align: center;
    border-bottom: 3px solid #3b82f6;
}

.notice-board-full-header h2 {
    color: #1e40af;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.notice-tabs-full {
    display: flex;
    background: white;
    border-bottom: 2px solid #e2e8f0;
    padding: 0 40px;
    gap: 5px;
}

.notice-tab-full {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.notice-tab-full:hover {
    color: #1e40af;
    background: #f0f9ff;
}

.notice-tab-full.active {
    color: #1e40af;
    border-bottom-color: #2563eb;
}

.notice-list-full {
    padding: 30px 40px;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
}

.notice-item-full {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.notice-item-full:hover {
    background: #f8fafc;
    padding-left: 10px;
    padding-right: 10px;
}

.notice-item-full:last-child {
    border-bottom: none;
}

.notice-bullet {
    color: #ef4444;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-content-full {
    flex: 1;
}

.notice-title-full {
    color: #1e293b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.notice-date-full {
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
}

.notice-view-more-container {
    text-align: center;
    padding: 25px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.view-more-btn-full {
    display: inline-block;
    padding: 12px 40px;
    background: #dc2626;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.view-more-btn-full:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Scrollbar styling */
.notice-list-full::-webkit-scrollbar {
    width: 8px;
}

.notice-list-full::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.notice-list-full::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.notice-list-full::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notice-board-full-header {
        padding: 15px 20px;
    }
    
    .notice-board-full-header h2 {
        font-size: 22px;
    }
    
    .notice-tabs-full {
        padding: 0 20px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .notice-tab-full {
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .notice-list-full {
        padding: 20px;
        max-height: 400px;
    }
    
    .notice-title-full {
        font-size: 14px;
    }
    
    .notice-date-full {
        font-size: 13px;
    }
}

/* ============================================
    HOME PAGE STYLES - STANDARDIZED TYPOGRAPHY
    ============================================ */

/* Typography System: 3 sizes
   - Base: 16px (body text, paragraphs)
   - Medium: 20px (subheadings, card titles)
   - Large: 32-48px (main headings)
*/

/* ============================================
   SCROLL ANIMATION SYSTEM
   ============================================ */
.programs-header,
.program-card,
.trust-section,
.trust-content,
.trust-features,
.gallery-section,
.testimonials-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.programs-header.animate,
.trust-section.animate,
.trust-content.animate,
.gallery-section.animate,
.testimonials-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for cards */
.program-card.animate,
.trust-features.animate {
    opacity: 1;
    transform: translateY(0);
}

.program-card:nth-child(1).animate { transition-delay: 0.1s; }
.program-card:nth-child(2).animate { transition-delay: 0.2s; }
.program-card:nth-child(3).animate { transition-delay: 0.3s; }
.program-card:nth-child(4).animate { transition-delay: 0.4s; }

/* ============================================
   PROFESSIONAL BLUE HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    min-height: 480px;
    padding: 40px 0 80px;
    margin: 0;
    width: 100%;
    overflow: hidden;
    border: none;
    border-radius: 0;
    box-shadow: inset 0 -60px 120px rgba(191, 219, 254, 0.3);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -160px;
    left: -12%;
    width: 75%;
    height: 80%;
    background: linear-gradient(135deg, rgba(186, 230, 253, 0.5) 0%, rgba(147, 197, 253, 0.4) 60%, rgba(96, 165, 250, 0.3) 100%);
    border-bottom-right-radius: 80% 90%;
    border-bottom-left-radius: 25% 35%;
    transform: rotate(-8deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -130px;
    right: -15%;
    width: 70%;
    height: 85%;
    background: linear-gradient(135deg, rgba(186, 230, 253, 0.4) 0%, rgba(147, 197, 253, 0.3) 65%, rgba(125, 211, 252, 0.2) 100%);
    border-top-left-radius: 80% 85%;
    border-top-right-radius: 20% 30%;
    transform: rotate(10deg);
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* Wavy Bottom Edge */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #f4f6ff;
    clip-path: ellipse(110% 100% at 50% 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px 0;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Content Side */
.hero-content {
    color: #1e293b;
    padding-left: 20px;
    max-width: 540px;
}

.hero-main-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.title-line-1 {
    font-size: 26px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.title-line-2 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
    text-shadow: none;
    font-family: 'Poppins', sans-serif;
}

.title-line-3 {
    font-size: 26px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}
    line-height: 1.1;
}

.title-line-3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.highlight-yellow {
    color: #f59e0b;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 6px;
    font-weight: 900;
}

/* Admission CTA Button */
.admission-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    max-width: fit-content;
    position: relative;
    overflow: hidden;
}

.admission-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.admission-cta-btn:hover::before {
    left: 100%;
}

.admission-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.admission-cta-btn:active {
    transform: translateY(-1px);
}

.cta-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cta-main {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.cta-sub {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.2px;
}

.cta-arrow {
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.admission-cta-btn:hover .cta-arrow {
    transform: translateX(4px);
}

/* Stats at Bottom Left */
.hero-stats-bottom {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    margin-top: 20px;
    padding: 18px 35px;
    border-radius: 50px;
    background: #ffffff;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 0 15px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #64748b;
    text-transform: uppercase;
}

.stat-divider-vertical {
    width: 1px;
    height: 50px;
    background: #e2e8f0;
}

/* Right Image Section */
.hero-image-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 480px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
}

.hero-image-section::after {
    display: none;
}

.hero-people-image {
    position: relative;
    width: auto;
    height: 100%;
    max-height: 480px;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    mix-blend-mode: normal;
    transform: translate(60px,20px);
}

/* style the admissions badge as a prominent clickable pill */
.hero-decorative-badge {
    position: absolute;
    top: 18px;
    right: 25px;
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 28px 28px 28px 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    z-index: 6;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hero-decorative-badge .badge-text { text-align: center; }
.hero-decorative-badge .badge-main { font-size: 20px; font-weight: 800; color: #dc2626; line-height:1; }
.hero-decorative-badge .badge-sub { font-size: 13px; color: #374151; margin-top:6px; font-weight:600 }
.hero-decorative-badge:hover { transform: translateY(-4px); box-shadow: 0 26px 50px rgba(0,0,0,0.15); }

/* Admission Badge */
.hero-decorative-badge {
    position: absolute;
    top: 18px;
    right: 25px;
    background: white;
    padding: 24px 36px;
    border-radius: 50px 50px 50px 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    z-index: 15;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
    }
}


.badge-text {
    text-align: center;
}

.badge-main {
    font-size: 26px;
    font-weight: 900;
    color: #d62828;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.badge-sub {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    margin-top: 6px;
}

/* Decorative Elements - Simplified */
.deco-plane,
.deco-circles {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.deco-plane {
    top: 15%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.deco-circles {
    bottom: 10%;
    right: 5%;
    animation: rotate 20s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stat-count {
    font-size: clamp(36px, 8vw, 48px);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: system-ui, -apple-system, sans-serif;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   GALLERY CAROUSEL
   ============================================ */
.gallery-carousel {
    display: flex;
    gap: 12px;
}

.gallery-item {
    min-width: 248px;
    max-width: 248px;
    flex: 0 0 248px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.gallery-item-content {
    padding: 8px 10px;
}

.gallery-item-title {
    font-weight: 600;
    font-size: clamp(12px, 3vw, 14px);
}

.gallery-item-description {
    font-size: clamp(10px, 2.5vw, 12px);
    color: var(--text-muted);
    margin-top: 2px;
}

.gallery-scroll-container {
    margin-top: 10px;
    border-radius: 32px;
    padding: 18px 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #e0f2fe 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 24px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.gallery-scroll-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    padding: 10px 28px;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.gallery-scroll-item {
    flex: 0 0 260px;
    height: 190px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ============================================
   PROGRAMS SHOWCASE SECTION
   ============================================ */
.programs-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 90px 0 70px;
    overflow: hidden;
}

.programs-curve {
    position: absolute;
    top: 0;
    left: 50%;
    width: 150%;
    height: 140px;
    background: white;
    border-bottom-left-radius: 70% 80%;
    border-bottom-right-radius: 70% 80%;
    transform: translateX(-50%);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.programs-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.programs-header {
    max-width: 900px;
    margin: 0 auto 50px;
}

.programs-tagline {
    font-style: italic;
    color: #8b5cf6;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.programs-header h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 18px;
    font-weight: 700;
}

.programs-header p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.program-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: left 0.6s ease, opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.program-card:hover::before {
    left: 100%;
    opacity: 1;
}

.program-card:nth-child(1).animate { transition-delay: 0.1s; }
.program-card:nth-child(2).animate { transition-delay: 0.2s; }
.program-card:nth-child(3).animate { transition-delay: 0.3s; }
.program-card:nth-child(4).animate { transition-delay: 0.4s; }

.program-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
}

.program-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
}

.program-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
    transition: opacity 0.4s ease;
}

.program-card:hover .program-card-image::after {
    opacity: 0;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover .program-card-image img {
    transform: scale(1.1) rotate(1deg);
}

.program-card-info {
    padding: 12px 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
}

.program-card:hover .program-card-info {
    padding: 14px 20px;
}

.program-card-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.program-card:hover .program-card-info h3 {
    transform: translateY(-2px);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.program-card-info p {
    font-size: 14px;
    letter-spacing: 0.3px;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.program-card:hover .program-card-info p {
    opacity: 1;
    letter-spacing: 0.5px;
}

.program-card.accent-red .program-card-info {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    box-shadow: inset 0 -2px 8px rgba(0,0,0,0.1);
}

.program-card.accent-red:hover .program-card-info {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.program-card.accent-blue .program-card-info {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: inset 0 -2px 8px rgba(0,0,0,0.1);
}

.program-card.accent-blue:hover .program-card-info {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
}

.program-card.accent-green .program-card-info {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: inset 0 -2px 8px rgba(0,0,0,0.1);
}

.program-card.accent-green:hover .program-card-info {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.program-card.accent-purple .program-card-info {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: inset 0 -2px 8px rgba(0,0,0,0.1);
}

.program-card.accent-purple:hover .program-card-info {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
}

/* ============================================
   NOTICE BOARD
   ============================================ */
/* Modern Notice Board */
.notice-board-modern {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    gap: 16px;
    flex-wrap: wrap;
}

.notice-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-filter label {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.notice-filter select {
    padding: 8px 36px 8px 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all 0.3s ease;
}

.notice-filter select:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.notice-filter select option {
    background: white;
    color: #0f172a;
}

.view-all-notices {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #7c3aed;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.view-all-notices:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notice-content {
    padding: 24px;
    max-height: 400px;
    overflow-y: auto;
}

.notice-loading {
    text-align: center;
    color: #64748b;
    padding: 40px 20px;
    font-size: 14px;
}

.notice-item {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #7c3aed;
    transition: all 0.3s ease;
    cursor: pointer;
}

.notice-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.notice-bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    margin-top: 6px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.notice-link {
    flex: 1;
    text-decoration: none;
    color: #0f172a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    display: block;
}

.notice-link:hover {
    color: #7c3aed;
}

.notice-date {
    margin-left: auto;
    color: #dc2626;
    white-space: nowrap;
    font-size: clamp(10px, 2.5vw, 12px);
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE
   ============================================ */
/* ============================================
   RESPONSIVE HERO SECTION
   ============================================ */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
        padding: 60px 40px;
    }

    .title-line-1 {
        font-size: 24px;
    }
    
    .title-line-2 {
        font-size: 44px;
    }
    
    .title-line-3 {
        font-size: 28px;
    }
    
    .admission-cta-btn {
        padding: 14px 24px;
        gap: 12px;
    }
    
    .cta-main {
        font-size: 16px;
    }
    
    .cta-sub {
        font-size: 12px;
    }

    .hero-decorative-badge {
        right: -30px;
        padding: 25px 35px;
    }

    .badge-main {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 30px;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-bottom {
        margin-top: 30px;
    }

    .hero-image-section {
        height: 450px;
    }

    .hero-people-image {
        max-height: 450px;
    }

    .hero-decorative-badge {
        right: 20px;
        top: 20px;
        transform: none;
    }

    .deco-badminton-left,
    .deco-badminton-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 30px 0 40px;
    }

    .hero-container {
        padding: 30px 20px;
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .title-line-1 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .title-line-2 {
        font-size: 34px;
        margin-bottom: 6px;
    }
    
    .title-line-3 {
        font-size: 24px;
    }
    
    .admission-cta-btn {
        padding: 12px 20px;
        gap: 10px;
        margin: 0 auto 20px;
    }
    
    .cta-icon {
        font-size: 28px;
    }
    
    .cta-main {
        font-size: 15px;
    }
    
    .cta-sub {
        font-size: 11px;
    }
    
    .cta-arrow {
        font-size: 20px;
    }

    .hero-stats-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        padding: 16px 20px;
        width: auto;
        max-width: 100%;
        margin: 20px auto 0;
    }

    .stat-divider-vertical {
        width: 1px;
        height: 45px;
    }

    .stat-item {
        align-items: center;
        min-width: 80px;
        padding: 0 12px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10px;
    }

    .hero-image-section {
        height: 350px;
        justify-content: center;
    }

    .hero-people-image {
        max-height: 350px;
        transform: translate(0, 20px);
    }

    .deco-plane,
    .deco-lines-left,
    .deco-lines-right {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .stats-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .program-card-info {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 20px 16px;
    }

    .hero-main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-stats-bottom {
        padding: 14px 16px;
        gap: 0;
    }

    .stat-item {
        min-width: 70px;
        padding: 0 8px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 9px;
    }

    .stat-divider-vertical {
        height: 40px;
    }

    .hero-image-section {
        height: 280px;
    }

    .hero-people-image {
        max-height: 280px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-grid {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.gallery-scroll-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-scroll-item:hover::before {
    opacity: 1;
}

.gallery-scroll-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.gallery-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-scroll-item:hover img {
    transform: scale(1.1);
}

.view-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7c3aed;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.view-gallery-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}

/* ============================================
   WHY PARENTS TRUST SECTION - CIRCULAR LAYOUT
   ============================================ */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.trust-title {
    font-size: clamp(24px, 4vw, 38px);
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-school {
    color: #dc2626;
    position: relative;
    display: inline-block;
}

/* Circular Container */
.circular-trust-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Center Circle */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
    z-index: 10;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
    }
    50% {
        box-shadow: 0 10px 60px rgba(124, 58, 237, 0.5);
    }
}

.center-content {
    text-align: center;
    color: white;
}

.center-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.center-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.center-content p {
    font-size: 13px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

/* Connection Lines SVG */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 800px;
    pointer-events: none;
    z-index: 1;
}

/* Trust Cards - Circular Positioning */
.circular-card {
    position: absolute;
    width: 200px;
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e7ff;
    z-index: 5;
}

.circular-card:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 35px rgba(124, 58, 237, 0.25);
    border-color: #7c3aed;
    z-index: 15;
}

.circular-card .trust-card-title {
    font-size: 16px;
    color: #1e293b;
    margin: 12px 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
}

.circular-card .trust-card-desc {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.circular-card .trust-icon-wrapper {
    margin-bottom: 8px;
}

/* Position each card in a circle - 8 cards */
.card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.card-2 {
    top: 10%;
    right: 8%;
}

.card-3 {
    top: 40%;
    right: 0;
}

.card-4 {
    bottom: 10%;
    right: 8%;
}

.card-5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.card-6 {
    bottom: 10%;
    left: 8%;
}

.card-7 {
    top: 40%;
    left: 0;
}

.card-8 {
    top: 10%;
    left: 8%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .circular-trust-container {
        max-width: 900px;
        height: 750px;
    }
    
    .center-circle {
        width: 180px;
        height: 180px;
    }
    
    .center-icon {
        font-size: 40px;
    }
    
    .center-content h3 {
        font-size: 18px;
    }
    
    .center-content p {
        font-size: 12px;
    }
    
    .circular-card {
        width: 180px;
        padding: 20px 16px;
    }
    
    .circular-card .trust-card-title {
        font-size: 15px;
    }
    
    .circular-card .trust-card-desc {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-header {
        margin-bottom: 50px;
    }
    
    .trust-title {
        font-size: 22px;
        padding: 0 15px;
    }
    
    /* Stack cards vertically on mobile */
    .circular-trust-container {
        height: auto;
        padding: 0 15px;
    }
    
    .center-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 40px;
        width: 160px;
        height: 160px;
    }
    
    .connection-lines {
        display: none;
    }
    
    .circular-card {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    .circular-card:hover {
        transform: scale(1.02) !important;
    }
}

/* Full Width Container for Gallery */
.container-full {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.gallery-carousel-section .gallery-scroll-container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.gallery-carousel-section .gallery-header {
    padding: 0 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .trust-section {
        padding: 50px 0;
    }
    
    .trust-header {
        margin-bottom: 40px;
    }
    
    .trust-quote {
        font-size: 14px;
    }
    
    .trust-title {
        font-size: 24px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-card {
        padding: 28px 20px;
    }
    
    .trust-card-title {
        font-size: 18px;
    }
    
    .trust-card-desc {
        font-size: 14px;
    }
    
    .gallery-scroll-item {
        width: 280px;
        height: 200px;
    }
    
    .gallery-carousel-section {
        padding: 40px 0;
    }
}

/* ============================================
   MOBILE RESPONSIVENESS - HERO SECTION
   ============================================ */
@media (max-width: 1024px) {
    .modern-hero {
        min-height: 65vh;
        padding: 50px 0 60px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 40px auto 0;
        text-align: center;
    }
    
    .hero-text-side {
        order: 1;
    }
    
    .hero-image-side {
        order: 2;
    }
    
    .hero-carousel-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .blob-1 {
        width: 350px;
        height: 350px;
        top: -150px;
        left: -100px;
    }
    
    .blob-2 {
        width: 400px;
        height: 400px;
        bottom: -180px;
        right: -80px;
    }
    
    .blob-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: auto;
        padding: 40px 0 50px;
    }
    
    .hero-content-wrapper {
        gap: 30px;
        margin: 30px auto 0;
        padding: 0 20px;
    }
    
    .modern-hero-title {
        font-size: clamp(28px, 7vw, 42px);
        line-height: 1.3;
    }
    
    .modern-hero-subtitle {
        font-size: clamp(14px, 3vw, 18px);
        margin-bottom: 25px;
    }
    
    .enroll-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .hero-carousel-container {
        max-width: 320px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .carousel-dots {
        bottom: -40px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .deco-1, .deco-5 {
        width: 40px;
        height: 40px;
    }
    
    .deco-3, .deco-4, .deco-6 {
        font-size: 24px;
    }
    
    .blob-1 {
        width: 250px;
        height: 250px;
        top: -100px;
        left: -80px;
    }
    
    .blob-2 {
        width: 300px;
        height: 300px;
        bottom: -120px;
    }
}

@media (max-width: 480px) {
    .modern-hero {
        padding: 30px 0 40px;
    }
    
    .hero-content-wrapper {
        gap: 25px;
        margin: 20px auto 0;
        padding: 0 15px;
    }
    
    .modern-hero-title {
        font-size: clamp(24px, 8vw, 32px);
        margin-bottom: 15px;
    }
    
    .modern-hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .enroll-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-carousel-container {
        max-width: 280px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .carousel-dots {
        bottom: -35px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        border: 6px solid rgba(255, 255, 255, 0.2);
    }
    
    .blob-1, .blob-2, .blob-3 {
        opacity: 0.4;
    }
    
    .deco-circle, .deco-plus, .deco-wave, .deco-ring, .deco-plane {
        display: none;
    }
}

/* ============================================
   STATISTICS SECTION MOBILE
   ============================================ */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .stats-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .stat-count {
        font-size: clamp(30px, 6vw, 40px);
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-card {
        padding: 25px 20px;
    }
}

/* ============================================
   BACHPAN STYLE - WHY PARENTS TRUST SECTION
   ============================================ */
.trust-section-new {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.trust-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.trust-subtitle {
    font-size: 16px;
    color: #7c3aed;
    font-style: italic;
    margin-bottom: 15px;
}

.trust-title-new {
    font-size: clamp(26px, 4vw, 38px);
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-school {
    color: #dc2626;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 4px solid;
    position: relative;
}

.trust-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.blue-border {
    border-color: #3b82f6;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f9ff 100%);
}

.red-border {
    border-color: #ef4444;
    background: linear-gradient(to bottom, #ffffff 0%, #fef2f2 100%);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blue-bg {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #93c5fd;
}

.red-bg {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    border-color: #fca5a5;
}

.feature-emoji {
    font-size: 50px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 18px 0;
    line-height: 1.3;
}

.blue-text {
    color: #2563eb;
}

.red-text {
    color: #dc2626;
}

.feature-desc {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-icon-circle {
        width: 95px;
        height: 95px;
    }
}

@media (max-width: 768px) {
    .trust-section-new {
        padding: 60px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-feature-card {
        padding: 35px 25px;
        border-width: 3px;
    }
    
    .feature-icon-circle {
        width: 90px;
        height: 90px;
        border-width: 4px;
    }
    
    .feature-emoji {
        font-size: 45px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-desc {
        font-size: 14px;
    }
}

/* ============================================
   STUDENT ACHIEVEMENTS SECTION
   ============================================ */
.achievements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.achievements-header {
    margin-bottom: 40px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.achievement-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.achievement-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

.achievement-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.achievement-content {
    padding: 20px;
}

.achievement-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.achievement-student {
    font-size: 15px;
    color: #3b82f6;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.achievement-class {
    font-size: 13px;
    color: #64748b;
    font-weight: normal;
}

.achievement-date {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 12px 0;
}

.achievement-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.view-achievements-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.view-achievements-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 60px 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-image,
    .achievement-placeholder {
        height: 200px;
    }
}
