body {
    font-family: 'Poppins', sans-serif;
}
p,span{
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    
}
 .gallery-item {
                position: relative;
                overflow: hidden;
                border-radius: 10px;
                cursor: pointer;
                transition: transform 0.3s ease;
                margin-bottom: 20px;
}
            .gallery-item:hover {
                transform: scale(1.05);
            }
            .gallery-overlay {
                position: absolute;
                bottom: -100%;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
                color: white;
                padding: 20px;
                transition: bottom 0.3s ease;
            }

            .gallery-item:hover .gallery-overlay {
                bottom: 0;
            }

            .show-more-btn {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                border: none;
                padding: 10px 30px;
                border-radius: 25px;
                font-weight: 600;
                transition: transform 0.3s ease;
            }

            .show-more-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            }

            .hidden-gallery {
                display: none;
            }

            .stat-card {
                background: white;
                border-radius: 15px;
                padding: 30px;
                text-align: center;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease;
            }

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

            .mentor-card {
                background: white;
                border-radius: 15px;
                padding: 20px;
                margin: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
            }

            .mentor-card:hover {
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            }

            .floating-form {
                animation: float 6s ease-in-out infinite;
            }

            @keyframes float {
                0% {
                    transform: translateY(0px);
                }

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

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

            .feature-check {
                display: flex;
                align-items: center;
                margin-bottom: 15px;
                padding: 10px;
                background: #f8f9fa;
                border-radius: 10px;
                transition: background 0.3s ease;
            }

            .feature-check:hover {
                background: #e9ecef;
            }

            .feature-check svg {
                flex-shrink: 0;
                margin-right: 15px;
            }

            /* gallery section */
            /* Image Gallery - Clean Masonry Style */
            .gallery-modern {
                padding: 2rem 2rem;
                background: #f8fafc;
            }

            .gallery-grid {
                max-width: 1400px;
                margin: 3rem auto 0;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .gallery-item img {
                width: 100%;
                height: auto;
                aspect-ratio: 4/3;
                object-fit: cover;
            }

            /* Mobile Fix */
            @media (max-width: 768px) {
                .gallery-modern {
                    padding: 3rem 1rem;
                }

                .gallery-grid {
                    grid-template-columns: 1fr;
                }
            }




            .gallery-card {
                position: relative;
                border-radius: 24px;
                overflow: hidden;
                box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                aspect-ratio: 4/3;
            }

            .gallery-card:hover {
                transform: translateY(-10px) scale(1.02);
                box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.3);
            }

            .gallery-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

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

            .gallery-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 2rem;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
                color: white;
                transform: translateY(100%);
                transition: transform 0.4s ease;
            }

            .gallery-card:hover .gallery-overlay {
                transform: translateY(0);
            }

            .gallery-overlay h4 {
                font-size: 1.25rem;
                margin-bottom: 0.25rem;
                font-weight: 600;
            }

            .gallery-overlay p {
                font-size: 0.9rem;
                opacity: 0.8;
                margin: 0;
            }

            .why-aspire {
                background: #f8f9fa;
            }

            .why-card {
                background: #ffffff;
                border-radius: 12px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
            }

            .why-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .icon-box {
                font-size: 28px;
                color: #0d6efd;
            }

            .corporate-training {
                background: #f8fbff;
            }

            .section-title {
                position: relative;
                display: inline-block;
            }

            .section-title::after {
                content: "";
                width: 60px;
                height: 3px;
                background: #0d6efd;
                display: block;
                margin: 10px auto 0;
            }

            .feature-box {
                padding: 20px;
                transition: all 0.3s ease;
            }

            .feature-box h5 {
                margin-top: 15px;
                font-weight: 600;
            }

            .feature-box p {
                font-size: 14px;
                color: #666;
            }

            .feature-box:hover {
                transform: translateY(-5px);
            }

            .icon-circle {
                width: 80px;
                height: 80px;
                background: #e9f2ff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: auto;
                transition: 0.3s ease;
            }

            .icon-circle img {
                width: 40px;
            }

            .feature-box:hover .icon-circle {
                background: #0d6efd;
            }

            .feature-box:hover .icon-circle img {
                filter: brightness(0) invert(1);
            }

            /* mentor and experience */
            .mentors-section {
                background: #f8fbff;
            }

            .mentor-box {
                padding: 25px;
                background: #ffffff;
                border-radius: 10px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
                height: 100%;
                transition: 0.3s ease;
            }

            .mentor-box:hover {
                transform: translateY(-5px);
            }

            .mentor-box h5 {
                font-weight: 600;
                margin-bottom: 15px;
            }

            .mentor-box p {
                font-size: 14px;
                color: #555;
                text-align: justify;
            }

            .mentor-info {
                margin-top: 15px;
                display: flex;
                flex-direction: column;
                gap: 5px;
                font-size: 13px;
                color: #0d6efd;
            }

            /* Additional styles for animations */
            .stat-card,
            .mentor-card,
            .gallery-item {
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.6s ease, transform 0.6s ease;
            }

            .stat-card.visible,
            .mentor-card.visible,
            .gallery-item.visible {
                opacity: 1;
                transform: translateY(0);
            }

            /* Smooth scrolling */
            html {
                scroll-behavior: smooth;
            }

            /* Custom scrollbar */
            ::-webkit-scrollbar {
                width: 10px;
            }

            ::-webkit-scrollbar-track {
                background: #f1f1f1;
            }

            ::-webkit-scrollbar-thumb {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                border-radius: 5px;
            }

            ::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            }