* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {

    background: #fff;

    overflow-x: hidden;

}

.navbar {

    padding: 20px;

    transition: .4s;

}

.navbar {
    background: #ffffff;
    padding: 16px 0;
    transition: all .35s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}

.navbar.scrolled {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

/* Logo */

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: #0B1F3A !important;
    text-decoration: none;
}

.navbar-brand img {
    height: 50px;
    margin-right: 12px;
}

.navbar-brand span {
    color: #0B1F3A;
}

/* Menu */

.navbar-nav {
    gap: 15px;
}

.navbar-nav li {
    list-style: none;
}

.navbar-nav li a {
    color: #0B1F3A;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 14px;
    transition: .3s;
    position: relative;
}

/* Hover */

.navbar-nav li a:hover {
    color: #0A66FF;
}

/* Underline Animation */

.navbar-nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: #0A66FF;
    transition: .3s;
}

.navbar-nav li a:hover::after {
    width: 100%;
}

/* Active Menu */

.navbar-nav li a.active {
    color: #0A66FF;
}

.navbar-nav li a.active::after {
    width: 100%;
}

/* Hire Button */

.btn-warning {
    background: linear-gradient(135deg, #FF8A00, #FF6200);
    border: none;
    color: white;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 50px;
    transition: .3s;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 122, 0, .35);
}

/* Mobile */

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 3px;
    background: #0B1F3A;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: #0B1F3A;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

@media (max-width:991px) {

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .navbar-nav {
        gap: 10px;
    }

    .btn-warning {
        margin-top: 20px;
        width: 100%;
    }

}



/*=========================================
 HERO SECTION
==========================================*/

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #071A52 0%, #0A66FF 55%, #1D9BF0 100%);
    padding: 140px 0 90px;
}

/* Background Shapes */

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.shape1 {
    width: 600px;
    height: 600px;
    left: -220px;
    bottom: -260px;
    background: rgba(255, 255, 255, .05);
}

.shape2 {
    width: 700px;
    height: 700px;
    top: -300px;
    right: -220px;
    background: rgba(255, 255, 255, .06);
}

/* Left Content */

.hero-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    backdrop-filter: blur(10px);

    margin-bottom: 25px;

    font-size: 15px;

    font-weight: 600;

}

.hero-title {

    font-size: 68px;

    font-weight: 800;

    color: #fff;

    line-height: 1.1;

    margin-bottom: 25px;

}

.hero-title span {

    color: #FFD54F;

}

.hero-desc {

    color: #eef5ff;

    font-size: 20px;

    line-height: 1.8;

    max-width: 620px;

}

/* Buttons */

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-top: 40px;

    margin-bottom: 40px;

}

.btn-hire {

    background: #FF7A00;

    color: #fff;

    padding: 15px 36px;

    border-radius: 50px;

    font-weight: 600;

    transition: .35s;

    text-decoration: none;

}

.btn-hire:hover {

    background: #ff6200;

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(255, 122, 0, .35);

    color: #fff;

}

.btn-job {

    background: rgba(255, 255, 255, .15);

    border: 2px solid rgba(255, 255, 255, .35);

    color: #fff;

    padding: 15px 36px;

    border-radius: 50px;

    text-decoration: none;

    backdrop-filter: blur(12px);

    transition: .35s;

}

.btn-job:hover {

    background: #fff;

    color: #0A66FF;

}


.client-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.client-link:hover{
    text-decoration:none;
    color:inherit;
}

/* Search */

.job-search {

    background: #fff;

    border-radius: 18px;

    padding: 18px;

    margin-top: 25px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

}

.job-search input,

.job-search select {

    height: 58px;

    border-radius: 12px;

    border: 1px solid #ddd;

}

.btn-search {

    background: #0A66FF;

    color: #fff;

    height: 58px;

    border-radius: 12px;

    font-weight: 600;

}

.btn-search:hover {

    background: #0049c7;

    color: #fff;

}

/* Statistics */

.hero-stats {

    display: flex;

    justify-content: space-between;

    margin-top: 55px;

    color: #fff;

}

.hero-stats div {

    text-align: center;

}

.hero-stats h2 {

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 5px;

}

.hero-stats span {

    color: #d7e8ff;

    font-size: 15px;

}

/* Hero Image */

.hero-image {

    position: relative;

    text-align: center;

}

.hero-image img {

    border-radius: 25px;

    box-shadow: 0 35px 60px rgba(0, 0, 0, .35);

}

/* Floating Cards */

.floating-card {

    position: absolute;

    background: rgba(255, 255, 255, .96);

    padding: 14px 22px;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);

    font-weight: 600;

    color: #071A52;

    animation: floatCard 4s ease-in-out infinite;

}

.card1 {

    top: 8%;

    left: -40px;

}

.card2 {

    bottom: 22%;

    right: -40px;

}

.card3 {

    bottom: 5%;

    left: 20px;

}

/* Animations */

@keyframes floatImage {

    0%,
    100% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-12px);

    }

}

@keyframes floatCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}

/* Responsive */

@media(max-width:1200px) {

    .hero-title {

        font-size: 58px;

    }

}

