/* ========================================
   INDEX PAGE - PREMIUM DARK THEME REDESIGN
   ======================================== */

/* ========================================
   HERO SECTION - MODERN DARK THEME
   ======================================== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: heroFloat 25s ease-in-out infinite;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    bottom: -150px;
    left: -150px;
    animation-delay: -8s;
}

.hero-shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    top: 50%;
    left: 30%;
    animation-delay: -16s;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -50px) rotate(5deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(3deg);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-modern .hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd700;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.15;
}

.hero-title-modern span {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons-modern {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn-modern {
    padding: 16px 36px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-primary-modern {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #000;
}

.hero-btn-outline-modern {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-5px);
}

/* Hero Stats Card - Glassmorphism */
.hero-stats-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.stats-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-item-modern {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-item-modern:last-child {
    border-bottom: none;
}

.stats-icon-modern {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: #ffd700;
    font-size: 1.3rem;
}

.stats-text-modern {
    flex: 1;
}

.stats-label-modern {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.stats-value-modern {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

/* ========================================
   SERVICES SECTION - DARK THEME
   ======================================== */
.services-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0d2b 0%, #1a1a3a 100%);
    overflow: hidden;
}

.services-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.services-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.services-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 10%;
    right: -100px;
}

.services-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    bottom: 10%;
    left: -80px;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd700;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.service-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffd700;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    transform: scale(1.1);
}

.service-card-modern h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card-modern p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   ABOUT SECTION - DARK THEME
   ======================================== */
.about-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a3a 0%, #0d0d2b 100%);
    overflow: hidden;
}

.about-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.about-shape-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    top: 20%;
    right: -100px;
}

.about-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    bottom: 10%;
    left: -80px;
}

.about-image-showcase {
    position: relative;
    z-index: 1;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-frame:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    pointer-events: none;
}

.about-floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 10;
}

.about-floating-card-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.about-floating-card-2 {
    bottom: 30px;
    left: -20px;
    animation-delay: -2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-floating-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
}

.about-floating-card span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-content-block {
    position: relative;
    z-index: 1;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.about-feature-item i {
    color: #ffd700;
    font-size: 1rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.about-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #000;
}

/* ========================================
   TRAINING CATEGORIES - DARK THEME
   ======================================== */
.categories-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    overflow: hidden;
}

.categories-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.categories-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.categories-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    top: -100px;
    left: 20%;
}

.categories-shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    bottom: -100px;
    right: 10%;
}

/* ========================================
   CATEGORY SLIDER - HORIZONTAL CARD SLIDER
   ======================================== */

.category-slider-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.category-slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.category-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 0;
}

/* Category Card Styles */
.category-slide-card {
    flex-shrink: 0;
    width: calc(33.333% - 20px);
    min-width: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 420px;
}

.category-slide-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Card Image Section */
.slide-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.slide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-slide-card:hover .slide-card-image img {
    transform: scale(1.1);
}

.slide-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.95), transparent);
    pointer-events: none;
}

/* Card Icon */
.slide-card-icon {
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.category-slide-card:hover .slide-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Card Content */
.slide-card-content {
    padding: 25px;
    background: linear-gradient(135deg, rgba(26, 26, 58, 0.95), rgba(13, 13, 43, 0.95));
    flex: 1;
    display: flex;
    flex-direction: column;
}

.slide-card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.slide-card-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

/* Learn More Button */
.slide-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.slide-card-btn:hover {
    color: #ff8c00;
    gap: 12px;
}

.slide-card-btn i {
    transition: transform 0.3s ease;
}

.slide-card-btn:hover i {
    transform: translateX(5px);
}

/* Navigation Arrows */
.slider-arrow {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    transform: scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Categories Button Wrapper */
.categories-btn-wrapper {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .category-slide-card {
        width: calc(50% - 15px);
        min-width: 300px;
    }
}

@media (max-width: 992px) {
    .category-slider-wrapper {
        padding: 0 10px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .category-slide-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .category-slider-wrapper {
        padding: 0;
    }

    .slider-arrow {
        display: none;
    }

    .category-slider-container {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 20px;
    }

    .category-slider-container::-webkit-scrollbar {
        display: none;
    }

    .category-slide-card {
        width: 85vw;
        min-width: 280px;
        max-width: 350px;
    }

    .slide-card-image {
        height: 180px;
    }
}

/* ========================================
   OUR IMPACT SECTION - DARK THEME
   ======================================== */
.impact-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0d2b 0%, #1a1a3a 100%);
    overflow: hidden;
}

.impact-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.impact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.impact-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    top: 10%;
    left: -100px;
}

.impact-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fd79a8, #e84393);
    bottom: 10%;
    right: -80px;
}

.impact-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.impact-item-modern:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.impact-item-modern:last-child {
    margin-bottom: 0;
}

.impact-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.impact-text-modern {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CLIENTS SECTION - DARK THEME
   ======================================== */
.clients-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a3a 0%, #0d0d2b 100%);
    overflow: hidden;
}

.clients-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.clients-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.clients-shape-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -100px;
    right: 20%;
}

.clients-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    bottom: -80px;
    left: 10%;
}

.clients-grid-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.client-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: calc(20% - 20px);
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.client-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.client-card-modern img {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.client-card-modern:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.client-card-modern span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-align: center;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .hero-title-modern {
        font-size: 3.5rem;
    }

    .client-card-modern {
        width: calc(25% - 19px);
    }
}

@media (max-width: 992px) {
    .hero-modern {
        padding: 100px 0 60px;
    }

    .hero-title-modern {
        font-size: 3rem;
    }

    .hero-stats-modern {
        margin-top: 40px;
    }

    .categories-container-modern {
        gap: 20px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .client-card-modern {
        width: calc(33.333% - 17px);
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .hero-text-wrapper {
        padding: 0 15px;
    }

    .hero-title-modern {
        font-size: 2.2rem;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .hero-buttons-modern {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn-modern {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .section-title-modern {
        font-size: 2.2rem;
    }

    .categories-container-modern {
        flex-direction: column;
    }

    .carousel-column-modern {
        width: 100%;
    }

    .client-card-modern {
        width: calc(50% - 13px);
    }

    .about-floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }

    .section-title-modern {
        font-size: 1.8rem;
    }

    .client-card-modern {
        width: 100%;
    }

    .impact-item-modern {
        flex-direction: column;
        text-align: center;
    }
}