        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Space Grotesk', sans-serif;
        }

        html,
        body {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            position: relative;
            color: #fff;
            scroll-behavior: smooth;
        }

        /* ================= CUSTOM SCROLLBAR ================= */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #0d1a15;
        }

        ::-webkit-scrollbar-thumb {
            background: #1fd47e;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #18b368;
        }

        /* ================= HEADER ================= */
        .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(13, 26, 21, 0.4);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .main-header.scrolled {
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 5px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .header-container {
            width: 90%;
            margin: auto;
            padding: 5px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -1.5px;
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .logo img {
            height: 75px;
            width: auto;
            object-fit: contain;
        }

        .logo span {
            color: #1fd47e;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav a {
            position: relative;
            padding: 8px 15px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            transition: 0.3s;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            right: 15px;
            height: 2px;
            background: #1fd47e;
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: right;
        }

        .nav a:hover {
            color: #fff;
        }

        .nav a.active {
            color: #1fd47e;
        }

        .nav a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-icon {
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #fff;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .search-icon i {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .search-icon:hover {
            color: #000;
            background: #1fd47e;
            border-color: #1fd47e;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(31, 212, 126, 0.4);
        }

        .search-icon:hover i {
            transform: rotate(15deg) scale(1.1);
        }

        .header-btn {
            background: linear-gradient(135deg, #1fd47e 0%, #14a05f 100%);
            color: #fff;
            padding: 12px 28px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            box-shadow: 0 4px 15px rgba(31, 212, 126, 0.3);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .header-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: #fff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .header-btn:hover {
            color: #000;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .header-btn:hover::before {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 4px;
            align-items: center;
            justify-content: center;
        }

        /* ================= MOBILE MENU ================= */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100%;
            background: #0a0a0a;
            z-index: 1100;
            padding: 60px 30px;
            transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu .logo {
            text-align: center;
            margin-bottom: 50px !important;
            width: 100%;
            justify-content: center;
        }

        .mobile-menu .logo img {
            max-width: 160px;
            height: auto;
            max-height: 100px;
        }

        .mobile-menu a {
            display: block;
            width: 100%;
            color: #fff;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            padding: 15px 0;
            margin-bottom: 10px;
            text-align: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: #1fd47e;
            background: rgba(31, 212, 126, 0.1);
            transform: scale(1.05);
        }

        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 30px;
            cursor: pointer;
        }

        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1050;
            display: none;
            opacity: 0;
            transition: 0.3s;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        }

        /* ================= HERO SLIDER ================= */
        .hero-slider {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.2s ease, visibility 1.2s;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(75deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 10;
            width: 90%;
            margin: auto;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 25px;
        }

        .hero-left {
            width: 60%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #1fd47e;
            background: rgba(31, 212, 126, 0.1);
            border: 1px solid rgba(31, 212, 126, 0.3);
            margin-bottom: 25px;
            width: max-content;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 15px rgba(31, 212, 126, 0.1);
        }

        .hero-left h1 {
            font-size: clamp(40px, 8vw, 80px);
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .hero-left h1 span {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }

        .hero-left p {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            max-width: 550px;
            margin-bottom: 40px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }

        .hero-btn-main {
            background: linear-gradient(135deg, #1fd47e 0%, #14a05f 100%);
            color: #fff;
            padding: 15px 35px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(31, 212, 126, 0.3);
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-btn-main:hover {
            background: linear-gradient(135deg, #14a05f 0%, #1fd47e 100%);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(31, 212, 126, 0.4);
        }

        .hero-link {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            padding-bottom: 5px;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .hero-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: #1fd47e;
            transform: scaleX(0.3);
            transform-origin: left;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-link:hover::after {
            transform: scaleX(1);
        }

        .hero-link:hover {
            color: #1fd47e;
        }

        /* SLIDER CONTROLS */
        .slider-controls {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 30px;
            z-index: 20;
        }

        .arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .arrow:hover {
            background: #1fd47e;
            color: #000;
            border-color: #1fd47e;
        }


        .scroll-down-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            z-index: 20;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

        .scroll-down-indicator:hover {
            color: #1fd47e;
        }

        .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.7);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            padding-top: 6px;
            transition: border-color 0.3s ease;
        }

        .scroll-down-indicator:hover .mouse {
            border-color: #1fd47e;
        }

        .wheel {
            width: 4px;
            height: 8px;
            background: #1fd47e;
            border-radius: 2px;
            animation: scrollWheel 1.5s infinite;
        }

        @keyframes scrollWheel {
            0% {
                transform: translateY(0);
                opacity: 1;
            }

            100% {
                transform: translateY(15px);
                opacity: 0;
            }
        }

        /* ================= MARQUEE SECTION ================= */
        .marquee-section {
            background: #fff;
            padding: 60px 0;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }

        .marquee-content span {
            font-size: clamp(60px, 8vw, 120px);
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 2px #697a54;
            margin-right: 50px;
            letter-spacing: -3px;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ================= NEW SERVICES SECTION ================= */
        .services-section-new {
            padding: 100px 25px;
            background: #FCFBF9;
            color: #333;
        }

        .services-header-new {
            max-width: 1250px;
            margin: 0 auto 50px auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .sh-left .sh-label {
            background: rgba(31, 212, 126, 0.1);
            color: #1fd47e;
            border: 1px solid #1fd47e;
            padding: 6px 14px;
            border-radius: 50px;
            font-weight: 800;
            letter-spacing: 2px;
            font-size: 12px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .sh-left h2 {
            font-size: 42px;
            font-weight: 800;
            color: #0b1c3f;
            line-height: 1.2;
            margin: 0;
            letter-spacing: -1px;
        }

        .sh-right .sh-link {
            color: #1fd47e;
            font-weight: 700;
            text-decoration: none;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .sh-right .sh-link:hover {
            color: #0b1c3f;
        }

        .services-container-new {
            max-width: 1250px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card-new {
            background: #ffffff;
            border-radius: 10px;
            border: 1px solid rgb(238, 240, 242);

            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            padding: 0;
            position: relative;
        }

        .service-card-new:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .sc-img-wrapper {
            width: 100%;
            height: 190px;
            border-radius: 10px 10px 0 0;
            overflow: hidden;
            background: #fdfdfd;
            margin-bottom: 25px;
        }

        .sc-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sc-icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--theme-color);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            position: absolute;
            top: 166px;
            /* 190px - 24px */
            left: 25px;
            border: 4px solid #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            z-index: 10;
        }

        .sc-content {
            padding: 5px 25px 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .sc-content h3 {
            font-size: 20px;
            font-weight: 800;
            color: #0b1c3f;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .sc-divider {
            width: 30px;
            height: 3px;
            background: var(--theme-color);
            margin-bottom: 10px;
            border-radius: 2px;
        }

        .sc-content p {
            font-size: 13px;
            color: #889296;
            line-height: 1.5;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .sc-read-more {
            color: var(--theme-color);
            font-weight: 700;
            text-decoration: none;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            text-transform: capitalize;
            margin-top: auto;
        }

        .sc-read-more:hover {
            color: #0b1c3f;
            gap: 10px;
        }

        /* ================= NEW HERO SECTION ================= */
        .hero-section-new {
            background-color: #0d1a15;
            background-image: radial-gradient(circle at 80% 50%, rgba(31, 212, 126, 0.15) 0%, transparent 40%);
            position: relative;
            padding: 100px 0 100px;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            min-height: 100dvh;
            display: flex;
            align-items: center;
        }

        .hero-container-new {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .hero-content-new {
            flex: 1;
            max-width: 600px;
        }

        .hero-badge-new {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(31, 212, 126, 0.1);
            color: #1fd47e;
            border: 1px solid #1fd47e;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin: 15px 0;
        }

        .dot-new {
            width: 8px;
            height: 8px;
            background: #1fd47e;
            border-radius: 50%;
            box-shadow: 0 0 10px #1fd47e;
        }

        .hero-content-new h1 {
            font-size: 64px;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .hero-content-new h1 span {
            color: #1fd47e;
        }

        .hero-content-new p {
            font-size: 18px;
            color: #a8b8b0;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-actions-new {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 60px;
        }

        .btn-primary-new {
            background: #1fd47e;
            color: #000;
            padding: 16px 32px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            transition: all 0.3s;
        }

        @keyframes bounceRight {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(5px);
            }
        }

        .btn-primary-new i {
            animation: bounceRight 1s infinite;
        }

        .btn-primary-new:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(31, 212, 126, 0.2);
            background: #18b368;
        }

        .btn-link-new {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding-bottom: 5px;
            white-space: nowrap;
        }

        .btn-link-new::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: #1fd47e;
            transform: scaleX(0);
            transition: 0.3s;
            transform-origin: right;
        }

        .btn-link-new:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .hero-trust-new {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .avatars-new {
            display: flex;
        }

        .avatars-new img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 3px solid #0d1a15;
            margin-left: -15px;
        }

        .avatars-new img:first-child {
            margin-left: 0;
        }

        .trust-text-new {
            color: #fff;
            font-size: 13px;
        }

        .trust-divider {
            width: 1px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
        }

        .trust-rating-new {
            color: #fff;
            font-size: 14px;
        }

        .trust-rating-new strong {
            font-size: 16px;
        }

        .trust-rating-new small {
            color: #a8b8b0;
            font-size: 11px;
            display: block;
        }

        .hero-image-new {
            flex: 1;
            position: relative;
            text-align: right;
        }

        .hero-image-new img {
            max-width: 120%;
            height: auto;
            position: relative;
            z-index: 2;
            margin-right: -100px;
            transition: transform 0.5s ease;
        }

        .hero-image-new img:hover {
            transform: rotate(-5deg) scale(1.02);
        }

        /* ================= NEW ABOUT SECTION ================= */
        .about-section-new {
            padding: 100px 25px 80px;
            background: #ffffff;
            color: #333;
        }

        .about-container-new {
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 80px;
            flex-wrap: wrap;
        }

        .about-image-new {
            flex: 1.2;
            min-width: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image-new img {
            width: 100%;
            max-width: 550px;
        }

        .about-content-new {
            flex: 1;
            min-width: 350px;
        }

        .about-label-new {
            background: rgba(31, 212, 126, 0.1);
            color: #1fd47e;
            border: 1px solid #1fd47e;
            padding: 6px 14px;
            border-radius: 50px;
            font-weight: 800;
            letter-spacing: 2px;
            font-size: 12px;
            margin-bottom: 25px;
            text-transform: uppercase;
            display: inline-block;
        }

        .about-content-new h2 {
            font-size: 48px;
            color: #0b1c3f;
            line-height: 1.2;
            margin-bottom: 25px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .about-content-new h2 span {
            color: #1fd47e;
        }

        .about-content-new p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: justify;
        }

        .about-services-grid-new {
            max-width: 1200px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .about-service-card-new {
            background: color-mix(in srgb, var(--theme-color, #1fd47e) 5%, #ffffff);
            border-radius: 8px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: none;
            transition: all 0.3s ease;
            border: 1px solid color-mix(in srgb, var(--theme-color, #1fd47e) 25%, transparent);
        }

        .about-service-card-new:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border-color: var(--theme-color, #1fd47e);
        }

        .about-service-card-new h4 {
            color: #1c2742;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.4;
            margin: 0;
        }

        .asc-icon-new {
            width: 45px;
            height: 45px;
            background: color-mix(in srgb, var(--theme-color, #1fd47e) 15%, transparent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .asc-icon-new i {
            color: var(--theme-color, #1fd47e);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .about-service-card-new:hover .asc-icon-new {
            background: var(--theme-color, #1fd47e);
        }

        .about-service-card-new:hover .asc-icon-new i {
            color: #fff;
        }

        /* ================= VIDEO SECTION ================= */
        .video-section-new {
            padding: 80px 25px;
            background: #ffffff;
            display: flex;
            justify-content: center;
        }

        .video-container-new {
            max-width: 1250px;
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .brand-video {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* ================= SPONSORS SECTION ================= */
        .sponsors-section {
            padding: 100px 25px;
            background: #fff;
            color: #1a1d2e;
            overflow: hidden;
        }

        .sponsors-container {
            max-width: 1300px;
            margin: auto;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 50px;
        }

        .sponsors-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .clients-label-mini {
            background: rgba(31, 212, 126, 0.1);
            color: #1fd47e;
            border: 1px solid #1fd47e;
            padding: 6px 14px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .sponsors-text h2 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
            color: #0b1c3f;
        }

        .accent-line {
            display: flex;
            gap: 4px;
            margin-bottom: 25px;
        }

        .line-segment {
            height: 4px;
            border-radius: 2px;
        }

        .seg-1 {
            width: 35px;
            background: #ffc107;
        }

        .seg-2 {
            width: 12px;
            background: #0b1c3f;
        }

        .seg-3 {
            width: 6px;
            background: #e91e63;
        }

        .seg-4 {
            width: 6px;
            background: #ffc107;
        }

        .sponsors-text p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            display: block;
            max-width: 600px;
        }

        .sponsors-stats-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 10px 15px;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
            width: 100%;
            border: 1px solid rgba(0, 0, 0, 0.03);
            gap: 10px;
            position: relative;
        }

        .stat-item {
            text-align: center;
            flex: 1;
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
            cursor: default;
        }

        .stat-item-green {
            background: rgba(31, 212, 126, 0.05);
        }

        .stat-item-blue {
            background: rgba(13, 130, 212, 0.05);
        }

        .stat-item-orange {
            background: rgba(255, 152, 0, 0.05);
        }

        .stat-item:hover {
            /* hover effect removed to keep it clean */
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -5px;
            top: 20%;
            height: 60%;
            width: 1px;
            background: #eef0f2;
            transition: opacity 0.3s;
        }

        .stat-item:hover::after,
        .stat-item:hover+.stat-item::after {
            opacity: 0.2;
        }

        .stat-item-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: transform 0.3s;
        }

        .stat-item:hover .stat-item-icon {
            transform: scale(1.1);
        }

        .stat-item h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 4px;
            letter-spacing: -1px;
            color: #0b1c3f;
        }

        .stat-item span {
            color: #7b8890;
            font-size: 13px;
            font-weight: 600;
        }

        .buy-ticket-btn {
            background: transparent;
            color: #1FD47E;
            border: 1px solid #1FD47E;
            padding: 14px 28px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 4px;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .buy-ticket-btn:hover {
            background: #1FD47E;
            color: #fff;
        }

        .sponsors-scroll-area {
            flex: 1;
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 20px;
            overflow: hidden;
            width: 100%;
            height: 550px;
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
        }

        .scroll-row {
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: max-content;
            width: auto;
        }

        .row-ltr {
            animation: infiniteScrollUp 30s linear infinite;
        }

        .row-rtl {
            animation: infiniteScrollDown 30s linear infinite;
        }

        .sponsor-card {
            background: #fff;
            border-radius: 12px;
            padding: 15px;
            width: 185px;
            height: 105px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid #dcdcdc;
            flex-shrink: 0;
        }

        .sponsor-card img {
            max-width: 85%;
            max-height: 60px;
            object-fit: contain;
        }

        .fake-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: #0b1c3f;
        }

        .fake-logo i {
            font-size: 30px;
        }

        @keyframes infiniteScrollUp {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        @keyframes infiniteScrollDown {
            0% {
                transform: translateY(-50%);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* ================= STATS SECTION NEW ================= */
        .stats-section-new {
            background: linear-gradient(90deg, #102528 0%, #153337 50%, #102528 100%);
            padding: 120px 25px;
            color: #fff;
            width: 100%;
        }

        .stats-container-new {
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-block-new {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 30px 25px;
            transition: all 0.3s ease;
        }

        .stat-block-new:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-5px);
        }

        .stat-icon-new {
            width: 80px;
            height: 80px;
            background: #d9f85c;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #102528;
            font-size: 35px;
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(217, 248, 92, 0.2);
        }

        .stat-info-new h3 {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            margin: 0 0 5px 0;
            line-height: 1;
        }

        .stat-info-new h3 .stat-number {
            display: inline;
            font-size: 32px;
            font-weight: 800;
            color: #fff;
        }

        .stat-info-new p {
            font-size: 15px;
            color: #a8b8b0;
            line-height: 1.5;
            margin: 0;
        }

        .stars-new {
            color: #ffb400;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .stat-divider-new {
            width: 1px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
        }

        /* ================= NEW TESTIMONIAL SECTION ================= */
        .testimonials-section-new {
            padding: 100px 25px;
            background: #ffffff;
            overflow: hidden;
        }

        .testimonials-container-new {
            max-width: 1350px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .testi-left-new {
            flex: 1.4;
            min-width: 0;
            order: 2;
        }

        .testi-right-new {
            flex: 0.8;
            text-align: left;
            order: 1;
        }

        .testi-header-new {
            margin-bottom: 40px;
        }

        .testi-label-new {
            background: rgba(31, 212, 126, 0.1);
            color: #1fd47e;
            border: 1px solid #1fd47e;
            padding: 6px 14px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
        }

        .testi-header-new h2 {
            font-size: 42px;
            font-weight: 800;
            color: #0b1c3f;
            letter-spacing: -1px;
            margin: 0;
        }

        .testi-slider-wrapper {
            position: relative;
            margin-bottom: 25px;
        }

        .testi-controls-bottom {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-right: 20px;
        }

        .testi-nav-arrows {
            display: flex;
            gap: 12px;
        }

        .testi-nav-btn {
            background: #ffffff;
            border: 1px solid #eaeaea;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #0b1c3f;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
            transition: 0.3s;
            flex-shrink: 0;
        }

        .testi-nav-btn:hover,
        .testi-nav-btn.next {
            background: #1fd47e;
            color: #fff;
            border-color: #1fd47e;
        }

        .testi-cards-container {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            /* Firefox */
            flex: 1;
            padding: 10px 0;
        }

        .testi-cards-container::-webkit-scrollbar {
            display: none;
            /* Chrome/Safari */
        }

        .testi-card-new {
            flex: 0 0 calc(33.333% - 14px);
            min-width: 260px;
            background: #ffffff;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f2;
            display: flex;
            flex-direction: column;
            scroll-snap-align: start;
        }

        .tc-top {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tc-top h4 {
            font-size: 16px;
            font-weight: 800;
            color: #0b1c3f;
            line-height: 1.3;
            margin: 0;
        }

        .tc-stars {
            color: #ffb400;
            font-size: 11px;
            display: flex;
            gap: 2px;
        }

        .testi-card-new p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .tc-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .tc-author h5 {
            font-size: 14px;
            font-weight: 800;
            color: #0b1c3f;
            margin: 0 0 4px 0;
        }

        .tc-author span {
            font-size: 12px;
            color: #888;
        }

        .tc-quote {
            color: #1fd47e;
            font-size: 12px;
            background: rgba(31, 212, 126, 0.1);
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
        }

        .testi-dots-new {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .testi-dots-new .dot {
            width: 16px;
            height: 4px;
            border-radius: 2px;
            background: #eaeaea;
        }

        .testi-dots-new .dot.active {
            background: #1fd47e;
            width: 24px;
        }

        .testi-img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
            transform: scale(1.1);
            transform-origin: bottom left;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #1FD47E;
            color: #fff;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* ================= CONTACT SECTION ================= */
        .contact-section-new {
            padding: 100px 25px;
            background-color: #fdfdfe;
            color: #333;
            overflow: hidden;
            position: relative;
        }

        .contact-container-new {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .contact-form-side {
            flex: 1;
        }



        .contact-label-new {
            background: rgba(31, 212, 126, 0.1);
            color: #1fd47e;
            border: 1px solid #1fd47e;
            padding: 6px 14px;
            border-radius: 50px;
            font-weight: 800;
            letter-spacing: 2px;
            font-size: 12px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .contact-title-new {
            font-size: 42px;
            font-weight: 700;
            color: #0b1c3f;
            margin-bottom: 30px;
        }

        .form-grid-new {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .input-box-new {
            width: 100%;
            padding: 15px 20px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
            transition: 0.3s;
        }

        .input-box-new:focus {
            border-color: #1fd47e;
            box-shadow: 0 5px 15px rgba(31, 212, 126, 0.1);
        }

        .textarea-new {
            width: 100%;
            height: 200px;
            padding: 20px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
            resize: none;
            margin-bottom: 30px;
        }

        #contactForm {
            text-align: right;
        }

        .btn-send-message {
            background: #1fd47e;
            color: #fff;
            padding: 15px 35px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .btn-send-message:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(31, 212, 126, 0.2);
        }

        .contact-image-side {
            flex: 1;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-main-img {
            max-width: 80%;
            height: auto;
        }

        /* ================= CENTERED LOGO SECTION ================= */
        .logo-section-centered {
            padding: 60px 25px;
            background: #ffffff;
            text-align: center;
        }

        .logo-wrapper {
            display: inline-block;
        }

        .logo-wrapper img {
            max-width: 280px;
            height: auto;
            display: block;
        }

        /* ================= FOOTER SECTION NEW ================= */
        .main-footer-new {
            background: #000;
            color: #fff;
            padding: 80px 40px 30px;
            font-family: inherit;
            position: relative;
        }


        .footer-top-links {
            max-width: 1250px;
            margin: 0 auto 60px;
            display: grid;
            grid-template-columns: 2.5fr 1.2fr 1.5fr 1.8fr;
            gap: 50px;
        }

        .footer-col h4 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #ffffff;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #1fd47e;
            border-radius: 2px;
        }

        .about-col p {
            font-size: 16px;
            line-height: 1.8;
            color: #b3c2d4;
            margin-bottom: 35px;
            max-width: 280px;
        }

        .footer-social-icons {
            display: flex;
            gap: 15px;
        }

        .footer-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(31, 212, 126, 0.1);
            border: 1px solid rgba(31, 212, 126, 0.3);
            color: #1fd47e;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .footer-social-icons a:hover {
            background: #1fd47e;
            color: #093c25;
        }

        .links-col ul,
        .hours-col ul {
            list-style: none;
            padding: 0 0 0 15px;
            margin: 0;
        }

        .links-col ul li,
        .hours-col ul li {
            margin-bottom: 12px;
            position: relative;
        }

        .links-col ul li::before,
        .hours-col ul li::before {
            content: "•";
            color: #1fd47e;
            position: absolute;
            left: -15px;
            top: 0px;
            font-size: 18px;
            line-height: 1;
        }

        .links-col ul li a,
        .hours-col ul li {
            color: #b3c2d4;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
        }

        .links-col ul li a:hover {
            color: #1fd47e;
            transform: translateX(5px);
        }

        .footer-divider-line {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 25px 0;
        }

        .footer-contact-box {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-contact-box .icon-circle {
            width: 50px;
            height: 50px;
            background: rgba(31, 212, 126, 0.15);
            border: 1px solid rgba(31, 212, 126, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1fd47e;
            font-size: 22px;
        }

        .footer-contact-box .contact-info span {
            display: block;
            font-size: 13px;
            color: #a8b8b0;
            margin-bottom: 3px;
        }

        .footer-contact-box .contact-info strong {
            font-size: 18px;
            color: #fff;
        }

        .footer-newsletter-bar {
            max-width: 1200px;
            margin: 0 auto 50px;
            background: #1b533a;
            border-radius: 12px;
            padding: 30px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .nl-logo {
            font-size: 24px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
        }

        .nl-logo i {
            color: #093c25;
            background: #c3e25b;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .nl-form-wrapper {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .nl-form-wrapper h4 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            white-space: nowrap;
        }

        .nl-form {
            display: flex;
            gap: 15px;
            flex: 0 1 500px;
            width: 100%;
        }

        .nl-form input {
            flex: 1;
            background: #2b6148;
            border: none;
            padding: 15px 20px;
            border-radius: 6px;
            color: #fff;
            font-size: 14px;
        }

        .nl-form input::placeholder {
            color: #a8b8b0;
        }

        .nl-form button {
            background: #c3e25b;
            color: #093c25;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s;
        }

        .nl-form button:hover {
            opacity: 0.9;
        }

        .footer-bottom-copy {
            text-align: center;
            color: #fff;
            font-size: 14px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* ================= WHATSAPP FLOAT ================= */
        .whatsapp-float {
            position: fixed;
            right: 30px;
            bottom: 100px;
            width: 60px;
            height: 60px;
            z-index: 10000;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-float img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* ================= SCROLL PROGRESS PIE ================= */
        .scroll-progress-pie {
            position: fixed;
            right: 30px;
            bottom: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: conic-gradient(#1FD47E 0%, #1a1d2e 0%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .scroll-progress-pie.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-progress-inner {
            width: 50px;
            height: 50px;
            background: #0d1a15;
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            z-index: 1;
        }

        .scroll-progress-pie .progress-val {
            font-size: 16px;
            font-weight: 900;
            color: #fff;
            z-index: 2;
            position: relative;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
        }

        /* ================= RESPONSIVE SECTION ================= */
        .responsive-section {
            padding: 80px 25px;
            background: #ffffff;
            overflow: hidden;
            position: relative;
        }



        .responsive-container {
            max-width: 1250px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, rgba(31, 212, 126, 0.22) 0%, rgba(31, 212, 126, 0.05) 100%);
            border-radius: 24px;
            padding: 60px 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
        }

        @media (max-width: 992px) {
            .responsive-section {
                padding: 40px 15px;
            }

            .responsive-container {
                padding: 30px 40px;
            }
        }

        .responsive-content {
            flex: 1;
        }

        .responsive-label {
            color: #1fd47e;
            border: 1px solid #1FD47E;
            font-weight: 800;
            display: inline-block;
            margin-bottom: 15px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 50px;

        }

        .responsive-content h2 {
            font-size: 42px;
            font-weight: 800;
            color: #0b1c3f;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .responsive-content p {
            font-size: 16px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .responsive-features li {
            color: #4b5a68;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .responsive-image {
            flex: 1.2;
            text-align: center;
            position: relative;
            animation: floatImage 6s ease-in-out infinite;
        }

        .responsive-image img {
            max-width: 100%;
            height: auto;
            position: relative;
            z-index: 2;
        }

        .responsive-image::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: #1fd47e;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        @keyframes floatImage {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0);
            }
        }


        /* ================= RESPONSIVE FIXES ================= */
        @media(max-width: 992px) {
            .hero-left {
                width: 90%;
            }

            .nav {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .search-icon {
                display: none;
            }

            .logo img {
                height: 50px;
            }

            .features-container,
            .services-container-new,
            .about-services-grid-new {
                grid-template-columns: repeat(2, 1fr);
            }

            .sponsors-container {
                flex-direction: column;
                text-align: center;
            }

            .accent-line {
                justify-content: center;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                text-align: center;
            }

            .stat-card {
                text-align: center;
            }

            .stats-title {
                grid-column: span 2;
                text-align: center;
                font-size: 40px;
                margin-top: 20px;
            }

            .meetup-container {
                flex-direction: column;
                text-align: left;
            }

            .about-image-wrapper {
                width: 100%;
                max-width: 100%;
                flex: none;
                padding-right: 15px;
                padding-bottom: 30px;
                margin-bottom: 30px;
                box-sizing: border-box;
            }

            .about-shape-1,
            .about-shape-2 {
                display: none;
            }

            .experience-badge {
                left: -5px;
                top: -10px;
                padding: 10px;
            }

            .exp-years {
                font-size: 20px;
            }

            .about-img-small {
                right: 0;
                bottom: 0;
                width: 50%;
                border-width: 4px;
            }

            .info-grid {
                justify-content: center;
            }

            .testi-card-new {
                flex: 0 0 calc(50% - 15px);
            }

            .contact-container-new,
            .responsive-container,
            .testimonials-container-new {
                flex-direction: column;
            }

            .testi-left-new {
                order: 2;
                width: 100%;
                text-align: center;
            }

            .testi-right-new {
                order: 1;
                width: 100%;
                text-align: center;
            }

            .testi-header-new h2 {
                font-size: 36px;
            }

            .testi-slider-wrapper {
                margin-left: 0;
                padding-left: 0;
            }

            .testi-dots-new {
                margin-right: 0;
            }

            .testi-img {
                transform: scale(1);
            }

            .contact-image-side {
                display: flex;
                justify-content: center;
                margin-top: 40px;
            }

            .contact-main-img {
                max-width: 100%;
                transform: scale(1.2);
                margin-bottom: 20px;
            }


        }

        @media(max-width: 768px) {

            .hero-section-new,
            .about-section-new,
            .services-section-new,
            .responsive-section,
            .stats-section-new,
            .testimonials-section-new,
            .sponsors-section,
            .contact-section-new,
            .logo-section-centered {
                padding-top: 25px !important;
                padding-bottom: 25px !important;
            }

            .hero-badge-new,
            .about-label-new,
            .sh-label,
            .responsive-label,
            .testi-label-new,
            .clients-label-mini,
            .contact-label-new {
                margin-left: auto !important;
                margin-right: auto !important;
                width: fit-content;
                display: flex;
            }

            .hero-badge-new {
                font-size: 13px;
                letter-spacing: 1.5px;
                padding: 4px 12px;
                white-space: nowrap;
            }

            .hero-inner {
                align-items: flex-start;
                padding-top: 130px;
            }

            .about-container-new {
                flex-direction: column-reverse;
                gap: 40px;
            }

            .hero-left h1 {
                font-size: 36px;
                margin-bottom: 15px;
            }

            .hero-left p {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .features-grid-section {
                text-align: left;
            }

            .features-header {
                text-align: left;
                margin-bottom: 30px;
            }

            .features-header h2 {
                font-size: 32px;
            }

            .hero-actions-new,
            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .hero-btn-main {
                margin-bottom: 0;
            }

            .hero-trust-new {
                justify-content: center;
                margin-top: 30px;
            }

            .services-header-new {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 20px;
            }

            .sponsors-container {
                flex-direction: column;
                gap: 30px;
            }

            .sponsors-scroll-area {
                height: 320px !important;
                max-height: 320px;
                gap: 10px;
            }

            .sponsor-card {
                width: 110px;
                height: 70px;
                padding: 8px;
            }

            .scroll-row {
                gap: 10px;
            }

            .sponsors-text {
                flex: auto;
                align-items: center;
                text-align: center;
            }

            .sh-right {
                align-self: center;
            }

            .features-container {
                grid-template-columns: 1fr;
            }

            .services-container-new {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                gap: 20px;
                padding-bottom: 20px;
            }

            .services-container-new::-webkit-scrollbar {
                display: none;
            }

            .services-container-new .service-card-new {
                flex: 0 0 100%;
                scroll-snap-align: center;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .stats-title {
                grid-column: 1;
                font-size: 32px;
            }

            .testi-card-new {
                flex: 0 0 100%;
                scroll-snap-align: center;
                min-height: 280px;
            }

            .testi-card-new p {
                text-align: justify;
            }

            .form-grid-new {
                grid-template-columns: 1fr;
            }

            .btn-send-message {
                width: 100%;
                justify-content: center;
            }

            .footer-bottom-bar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .header-container {
                width: 98%;
                padding: 5px 10px;
            }

            .header-btn {
                display: none;
            }

            .meetup-content p {
                text-align: left;
            }

            .info-grid {
                flex-wrap: nowrap;
            }

            .info-item {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-top-links {
                grid-template-columns: 1fr;
            }

            .responsive-features {
                margin-bottom: 5px !important;
                grid-template-columns: 1fr !important;
            }

            .responsive-image img {
                height: 200px;
                width: 90%;
                object-fit: contain;
                transform: scale(1.4);
            }

            .stats-container-new {
                flex-direction: column;
                gap: 20px;
            }

            .stat-block-new {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                width: 100%;
                margin: 0 auto;
                gap: 15px;
            }

            .stat-divider-new {
                width: 100%;
                height: 1px;
                margin: 10px 0;
            }

            .nl-form {
                flex-direction: column;
                flex-basis: 100%;
            }

            .nl-form-wrapper {
                justify-content: center;
                text-align: center;
            }

            .nl-form-wrapper h4 {
                white-space: normal;
                width: 100%;
                margin-bottom: 15px;
            }

            .about-services-grid,
            .about-services-grid-new {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .about-service-card-new {
                padding: 15px 10px;
                gap: 10px;
            }

            .about-service-card-new h4 {
                font-size: 13px;
            }

            .asc-icon-new {
                width: 35px;
                height: 35px;
            }

            .asc-icon-new i {
                font-size: 14px;
            }

            .whatsapp-float {
                right: 15px;
                bottom: 80px;
                width: 55px;
                height: 55px;
                font-size: 26px;
            }

            .scroll-progress-pie {
                right: 15px;
                bottom: 15px;
                width: 55px;
                height: 55px;
            }

            .scroll-progress-inner {
                width: 45px;
                height: 45px;
                background: #0d1a15;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .scroll-progress-pie .progress-val {
                font-size: 14px;
                font-weight: 700;
                color: #1fd47e;
            }

            .hero-content-new h1 {
                font-size: 35px;
            }

            .about-content-new h2,
            .services-header-new h2,
            .responsive-content h2,
            .sponsors-text h2,
            .contact-header-new h2,
            .testi-header-new h2,
            .features-header h2 {
                font-size: 28px;
                line-height: 1.3;
            }
        }

        @media(max-width: 992px) and (min-width: 769px) {
            .footer-top-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }