﻿
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
        line-height: 55px;
    }
    .nav-links {
        gap: 10px;
    }
    .nav-links a {
        font-size: 14px;
        line-height: 14px;
    }
    a.nav-logo {
        max-width: 210px;
    }
    .hero-content .hero-left {
        width: 60%;
    }
    .hero-content .hero-right {
        width: 40%;
    }
    .herosectionbanner::before{
        height: 180px;
    }
}
    /* MOBILE */
    @media (max-width: 900px) {
        nav {
            padding: 0;
        }
        .nav-links {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 99;
            margin: 80px 0 0 0;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.6s ease;
        }
        header.header {
            padding: 15px 0;
        }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0px;
                transform: scaleY(1);
            }
            .nav-links a {
                display: block;
                width: 100%;
                padding: 12px 10px;
                background: #ce2231;
                color: #fff;
                border-bottom: 1px solid #fff;
            }
        .hamburger {
            display: flex;
        }

        .hero-bg-shape {
            display: none;
        }
        .hero-content {
            align-items: center;
            flex-direction: column;
            gap: 25px;
        }
        .hero-content .hero-left {
            width: 100%;
        }
        .hero-content .hero-right {
            width: 100%;
        }
        .countdown-grid {
            display: flex;
            gap: 18px;
            justify-content: flex-start;
        }
        .herosectionbanner::before {
            height: 130px;
        }
        .hero {
            padding-top: 60px;
            padding-bottom: 140px;
        }
        .sw {
            padding: 60px 20px;
        }

        .cta-band {
            padding: 0 20px 60px;
        }

        .cta-inner {
            flex-direction: column;
            padding: 40px 26px;
        }

        .cta-actions {
            align-items: stretch;
            width: 100%;
        }

        .divider {
            padding: 0 20px;
        }

        .footer-wrap {
            padding: 28px 20px;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .why-right {
            order: -1;
        }

        .speakers-grid {
            grid-template-columns: 1fr;
        }

        .highlights-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .countdown-num {
            width: 58px;
            height: 54px;
            font-size: 34px;
        }
    }

@media (max-width: 767px) {
    .hero-title {
        font-size: 30px;
        line-height: 40px;
    }
    .hero-subtitle {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 14px;

    }
    .hero-meta {
        gap: 10px;
        margin-bottom: 16px;
    }
    .countdown-grid {
        gap: 10px;
        justify-content: flex-start;
    }
    .countdown-num {
        width: 48px;
        height: 44px;
        font-size: 20px;
    }
    .herosectionbanner::before {
        height: 70px;
    }
    .hero {
        padding-bottom: 80px;
    }
    .hero-btns, .hero-meta {
        align-items: flex-start;
    }
    .commonbtndsgn a {
        font-size: 14px;
        line-height: 40px;
        padding: 0 20px;
    
    }
    .countdown-card {
        padding: 0px 38px 0px;
        text-align: center;
        border-top: none;
        box-shadow: none;
    }
    .nav-links {
        margin: 74px 0 0 0;
    }
}


    @media (max-width: 480px) {
        .highlights-grid {
            grid-template-columns: 1fr;
        }

        .stat-strip {
            grid-template-columns: 1fr;
        }

        .stat-item {
            border-right: none;
            border-bottom: 1px solid var(--border);
        }

            .stat-item:last-child {
                border-bottom: none;
            }

        .hero-btns, .hero-meta {
            flex-direction: column;
        }
    }
