﻿/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section Styling */
.hero-section {
    background-color: #005affe6;
    color: #fff;
    text-align: center;
    padding: 80px 15px;
    position: relative;
}

    .hero-section h1 {
        font-size: 6vw;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .hero-section p {
        font-size: 4vw;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .hero-section .btn {
        background-color: #66a8f8;
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 4vw;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

        .hero-section .btn:hover {
            background-color: #5097ed;
        }

    .hero-section::before,
    .hero-section::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        z-index: 0;
    }

    .hero-section::before {
        background: radial-gradient(circle, rgba(0, 0, 255, 0.2), transparent);
        width: 40vw;
        height: 40vw;
        top: 0;
        left: -200px;
    }

    .hero-section::after {
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
        width: 40vw;
        height: 40vw;
        bottom: -300px;
        right: -300px;
    }

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 48px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .hero-section .btn {
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* HR Consultancy Section */
.hr-consultancy-section {
    padding: 40px 15px;
}

    .hr-consultancy-section h2 {
        font-size: 6vw;
        color: #333;
    }

    .hr-consultancy-section p {
        font-size: 4vw;
        color: #555;
    }

    .hr-consultancy-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hr-consultancy-section img {
        max-width: 100%;
        height: auto;
    }

@media (min-width: 768px) {
    .hr-consultancy-section .row {
        flex-direction: row;
    }

    .hr-consultancy-section h2 {
        font-size: 32px;
    }

    .hr-consultancy-section p {
        font-size: 16px;
    }
}

/* HR Services Section */
.hr-services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px;
    padding: 20px;
}

.service-item {
    flex-basis: 18%;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

    .service-item i {
        font-size: 40px;
        color: #007bff;
        margin-bottom: 15px;
    }

    .service-item p {
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }

    .service-item:hover {
        transform: scale(1.05);
    }

/* Why Choose Us Heading */
h2.why-choose {
    text-align: center;
    font-size: 20px;
    color: #7D4EA3;
    margin-top: 60px;
}



    /* Reviews scrolling animation */
/*    @keyframes scroll-reviews {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(calc(-250px * (100)));
        }
    }
*/


/*    .stories:hover {
        animation-play-state: paused;
    }*/

/*     Responsive Adjustments */

/*    @media (max-width: 768px) {
        .container2 h2 {
            font-size: 2rem;
        }

        .story-card {
            width: 200px;
            min-width: 200px;
        }
    }

   @media (max-width: 480px) {
        .container2 h2 {
            font-size: 1.5rem;
        }

        .stories {
            flex-direction: column;
            gap: 15px;
        }

        .story-card {
            width: 100%;
        }
    }*/





/* General Scroller Styles */
/*.reviews-scroller, .partnerships-scroller {
    overflow: hidden;*/ /* Hide content outside the container */
    /*white-space: nowrap;
    position: relative;
    width: 100%;*/ /* Ensure it spans full width */
    /*margin: 20px 0;
}

.reviews-track, .partnerships-track {
    display: flex;*/ /* Flex for horizontal alignment */
    /*animation: scroll linear infinite;*/ /* Keyframe animation */
/*}

.story-card, .partnership-item {
    flex: 0 0 auto;*/ /* Prevent shrinking/stretching */
    /*margin: 0 15px;
    white-space: normal;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .partnership-item img {
        max-height: 100px;
        display: block;
        margin: 0 auto;
    }

    .story-card p {
        margin: 5px 0;
    }

.author {
    font-weight: bold;
    color: #333;
}*/

/* Dynamic Animation Speed Based on Content */
/*@keyframes scroll {
    from {
        transform: translateX(0);*/ /* Start position */
    /*}

    to {
        transform: translateX(calc(-100% / 2));*/ /* Scroll the duplicated width */
    /*}
}*/

/* Hover Pause */
/*.reviews-scroller:hover .reviews-track,
.partnerships-scroller:hover .partnerships-track {
    animation-play-state: paused;
}*/

/* Responsive Adjustments */
/*@media (max-width: 768px) {
    .story-card, .partnership-item {
        margin: 0 10px;*/ /* Reduce margins for smaller screens */
        /*padding: 8px;
    }

        .partnership-item img {
            max-height: 80px;
        }
}*/



/* Statistics Section */
/*.statistic-item {
    text-align: center;
    flex: 1;
    margin: 10px;
}

    .statistic-item img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

.stat-number {
    font-weight: bold;
    font-size: 1.5em;
    color: #333;
    margin: 5px 0;
}

.stat-description {
    color: #777;
    font-size: 0.9em;
    margin: 5px 0;
}*/

