html, body {
  overflow-x: hidden;
  max-width: 100%;
}


   :root {
            --primary-red: #f40103;
            --dark-navy: #222934;
            --light-bg: #f8f9fa;
            --text-dark: #222934;
            --text-gray: #222934;
        }

  
        /* Hero Section - Light */
        .hero-section {
            
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
           
            background-size: 50px 50px;
        }

        .hero-content {
            position: relative;
           
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title span {
            color: var(--primary-red);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .hero-text {
            font-size: 1.1rem;
          
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .hero-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 2;
        }

        .btn-custom {
            padding: 16px 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            border: none;
        }

        .btn-primary-custom {
            background: var(--primary-red);
            color: white;
            box-shadow: 0 10px 30px rgba(244, 1, 3, 0.3);
        }

        .btn-primary-custom:hover {
            background: #c10002;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(244, 1, 3, 0.4);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }

        .btn-outline-custom:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats-section {
            background: white;
        
            padding-bottom: 100px;
        }

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

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

        .stat-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-red), #c10002);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

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

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(244, 1, 3, 0.1);
            color: var(--primary-red);
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

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

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 15px 0;
            font-size: 1.05rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-list li i {
            color: var(--primary-red);
            font-size: 1.2rem;
            min-width: 25px;
        }

        .info-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: all 0.4s ease;
        }

        .info-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .info-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

        /* Support Grid - Dark Background */
        .support-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark-navy) 0%, #1a1f2e 100%);
            color: white;
        }

        .support-section .section-badge {
            background: rgba(244, 1, 3, 0.2);
        }

        .support-section .section-title {
            color: white;
        }

        .support-section .section-subtitle {
            color: #d1d5db;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 10px;
        }

        .support-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid var(--primary-red);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .support-item:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .support-item i {
            color: var(--primary-red);
            font-size: 1.8rem;
            min-width: 40px;
        }

        .support-item span {
            font-size: 1rem;
            color: white;
            font-weight: 500;
        }

        /* Product Categories */
        .product-section {
            padding: 80px 0;
            background: white;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .product-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), #c10002);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2.5rem;
        }

        .product-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .product-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* Market Insights */
        .market-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .insight-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            height: 100%;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .insight-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .insight-card i {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .insight-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .insight-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-red) 0%, #c10002 100%);
            color: white;
            text-align: center;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .btn-white {
            background: white;
            color: var(--primary-red);
            border: 2px solid white;
        }

        .btn-white:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

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

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

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


 /* Contact Form Section */
        .contact-form-section {
            padding: 80px 0;
            background: white;
        }

        .contact-form-wrapper {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .form-group label i {
            color: var(--primary-red);
            margin-right: 5px;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-red);
            background: white;
            box-shadow: 0 0 0 3px rgba(244, 1, 3, 0.1);
        }

        .form-control::placeholder {
            color: #999;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        select.form-control {
            cursor: pointer;
        }

        .contact-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .contact-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .contact-info-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 40px 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            margin-bottom: 20px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-item i {
            width: 45px;
            height: 45px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-item strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 3px;
        }

        .info-item p {
            margin: 0;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

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

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

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