      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Gradient Backgrounds */
    .main-bg {
    background: linear-gradient(135deg, #1f2937 0%, #1e40af 50%, #0f172a 100%);
    min-height: 100vh;
}
.hero-overlay {
    background: linear-gradient(
        to right,
        rgba(250, 132, 35, 0.26),
        rgba(59, 130, 246, 0.15)
    );
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}



        .services-bg {
            background: linear-gradient(to right, rgba(30, 41, 59, 0.5), rgba(30, 58, 138, 0.5));
            backdrop-filter: blur(10px);
        }
        
        .contact-bg {
            background: linear-gradient(to right, rgba(154, 52, 18, 0.3), rgba(30, 58, 138, 0.3));
        }
        
        .footer-bg {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Text Gradients */
        .text-gradient {
            background: linear-gradient(to right, #fb923c, #60a5fa);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .icon-sm, .icon-md, .icon-lg {
            display: inline-block;
            width: 24px;
            height: 24px;
            object-fit: contain;
        }
        .icon-md {
            width: 28px;
            height: 28px;
        }
        .icon-lg {
            width: 32px;
            height: 32px;
        }
        
        .icon-carousel-right {
            transform: rotate(90deg);
        }
                
        .icon-carousel-left {
            transform: rotate(90deg);
        }


        .white-icon {
        filter: brightness(0) invert(1);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .animate-fade-in-left {
            animation: fadeInLeft 0.8s ease-out;
        }
        
        .animate-fade-in-right {
            animation: fadeInRight 0.8s ease-out 0.2s both;
        }
        
        .animate-scale-in {
            animation: scaleIn 0.6s ease-out 0.6s both;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        
        .hero-content {
            space-y: 32px;
        }
        
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(249, 115, 22, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 999px;
            padding: 8px 16px;
            border: 1px solid rgba(249, 115, 22, 0.3);
            font-size: 14px;
            font-weight: 500;
            color: #fdba74;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            color: white;
            line-height: 1.1;
            margin: 24px 0;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 32px;
        }
        
        .button-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: linear-gradient(to right, #f97316, #ea580c);
            color: white;
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        }
        
        .btn-primary:hover {
            background: linear-gradient(to right, #ea580c, #dc2626);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
        }
        
        .btn-outline {
            border: 2px solid #60a5fa;
            color: #60a5fa;
            background: transparent;
        }
        
        .btn-outline:hover {
            background: #60a5fa;
            color: white;
        }
        
        .features {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #cbd5e1;
            font-size: 14px;
            font-weight: 500;
        }
        
        .feature-icon {
            padding: 8px;
            background: rgba(59, 130, 246, 0.2);
            border-radius: 8px;
        }
        
    .feature-icon,
    .service-icon,
    .contact-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-icon img,
    .service-icon img,
    .contact-icon img,
    .btn img {
        display: block;
    }


        .hero-image {
            position: relative;
        }
        
        .hero-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        
        .hero-img-overlay {
            position: absolute;
            top: -16px;
            right: -16px;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(59, 130, 246, 0.3));
            border-radius: 16px;
            filter: blur(20px);
            z-index: -1;
        }
        
        .hero-badge {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 16px 24px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .hero-badge-text {
            font-size: 0.875rem;
            font-weight: 600;
            color: #1e40af;
        }
        
        .hero-badge-subtext {
            font-size: 1rem;
            font-weight: 700;
            color: #f97316;
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            color: #cbd5e1;
            max-width: 768px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: linear-gradient(to right, rgba(30, 41, 59, 0.4), rgba(30, 58, 138, 0.4));
        }
        
        .about-content-wrapper {
            display: grid;
            gap: 48px;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(16px);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
        }
        
        .stat-icon {
            display: inline-flex;
            padding: 16px;
            background: linear-gradient(to right, #f97316, #3b82f6);
            border-radius: 12px;
            margin-bottom: 16px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(to right, #fb923c, #60a5fa);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: #cbd5e1;
            font-weight: 600;
        }
        
        .about-text-content {
            color: white;
        }
        
        .about-subtitle {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
        }
        
        .about-description {
            font-size: 1.2rem;
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 32px;
        }
        
        .about-features-list {
            display: grid;
            gap: 24px;
            margin-bottom: 32px;
        }
        
        .about-feature-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .about-feature-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }
        
        .feature-check {
            min-width: 32px;
            height: 32px;
            background: linear-gradient(to right, #f97316, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
        }
        
        .about-feature-item h4 {
            font-size: 1.3rem;
            color: #fb923c;
            margin-bottom: 8px;
        }
        
        .about-feature-item p {
            color: #cbd5e1;
            line-height: 1.6;
        }
        
        .about-closing {
            font-size: 1.2rem;
            color: #cbd5e1;
            line-height: 1.8;
            padding: 24px;
            background: rgba(249, 115, 22, 0.1);
            border-left: 4px solid #f97316;
            border-radius: 8px;
        }
        
        /* Projects Section */
        .projects-section {
            padding: 80px 0;
        }
        
        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .carousel-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 16px;
        }
        
        .carousel-track {
            display: flex;
            gap: 32px;
            transition: transform 0.5s ease;
        }
        
        .carousel-slide {
            min-width: 100%;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 500px;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 32px;
            color: white;
        }
        
        .slide-overlay h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fb923c;
        }
        
        .slide-overlay p {
            font-size: 1.2rem;
            color: #cbd5e1;
        }
        
        .carousel-btn {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .carousel-btn:hover {
            background: rgba(249, 115, 22, 0.8);
            transform: scale(1.1);
        }
        
        .carousel-btn img {
            filter: brightness(0) invert(1);
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background: #f97316;
            width: 32px;
            border-radius: 6px;
        }
        
        /* Contact Section - New 2x2 Layout */
        .contact {
            padding: 80px 0;
        }
        
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 48px;
            align-items: start;
        }
        
        .contact-header-side {
            position: sticky;
            top: 80px;
        }
        
        .contact-header-side .section-title {
            text-align: left;
            margin-bottom: 24px;
        }
        
        .contact-header-side .section-subtitle {
            text-align: left;
            margin-bottom: 32px;
        }
        
        .contact-grid-2x2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(16px);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .contact-icon {
            display: inline-flex;
            padding: 16px;
            background: linear-gradient(to right, #f97316, #3b82f6);
            border-radius: 12px;
            color: white;
            margin-bottom: 24px;
        }
        
        .contact-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }
        
        .contact-info {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fb923c;
            margin-bottom: 8px;
        }
        
        .contact-description {
            color: #cbd5e1;
        }
        
        .btn-cta {
            background: linear-gradient(to right, #f97316, #3b82f6);
            color: white;
            border: none;
            padding: 20px 48px;
            font-size: 1.25rem;
            font-weight: 600;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
            transition: all 0.3s ease;
            width: 100%;
            justify-content: center;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
        }
        
        /* Footer */
        .footer {
            padding: 48px 0;
            text-align: center;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
        }
        
        .footer-text {
            color: #94a3b8;
            margin-bottom: 24px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            color: #94a3b8;
            flex-wrap: wrap;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }
            
            .contact-header-side {
                position: static;
                text-align: center;
            }
            
            .contact-header-side .section-title,
            .contact-header-side .section-subtitle {
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features {
                justify-content: center;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .contact-grid-2x2 {
                grid-template-columns: 1fr;
            }
            
            .carousel-container {
                gap: 12px;
            }
            
            .carousel-btn {
                width: 44px;
                height: 44px;
            }
            
            .carousel-slide {
                height: 350px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 8px;
            }
        }
        
        /* Utility Classes */
        .text-white { color: white; }
        .text-slate-300 { color: #cbd5e1; }
        .text-orange-400 { color: #fb923c; }
        .mb-6 { margin-bottom: 24px; }
        .mt-8 { margin-top: 32px; }
