
    body {
        font-family: 'Inter', sans-serif;
        scroll-behavior: smooth;
    }
    
    /* Gradient background */
    .gradient-bg {
        background: linear-gradient(135deg, #1A237E 0%, #EA4528 100%);
    }
    
    /* Tab styles */
    .tab-active {
        color: #16355D;
        border-color: #EA4528;
        background-color: white;
    }
    .tab-inactive {
        color: #64748b;
        border-color: transparent;
        background-color: #f1f5f9;
    }
    
    /* Card hover effects */
    .service-card {
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    .service-card:hover {
        border-left: 4px solid #EA4528;
        transform: translateX(5px) translateY(-10px);
        box-shadow: 0 20px 25px -5px #1A237E, 0 10px 10px -5px rgba(135, 72, 230, 0.1);
    }
    .job-card:hover {
        border-color: #1A237E;
    }
    
    /* Navigation link effects */
    .nav-link {
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #EA4528;
        transition: width 0.3s ease;
    }
    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }
    
    /* Button styles */
    .btn-primary {
        background-color: #16355D;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .btn-primary:hover {
        background-color: #0f2847;
    }
    .btn-primary::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: rotate(30deg);
        animation: shine 3s infinite;
    }
    .btn-secondary {
        background-color: #EA4528;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .btn-secondary:hover {
        background-color: #d03a1f;
    }
    .btn-secondary::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: rotate(30deg);
        animation: shine 3s infinite;
    }
    
    /* Icon and feature animations */
    .feature-icon, .service-icon {
        transition: all 0.3s ease;
    }
    .feature-card:hover .feature-icon,
    .service-card:hover .service-icon {
        transform: scale(1.1) scale(1.2);
    }
    
    /* Counter effects */
    .counter-value {
        transition: color 0.3s ease;
    }
    .counter-container:hover .counter-value {
        color: #EA4528;
    }
    
    /* Tab content animations */
    .tab-content {
        display: none;
    }
    .tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        animation: bounce 2s infinite;
    }
    
    /* Carousel styles */
    .carousel {
        position: relative;
        overflow: hidden;
    }
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease;
    }
    .carousel-item {
        min-width: 100%;
        flex-shrink: 0;
    }
    .carousel-indicators {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .carousel-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .carousel-indicator.active {
        background-color: #1A237E;
    }
    
    /* Marquee animation */
    .marquee {
        display: flex;
        width: max-content;
        animation: scroll-left 100s linear infinite;
    }
    
    /* Keyframes */
    @keyframes shine {
        0% { transform: translateX(-100%) rotate(30deg); }
        100% { transform: translateX(100%) rotate(30deg); }
    }
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scroll-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
