
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

        }

        body {
          
            line-height: 32px;
            color: #1a1a1a;
            overflow-x: hidden;
            /* background: #0a0a0a; */
        }

        /* Hero Section with Parallax */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.3), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.3), transparent 50%),
                linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(5deg); }
        }

        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-100px) translateX(50px); }
            50% { transform: translateY(-200px) translateX(-30px); }
            75% { transform: translateY(-100px) translateX(-80px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
            max-width: 1200px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            letter-spacing: -2px;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(20px); }
        }

        /* Main Content */
        .content-wrapper {
            background: #ffffff;
            position: relative;
            z-index: 1;
        }

        .section {
            padding: 0px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Intro Section with Image */
        .intro-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .intro-text h2 {
            font-size: 50px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1a1a1a;
            letter-spacing: -1px;
        }

        .intro-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: black
            margin-bottom: 20px;
        }

        .intro-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            transition: transform 0.6s ease;
        }

        .intro-image:hover {
            transform: scale(1.02) rotate(1deg);
        }

        .intro-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 80px 0;
        }

        .feature-card {
            background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
            padding: 50px 40px;
            border-radius: 25px;
            transition: all 0.5s ease;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(255, 107, 53, 0.3);
        }

        .feature-card:hover .feature-content * {
            color: white;
        }

        .feature-content {
            position: relative;
            z-index: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            transition: all 0.5s ease;
        }

        .feature-card:hover .feature-icon {
            background: white;
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
            transition: color 0.5s ease;
        }

        .feature-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: black
            transition: color 0.5s ease;
        }

        /* Benefits Section */
        .benefits-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 50px 20px;
            margin: 0px 0;
            position: relative;
            overflow: hidden;
        }

        .benefits-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            /* top: -200px;
            right: -200px; */
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .benefits-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .benefits-container h2 {
            font-size: 50px;
            font-weight: 750;
            color: white;
            text-align: center;
            margin-bottom: 80px;
            letter-spacing: -1px;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

        .benefit-item:hover {
            background: rgba(255, 107, 53, 0.2);
            transform: translateX(10px);
            border-color: rgba(255, 107, 53, 0.4);
        }

        .benefit-item h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .benefit-item p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: movePattern 30s linear infinite;
        }

        @keyframes movePattern {
            from { transform: translateX(0); }
            to { transform: translateX(100px); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 50px;
            font-weight: 750;
            color: white;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .cta-content p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: white;
            color: #FF6B35;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            background: #1a1a1a;
            color: white;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 120px;
            background: #f8f9fa;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .sidebar h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .sidebar-services {
            list-style: none;
        }

        .sidebar-services li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .sidebar-services li:hover {
            padding-left: 10px;
            color: #FF6B35;
        }

        .sidebar-services a {
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .sidebar-services a:hover {
            color: #FF6B35;
        }

        /* Contact Card */
        .contact-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
            padding: 40px;
            border-radius: 25px;
            margin-top: 30px;
            color: white;
            text-align: center;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: #FF6B35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .intro-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .section {
                padding: 60px 20px;
            }

            .sidebar {
                position: relative;
                top: 0;
                margin-top: 40px;
            }
        }

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

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

    .hero-banner {
        position: relative;
        min-height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
    }

.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-banner h1 {
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-banner p {
    color: #f1f1f1;
}

.hero-banner .btn {
    transition: all 0.3s ease;
}

.hero-banner .btn:hover {
    transform: translateY(-2px);
}
body, p, span, a, li, td, th {
    font-family: 'DM Sans', sans-serif !important;
}
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3 {
    font-family: 'Outfit', sans-serif !important;
}
.navbar .dropdown-toggle::after {
    display: none !important;
}