
    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;
        width: 100%;
    }
    .carousel-item {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .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: 1; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scroll-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .carousel-item.hidden {
        display: none;
    }
    .carousel-indicator.active {
        background-color: #1D4ED8; /* change as needed */
    }

    .section-title {
        position: relative;
        display: inline-block;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: #3b82f6;
    }
    
    .tab-button {
        position: relative;
        transition: all 0.3s ease;
    }
    
    .tab-button::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        transition: all 0.3s ease;
    }
    
    .tab-button.active::after {
        width: 100%;
    }
    
    .tab-button.recruitment.active {
        color: #3b82f6;
    }
    
    .tab-button.recruitment.active::after {
        background: #3b82f6;
    }
    
    .tab-button.training.active {
        color: #3b82f6;
    }
    
    .tab-button.training.active::after {
        background: #3b82f6;
    }
    
    .tab-button.bpo.active {
        color: #3b82f6;
    }
    
    .tab-button.bpo.active::after {
        background: #3b82f6;
    }
    
    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 1; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
        .client-logo-data {
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .client-grid .client-logo-data {
        opacity: 1;
        transform: translateY(0);
    }

    .client-logo-data:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }

    /* Responsive grid fallback */
    .client-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    @media (min-width: 640px) {
        .client-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }
    }
