        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.7) rotate(-5deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

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

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.08);
            }
        }

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }
            to {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            animation: kenBurns 20s ease-out infinite alternate;
        }

        @keyframes kenBurns {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.15);
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
        }

        /* Clip Path Shapes - Matching Design */
        .clip-shape-1 {
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .clip-shape-2 {
            clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
        }

        .clip-shape-3 {
            clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
        }

        .clip-shape-4 {
            clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
        }

        .clip-shape-5 {
            clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 90%);
        }

        .clip-shape-6 {
            clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
        }

        /* Project Cards */
        .project-card {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            background: white;
        }

        .project-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .project-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card:hover img {
            transform: scale(1.2);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(255, 107, 0, 0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay-content {
            text-align: center;
            color: white;
            transform: translateY(30px);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .project-card:hover .project-overlay-content {
            transform: translateY(0);
            opacity: 1;
        }

        .project-content {
            position: relative;
            z-index: 2;
            background: white;
            transition: all 0.4s ease;
        }

        .project-tag {
            display: inline-block;
            background: rgba(255, 107, 0, 0.1);
            color: #ff6b00;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        /* Stats Counter Animation */
        .stat-item {
            animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1);
            animation-fill-mode: both;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-item:nth-child(1) { animation-delay: 0.1s; }
        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.3s; }
        .stat-item:nth-child(4) { animation-delay: 0.4s; }
        .stat-item:nth-child(5) { animation-delay: 0.5s; }

        .stat-icon {
            animation: rotateIn 1s ease-out;
            animation-fill-mode: both;
        }

        .stat-item:nth-child(1) .stat-icon { animation-delay: 0.2s; }
        .stat-item:nth-child(2) .stat-icon { animation-delay: 0.3s; }
        .stat-item:nth-child(3) .stat-icon { animation-delay: 0.4s; }
        .stat-item:nth-child(4) .stat-icon { animation-delay: 0.5s; }
        .stat-item:nth-child(5) .stat-icon { animation-delay: 0.6s; }

        /* Partner Slider */
        .partners-slider {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .partners-slider:hover {
            animation-play-state: paused;
        }

        .partner-logo {
            transition: all 0.4s ease;
            filter: grayscale(100%) opacity(0.6);
        }

        .partner-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        /* Navigation */
        .nav-sticky {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInDown 1s ease;
        }

        .nav-scrolled {
            background: rgba(17, 24, 39, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.4);
        }

        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        /* Button Animations */
        .btn-animate {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .btn-animate::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            transform: translate(-50%, -50%);
            transition: width 0.7s, height 0.7s;
        }

        .btn-animate:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-animate:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Feature Cards Animation */
        .feature-card {
            animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            animation-fill-mode: both;
            transition: all 0.4s ease;
        }

        .feature-card:nth-child(1) { animation-delay: 0.3s; }
        .feature-card:nth-child(2) { animation-delay: 0.5s; }

        .feature-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .feature-icon {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            50% { transform: translateY(-10px) rotate(-1deg); }
            75% { transform: translateY(-20px) rotate(0.5deg); }
        }

        .float-animation {
            animation: float 4s ease-in-out infinite;
        }

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

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #ff6b00 0%, #ff8533 100%);
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #ff8533 0%, #ffa366 100%);
        }

        /* Shimmer Effect */
        .shimmer {
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            background-size: 200% 100%;
            animation: shimmer 3s infinite;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #ff6b00 0%, #ff8533 50%, #ffa366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Glowing Effect */
        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 5px rgba(255, 107, 0, 0.5), 0 0 10px rgba(255, 107, 0, 0.3);
            }
            50% {
                box-shadow: 0 0 20px rgba(255, 107, 0, 0.8), 0 0 30px rgba(255, 107, 0, 0.5);
            }
        }

        .glow-on-hover:hover {
            animation: glow 1.5s ease-in-out infinite;
        }

        /* Slider Dots */
        .slider-dot.active {
            background: white !important;
            transform: scale(1.3);
        }

        /* About Section Image */
        .about-image {
            position: relative;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 3px solid #ff6b00;
            border-radius: 12px;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .about-image:hover::after {
            top: 30px;
            left: 30px;
            right: -30px;
            bottom: -30px;
        }

        /* Newsletter Input Focus */
        .newsletter-input:focus {
            transform: scale(1.02);
            box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
        }
