@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
}

h2 {
    margin-bottom: 24px;
}

/* float button style start  */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #f68b1e;
    color: white;
    cursor: pointer;
    padding: 9px 16px;
    border-radius: 50%;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn.show {
    display: block;
    animation: fadeInUp 0.5s ease forwards, floatUpDown 2.5s ease-in-out infinite;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* float button style end  */
/* top nav style start  */
.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: white;
}

.main-nav.sticky-top {
    top: calc(60px + 80px);
    z-index: 1020;
}

.top-nav {
    background-color: #020369;
}

.top-nav {
    color: white !important;
}

.email-icon1 {
    width: 25px;
    margin-right: 10px;
}

.nav {
    display: flex !important;
    align-items: center !important;
}

.top-nav-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.top-nav-con p {
    font-size: 13.5px;
}

.top-nav-con img {
    width: 20px;
}

.left-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.left-div p {
    margin: 0px;
}

.call-div,
.email-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* top nav style end  */
/* mid nav style start  */
.lcn p {
    margin: 0px;
}

.mid-nav-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.mid-nav-con p {
    font-size: 14px;
}

.logo {
    width: 18%;
}

.logo img {
    width: 100%;
}

.blue-box {
    background-color: #1752ac;
    padding: 10px 15px;
    border-radius: 10px;
    margin-right: 15px;
}

.email-icon {
    width: 37px;
}

.wtp-icon {
    width: 47px;
    margin-right: 15px;
}

.location {
    display: flex;
    align-items: center;
}

.wtp {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

/* mid nav style end  */
/* main nav style start  */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    border: none;
    overflow: hidden;
}

.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
    color: #333;
    border-radius: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #1752ac;
    color: #fff;
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 6px;
    transition: transform 0.3s ease, content 0.3s ease;
    vertical-align: middle;
}