@media(max-width:991px) {

    .hero-section {

        padding: 120px 0 80px;

        text-align: center;

    }

    .hero-title {

        font-size: 46px;

    }

    .hero-desc {

        margin: auto;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-stats {

        margin-top: 40px;

        flex-wrap: wrap;

        gap: 25px;

        justify-content: center;

    }

    .hero-image {

        margin-top: 60px;

    }

    .floating-card {

        display: none;

    }

}

@media(max-width:576px) {

    .hero-title {

        font-size: 36px;

    }

    .hero-desc {

        font-size: 17px;

    }

    .hero-tag {

        font-size: 13px;

    }

    .job-search {

        padding: 15px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn-hire,

    .btn-job {

        width: 100%;

        text-align: center;

    }

    .hero-stats {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }

}

.section-tag {
    display: inline-block;
    background: #0A66FF;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-text {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.about-section {
    padding: 100px 0;
}

.highlight-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .3s;
}

.highlight-box:hover {
    transform: translateY(-8px);
}

.highlight-box h3 {
    color: #0A66FF;
    font-size: 38px;
    font-weight: 700;
}

.services {
    background: #f8fbff;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
    text-align: justify;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #0A66FF;
    color: white;
}

.service-card i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #FF7A00;
}

.service-card:hover i {
    color: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-item {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.industry-item:hover {
    background: #0A66FF;
    color: white;
    transform: translateY(-8px);
}

.industry-item i {
    font-size: 42px;
    margin-bottom: 15px;
    color: #FF7A00;
}

.industry-item:hover i {
    color: white;
}

@media(max-width:992px) {

    .industry-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:576px) {

    .industry-grid {

        grid-template-columns: 1fr;

    }

    .section-title {

        font-size: 30px;

    }

}

.private-section {
    padding: 100px 0;
    background:#f5f9ff;
}

.feature-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-list div {
    font-weight: 500;
}

.feature-list i {
    color: #0A66FF;
    margin-right: 10px;
}

.why-us {
    background: #f5f9ff;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.why-card:hover {
    background: #0A66FF;
    color: white;
    transform: translateY(-10px);
}

.why-card i {
    font-size: 45px;
    margin-bottom: 20px;
    color: #FF7A00;
}

.why-card:hover i {
    color: white;
}

.clients {
    padding: 80px 0;
}

.logo-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #0A66FF;
}

.cta-section {
    background: linear-gradient(135deg, #021B79, #0575E6);
    padding: 80px 0;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
}

@media(max-width:992px) {

    .logo-slider {

        grid-template-columns: repeat(2, 1fr);

    }

    .feature-list {

        grid-template-columns: 1fr;

    }

}

@media(max-width:576px) {

    .logo-slider {

        grid-template-columns: 1fr;

    }

}


/*================ OUR CLIENTS ================*/

/*================ OUR CLIENTS ================*/

.clients-section {
    padding: 100px 0;
    background: white;
}

.section-subtitle {
    max-width: 750px;
    margin: 15px auto 0;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

/* Client Container */

.client-slider {
    margin-top: 60px;
}

/* Client Row */

.slide-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

/* Client Card */
.client-box{
    width:240px;
    min-height:180px;
    background:#fff;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:20px;
    border:1px solid #eef2f7;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    text-align:center;
}

.client-box img{
    max-width:150px;
    max-height:70px;
    object-fit:contain;
    margin-bottom:18px;
    transition:.35s;
}

.client-box h5{
    font-size:17px;
    font-weight:600;
    color:#071A52;
    margin:0;
    line-height:1.4;
}

.client-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(10,102,255,.15);
    border-color:#0A66FF;
}

.client-box:hover img{
    transform:scale(1.08);
}

/* Responsive */

@media (max-width:991px) {

    .slide-track {
        gap: 25px;
    }

    .client-box {
        width: 200px;
        height: 120px;
    }

}

@media (max-width:576px) {

    .slide-track {
        flex-direction: column;
    }

    .client-box {
        width: 100%;
        max-width: 300px;
        height: 120px;
    }

}


/* ================= FOOTER ================= */

.footer {

    background: #07152f;

    color: #d9d9d9;

    padding: 80px 0 30px;

}

.footer-logo {

    height: 60px;

    margin-bottom: 20px;

}

.footer h3 {

    color: #fff;

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 20px;

}

.footer h4 {

    color: #fff;

    margin-bottom: 25px;

    position: relative;

    font-size: 22px;

}

.footer h4::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 50px;

    height: 3px;

    background: #ff7a00;

}

.footer p {

    color: #bfc6d4;

    line-height: 1.8;

}

.footer ul {

    list-style: none;

    padding: 0;

}

.footer ul li {

    margin-bottom: 14px;

}

.footer ul li a {

    color: #bfc6d4;

    text-decoration: none;

    transition: .3s;

}

.footer ul li a:hover {

    color: #ff7a00;

    padding-left: 8px;

}

.footer-contact i {

    color: #ff7a00;

    width: 24px;

    margin-right: 8px;

}

.social-icons {

    margin-top: 25px;

}

.social-icons a {

    width: 45px;

    height: 45px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    margin-right: 10px;

    transition: .35s;

    text-decoration: none;

}

.social-icons a:hover {

    background: #0A66FF;

    transform: translateY(-5px);

}

.footer hr {

    margin: 45px 0 25px;

    border-color: rgba(255, 255, 255, .15);

}

.footer-bottom {

    color: #bfc6d4;

    font-size: 15px;

}

@media(max-width:991px) {

    .footer {

        text-align: center;

    }

    .footer h4::after {

        left: 50%;

        transform: translateX(-50%);

    }

    .social-icons {

        justify-content: center;

    }

}