   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #343C43 0%, #1D4ED8 100%);
            min-height: 100vh;
        }


        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #5EC6FF, #1D4ED8);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #5EC6FF, #343C43);
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            background: linear-gradient(225deg, #1D4ED8, #5EC6FF);
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .shape-4 {
            width: 120px;
            height: 120px;
            background: linear-gradient(315deg, #5EC6FF, #343C43);
            bottom: 10%;
            right: 10%;
            animation-delay: 1s;
        }

        /* Particle System */
        .particle {
            position: absolute;
            background: #5EC6FF;
            border-radius: 50%;
            pointer-events: none;
            animation: particle-float 8s linear infinite;
        }

        .particle:nth-child(odd) {
            background: #1D4ED8;
            animation-duration: 6s;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(15px) rotate(240deg);
            }
        }

        /* Main Content */
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #5EC6FF, #ffffff, #1D4ED8);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(94, 198, 255, 0.3);
        }

        @keyframes gradient-shift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #5EC6FF;
            animation: fadeInUp 1s ease-out 0.5s both;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 1s both;
            opacity: 0.9;
        }

        /* CTA Buttons */
        .cta-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 1.5s both;
        }

        .cta-btn {
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(45deg, #5EC6FF, #1D4ED8);
            color: white;
            box-shadow: 0 10px 30px rgba(94, 198, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(94, 198, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #5EC6FF;
            border: 2px solid #5EC6FF;
            box-shadow: 0 10px 30px rgba(29, 78, 216, 0.2);
        }

        .btn-secondary:hover {
            background: #5EC6FF;
            color: #343C43;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(94, 198, 255, 0.3);
        }

        /* Ripple Effect */
        .btn-ripple::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: width 0.3s, height 0.3s;
            transform: translate(-50%, -50%);
        }

        .btn-ripple:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Stats Section */
        .stats-section {
            position: relative;
            margin-top: 60px;
            display: flex;
            gap: 40px;
            z-index: 10;
            animation: fadeInUp 1s ease-out 2s both;
            justify-content: center;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            color: white;
            padding: 20px 25px;
            border-radius: 20px;
            background: rgba(52, 60, 67, 0.4);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(94, 198, 255, 0.3);
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            background: rgba(94, 198, 255, 0.15);
            box-shadow: 0 10px 30px rgba(94, 198, 255, 0.2);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #5EC6FF;
            display: block;
            animation: countUp 2s ease-out 2.5s both;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 5px;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            animation: bounce 2s infinite;
        }

        .scroll-arrow {
            width: 30px;
            height: 30px;
            border: 2px solid #5EC6FF;
            border-top: none;
            border-left: none;
            transform: rotate(45deg);
            animation: pulse 2s infinite;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .cta-container {
                flex-direction: column;
                align-items: center;
            }
            
            .stats-section {
                flex-direction: column;
                gap: 20px;
            }
            
            .floating-shape {
                display: none;
            }
        }
          /* Footer Section */
        .footer {
            background-color: white;;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .footer::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 70%, rgba(94, 198, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(29, 78, 216, 0.1) 0%, transparent 50%);
            animation: footer-float 15s ease-in-out infinite alternate;
            z-index: 1;
        }

        @keyframes footer-float {
            from { transform: translate(-2%, -2%) rotate(1deg); }
            to { transform: translate(2%, 2%) rotate(-1deg); }
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 20px;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--light-blue);
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
            animation: footer-underline 2s ease-in-out infinite alternate;
        }

        @keyframes footer-underline {
            from { width: 30px; opacity: 0.7; }
            to { width: 50px; opacity: 1; }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            animation: logo-glow 3s ease-in-out infinite alternate;
        }

        @keyframes logo-glow {
            from { text-shadow: 0 0 10px rgba(94, 198, 255, 0.3); }
            to { text-shadow: 0 0 20px rgba(94, 198, 255, 0.6); }
        }

        .footer-logo i {
            font-size: 2rem;
            color: var(--light-blue);
            animation: footer-icon-spin 6s linear infinite;
        }

        @keyframes footer-icon-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .footer-description {
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 300px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--gradient-accent);
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            color: var(--primary-dark);
            border-color: var(--white);
            box-shadow: 0 10px 25px rgba(94, 198, 255, 0.3);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }

        .footer-links a::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--light-blue);
            font-size: 0.8rem;
            transition: all 0.3s ease;
            transform: translateX(-5px);
            opacity: 0;
        }

        .footer-links a:hover::before {
            transform: translateX(0);
            opacity: 1;
        }

        .footer-links a:hover {
            color: var(--light-blue);
            opacity: 1;
            transform: translateX(10px);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .contact-item i {
            width: 20px;
            color: var(--light-blue);
            font-size: 1.1rem;
            animation: contact-pulse 2s ease-in-out infinite alternate;
        }

        @keyframes contact-pulse {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .contact-item:hover {
            transform: translateX(5px);
            color: var(--light-blue);
        }

        .footer-bottom {
            position: relative;
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--light-blue) 20%, var(--accent-blue) 50%, var(--light-blue) 80%, transparent 100%);
            margin-bottom: 2rem;
            animation: divider-glow 3s ease-in-out infinite alternate;
        }

        @keyframes divider-glow {
            from { opacity: 0.5; box-shadow: 0 0 10px rgba(94, 198, 255, 0.3); }
            to { opacity: 1; box-shadow: 0 0 20px rgba(94, 198, 255, 0.6); }
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom-content p {
            opacity: 0.8;
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-bottom-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--light-blue);
            transition: width 0.3s ease;
        }

        .footer-bottom-links a:hover::after {
            width: 100%;
        }

        .footer-bottom-links a:hover {
            color: var(--light-blue);
            opacity: 1;
        }

        /* Glowing cursor trail */
        .cursor-trail {
            position: fixed;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, #5EC6FF, transparent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
        }