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

        html {
            font-size: 12px;
        }

        /* Updated School Theme Colors (Navy Blue & Gold) */
        :root {
            --primary: #003366;
            /* Navy Blue */
            --secondary: #f0f2f5;
            --accent: #FFD700;
            /* Gold */
            --text-dark: #333;
            --text-light: #fff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            font-size: 1.4rem;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        .page {
            display: none;
            margin-top: 100px;
        }

        .page.active {
            display: block;
        }

        .hero {
            min-height: 30vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            from {
                transform: translate(0, 0);
            }

            to {
                transform: translate(50px, 50px);
            }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            padding: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .hero h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

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

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
        }

        .stats {
            background: var(--dark);
            color: white;
            padding: 1.5rem 1rem;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .section {
            padding: 1rem;
        }

        .section-alt {
            background: var(--light);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .about-intro {
            max-width: 1200px;
            margin: 0 auto 1.5rem;
            text-align: center;
            font-size: 1.3rem;
            line-height: 1.8;
        }

        .vision-mission {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .vm-card {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .vm-card h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .vm-card ul {
            list-style: none;
            padding: 0;
        }

        .vm-card li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            line-height: 1.6;
        }

        .vm-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .management-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .management-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

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

        .management-photo {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .management-info {
            padding: 1rem;
            text-align: center;
        }

        .management-info h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .management-info .role {
            color: #1e40af;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .management-info .qualification {
            color: #374151;
            font-size: 0.95rem;
            font-weight: bold;
        }

        .management-message {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 1.5rem;
        }

        .management-message h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .management-message p {
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        .groups-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .group-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

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

        .group-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .group-card ul {
            list-style: none;
        }

        .group-card li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .group-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

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

        .facility-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

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

        .facility-icon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1.5rem;
            text-align: center;
            font-size: 3rem;
        }

        .facility-content {
            padding: 1.5rem;
        }

        .facility-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .admission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .admission-card {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .admission-card h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .admission-card ul {
            list-style: none;
            padding: 0;
        }

        .admission-card li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid #eee;
        }

        .admission-card li::before {
            content: '📄';
            position: absolute;
            left: 0;
        }

        .school-hours {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem;
            border-radius: 20px;
            margin-top: 1rem;
        }

        .school-hours h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .hours-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }

        .hours-item strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .contact-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        footer {
            background: #0f172a;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .gallery-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            object-fit: cover;
        }

        .gallery-caption {
            padding: 1.5rem;
            background: white;
            text-align: center;
        }

        .gallery-caption h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .gallery-caption p {
            color: #666;
            font-size: 0.95rem;
        }

        #events {
            max-width: 1200px;
            margin: auto;
            padding: 40px 20px;
        }

        #events h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
        }

        #instagram-feed iframe,
        #youtube-videos iframe {
            width: 100%;
            max-width: 800px;
            height: 450px;
            border: none;
            margin: 20px auto;
            display: block;
        }

        .event-caption {
            text-align: center;
            font-size: 14px;
            margin-top: 5px;
            margin-bottom: 30px;
            color: #333;
        }


        @media (max-width: 768px) {

            /* Header mobile styles */
            .logo {
                font-size: 1rem;
                gap: 0.5rem;
            }

            .logo img {
                height: 40px;
            }

            .nav-container {
                padding: 0.5rem 1rem;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 1rem 0;
                gap: 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 1rem;
                width: 100%;
            }

            .nav-links a::after {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

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

            .vision-mission,
            .admission-grid {
                grid-template-columns: 1fr;
            }

            /* Footer mobile styles */
            .footer-content {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
                padding: 1.5rem !important;
            }

            .footer-section h3 {
                font-size: 1.2rem;
            }

            .footer-section {
                text-align: left;
            }
        }

        @media (min-width: 1024px) {

            .facilities-grid,
            .management-grid {
                grid-template-columns: repeat(3, 1fr);
            }

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

            .groups-grid {
                grid-template-columns: repeat(5, 1fr);
            }

            .contact-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* --- Chatbot Styles --- */
        #chatbot-bubble {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 2000;
            transition: transform 0.3s ease;
        }

        #chatbot-bubble:hover {
            transform: scale(1.1);
        }

        #chatbot-window {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 350px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            display: none;
            flex-direction: column;
            overflow: hidden;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .chat-header {
            background: var(--primary);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h3 {
            font-size: 1.4rem;
            margin: 0;
        }

        .close-chat {
            cursor: pointer;
            font-size: 24px;
        }

        .chat-body {
            padding: 15px;
            height: 350px;
            overflow-y: auto;
            background: #f9fafb;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .chat-msg {
            max-width: 85%;
            padding: 12px 16px;
            font-size: 1rem;
            line-height: 1.4;
            animation: fadeIn 0.3s ease;
        }

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

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

        .bot-msg {
            align-self: flex-start;
            background: #e2e8f0;
            color: #333;
            border-radius: 15px 15px 15px 5px;
        }

        .user-msg {
            align-self: flex-end;
            background: var(--primary);
            color: white;
            border-radius: 15px 15px 5px 15px;
        }

        .chat-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 5px;
            align-self: flex-start;
            width: 100%;
        }

        .chat-option {
            background: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 15px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s ease;
            text-align: left;
            width: fit-content;
        }

        .chat-option:hover {
            background: var(--primary);
            color: white;
        }

        .chat-input-area {
            display: flex;
            padding: 10px;
            background: white;
            border-top: 1px solid #e2e8f0;
            gap: 10px;
        }

        .chat-input-area input {
            flex: 1;
            padding: 10px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
        }

        .chat-send-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 15px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
        }

        .chat-form {
            background: white;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            margin-top: 10px;
        }

        .chat-form input,
        .chat-form select {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        /* --- Notifications Page Styles --- */
        .notifications-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Hide Elfsight free branding */
        .elfsight-app-a a[href*="elfsight"],
        a[href*="elfsight.com"],
        .eapps-instagram-feed-posts-grid-load-more+a,
        .eapps-link {
            display: none !important;
        }

        .notification-card {
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            border-left: 5px solid var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .notification-card.important {
            border-left-color: #f59e0b;
        }

        .facility-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #f0f0f0;
        }

        .facility-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .facility-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 4px solid var(--primary);
        }

        .facility-content {
            padding: 1.5rem;
        }

        .facility-content h3 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .notification-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .notification-card.urgent {
            border-left-color: #ef4444;
        }

        .notification-card.event {
            border-left-color: var(--secondary);
        }

        .notification-card.info {
            border-left-color: #3b82f6;
        }

        .notification-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .notification-date {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 600;
        }

        .notification-badge {
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .badge-urgent {
            background: #fee2e2;
            color: #ef4444;
        }

        .badge-event {
            background: #fef3c7;
            color: #d97706;
        }

        .badge-important {
            background: #fef3c7;
            color: #d97706;
        }

        .badge-info {
            background: #dbeafe;
            color: #3b82f6;
        }

        .notification-card h3 {
            color: #1e293b;
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            margin-top: 0;
        }

        .notification-card p {
            color: #475569;
            line-height: 1.6;
            font-size: 1.05rem;
            margin-bottom: 0;
        }

        /* Bottom Navigation for Mobile */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 10px 0;
            justify-content: space-around;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }

        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #64748b;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .bottom-nav-item i {
            font-size: 1.4rem;
            margin-bottom: 4px;
        }

        .bottom-nav-item.active {
            color: var(--primary);
        }

        .bottom-nav-item svg {
            width: 24px;
            height: 24px;
            margin-bottom: 2px;
            stroke-width: 2;
        }

        @media (max-width: 768px) {

            .nav-links,
            .mobile-menu {
                display: none !important;
            }

            .bottom-nav {
                display: flex;
            }

            .page {
                margin-top: 80px;
                padding-bottom: 70px;
                /* Space for bottom nav */
            }
        }


        /* Gallery topper images - show full image without cropping */
        .gallery-item.topper-item .gallery-image {
            object-fit: contain;
            background: #f0f4f8;
        }

        /* Facilities - Full Width Activities Card */
        .facility-card.full-width {
            grid-column: 1 / -1;
            margin-top: 2.5rem;
            background: #fff;
            border: 1px solid #eef2f6;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
        }

        .activities-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 1rem;
        }

        .activity-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.2rem;
            padding: 2.5rem 1.5rem;
            border-radius: 20px;
            background: white;
            border: 2px solid #f1f5f9;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .activity-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .activity-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
            border-color: var(--secondary);
            background: #fff;
        }

        .activity-item:hover::before {
            opacity: 1;
        }

        .activity-item-icon {
            font-size: 4.2rem;
            height: 96px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .activity-item:hover .activity-item-icon {
            transform: scale(1.1);
        }

        .activity-item-name {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.3rem;
            margin-top: 0.5rem;
        }

        @media (max-width: 900px) {
            .activities-inner {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 500px) {
            .activities-inner {
                grid-template-columns: 1fr;
            }

            .activity-item {
                padding: 1.5rem;
            }
        }