  /* Vibrant Student Life Section */
        .student-life-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 50px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Gallery Tabs */
        .gallery-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            background: white;
            border-radius: 15px;
            padding: 8px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            /*max-width: 1000px;*/
            margin-left: auto;
            margin-right: auto;
            gap: 4px;
        }

        .tab-item {
            padding: 10px 16px;
            background: transparent;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            justify-content: center;
            text-align: center;
        }

        .tab-item:hover {
            color: var(--primary);
            background: rgba(204, 54, 52, 0.05);
        }

        .tab-item.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(204, 54, 52, 0.3);
        }

        .tab-item i {
            font-size: 1.1rem;
        }

        /* Gallery Content */
        .gallery-content {
            position: relative;
          /*  min-height: 400px;*/
        }

        .tab-panel {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .tab-panel.active {
            display: block;
        }

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

        /* Image Grid */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .image-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .image-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

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

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), transparent);
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: end;
            padding: 20px;
        }

        .image-card:hover .image-overlay {
            opacity: 1;
        }

        .image-caption {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .image-card:hover .image-caption {
            transform: translateY(0);
        }

        /* Special 4-image grid for some sections */
        .image-grid-4 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .image-grid-4 .image-card {
            aspect-ratio: 3/2;
        }

        /* Featured Activity Card */
        .featured-activity {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 20px;
            padding: 40px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 30px;
        }

        .featured-activity::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .featured-content {
            position: relative;
            z-index: 2;
        }

        .featured-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .featured-description {
            font-size: 1rem;
            opacity: 0.95;
            margin-bottom: 20px;
        }

        .join-btn {
            background: white;
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .join-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            color: var(--primary);
        }

        /* Stats Row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            background: white;
            padding: 25px 15px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .student-life-section {
                padding: 60px 0;
            }

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

            .gallery-tabs {
                padding: 6px;
                margin-bottom: 30px;
                max-width: 100%;
            }

            .tab-item {
                padding: 8px 12px;
                font-size: 0.8rem;
                gap: 4px;
            }

            .tab-item i {
                font-size: 1rem;
            }

            .image-grid, .image-grid-4 {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .featured-activity {
                padding: 30px 20px;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }

            .section-description {
                font-size: 1rem;
                padding: 0 15px;
            }

            .gallery-tabs {
                flex-wrap: wrap;
                gap: 8px;
            }

            .tab-item {
                flex: 1;
                min-width: 120px;
            }

            .stat-item {
                padding: 20px 10px;
            }

            .stat-number {
                font-size: 1.5rem;
            }
        }