    * {
        font-family: 'Inter', sans-serif;
    }

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

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

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

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

    @keyframes bounceGentle {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        33% { transform: translateY(-10px) rotate(1deg); }
        66% { transform: translateY(-5px) rotate(-1deg); }
    }

    @keyframes glow {
        from { box-shadow: 0 0 20px rgba(30, 74, 92, 0.2); }
        to { box-shadow: 0 0 30px rgba(255, 107, 53, 0.3); }
    }

    .modern-gradient {
        background: linear-gradient(135deg, #fefcf8 0%, #f7f3ed 100%);
    }

    .hero-gradient {
        background: linear-gradient(135deg, #1e4a5c 0%, #2563eb 50%, #1e40af 100%);
    }

    .glass-effect {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .modern-card {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(30, 74, 92, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modern-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px -12px rgba(30, 74, 92, 0.25);
        border-color: rgba(30, 74, 92, 0.2);
    }

    .service-icon {
        background: linear-gradient(135deg, #1e4a5c 0%, #2563eb 100%);
        transition: all 0.3s ease;
    }

    .service-icon:hover {
        background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
        transform: rotate(5deg) scale(1.1);
    }

    .btn-modern-primary {
        background: linear-gradient(135deg, #1e4a5c 0%, #2563eb 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .btn-modern-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-modern-primary:hover::before {
        left: 100%;
    }

    .btn-modern-primary:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(30, 74, 92, 0.4);
    }

    .btn-modern-secondary {
        background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .btn-modern-secondary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-modern-secondary:hover::before {
        left: 100%;
    }

    .btn-modern-secondary:hover {
        background: linear-gradient(135deg, #ffa500 0%, #f59e0b 100%);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    }

    .modern-input {
        transition: all 0.3s ease;
        border: 2px solid #e2e8f0;
    }

    .modern-input:focus {
        border-color: #1e4a5c;
        box-shadow: 0 0 0 3px rgba(30, 74, 92, 0.1);
        transform: translateY(-1px);
    }
    .footer-services a{
      pointer-events: none;
    }
    .stats-number {
        background: linear-gradient(177deg, #ffffff 0%, #fafafa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .black-stats .stats-number{
      background: linear-gradient(177deg, #000 0%, #000 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .testimonial-modern {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        border-left: 4px solid transparent;
        border-image: linear-gradient(135deg, #1e4a5c, #ff6b35) 1;
        transition: all 0.3s ease;
    }

    .testimonial-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(30, 74, 92, 0.1);
    }

    .section-header {
        position: relative;
        display: inline-block;
    }

    .section-header::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #1e4a5c, #ff6b35);
        border-radius: 2px;
    }

    .floating-element {
        animation: float 6s ease-in-out infinite;
    }

    .process-modern {
        position: relative;
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        transition: all 0.3s ease;
    }

    .process-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(30, 74, 92, 0.15);
    }

    .process-modern::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -30px;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #1e4a5c, transparent);
        transform: translateY(-50%);
    }

    .process-modern:last-child::after {
        display: none;
    }

    .portfolio-item {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .portfolio-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(30, 74, 92, 0.2);
    }

    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .portfolio-overlay {
        background: linear-gradient(135deg, rgba(30, 74, 92, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .contact-info-item {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        transition: all 0.3s ease;
    }

    .contact-info-item:hover {
        transform: translateX(8px);
        box-shadow: 0 10px 25px rgba(30, 74, 92, 0.1);
    }

    .navbar-blur {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(30, 74, 92, 0.1);
    }

    @media (max-width: 768px) {
        .process-modern::after {
            display: none;
        }
    }

    .scroll-indicator {
        animation: bounceGentle 2s ease-in-out infinite;
    }

    .hero-decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
        filter: blur(40px);
        animation: float 8s ease-in-out infinite;
    }

    .hero-decoration:nth-child(2) {
        animation-delay: -2s;
        background: linear-gradient(135deg, rgba(30, 74, 92, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    }

    .hero-decoration:nth-child(3) {
        animation-delay: -4s;
        background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    }