.navbar-nav .dropdown:hover .dropdown-icon::before {
    content: "\f068";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.main-nav.sticky-top {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    /* Ensure it stays above other elements */
}

.main-nav {
    background: linear-gradient(to right,
            #000000 0%,
            #002780 50%,
            #001544 100%);
    padding: 7px 0px;
}

.consult-btn {
    position: relative;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 30px;
    background: white;
    cursor: pointer;

}

.consult-btn:hover {
    background: linear-gradient(120deg, #f68b1e, #fca751);
    transition: all 0.4s ease;
}

a.nav-link {
    color: white;
    font-size: 15px;
}

a.nav-link.active {
    color: #f68b1e !important;
    font-weight: 600;
}

ul.navbar-nav.me-auto.mb-2.mb-sm-0 {
    gap: 20px;
}

.consult-btn:hover {
    color: white;
}


a.consult-btn {
    text-decoration: none;
    color: #1752ac;
    font-size: 14.1px;
}

.arr-icon {
    width: 20px;
    margin-left: 10px;
}

/* main nav style end  */

/* sector style start  */
.sector-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 60px;
}

.sector-owl img {
    width: 100%;
    border-radius: 10px;
}

.sector-prev,
.sector-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #8b8b8b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 20px;
    line-height: 33px;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    transition: background 0.3s ease;
}

.sector-prev:hover,
.sector-next:hover {
    background-color: #001E5A;
}

.sector-prev {
    left: 10px;
}

.sector-next {
    right: 10px;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.owl-carousel .owl-stage {
    transition: transform 0.6s ease !important;
}

.sector {
    text-align: center;
    padding: 40px;
    box-shadow: 0 6px 12px rgba(240, 240, 240, 0.368);

}

.spector-card,
.spector-card img {
    border-radius: 30px;
}

.sector h5 {
    color: #1752ac;
    font-size: 16.3px;
}

.sector h4 {
    margin-top: 20px;
    color: #020369;
}

.sector h2 {
    color: #020369;
    font-size: 46.3px;
    font-weight: 600;
}

.spector-card {
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spector-card img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.spector-card img:hover {
    transform: scale(1.05);
}

/* sector style end  */
/* manpower style start  */
.man-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.man-power {
    padding: 40px;
    box-shadow: 0 6px 12px rgba(240, 240, 240, 0.368);
}

.man-power h2 {
    font-size: 24.8px;
    color: #020369;
    font-weight: 600;
}

.man-power h3 {
    font-size: 22.8px;
    color: #1752ac;
}

.submit-btn {
    background-color: #f7951e;
    border-color: #f7951e;
    float: inline-end;
    padding: 15px 25px 15px 25px;
}

.man-power p {
    text-align: justify;
}

/* manpower style end  */
/* agency style start  */
.agency {
    padding: 40px;
    box-shadow: 0 6px 12px rgba(240, 240, 240, 0.368);
}

.agency h3 {
    font-size: 16.2px;
    color: #1752ac;
}

.agency h2 {
    font-size: 29.7px;
    color: #020369;
    font-weight: 600;
}

.agency-row {
    display: flex;
    align-items: center;
}

.learn-btn {
    background-color: #f7951e;
    border-color: #f7951e;
    padding: 15px 25px 15px 25px;
}

.agency-img-con {
    position: relative;
}

.arrow-icon {
    width: 13%;
    margin-left: 10px;
}

.year-box {
    background: linear-gradient(to bottom, #000000, #0b389d);
    padding: 20px;
    border-radius: 20px;
    width: 21%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.year-box h2 {
    color: white;
    font-size: 70.2px;
    font-weight: 600;
    margin: 0px;
}

.year-box h3 {
    color: white;
    font-size: 18.8px;
}

.line {
    background-color: white;
    width: 40%;
    height: 2px;
}

.agency-ftr-con {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call-div {
    display: flex;
    align-items: center;
}

.phn-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.call-text p {
    margin: 0px;
}

.call-text h5 {
    color: #020369;
    font-size: 14.6px;
    font-weight: 700;
}

.agency p {
    text-align: justify;
}

/* agency style end  */
/* offer style start  */
.skill-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.skill-box img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.skill-box span {
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Gradient animation overlay */
.skill-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #da7720, #fea500, #272afb, #1079ce);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    border-radius: 16px;
    transition: opacity 0.4s ease;
    animation: gradientShift 6s ease infinite;
}

/* Hover Effects */
.skill-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.skill-box:hover::before {
    opacity: 1;
}

.skill-box:hover img {
    transform: scale(1.2);
}

.skill-box:hover span {
    color: #fff;
}
.recent-post {
    background: #eeeeee;
    padding: 20px;
    border-radius: 30px;
}
.recent-post .process {
    border-bottom: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0;
    padding: 10px 5px;
    margin: 0;
}
.recent-post .process img.blog-img {
    width: 100px;
    height: 100px;
    margin: 0 10px 0 0;
    border-radius: 100%;
}
.recent-post .process .test-text {
    width: 65%;
}
.recent-post .process .test-text a {
    text-decoration: none;
    color: #1752ac;
    font-size: 14px;
}
section.map {
    padding: 30px 0 50px 0;
}
/* Keyframes for background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.offer {
    padding: 40px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(240, 240, 240, 0.368);
}

.offer h3 {
    font-size: 16.3px;
    color: #1752ac;
}

.offer h2 {
    font-size: 20.3px;
    color: #020369;
    font-weight: 600;
}

.skill-con {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.skill-box {
    border: 1px solid black;
    border-radius: 30px;
    padding: 20px;
}

.skill-box span {
    color: #020369;
    font-weight: 600;
}

/* offer style end  */
/* find manpower style start  */
.find-con {
    background-color: #4778d6;
    color: white;
    padding: 25px;
}

.find-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reuire-btn {
    border: 1px solid white;
    color: white;
    padding: 15px 20px 15px 20px;
    font-size: 20.3px;
    position: relative;
}

.reuire-btn:hover {
    background-color: white;
    color: #0b389d;
}

.find-con h2 {
    font-size: 33.3px;
    margin: 0px;
}

.require-icon {
    width: 23px;
    margin-left: 10px;
}

.require-icon2 {
    width: 23px;
    position: relative;
    right: 14px;
}

/* find manpower style end  */
/* testimonial style start  */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 60px;
}

.testimonial-owl img {
    width: 100%;
    border-radius: 10px;
}

.test-prev,
.test-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #8b8b8b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 20px;
    line-height: 33px;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    transition: background 0.3s ease;
}

.test-prev:hover,
.test-next:hover {
    background-color: #001E5A;
}

.test-prev {
    left: 10px;
}

.test-next {
    right: 10px;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.owl-carousel .owl-stage {
    transition: transform 0.6s ease !important;
}

.testimonials {
    padding: 40px;
    box-shadow: 0 6px 12px rgba(240, 240, 240, 0.368);
}

.test-con1 h3 {
    color: #1752ac;
    font-size: 13.9px;
}

.test-con1 h2 {
    color: #020369;
    font-size: 24.4px;
    font-weight: 600;
}

.test-con2 h3 {
    color: #1752ac;
    font-size: 17.8px;
}

.test-con2 h2 {
    color: #020369;
    font-size: 51.9px;
    font-weight: 600;
}

.process {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.test-text h6 {
    color: #020369;
    font-weight: 600;
}

.test-text p {
    margin: 0px;
    width: 300px;
}

.circle {
    background-color: #f7951e;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    text-align: center;
    position: relative;
    margin-right: 20px;
}

.circle h4,
.circle h5 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: 100%;
    color: white;
    font-weight: 600;
}

.circle h4 {
    top: 25%;
}

.circle h5 {
    top: 60%;
}

.member-card {
    border: 1px solid black;
    padding: 20px;
    height: 350px;
}

.profile {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.profile img {
    width: 20% !important;
    margin-right: 10px;
}

.star {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 3px;

}

.star-img {
    width: 10% !important;
}

.review-btn {
    background-color: #f7951e;
    border-color: #f7951e;
    text-align: center;
    padding: 15px 25px 15px 25px;
    font-size: 19.3px;
}

/* testimonial style end  */
/* client style start  */
.client-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 60px;
}

.client-owl img {
    width: 100%;
    border-radius: 10px;
}

.client-prev,
.client-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #8b8b8b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 20px;
    line-height: 33px;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    transition: background 0.3s ease;
}

.client-prev:hover,
.client-next:hover {
    background-color: #001E5A;
}

.client-prev {
    left: 10px;
}

.client-next {
    right: 10px;
}

.client {
    padding: 40px;
    box-shadow: 0 6px 12px rgba(240, 240, 240, 0.368);
}

.client-con h3 {
    font-size: 16.3px;
    color: #1752ac;
}

.client-con h2 {
    font-size: 47.5px;
    color: #020369;
    font-weight: 800;
}

.client-con p {
    font-size: 14.9px;
}

/* client style end  */
/* insight style start  */
.insight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    transition: background 0.5s ease-in-out, box-shadow 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.insight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #1d00ae, #00698f, #0098f0);
    background-size: 600% 600%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: gradientMove 5s ease infinite;
}

.insight-card:hover::before {
    opacity: 1;
}

.insight-card:hover {
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Optional: make text color change smoothly */
.insight-card {
    transition: color 0.5s ease;
}

.insight-card:hover h3,
.insight-card:hover p,
.insight-card:hover span,
.insight-card:hover a {
    color: #fff;
}

.insights {
    padding: 40px;
    position: relative;
}

.insight-box {
    margin-top: 20px;
}

.arr-img {
    margin-left: 10px;
}

.read-btn {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    display: flex;
    justify-content: flex-end;
}

.read-btn img {
    width: 20px;
}

.insight-con h3 {
    font-size: 19px;
    color: #1752ac;
}

.insight-con h2 {
    font-size: 47.2px;
    color: #020369;
    font-weight: 800;
}

.insight-card {
    border: 1px solid black;
    border-radius: 20px;
    padding: 25px;
    width: 400px;
    height: 100%;
}

.insight-img-card {
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
    height: 227px;
}

.insight-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease-in-out;
}

.insight-img-card:hover .insight-img {
    transform: scale(1.1);
}

.insight-card h3 {
    font-size: 19px;
    color: #1752ac;
    margin-top: 20px;
}

.date-div {
    background-color: #f68b1e;
    border-radius: 18px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 55%;
    position: absolute;
    top: 40%;
    left: 60%;
}

.date-icon {
    width: 30px;
    margin-right: 10px;
}

.insight-row {
    position: relative;
    gap: 138px;
}

/* insight style end  */
/* page2 partner style start  */
.partner-con-img {
    border-radius: 22px;
    /* Rounded corners for the container */
    overflow: hidden;
    /* Ensures image doesn't overflow the container */
    display: inline-block;
}

.partner-con-img img {
    transition: transform 0.4s ease-in-out;
    /* Smooth transition for zoom */
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    /* Match container radius */

}

.partner-con-img img:hover {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

.partner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.partner-con {
    position: relative;
    margin-top: 66px;
}

.partner-box {
    background: linear-gradient(to bottom, #000000, #0b389d);
    padding: 20px;
    border-radius: 20px;
    width: 25%;
    position: absolute;
    top: -43px;
    right: 0;
    left: 79%;
}

.partner-box h2 {
    color: white;
    font-size: 70.2px;
    font-weight: 600;
    margin: 0px;
}

.partner-box h3 {
    color: white;
    font-size: 18.8px;
}

.about-client-row {
    border: 1px solid black;
    border-radius: 25px;

}

/* client logo style start  */
.about-client .client-card {
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.client-card {
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
}

.row .col:nth-child(1) .client-card {
    border-top-left-radius: 25px;
}

.row .col:nth-child(2) .client-card {
    border-top-right-radius: 25px;
}

.row .col:nth-last-child(1) .client-card {
    border-bottom-right-radius: 25px;
}

.row .col:nth-last-child(2) .client-card {
    border-bottom-left-radius: 25px;
}

/* client logo style end  */
/* page2 partnerstyle end  */
/* license page style start  */
.license {
    padding: 40px;
}

.license h2 {
    color: #020369;
    font-size: 46.3px;
    font-weight: 600;
    text-align: center;
}

.license-img {
    text-align: center;
}

/* license page style end  */
/* country details page start  */
.image-details {
    position: relative;
}

.img-det2 {
    position: relative;
    top: -6%;
    left: 16%;
    z-index: -1;
}
.img-det3 {
    margin-top: -30%;
    margin-left: 35%;
}

.img-det4 {
    margin-top: -30%;
    margin-left: 0;
}

.img-det5 {
    margin-top: -10%;
    margin-left: 35%;
}

.img-det6 {
    margin-top: -10%;
    margin-left: 0;
}

.img-det7 {
    margin-top: -10%;
    margin-left: 70%;
}

.partner-con {
    position: relative;
}

.round {
    position: absolute;
    top: -10%;
    right: -10%;
    z-index: 1;    
    height: 37%;
    aspect-ratio: 1 / 1; /* ensures width = height */
    border-radius: 50%;  /* makes it a circle */
    object-fit: cover;   /* crops without distortion */
}

.country-box {
    background: linear-gradient(to bottom, #000000, #0b389d);
    padding: 20px;
    border-radius: 20px;
    width: 30%;
    position: absolute;
    top: 74%;
    left: -5%;
}

.country-details {
    padding: 40px;
}
button.accordion-button {
    color: #020369 !important;
    font-size: 20px;
}

.offer-details h2 {
    font-size: 24.8px;
    color: #020369;
    font-weight: 600;
}

.offer-details h3 {
    font-size: 22.8px;
    color: #1752ac;
}

.cus {
    background: rgb(238, 245, 255);
    width: 40%;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.cus h3 {
    font-size: 55px;
    font-weight: 500;
    text-align: center;
}

.cus p {
    color: #757578;
    text-align: center;
}

/* country details page end  */
/* contact page style start  */
.career-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: none;
    background: #f8f9fa;
}

.career-card img {
    width: 100%;
    border-radius: 8px;
}

.apply-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    text-align: center;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 29px;
    transition: 0.3s ease;
}

.apply-btn:hover {
    background: #0056b3;
}
.con-social-div {
    background-color: #020369;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 40%;
    padding: 10px;
    border-radius: 10px;
}

.contact-form h5 {
    margin-top: 30px;
}

.contact-form p {
    color: #002780;
}

.contact {
    padding: 40px;
}

.contact h2 {
    color: #020369;
    font-size: 46.3px;
    font-weight: 600;
    text-align: center;
}

.social-card {
    background: linear-gradient(to top, #ff3131, #ff914d);
    padding: 50px 0px;
    border-radius: 20px;
    color: white;
    text-align: center;
    height: 100%;
}

.social-img img {
    width: 30%;
}

.social-card h3 {
    margin-top: 20px;
}

.contact-form h5 {
    color: #1752ac;
    font-size: 16.3px;
}

/* contact page style end  */
/* career page style start  */
.apply {
    padding: 40px;
}

.career-card {
    margin-bottom: 30px;
}

.apply-btn {
    background-color: #0fb0ff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #3015b3, #10015e, #0b74dc, #070cb2);
    background-size: 300% 300%;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* career page style end  */
/* blog page style start  */
.blog-card {
    background: #ffffff;
    border-radius: 20px;
    border: none !important;
    padding: 0px;
    transition: background 0.5s ease-in-out, box-shadow 0.5s ease;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    position: relative;
    z-index: 1;
}


.blog-card:hover::before {
    opacity: 1;
}

.pro-img {
    width: 15%;
}

.blog-card {
    transition: color 0.5s ease;
}

.blog {
    padding: 40px;
    position: relative;
    box-shadow: 0 6px 12px rgba(240, 240, 240, 0.368);
}

.expert span {
    font-size: 13px;
}

.blog-read {
    color: #0056b3;
    font-size: 13px;
    display: block;
    text-align: center;
}

.blog-box {
    margin-top: 20px;
}

.blog-con h3 {
    font-size: 19px;
    color: #1752ac;
}

.blog-con h2 {
    font-size: 25px;
    color: #020369;
    font-weight: 800;
}

.blog-card p {
    font-size: 12px;
}

.blog-img-card {
    overflow: hidden;
    display: inline-block;
}

.blog-img {
    width: 100%;
    /* height: auto; */
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease-in-out;
}

.blog-img-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-card h3 {
    font-size: 15px;
    color: #1752ac;
    margin-top: 20px;
}

.blog-row {
    text-align: start;
}

.blog {
    padding: 40px;
    text-align: center;
}

.blog h5 {
    color: #1752ac;
    font-size: 16.3px;
}

.blog h2 {
    color: #020369;
    font-size: 46.3px;
    font-weight: 600;
}

/* blog page style end  */
/* blog-detals page style start  */
.blog-details {
    padding: 40px;
    box-shadow: 0 6px 12px rgba(240, 240, 240, 0.368);
}

.blog-details h2 {
    color: #020369;
    font-size: 45px;
    text-align: center;
    font-weight: 600;
}

.blog-img {
    width: 100%;
    margin-bottom: 20px;
}

.blog-details h6 {
    color: black;
    font-weight: 600;
}

.blog-read:hover {
    color: orange;
}

/* blog-details page style end  */
/* footer style start  */
.global-footer p {
    text-align: justify;
}
.news-col img {
    transition: all 0.4s ease;
}

.news-col:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.news-row {
    display: flex;
    align-items: center;
    align-items: flex-start;
    justify-content: normal;
    margin-bottom: 25px;
    width: 94%;
}
.news-row .news-col img {
    margin: 0 10px 0 0;
}
.global-footer {
    background-image: linear-gradient(to left, #002780, #001544);
    color: white;
    padding: 30px;
}

.ft-ul li:hover {
    color: #f68b1e;
}

.global-footer h3 {
    margin-top: 43px;
    margin-bottom: 43px;
}

.ft-ul li {
    margin-bottom: 20px;
}

.ft-logo {
    width: 100%;
    margin-bottom: 30px;
}

.news-col p {
    margin: 0px;
    font-size: 12.8px;
}

.ft-add {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ln {
    width: 100%;
    background-color: rgba(184, 182, 182, 0.829);
    height: 1px;
    margin: 20px 0px;
}

.ft-a {
    color: white;
    text-decoration: none;
    font-size: 13.2px;
}

.ft-a:hover {
    color: #f68b1e;
}

.arr-img {
    width: 20px;
}

.ft-con-img {
    width: 25px;
    margin-right: 10px;
}

.input-form {
    background-color: white;
    padding: 10px 9px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-form input {
    border: none;
}

.input-form a {
    text-decoration: none;
    background-color: #f68b1e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.input-form a:hover {
    background-color: #020369;
}

.social-div {
    margin-top: 30px;
}

.social-icon img {
    margin-right: 15px;
}

.social-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wtp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 22px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.wtp-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.wtp-btn:hover {
    background-color: #1ebd5b;
    transform: scale(1.05);
}

.wtp-btn:hover .wtp-icon {
    transform: scale(1.2) rotate(10deg);
}

/* footer style end  */

h4 a {
    text-decoration: none;
    color: inherit; /* keeps the same color as the <h4> */
}

h4 a:hover {
    text-decoration: underline; /* optional: show underline only on hover */
}