/* nav section */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-custom {
    background: white;
    transition: all 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.navbar-brand .logo {
    width: 150px;
    height: 60%;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.25));
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
}

.navbar-nav .nav-link::after {
    display: none;
}

.nav-btn a {
    text-decoration: none;
    color: #fff;
}

.nav-btn {
    background: linear-gradient(45deg, #1A73E8, #0D3B66);
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(13, 59, 102, 0.4);
}


.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


@media (max-width: 991px) {
    .navbar-custom {
        background: #ffffff;
    }

    .navbar-nav {
        background: #ffffff;
        border-radius: 12px;
        padding: 15px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 17px;
        display: block;
        color: #000 !important;
    }

    .nav-btn {
        width: 85%;
        margin: 12px auto;
        display: block;
        text-align: center;
    }

    .navbar-brand .logo {
        width: 120px;
    }
}


/* header section */


.hero-section {
    position: relative;

    width: 100%;
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80') right center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    overflow: hidden;
}


.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 20, 45, 0.55);

    z-index: 1;
}


.hero-section .container {
    position: relative;
    z-index: 2;
    padding-left: 0.8%;

}


.hero-text h6 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a9c1e4;
    margin-bottom: 10px;
    animation-delay: 0.2s;
}

.hero-text h1 {
     margin-top: 90px;
    text-align: center;
    font-size: 3.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation-delay: 0.4s;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 55vh;
        background-position: center center;
    }

    .hero-section .container {
        padding-left: 3%;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 40vh;
        justify-content: center;
        text-align: center;
    }

    .hero-section .container {
        padding-left: 0;
    }

    .hero-text h6 {
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
}


/* our services section */


body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f8ff;
    color: #002b5b;
}

section {
    padding: 87px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #003366;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-link {
    text-decoration: none;
}

.services-header p {
    font-size: 1rem;
    /*    color: #555;
    max-width: 720px; */
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    transform: translateY(50px);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.service-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.service-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #007bff, #004aad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 38px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, #004aad, #007bff);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #002b5b;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 35px 20px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
}



/* hiring section */




.hiring-modern {
    padding: 75px 5%;
    background-color: #eff5fc;
    font-family: "Segoe UI", sans-serif;
}

.hiring-header {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.hiring-header h2 {
    font-weight: 700;
    color: #003366;
    font-size: 42px;
    margin-bottom: 10px;
}

.hiring-header p {
    font-size: 17px;
    color: #003366;
}




/* GRID – 5 cards per row */
/* .hiring-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
} */


@media (max-width: 1200px) {
    .hiring-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hiring-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hiring-grid {
        grid-template-columns: 1fr;
    }
}


.hiring-card {
    background: white;
    backdrop-filter: blur(12px);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transform: translateY(40px);
    opacity: 0;
    transition: 0.6s ease;
}

.hiring-card.visible {
    transform: translateY(0);
    opacity: 1;
}


.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: gold;
    color: #000;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}


.card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.hiring-card:hover img {
    transform: scale(1.1);
}


.card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}


.card-content {
    padding: 26px 22px 30px;
    color: #003366;
}

.card-content h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 14.5px;
    color: #003366;
    line-height: 1.6;
    margin-bottom: 16px;
}


.card-btn {
    display: inline-block;
    background: linear-gradient(45deg, #1A73E8, #104577);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

.card-btn:hover {
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, #1359b6, #093157);
    transform: translateY(-2px);
}





.hiring-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
}


@media (max-width: 1400px) {
    .hiring-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (max-width: 1100px) {
    .hiring-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 900px) {
    .hiring-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {
    .hiring-grid {
        grid-template-columns: 1fr;
    }
}



/* work flow section */


.workflow-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #f9fbff;
    position: relative;
}


.workflow-section .container {
    max-width: 1580px;
    margin: 0 auto;
}

.workflow-section h2 {
    font-size: 2.5rem;
    color: #007bff;
    font-weight: 800;
    margin-bottom: 70px;
}


.workflow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
}


.workflow-step {
    background: #fff;
    border-radius: 14px;
    padding: 50px 25px 40px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.workflow-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 20px;
    padding: 5px 14px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}


.workflow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #007bff;
    border: 8px solid #007bff;
    transition: all 0.3s ease;
}

.workflow-step:hover .workflow-icon {
    background: #007bff;
    color: #fff;
    transform: scale(1.1);
}

.workflow-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #003366;
}

.workflow-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.workflow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.15);
}

@media (max-width: 768px) {
    .workflow-section h2 {
        font-size: 2rem;
    }

    .workflow-step {
        padding: 35px 20px;
        max-width: 260px;
    }

    .workflow-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        border-width: 6px;
    }
}


/* futtter section */


.footer {
    background: linear-gradient(135deg, #0d3b66, #144b8b);
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}


.footer::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -100%;
    left: -100%;
    animation: waveMove 20s infinite linear;
}

@keyframes waveMove {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1 1 220px;
    margin: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #dcdcdc;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3b82f6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #e6e6e6;
    display: flex;
    align-items: center;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #3b82f6;
}

.footer-col ul li a {
    text-decoration: none;
    color: #e6e6e6;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

.footer-social {
    margin-top: 20px;
}

a {
    text-decoration: none;
}

.footer-social a {
    text-decoration: none;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    font-size: 14px;
    color: #dcdcdc;
    z-index: 2;
    position: relative;
}


@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin: 25px 0;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 8px;
    }
}






@media (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }

    .footer-col {
        width: 100%;
        margin: 20px 0;
    }

    /* Center heading underline */
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* List center */
    .footer-col ul li {
        justify-content: center;
        font-size: 14px;
    }

    /* Logos center */
    .footer-logo {
        font-size: 28px;
    }

    /* Social icons center + spacing */
    .footer-social a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        margin: 6px;
    }

    /* Footer bottom */
    .footer-bottom {
        font-size: 13px;
        padding: 15px 10px;
    }
}






/* font */

.font-link {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}