/* ========================= 
Home page css
 =========================  */
html,
body {
    /*overflow-x: hidden;*/
    /*scroll-behavior: auto;*/
    margin:0;
}

/*Navbar css start*/
.custom-navbar {
    background: transparent;
    padding: 10px 0;
    box-shadow: none;
    z-index: 999;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 5px 0;
}

/* Professional Mobile Toggle Button */
.custom-toggler {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-toggler:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Black Hamburger Icon */
.custom-toggler .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='black' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Remove Bootstrap outline */
.navbar-toggler:focus {
    box-shadow: none;
}


.logo-img {
    height: 70px;
    width: auto;
    object-fit: cover;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: #1a1a1a !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b00 !important;
}

/* Underline Hover Effect */
.nav-link::after {
    content: "";
    /*position: absolute;*/
    left: 14px;
    bottom: 5px;
    width: 0%;
    height: 2px;
    /*background: #ff6b00;*/
    transition: 0.3s;
}

/*.nav-link:hover::after,*/
/*.nav-link.active::after {*/
/*    width: 55%;*/
/*}*/

.dropdown-menu {
    min-width: 280px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    white-space: normal;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #ff6a00;
}

.navbar .nav-link {
    font-weight: 500;
}

/* Button */
.quote-btn {
    background: #0c1b4d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #ff6b00;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .quote-btn {
        width: 100%;
        text-align: center;
    }
}
/* Active Menu Color */

.navbar .nav-link.active{
    color: #ff6a00 !important;
    font-weight: 600;
}

.navbar .nav-link.active::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #ff6a00;
    position: absolute;
    left: 0;
    bottom: 5px;
}

.navbar .nav-link{
    position: relative;
}
/*Navbar css start*/

/*Banner css start*/
.hero-banner {
    /*    padding: 20px 0;*/
    background: linear-gradient(90deg, rgb(255 255 255 / 88%) 0%, rgb(244 245 247 / 78%) 45%, rgb(248 251 255 / 55%) 100%);
    ;
}

.hero-image img {
    max-width: 122%;
    height: 450px;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 40px;
    right: -25px;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, rgba(0, 70, 175, 0.25), rgba(26, 46, 90, 0.15));
    filter: blur(40px);
    border-radius: 30px;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #0c1b4d;
    margin-bottom: 25px;
}

.hero-title span {
    color: #ff6a00;
}

.hero-title .s1 {
    color: #0046af;
}

.hero-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgb(12 11 11 / 82%);
    margin-bottom: 35px;
    max-width: 95%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary Button */
.btn-primary-custom {
    background: #f8fbff;
    color: #0b1b35;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    border: 1px solid #1F7DBA;
}

.btn-primary-custom:hover {
    background: #ff6a00;
    border-color: #ff6a00;
    color: #fff;
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline-custom {
    background: #fff;
    backdrop-filter: blur(6px);
    color: #0c1b4d;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #0c1b4d;
    transition: 0.3s ease;
}

.btn-outline-custom i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-outline-custom:hover {
    background: #ff6a00;
    color: #fff;
    border-color: #ff6a00;
    transform: translateY(-2px);
}

.btn-outline-custom:hover i {
    border-color: rgba(255, 255, 255, 0.4);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {

    .hero-banner {
        padding: 75px 0;
        text-align: center;
    }

    .hero-banner::before {
        background: linear-gradient(90deg, rgb(255 255 255 / 88%) 0%, rgb(244 245 247 / 78%) 45%, rgb(248 251 255 / 55%) 100%);
        ;

    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 767px) {

    .hero-banner {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-image img {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        max-width: 100%;
        height: 330px;
    }

    .hero-banner {
        padding: 12px 0;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-text {
        font-size: 14px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        font-size: 13px;
        padding: 12px 16px;
    }
}

/*Banner css end*/

/*counter section css start*/
.stats-section {
    padding: 0px 0;
    background: #f7f9fc;
}

.stats-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding-top: 10px;
}

.stats-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-right: 1px solid #eee;
}

.stats-box:last-child {
    border-right: none;
}

.icon {
    width: 55px;
    height: 55px;
    background: #0c1b4d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon:hover {
    background: #0046af;
    color: #fff;
}

.icon1 {
    width: 55px;
    height: 55px;
    background: #0046af;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon1:hover {
    background: #0c1b4d;
    color: #fff;
}

.stats-box h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #0c1b4d;
}

.stats-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media(max-width: 991px) {
    .stats-wrapper {
        flex-wrap: wrap;
    }

    .stats-box {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

@media(max-width: 576px) {
    .stats-box {
        flex: 1 1 100%;
        border-bottom: 1px solid #eee;
    }
}

/*counter section css end*/


/* =========================
  Our Core Expertise
========================= */

.expertise-section {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.section-title span {
    color: #0046af;
}

.title-line {
    width: 70px;
    height: 4px;
    background: #0046af;
    margin: auto;
    border-radius: 10px;
}

.title-line1 {
    width: 70px;
    height: 4px;
    background: #0046af;
    border-radius: 10px;
}

/* Expertise Cards */
.expertise-card {
    background: #fff;
    border: 1px solid #eef2ff;
    border-radius: 14px;
    padding: 30px 18px;
    transition: 0.4s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #0046af;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.icon-box1 {
    width: 70px;
    height: 70px;
    background: #0c1b4d;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.expertise-card h5 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #111827;
}

.expertise-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.expertise-card a {
    text-decoration: none;
    color: #0046af;
    font-weight: 600;
    font-size: 14px;
}

.expertise-card a i {
    margin-left: 5px;
    transition: 0.3s;
}

.expertise-card a:hover i {
    margin-left: 10px;
}

/* =========================
   Industries We Serve
========================= */

.industries-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.section-heading {
    position: relative;
    display: inline-block;
}

.industry-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #0c1b4d;
    line-height: 1.2;
    margin: 0;
    position: relative;
    display: inline-block;
}

/* Blue Text */
.industry-main-title span {
    color: #0046af;
}

/* Underline Below "Industries" */
.industry-main-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #0046af;
    border-radius: 10px;
}

/* Mobile */
@media(max-width:767px) {

    .industry-main-title {
        font-size: 30px;
    }

    .industry-main-title::after {
        width: 60px;
    }
}

/* Industry Cards */
.industry-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 15px 10px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3196ce, #1e40af);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.18);
}

.industry-icon,
.industry-card h6 {
    position: relative;
    z-index: 2;
}

.industry-icon {
    width: 65px;
    height: 65px;
    background: #eff6ff;
    border-radius: 50%;
    margin: auto auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.industry-icon i {
    font-size: 28px;
    color: #0046af;
    transition: 0.4s;
}

.industry-card h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    color: #111827;
    margin: 0;
    transition: 0.4s;
}

/* Hover */
.industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, 0.15);
}

.industry-card:hover .industry-icon i,
.industry-card:hover h6 {
    color: #fff;
}

/* Right Image */
.industry-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.industry-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    transition: 0.5s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.industry-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media(max-width:991px) {

    .section-heading h2 {
        font-size: 34px;
    }

    .industry-card {
        padding: 22px 10px;
    }
}

@media(max-width:767px) {

    .section-heading h2 {
        font-size: 28px;
    }

    .industry-icon {
        width: 55px;
        height: 55px;
    }

    .industry-icon i {
        font-size: 22px;
    }

    .industry-card h6 {
        font-size: 13px;
    }
}


.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    min-height: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quote-icon {
    color: #0d6efd;
    font-size: 28px;
}

.testimonial-text {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
    margin: 15px 0;
}

.client-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-size: 14px;
    color: #666;
}

.underline {
    width: 70px;
    height: 4px;
    background: #0d6efd;
    border-radius: 10px;
}

.main-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0c1b4d;
}

.feature-list li {
    list-style: none;
    margin-bottom: 14px;
    color: #444;
    font-size: 15px;
}

.feature-list li i {
    color: #0046af;
    margin-right: 10px;
    font-size: 18px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    height: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quote-icon {
    color: #0046af;
    font-size: 28px;
}

.testimonial-text {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin: 15px 0;
}

.client-name {
    font-size: 14px;
    color: #666;
}

.client-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.strength-item {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.strength-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #dbe7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0046af;
    font-size: 24px;
    margin-right: 15px;
    background: #f5f9ff;
}

.strength-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.underline {
    width: 70px;
    height: 4px;
    background: #0046af;
    margin-top: 8px;
    border-radius: 10px;
}

/*Pagination css*/
.testimonial-pagination {
    position: relative !important;
    text-align: center !important;
    margin-top: 25px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #0046af;
    opacity: 0.5;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/*End css*/

/*Trusted css start*/
/* Container styling */
.trusted-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    box-sizing: border-box;
}

/* Section Title matching the image header color */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a2e5a;
    margin-bottom: 15px;
}

/* Position relative handles absolute placing for arrows */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Logo track styling with smooth CSS scroll-snapping */
.logo-track {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 15px 50px;
    width: 100%;
    /* Hide standard scrollbar across browsers */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.logo-track::-webkit-scrollbar {
    display: none;
}

/* Logo Items */
.logo-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    /* Fallback baseline size */
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    /* Keeps logos consistently sized horizontally */
    object-fit: contain;
    filter: grayscale(10%) contrast(95%);
    /* Keeps branding clean */
}

/* Navigation Arrow Buttons matching image styling */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #f0f2f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2e5a;
    z-index: 10;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background-color: #f8fafc;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.nav-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .logo-track {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 16px;
    }

    .logo-track {
        padding: 10px 40px;
        gap: 20px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
    }

    .nav-btn svg {
        width: 14px;
        height: 14px;
    }
}

/*Trusted css end*/

/*About css start*/
.about-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.about-image img:hover {
    transform: scale(1.03);
}


.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: 0.5s ease;
    height: 420px;
    object-fit: cover;
}

/* Experience Badge */
.experience-badge1 {
    position: absolute;
    bottom: 15px;
    left: 44px;
    background: #0046af;
    color: #fff;
    width: 153px;
    height: 153px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 35px rgba(13, 110, 253, 0.35);
    animation: floatBadge 3s ease-in-out infinite;
    border: 6px solid #fff;
    will-change: transform;
    backface-visibility: hidden;
}

.experience-badge1 h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.experience-badge1 p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Floating Animation */
@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media(max-width:991px) {

    .experience-badge1 {
        display: none;
    }

}

@media(max-width:576px) {

    .experience-badge1 {
        display: none;
    }

    .about-image img {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        transition: 0.5s ease;
        height: 310px;
    }
}


.about-content {
    padding-left: 20px;
}

.about-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: #0c1b4d;
    /*    margin-bottom: 25px;*/
}

.about-title span {
    color: #0046af;
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.about-features {
    margin-top: 25px;
    margin-bottom: 35px;
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-box i {
    color: #0046af;
    font-size: 20px;
    margin-right: 12px;
}

.feature-box span {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.about-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.about-btn:hover {
    background: #084298;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:991px) {

    .about-content {
        padding-left: 0;
    }

    .about-title {
        font-size: 34px;
    }
}

@media(max-width:576px) {

    .about-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 15px;
    }
}

/*About css end*/

/* PRODUCTS CSS START*/
.products-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Zoom Effect */
.product-card:hover .product-img img {
    transform: scale(1.1);
}

/* Overlay */
.product-overlay {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    padding: 6px;
    background: linear-gradient(135deg, #162447, #1f4068, #0046af);
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card:hover .product-overlay {
    bottom: 0;
}

/* Product Name */
.product-overlay h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    width: 75%;
}

/* Arrow Button */
.product-overlay a {
    width: 55px;
    height: 55px;
    background: #0d6efd;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: 0.4s ease;
}

.product-overlay a:hover {
    background: #fff;
    color: #0d6efd;
    transform: rotate(-45deg);
}

/* Content */
.product-content {
    padding: 25px;
}

.product-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Arrow Button */
.product-overlay a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 70, 175, 0.35);
}

/* Hover Effect */
.product-overlay a:hover {
    background: #0046af;
    color: #fff;
    transform: rotate(-45deg) scale(1.08);
}

/* Responsive */
@media(max-width:991px) {

    .section-title h2 {
        font-size: 34px;
    }

    .product-img img {
        height: 240px;
    }
}

@media(max-width:576px) {

    .section-title h2 {
        font-size: 28px;
    }

    .product-overlay h4 {
        font-size: 18px;
    }

    .product-overlay a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* PRODUCTS CSS END*/

/*TEAM CSS START*/
.team-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

/* Section Heading */
.section-title h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

/* Team Card */
.team-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.5s ease;
    position: relative;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Team Image */
.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

/* Overlay Effect */
.team-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 90, 0.9), transparent);
    opacity: 0;
    transition: 0.5s ease;
    z-index: 1;
}

.team-card:hover .team-image::before {
    opacity: 1;
}

/* Social Icons */
.team-social {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: 0.5s ease;
    z-index: 2;
}

.team-card:hover .team-social {
    bottom: 20px;
}

.team-social a {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #1a2e5a, #0046af);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.4s ease;
    font-size: 16px;
}

.team-social a:hover {
    transform: translateY(-5px);
    background: #fff;
    color: #0046af;
}

/* Team Content */
.team-content {
    text-align: center;
    padding: 15px 20px;
}

.team-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2e5a;
    margin-bottom: 8px;
}

.team-content span {
    font-size: 15px;
    font-weight: 500;
    color: #0046af;
}

/* Responsive */
@media(max-width:991px) {

    .section-title h2 {
        font-size: 34px;
    }

    .team-image img {
        height: 410px;
    }
}

@media(max-width:576px) {

    .section-title h2 {
        font-size: 28px;
    }

    .team-image img {
        height: 410px;
    }
}

/*TEAM CSS END*/

/*SERVICE CSS START*/
/* =========================
      SERVICES SECTION
========================= */

.services-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

/* Section Heading */
.section-heading {
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: 0.5s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Service Image */
.service-img {
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.7s ease;
}

/* Hover Zoom */
.service-card:hover .service-img img {
    transform: scale(1.1);
}

/* Gradient Overlay */
.service-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 90, 0.85), transparent);
    opacity: 0;
    transition: 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-img::before {
    opacity: 1;
}

/* Service Content */
.service-content {
    padding: 20px;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2e5a;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.service-card:hover .service-content h4 {
    color: #0046af;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0046af;
    font-weight: 600;
    transition: 0.4s ease;
}

.service-btn i {
    transition: 0.4s ease;
}

.service-btn:hover {
    color: #0c1b4d;
}

.service-btn:hover i {
    transform: translateX(6px);
}

/* Responsive */
@media(max-width:991px) {

    .section-heading h2 {
        font-size: 36px;
    }

    .service-img img {
        height: 230px;
    }
}

@media(max-width:767px) {

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .service-content {
        padding: 24px;
    }

    .service-content h4 {
        font-size: 22px;
    }

    .service-img img {
        height: 220px;
    }
}

@media(max-width:576px) {

    .section-heading h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .service-img img {
        height: 200px;
    }

    .service-content {
        padding: 22px;
    }
}

/*SERVICE CSS END*/


/*CAROUSEL CSS START*/
.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    opacity: 1;
}

/* Round Circle Around Arrow */
.carousel-control-prev span,
.carousel-control-next span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2e5a, #0046af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 70, 175, 0.35);
    transition: 0.4s ease;
    position: relative;
}

/* Outer Animated Ring */
.carousel-control-prev span::before,
.carousel-control-next span::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(0, 70, 175, 0.25);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

/* Hover Effect */
.carousel-control-prev span:hover,
.carousel-control-next span:hover {
    transform: scale(1.12);
    background: linear-gradient(135deg, #0046af, #1a2e5a);
}

/* Ring Animation */
@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* Mobile Hide */
@media(max-width:767px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/*CAROUSEL CSS END*/

/*FOOTER CSS START*/
/* =========================================
   FOOTER SECTION START
========================================= */

.footer-container {
    position: relative;
    background: linear-gradient(90deg, #02142d 0%, #001a3a 45%, #02142d 100%);
    color: #fff;
    padding: 22px 7% 12px;
    overflow: hidden;
    z-index: 1;
}

/* Glow Effect */
.footer-container::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(0, 102, 255, 0.18);
    filter: blur(120px);
    z-index: -1;
}

/* =========================================
   TOP CTA AREA
========================================= */

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    gap: 30px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.cta-icon i {
    font-size: 28px;
    color: #fff;
    transform: rotate(-20deg);
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
    color: #fff;
}

.cta-text p {
    margin: 0;
    color: #d6dbe5;
    font-size: 16px;
    font-weight: 400;
}

.cta-btn {
    background: #fff;
    color: #00142d;
    padding: 16px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #ff6b00;
    color: #fff;
    transform: translateY(-3px);
}

/* =========================================
   MAIN FOOTER GRID
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    align-items: flex-start;
}

/* Vertical Divider */
.footer-col {
    position: relative;
}

.footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -22px;
    width: 1px;
    height: 92%;
    /*background: rgba(255,255,255,0.10);*/
}

/* =========================================
   BRAND COLUMN
========================================= */

.footer-logo img {
    width: 100px;
    height: auto;
    margin-bottom: 12px;
}

.brand-desc {
    color: #d6dbe5;
    font-size: 14px;
    line-height: 1.7;
    max-width: 290px;
    margin-bottom: 0;
}

/* =========================================
   HEADINGS
========================================= */

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #fff;
}

/* =========================================
   LINKS
========================================= */

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #d6dbe5;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 3px;
}

/* =========================================
   CONTACT INFO
========================================= */

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d6dbe5;
    font-size: 14px;
}

.contact-info li i {
    color: #fff;
    font-size: 15px;
    width: 18px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.4s ease;
    font-size: 16px;
}

.social-icons a:hover {
    background: #fff;
    color: #00142d;
    transform: translateY(-4px);
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
    /*border-top: 1px solid rgba(255,255,255,0.10);*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    color: #c9d0da;
    font-size: 13px;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bottom-links a {
    color: #c9d0da;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.bottom-links a:hover {
    color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 991px) {

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {

    .footer-container {
        padding: 28px 5% 18px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-col::after {
        display: none !important;
    }

    .cta-left {
        align-items: flex-start;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .footer-col h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .brand-desc {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* =========================================
   FOOTER SECTION END
========================================= */
/*FOOTER CSS END*/

/*breadcrumb css*/
.bg-background-area {
    min-height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.breadcrumb-text {
    position: relative;
    z-index: 2;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

.breadcrumb-text h2 {
    font-size: 50px;
    margin-bottom: 15px;
}

/*End css*/

/* ========================= 
    About page css
 =========================  */
/* About Section */
.bg-danger-subtle1 {
    background: #eaf4fb;
}

.text-radish-brown {
    color: #555;
    /*    line-height: 1.9;*/
    font-size: 17px;
    text-align: justify;
}

.about-section {
    padding: 80px 0;
    background: #f7f7f7;
}

/* Badge */
.about-badge {
    border: 1px solid #b9d9ee;
    color: #0b63b6;
    background: #eef7fd;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Feature Box */
.about-feature {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.about-feature i {
    width: 55px;
    height: 55px;
    background: #eaf4fb;
    color: #0b63b6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.about-feature h6 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.about-feature p {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

/* Image Section */
.about-img1 {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-img2 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    margin-top: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Counter Cards */
.about-counter {
    background: #eef7fd;
    border: 1px solid #d8e9f6;
    border-radius: 18px;
    padding: 30px;
    transition: 0.4s;
    height: 100%;
}

.about-counter:hover {
    transform: translateY(-5px);
}

.about-counter h3 {
    color: #0b63b6;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-counter p {
    margin: 0;
    color: #555;
    font-size: 17px;
}

.text1 {
    color: #0046af;
    ;
}

/* Responsive */
@media(max-width:991px) {

    .about-title {
        font-size: 42px;
    }

    .about-img1 {
        height: 320px;
    }

    .about-img2 {
        height: 240px;
        margin-top: 30px;
    }
}

@media(max-width:767px) {

    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 34px;
    }

    .about-feature {
        gap: 14px;
    }

    .about-feature h6 {
        font-size: 20px;
    }

    .about-feature p {
        font-size: 15px;
    }

    .about-img1,
    .about-img2 {
        height: 220px;
    }

    .about-img2 {
        margin-top: 20px;
    }

    .about-counter {
        padding: 20px;
    }

    .about-counter h3 {
        font-size: 32px;
    }
}

/*about css end*/

/* Mission Vision Strength Section css*/
.product-cat-tab .nav-link1 {
    border: 1px solid #dbeafe;
    background: #fff;
    color: #0046af;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.product-cat-tab .nav-link1.active {
    background: #0046af;
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.tab-pane .card {
    border: 1px solid #d9ecff !important;
    border-radius: 24px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

.tab-pane .card-body {
    padding: 45px !important;
}

.bg-danger-subtle {
    background: #eef7ff !important;
}

.bg-danger-subtle1,
.tab-pane .card .card-body .card-body {
    background: #eef7ff !important;
}

.text-radish-brown {
    color: #5f6368;
    line-height: 1.8;
    font-size: 15px;
}

.tis {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef7ff !important;
    border-radius: 20px !important;
    color: #0046af !important;
    flex-shrink: 0;
}

.tab-pane .row .card {
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 20px !important;
    transition: 0.4s ease;
    height: 100%;
}

.tab-pane .row .card .card-body {
    background: #f7f7f7 !important;
    border-radius: 20px !important;
    padding: 30px 25px !important;
    transition: 0.4s ease;
    border: 1px solid transparent;
}

.tab-pane .row .card:hover .card-body {
    transform: translateY(-5px);
    border-color: #b6dcff;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.10);
}

.tab-pane .row .card i {
    color: #0046af !important;
    font-size: 34px !important;
}

.tab-pane .row .card h6 {
    font-size: 18px;
    margin-top: 18px !important;
    margin-bottom: 10px;
    color: #1f2937;
}

.tab-pane .row .card p {
    margin-bottom: 0;
    color: #5f6368;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media(max-width:768px) {

    .tab-pane .card-body {
        padding: 25px !important;
    }

    .product-cat-tab {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .product-cat-tab .nav-link1 {
        white-space: nowrap;
        font-size: 14px;
        padding: 10px 18px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        text-align: center;
    }

    .tis {
        margin: auto;
    }

    .tab-pane .row .card .card-body {
        padding: 25px 20px !important;
    }
}

/*vision & mission css end*/

/* Our Journey css star*/
.timeline {
    position: relative;
    max-width: 1100px;
    margin: 70px auto 0;
    padding: 20px 0;
}

/* Center Line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #bfe0ff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 20px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
}

/* Left */
.timeline-item.left {
    left: 0;
    text-align: right;
}

/* Right */
.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* Timeline Content */
.timeline-content {
    position: relative;
    background: transparent;
    padding: 10px 15px;
}

/* Timeline Icon */
.timeline-icon {
    position: absolute;
    top: 35px;
    right: -22px;
    width: 44px;
    height: 44px;
    background: #0046af;
    border-radius: 50%;
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 5px solid #fff;
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.25);
}

.timeline-item.right .timeline-icon {
    left: -22px;
}

/* Year */
.timeline-content .year {
    display: inline-block;
    background: #dff0ff;
    color: #0046af;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

/* Heading */
.timeline-content h5 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

/* Paragraph */
.timeline-content p {
    color: #5f6368;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 0;
    max-width: 370px;
}

/* Alignment */
.timeline-item.left .timeline-content p {
    margin-left: auto;
}

.timeline-item.right .timeline-content p {
    margin-right: auto;
}

/* Space Between Items */
.timeline-item {
    margin-bottom: 40px;
}

/* Hover Effect */
.timeline-content {
    transition: 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px) {

    .timeline::after {
        left: 25px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-icon {
        left: 4px !important;
        right: auto;
    }

    .timeline-item.left .timeline-content p,
    .timeline-item.right .timeline-content p {
        margin: 0;
        max-width: 100%;
    }

    .timeline-content h5 {
        font-size: 22px;
    }

    .timeline-content p {
        font-size: 15px;
    }
}

/* =========================
   EXTRA DESIGN POLISH
========================= */
/*
.section-title{
    font-size: 48px;
    font-weight: 800;
    color: #111827;
}*/

.subheading {
    color: #5f6368;
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

@media(max-width:768px) {

    .section-title {
        font-size: 34px;
    }

    .subheading {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* Our Journey css end*/

/*International Exposure css start*/
body {
    overflow-x: hidden;
}

.service-card1 {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: 0.5s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    position: relative;
    padding: 20px 20px;
}

.section-tag {
    background: #0d6efd15;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/*.section-title{
   font-size:42px;
   font-weight:800;
   color:#0b1c39;
}*/

.section-text {
    font-size: 17px;
    line-height: 32px;
    color: #6c757d;
}

/*.btn-primary-custom{
   background:#0d6efd;
   color:#fff;
   padding:14px 32px;
   border-radius:50px;
   text-decoration:none;
   font-weight:600;
   transition:0.4s;
}

.btn-primary-custom:hover{
   background:#081f4d;
   color:#fff;
}

.btn-outline-custom{
   border:2px solid #fff;
   color:#fff;
   padding:14px 32px;
   border-radius:50px;
   text-decoration:none;
   font-weight:600;
   margin-left:10px;
   transition:0.4s;
}

.btn-outline-custom:hover{
   background:#fff;
   color:#000;
}*/

.global-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* ===========================
FEATURE BOX
=========================== */

.feature-box {
    background: #fff;
    padding: 18px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: #0046af;
    font-size: 22px;
}

/* ===========================
COUNTRY CARD
=========================== */

.global-presence-section {
    background: #f7faff;
}

.country-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-10px);
}

.country-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

/* ===========================
COUNTER SECTION
=========================== */

.counter-section {
    background: #081f4d;
}

.counter-box h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 800;
}

.counter-box p {
    color: #d9d9d9;
    font-size: 18px;
}

/* ===========================
CTA SECTION
=========================== */

.cta-box {
    background: linear-gradient(135deg, #0d6efd, #081f4d);
    padding: 40px 40px;
    border-radius: 30px;
}

.cta-box h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
}

.cta-box p {
    color: #d9d9d9;
    font-size: 18px;
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px) {

    .hero-title {
        font-size: 45px;
    }

    .section-title {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .international-hero {
        min-height: 85vh;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .btn-outline-custom {
        margin-left: 0;
        /*margin-top: 15px;*/
        display: inline-block;
    }

}

/*IE css end*/

/*Contact us Page Css Start*/
.contact-section {
    background: #f8f9fa;
    overflow: hidden;
}

/* Heading */
.contact-subtitle {
    color: #176e54;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-title,
.form-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-top: 10px;
}

/* Contact Cards */
.contact-card1 {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

.icon-box {
    width: 75px;
    height: 75px;
    margin: auto;
    background: #0046af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    color: #fff;
    font-size: 28px;
}

.contact-card1 h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card1 p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.cnt a {
    margin: 0;
    color: #666;
    line-height: 1.8;
    text-decoration: none;
}

/* Form Area */
.contact-form-wrapper {
    background: #eef2f7;
}

.custom-input {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding-left: 20px;
    box-shadow: none !important;
}

textarea.custom-input {
    height: auto;
    padding-top: 15px;
}

.custom-input:focus {
    border-color: #ff4d5a;
}

.contact-btn {
    background: #0c1b4d;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    border: 1px solid #1F7DBA;
}

.contact-btn:hover {
    background: #ff6a00;
    border-color: #ff6a00;
    color: #fff;
    transform: translateY(-2px);
}


/* Map */
.map-area iframe {
    display: block;
    width: 100%;
}

/* Responsive */
@media(max-width:768px) {

    .contact-title,
    .form-title {
        font-size: 28px;
    }

    .contact-card {
        padding: 25px 20px;
    }
}

/*Contact us Page Css End*/

/*Services page css start*/
.blog-section {
    background: #f3f6fb;
    padding: 100px 0;
}

.blog-subtitle {
    color: #176e54;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}

.blog-card {
    background: #fff;
    overflow: hidden;
    position: relative;
    transition: all .45s ease;
    border-radius: 12px;
    height: 530px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all .6s ease;
}

/* Image Zoom */
.blog-card:hover .blog-img img {
    transform: scale(1.1) rotate(1deg);
}

/* Overlay Animation */
.blog-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.blog-card:hover .blog-img::before {
    opacity: 1;
}

/* ================= DATE ================= */

.blog-date {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #176e54;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    transition: .4s;
    border-radius: 6px;
}

.blog-card:hover .blog-date {
    background: #000;
    transform: translateY(-5px);
}

/* ================= CONTENT ================= */

.blog-content {
    padding: 28px;
    transition: .4s;
}

.blog-card:hover .blog-content {
    transform: translateY(-5px);
}

/* ================= META ================= */

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #777;
    font-size: 14px;
}

.blog-meta i {
    color: #176e54;
    margin-right: 6px;
}

.text-danger {
    color: #0c1b4d !important;
}

/* ================= TITLE ================= */

.blog-content h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 15px;
    transition: .4s;
    cursor: pointer;
}

.blog-card:hover .blog-content h4 {
    color: #0046af;
}

/* ================= TEXT ================= */

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ================= BUTTON ================= */

.read-btn {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* ================= RESPONSIVE ================= */

@media(max-width:991px) {
    .blog-content h4 {
        font-size: 24px;
    }
}

@media(max-width:767px) {


    .blog-content h4 {
        font-size: 22px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(9 60 88) !important;
}

/*Services page css start*/


/*Services-details page css start*/
.service-sidebar {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    padding: 30px;
    margin: 0;
    color: #0c1b4d;

}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.service-item:hover {
    background: #f5f5f5;
    padding-left: 38px;
}

.service-item.active {
    background: #eaf4ff;
}

.service-icon img {
    width: 50px;
}

.service-item span {
    font-size: 18px;
    color: #222;
    font-weight: 600;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.details-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 570px;
    object-fit: cover;
}

.details-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.details-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.details-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0c1b4d;
    margin-bottom: 25px;
}

.details-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.feature-box1 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    height: 100%;
}

.feature-box1:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.feature-box1 h5 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-box1 p {
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

.details-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.theme-btn {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg, #0d6efd, #198754);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.theme-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.theme-btn-outline {
    display: inline-block;
    padding: 14px 34px;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.theme-btn-outline:hover {
    background: #0d6efd;
    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .details-content h2 {
        font-size: 36px;
    }

    .sidebar-title {
        font-size: 28px;
    }

}

@media(max-width:767px) {

    .details-content {
        padding: 25px;
    }

    .details-content h2 {
        font-size: 28px;
    }

    .details-content p {
        font-size: 16px;
    }

    .service-item {
        padding: 20px;
    }

    .service-item span {
        font-size: 16px;
    }

    .details-btns {
        flex-direction: column;
    }

}

/*Services-details page css end*/

/*Product page css start*/
/* =========================================================
   PRODUCT SECTION
========================================================= */
.products-section {
    background: #f8fbff;
}

.product-tag {
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.product-desc {
    max-width: 700px;
}

.product-card {
    background: #fff;
    /*    border-radius: 5px;*/
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s ease;
}
.serv{
   width: 100%;
    height: 550px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Hover only image */
.product-image:hover img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #162447, #1f4068, #0046af);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-content {
    padding: 28px 25px;
}

.product-content h4 {
    margin-bottom: 15px;
}

.product-content h4 a {
    text-decoration: none;
    color: #0c1b4d;
    font-size: 23px;
    font-weight: 700;
    transition: 0.3s;
}

.product-content h4 a:hover {
    color: #0046af;
}

.product-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
}

/* Mobile */
@media(max-width:768px) {

    .product-content {
        padding: 22px 18px;
    }

    .product-content h4 a {
        font-size: 20px;
    }

    .product-image img {
        height: 220px;
    }

}

/*Product page css end*/

/*product-details css start*/
/* =========================
   PRODUCT DETAILS PAGE
========================= */

.product-details-page {
    background: #f5f8fc;
    overflow: hidden;
}

/* SIDEBAR */

.product-sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    top: 100px;
}

.sidebar-header {
    margin-bottom: 25px;
}

.mini-title {
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 8px;
    color: #111;
}

.product-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-category-list li {
    margin-bottom: 12px;
}

.product-category-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 15px 18px;
    border-radius: 14px;
    background: #f8fafc;
    color: #222;
    font-weight: 600;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-category-list li a i {
    font-size: 18px;
}

.product-category-list li a:hover,
.product-category-list li a.active {
    background: #0046af;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

/* CONTACT BOX */

.sidebar-contact {
    margin-top: 35px;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.sidebar-contact h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-contact p {
    font-size: 15px;
    opacity: 0.9;
}

.sidebar-btn {
    display: inline-block;
    margin-top: 15px;
    background: #fff;
    color: #0d6efd;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.sidebar-btn:hover {
    transform: translateY(-3px);
    background: #111;
    color: #fff;
}

/* PRODUCT CARD */

.product-detail-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.product-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.product-image {
    position: relative;
    overflow: hidden;
    /*    border-radius:24px;*/
}

.product-image1 img {
    width: 100%;
    transition: 0.5s ease;
    border-radius: 24px;
    height: 400px;
    object-fit: cover;
}

.product-detail-card:hover .product-image img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.image-overlay span {
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-title1 {
    color: #FFF;
}

/* CONTENT */

.product-tag {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.product-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0c1b4d;
    margin-bottom: 18px;
}

.product-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* INFO BOX */

.info-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: 0.4s;
}

.info-box:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.box-title i {
    color: #0d6efd;
    font-size: 18px;
}

.box-title h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.info-box ul {
    padding-left: 18px;
    margin: 0;
}

.info-box ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* BUTTONS */

.product-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

.product-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}

.outline-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.outline-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .product-sidebar {
        position: relative !important;
        top: 0;
    }

    .product-content h2 {
        font-size: 30px;
    }

    .product-detail-card {
        padding: 25px;
    }

}

@media(max-width:767px) {

    .product-content h2 {
        font-size: 26px;
    }

    .sidebar-header h3 {
        font-size: 24px;
    }

    .product-buttons {
        flex-direction: column;
    }

    .product-btn,
    .outline-btn {
        width: 100%;
        text-align: center;
    }

    .product-detail-card {
        padding: 20px;
    }

    .info-box {
        padding: 20px;
    }

}

/*product-details css end*/


/*why choose css start*/
/* Why Choose Section Start */

.why-choose-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.choose-tag {
    background: rgba(11, 99, 182, 0.1);
    color: #0b63b6;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    font-size: 15px;
}

.choose-desc {
    max-width: 750px;
    line-height: 1.8;
}

.choose-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
    overflow: hidden;
    z-index: 1;
}

.choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            #0b63b6,
            #084b8a);
    transition: all 0.5s ease;
    z-index: -1;
}

.choose-card:hover::before {
    left: 0;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.choose-icon {
    width: 75px;
    height: 75px;
    background: #eaf4fb;
    color: #0b63b6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.choose-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.choose-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.choose-card:hover h5,
.choose-card:hover p {
    color: #fff;
}

.choose-card:hover .choose-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}

/* Responsive */

@media(max-width:768px) {

    .choose-card {
        padding: 30px 22px;
    }

    .choose-icon {
        width: 65px;
        height: 65px;
        font-size: 25px;
    }

}

/* Why Choose Section End */


/* Industries Section Start */
.industries-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.industry-tag {
    background: rgba(11, 99, 182, 0.1);
    color: #0b63b6;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
}

.industry-desc {
    max-width: 760px;
    line-height: 1.8;
}

.industry-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px 25px;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
    z-index: 1;
}

.industry-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg,
            #0b63b6,
            #084b8a);
    transition: all 0.5s ease;
    z-index: -1;
}

.industry-card:hover::before {
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.industry-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #eaf4fb;
    color: #0b63b6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.industry-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.industry-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
    transition: all 0.4s ease;
}

.industry-card:hover h5,
.industry-card:hover p {
    color: #fff;
}

.industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(1.1) rotate(-6deg);
}

/* Responsive */

@media(max-width:991px) {

    .industry-card {
        padding: 30px 22px;
    }

}

@media(max-width:767px) {

    .industry-card {
        padding: 28px 20px;
    }

    .industry-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .industries-section h2 {
        font-size: 30px;
    }

}

/* Industries Section End */

/*Our Expertise css start*/
.expertise-section{
    background: #f7fbff;
    position: relative;
    overflow: hidden;
}

.section-title h2{
    font-size: 42px;
    font-weight: 800;
    color: #0b1c39;
}

.section-title p{
    max-width: 760px;
    margin: 15px auto 0;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
}

.expertise-tag{
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
}

/* Card */

.expertise-card{
    background: #fff;
    border-radius: 22px;
    padding: 20px 23px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}


.expertise-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(13,110,253,0.15);
    border-color: rgba(13,110,253,0.15);
}

.expertise-card:hover::before{
    transform: scale(1.3);
}

.icon-box{
    width: 72px;
    height: 72px;
    background: #0046af;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 12px 25px rgba(13,110,253,0.25);
}

.icon-box i{
    color: #fff;
    font-size: 30px;
}

.expertise-card h5{
    font-size: 22px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 15px;
    text-align: center;
}

.expertise-card p{
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
}

/* Responsive */

@media(max-width:991px){

    .section-title h2{
        font-size: 34px;
    }

    .expertise-card{
        padding: 30px 24px;
    }

}

@media(max-width:767px){

    .section-title h2{
        font-size: 28px;
    }

    .section-title p{
        font-size: 15px;
    }

    .expertise-card h5{
        font-size: 20px;
    }

}
/*Our Expertise css end*/

/*Leadership css start*/
.leadership-section{
    background: linear-gradient(to bottom,#ffffff,#f5f9ff);
    overflow: hidden;
    position: relative;
}

.leadership-wrapper{
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #edf2f7;
}

/* Image */

.leadership-image{
    position: relative;
}

.leadership-image img{
    width: 100%;
    height: 380px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Floating Badge */

.experience-badge{
    position: absolute;
    bottom: 25px;
    left: -20px;
    background: linear-gradient(135deg,#0d6efd,#4ea3ff);
    padding: 20px 25px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 12px 30px rgba(13,110,253,0.3);
}

.experience-badge h4{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-badge span{
    font-size: 14px;
    font-weight: 500;
}

/* Content */

.leadership-tag{
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/*.leadership-content h2{
    font-size: 44px;
    font-weight: 800;
    color: #0b1c39;
    line-height: 1.3;
    margin-bottom: 25px;
}*/

.leadership-content p{
    color: #6c757d;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

/* Features */

.leadership-features{
    margin-top: 35px;
}

.feature-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 20px;
    background: #f8fbff;
    border-radius: 18px;
    margin-bottom: 18px;
    transition: all .3s ease;
}

.feature-box:hover{
    transform: translateX(8px);
    background: #eef5ff;
}

.feature-box i{
    width: 48px;
    height: 48px;
    background: #0046af;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(13,110,253,0.2);
}

.feature-box h5{
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #0b1c39;
}

.feature-box span{
    color: #6c757d;
    font-size: 15px;
}

/* Author */

.leadership-author{
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.leadership-author img{
    max-width: 120px;
}

.author-info h4{
    font-size: 22px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 5px;
}

.author-info span{
    color: #0d6efd;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive */

@media(max-width:1199px){

    .leadership-content h2{
        font-size: 38px;
    }

}

@media(max-width:991px){

    .leadership-wrapper{
        padding: 40px;
    }

    .leadership-content h2{
        font-size: 34px;
    }

    .experience-badge{
        left: 20px;
    }

}

@media(max-width:767px){

    .leadership-wrapper{
        padding: 25px;
        border-radius: 20px;
    }

    .leadership-content h2{
        font-size: 28px;
    }

    .leadership-content p{
        font-size: 15px;
    }

    .feature-box{
        flex-direction: column;
    }

    .leadership-author{
        flex-direction: column;
        align-items: flex-start;
    }

    .experience-badge{
        padding: 16px 20px;
    }

    .experience-badge h4{
        font-size: 24px;
    }

}
/*Leadership css end*/

/* =========================
   RECOGNITION SECTION
========================= */

.recognition-section{
    background: linear-gradient(to bottom,#f7fbff,#eef5ff);
    position: relative;
    overflow: hidden;
}

.recognition-wrapper{
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #edf2f7;
}

/* Tag */

.recognition-tag{
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: .4px;
}

/* Content */

/*.recognition-content h2{
    font-size: 44px;
    font-weight: 800;
    color: #0b1c39;
    line-height: 1.3;
    margin-bottom: 25px;
}*/

.recognition-content p{
    color: #6c757d;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* Feature Box */

.recognition-box{
    background: #f8fbff;
    border-radius: 22px;
    padding: 25px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
    transition: all .4s ease;
    border: 1px solid transparent;
}

.recognition-box:hover{
    transform: translateY(-8px);
    background: #fff;
    border-color: rgba(13,110,253,0.15);
    box-shadow: 0 15px 35px rgba(13,110,253,0.12);
}

.recognition-box i{
    width: 48px;
    height: 48px;
    background: #0046af;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 12px 25px rgba(13,110,253,0.25);
}

.recognition-box h5{
    font-size: 20px;
    font-weight: 700;
    color: #0c1b4d;
    margin-bottom: 8px;
}

.recognition-box span{
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
}

/* Image */

.recognition-image{
    position: relative;
}

.recognition-image img{
    width: 100%;
    height: 330px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Badge */

.recognition-badge{
    position: absolute;
    bottom: 25px;
    left: -20px;
    background: #0046af;
    padding: 22px 28px;
    border-radius: 22px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(13,110,253,0.3);
}

.recognition-badge h4{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 5px;
}

.recognition-badge span{
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */

@media(max-width:1199px){

    .recognition-content h2{
        font-size: 38px;
    }

}

@media(max-width:991px){

    .recognition-wrapper{
        padding: 40px;
    }

    .recognition-content h2{
        font-size: 32px;
    }

    .recognition-badge{
        left: 20px;
    }

}

@media(max-width:767px){

    .recognition-wrapper{
        padding: 25px;
        border-radius: 20px;
    }

    .recognition-content h2{
        font-size: 28px;
    }

    .recognition-content p{
        font-size: 15px;
    }

    .recognition-box{
        flex-direction: column;
    }

    .recognition-badge{
        padding: 18px 22px;
    }

    .recognition-badge h4{
        font-size: 24px;
    }

}
/*Recognition css end*/

/*Product Advantages css start*/
.advantages-section{
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.section-title .sub-title{
    display: inline-block;
    background: #e8f2ff;
    color: #0b63b6;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2{
    font-size: 42px;
    font-weight: 700;
    color: #0b1b35;
    margin-bottom: 15px;
}

.section-title p{
    max-width: 720px;
    margin: auto;
    color: #6c757d;
    line-height: 1.8;
}

.advantage-card{
    background: #fff;
    border-radius: 20px;
    padding: 10px 17px;
    height: 100%;
    position: relative;
    transition: 0.4s ease;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.advantage-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #0b63b6;
    transform: scaleX(0);
    transition: 0.4s ease;
}

.advantage-card:hover::before{
    transform: scaleX(1);
}

.advantage-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(11,99,182,0.12);
}

.advantage-number{
    font-size: 55px;
    font-weight: 800;
    color: rgba(11,99,182,0.08);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.advantage-card h5{
    font-size: 21px;
    font-weight: 700;
    color: #0b1b35;
    margin-bottom: 15px;
    line-height: 1.4;
}

.advantage-card p{
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive */

@media(max-width:991px){

    .section-title h2{
        font-size: 34px;
    }

    .advantage-card{
        padding: 30px 24px;
    }
}

@media(max-width:767px){

    .section-title h2{
        font-size: 28px;
    }

    .advantage-number{
        font-size: 42px;
    }

    .advantage-card h5{
        font-size: 18px;
    }
}
/*Product Advantages css end*/

/*Product detaiul(feature & benefits)*/
/*=================================
 Product Details Card
==================================*/

.product-details-card{
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

.product-header{
    margin-bottom: 35px;
}

.product-tag{
    display: inline-block;
    background: #eaf4ff;
    color: #0b63b6;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-header h2{
    font-size: 38px;
    font-weight: 700;
    color: #0b1b35;
    margin-bottom: 15px;
}

.product-header p{
    color: #6c757d;
    line-height: 1.8;
    font-size: 16px;
    max-width: 800px;
}

.details-box{
    background: #f8fbff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    border: 1px solid #edf2f7;
    transition: 0.4s ease;
}
.details-box1{
    background: #f8fbff;
    border-radius: 18px;
    padding: 30px;
    height: 300px;
    border: 1px solid #edf2f7;
    transition: 0.4s ease;
}

.details-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11,99,182,0.08);
}

.details-box h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #0b1b35;
    position: relative;
    padding-bottom: 12px;
}

.details-box h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: #0b63b6;
    border-radius: 10px;
}

.details-list{
    padding: 0;
    margin: 0;
    list-style: none;
}

.details-list li{
    position: relative;
    /*padding-left: 28px;*/
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

.details-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /*background: #0b63b6;*/
}

/* Responsive */

@media(max-width:991px){

    .product-details-card{
        padding: 30px;
        margin-top: 30px;
    }

    .product-header h2{
        font-size: 30px;
    }
}

@media(max-width:767px){

    .product-details-card{
        padding: 24px;
    }

    .product-header h2{
        font-size: 26px;
    }

    .details-box{
        padding: 24px;
    }

    .details-box h4{
        font-size: 21px;
    }
}
/*End css*/

/*service(why choose) css start*/
/*==================================
 Why Our Services Section
===================================*/

.why-service-section{
    background: #f8fbff;
}

.section-heading .mini-title{
    display: inline-block;
    background: #e9f2ff;
    color: #0b63b6;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-heading h2{
    font-size: 44px;
    font-weight: 700;
    color: #0b1b35;
    margin-bottom: 15px;
}

.section-heading p{
    max-width: 720px;
    margin: auto;
    color: #6c757d;
    line-height: 1.8;
}

/* Timeline Layout */

.service-line-wrapper{
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding-left: 80px;
}

.vertical-line{
    position: absolute;
    left: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #0b63b6;
    border-radius: 10px;
}

.service-item{
    position: relative;
    background: #fff;
    padding: 28px 30px;
    border-radius: 18px;
    margin-bottom: 28px;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: 0.4s ease;
}

.service-item::before{
    content: "";
    position: absolute;
    left: -71px;
    top: 35px;
    width: 18px;
    height: 18px;
    background: #0b63b6;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #dcecff;
}

.service-item:hover{
    transform: translateX(8px);
    box-shadow: 0 18px 40px rgba(11,99,182,0.10);
}

.service-item h4{
    font-size: 18px;
    font-weight: 700;
    color: #0b1b35;
    margin-bottom: 12px;
}

.service-item p{
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
}

/* Responsive */

@media(max-width:991px){

    .section-heading h2{
        font-size: 34px;
    }
}

@media(max-width:767px){

    .section-heading h2{
        font-size: 28px;
    }

    .service-line-wrapper{
        padding-left: 50px;
    }

    .service-item{
        padding: 24px 22px;
    }

    .service-item h4{
        font-size: 18px;
    }

    .service-item::before{
        left: -43px;
    }
}
/*End css*/

/*====================================
 Global Section
=====================================*/

.global-section{
    background: #f8fbff;
}

.section-heading .mini-title{
    display: inline-block;
    background: #e9f2ff;
    color: #0b63b6;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-heading h2{
    font-size: 42px;
    font-weight: 700;
    color: #0b1b35;
    margin-bottom: 15px;
}

.section-heading p{
    max-width: 720px;
    margin: auto;
    color: #6c757d;
    line-height: 1.8;
}

/* Box Design */

.global-box{
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.global-box::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #0b63b6;
}

.global-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11,99,182,0.10);
}

.box-header{
    margin-bottom: 25px;
}

.box-header h3{
    font-size: 28px;
    font-weight: 700;
    color: #0b1b35;
    margin-bottom: 0;
}

/* List */

.global-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.global-list li{
    position: relative;
    padding-left: 26px;
    margin-bottom: 18px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

.global-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0b63b6;
}

/* Responsive */

@media(max-width:991px){

    .section-heading h2{
        font-size: 34px;
    }

    .global-box{
        padding: 30px;
    }

    .box-header h3{
        font-size: 24px;
    }
}

@media(max-width:767px){

    .section-heading h2{
        font-size: 28px;
    }

    .global-box{
        padding: 24px;
    }

    .box-header h3{
        font-size: 21px;
    }
}
/*End css*/

/*cnt form css start*/
/* Main Section */
.inquiry-area{
    background: linear-gradient(to right,#f4f8fc,#eef5ff);
}

/* Left Side */
.touch-box{
/*    background: #0d5db8;*/
    background: #0046af;
    padding: 45px;
    border-radius: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 715px !important;
}

.mini-title{
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.main-heading{
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.touch-text{
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 35px;
}

/* Contact Cards */
.contact-card{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon{
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.contact-icon i{
    font-size: 22px;
}

.contact-card:hover .contact-icon{
    background: #fff;
    color: #0d5db8;
    transform: translateY(-4px);
}

.contact-card h6{
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-card span{
    font-size: 14px;
    color: rgba(255,255,255,0.82);
}

/* Social Icons */
.media-icons{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.media-icons a{
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.4s;
}

.media-icons a:hover{
    background: #fff;
    color: #0d5db8;
    transform: translateY(-5px) rotate(5deg);
}

/* Right Side */
.form-shell{
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    height: 100%;
}

/* Labels */
.field-title{
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #222;
}

/* Inputs */
.custom-field,
.custom-dropdown,
.custom-textarea{
    width: 100%;
    border: 1px solid #d8e3f1;
    border-radius: 14px;
    padding: 14px 18px;
    transition: 0.3s;
    outline: none;
}

.custom-field,
.custom-dropdown{
    height: 55px;
}

.custom-textarea{
    resize: none;
}

.custom-field:focus,
.custom-dropdown:focus,
.custom-textarea:focus{
    border-color: #0d5db8;
    box-shadow: 0 0 0 4px rgba(13,93,184,0.08);
}

/* Button */
.send-btn{
    border: none;
    background: #0d5db8;
    color: #fff;
    padding: 15px 30px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.send-btn:hover{
    background: #08498f;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:991px){

    .touch-box,
    .form-shell{
        padding: 35px;
    }

    .main-heading{
        font-size: 30px;
    }
}

@media(max-width:576px){

    .touch-box,
    .form-shell{
        padding: 25px;
        border-radius: 18px;
    }

    .main-heading{
        font-size: 25px;
    }

    .send-btn{
        width: 100%;
        justify-content: center;
    }
}
.cnt_img{
    border-radius: 10px;
    object-fit: cover;
}
.danger{
    color: red;
}
/*end css*/

/*whatsapp btn css*/
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}
.whatsapp {
  position: relative;
  width:65px;
  height:65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: shadow-pulse 1.5s infinite ease-out;
  cursor: pointer;
  transition: all 0.3s ease;
}
.whatsapp:hover {
  transform: scale(1.3);
  background: linear-gradient(135deg, #128C7E, #25D366);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(37, 211, 102, 1);
}
.whatsapp img {
  width: 45px;
  height: 45px;
}
.tooltip {
  position: absolute;
  bottom: 100px;
  right: -30px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transform: translateY(20px);
}
.whatsapp:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@keyframes shadow-pulse {
  0% {
        box-shadow: 0 0 0 0 rgb(29 183 111);
}
 100% {
       box-shadow: 0 0 0 35px rgba(93, 171, 3, 0);
      }
}
/*css end*/

/*preloader css*/
#page {
  display: none;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading img {
  width: 220px;
}


.custom-navbar {
    position: sticky !important;
    top: 0;
    z-index: 1050;
    width: 100%;
    background: #fff;
}

/*end css*/

.global {
    padding-left: 0rem;
}

.error{
    color:red!important;
}

.it-capabilities{
    padding:100px 0;
    background:#f7f9fc;
    font-family:'Inter',sans-serif;
}

/* Container */
.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* Section Header */
.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header .subtitle{
    color:#ff6a00;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-header h2{
    color:#0046af;
    font-size:35px;
    font-weight:800;
    line-height:1.2;
    margin:15px 0;
}

.section-header p{
    max-width:850px;
    margin:auto;
    color:#4b5563;
    font-size:18px;
    line-height:1.8;
}

/* Grid */
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

/* Cards */
.service-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px;
    position:relative;
    overflow:hidden;
    border:1px solid #edf1f7;
    box-shadow:0 10px 30px rgba(12,27,77,0.08);
    transition:all 0.4s ease;
}

/* Top Accent Line */
.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    /*background:linear-gradient(90deg,#0046af,#0046af);*/
}

/* Hover Effect */
.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(12,27,77,0.15);
}

.service-card:hover h3{
    color:#ff6a00;
}

/* Icon */
.icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    font-size:32px;
    margin-bottom:25px;
    background:rgba(255,106,0,0.1);
    color:#ff6a00;
}

/* Content */
.service-card h3{
    color:#0046af;
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
    transition:0.3s;
}

.tagline{
    color:#ff6a00;
    font-weight:600;
    margin-bottom:18px;
}

.service-card p{
    color:#4b5563;
    line-height:1.8;
    margin-bottom:20px;
}

.service-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:#374151;
    line-height:1.6;
}

.service-card ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#ff6a00;
    font-weight:700;
}

/* CTA */
.capability-cta{
    margin-top:80px;
    text-align:center;
    background:linear-gradient(135deg,#0046af,#162b75);
    padding:60px;
    border-radius:24px;
    color:#ffffff;
}

.capability-cta h3{
    font-size:36px;
    margin-bottom:15px;
}

.capability-cta p{
    max-width:700px;
    margin:auto;
    opacity:0.9;
    line-height:1.8;
}

.capability-cta .btn{
    display:inline-block;
    margin-top:25px;
    background:#ff6a00;
    color:#ffffff;
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.capability-cta .btn:hover{
    background:#ffffff;
    color:#0046af;
}

.gain-section{
    background:#f7f9fc;
    font-family:'Inter',sans-serif;
}

/* Title */
.gain-title{
    font-size:42px;
    font-weight:800;
    color:#0046af;
}

.gain-title span{
    color:#ff6a00;
}

.gain-subtitle{
    max-width:850px;
    margin:15px auto;
    color:#4b5563;
    font-size:17px;
    line-height:1.7;
}

.title-line{
    width:90px;
    height:4px;
    background:linear-gradient(90deg,#ff6a00,#0046af);
    margin:10px auto 0;
    border-radius:10px;
}

/* CARD - NEW PREMIUM STYLE */
.gain-card{
    background:#ffffff;
    border-radius:20px;
    padding:32px 28px;
    height:100%;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(12,27,77,0.08);
    box-shadow:0 12px 30px rgba(12,27,77,0.08);
    transition:all 0.4s ease;
}

/* LEFT ACCENT BAR */
.gain-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:linear-gradient(180deg,#ff6a00,#0046af);
    transition:0.4s;
}

/* SOFT BACKGROUND GLOW */
.gain-card::after{
    content:'';
    position:absolute;
    top:-50%;
    right:-50%;
    width:200px;
    height:200px;
    background:radial-gradient(circle, rgba(255,106,0,0.12), transparent 70%);
    opacity:0;
    transition:0.4s;
}

/* HOVER EFFECT */
.gain-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(12,27,77,0.18);
}

.gain-card:hover::after{
    opacity:1;
}

.gain-card:hover::before{
    width:8px;
}

.gain-card:hover h5{
    color:#ff6a00;
}

/* TITLE */
.gain-card h5{
    font-size:21px;
    font-weight:800;
    color:#0c1b4d;
    margin-bottom:12px;
    transition:0.3s;
}

/* TEXT */
.gain-card p{
    color:#4b5563;
    font-size:15.5px;
    line-height:1.7;
    margin-bottom:0;
}

/* OPTIONAL ICON STYLE (if you want later) */
.gain-card .icon-badge{
    width:50px;
    height:50px;
    border-radius:14px;
    background:rgba(255,106,0,0.12);
    color:#ff6a00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:15px;
}

/* RESPONSIVE */
@media (max-width:768px){
    .gain-title{
        font-size:32px;
    }
}









.msbve-section{
    background:#f8faff;
}

/* Heading */
.section-badge{
    background:#ff6a00;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
}

.section-title{
    font-size:35px;
    font-weight:800;
    color:#0046af;
    margin-bottom:15px;
}

.section-subtitle{
    color:#666;
    font-size:18px;
}

/* Cards */
.logo-box,
.content-card,
.section-box{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,70,175,.08);
}

.logo-box{
    border-top:5px solid #ff6a00;
}

.content-card h3{
    color:#0046af;
    font-weight:700;
    margin-bottom:20px;
}

.section-heading{
    margin-bottom:30px;
}

.section-heading h3{
    color:#0046af;
    font-size:32px;
    font-weight:800;
    position:relative;
    padding-bottom:15px;
}

.section-heading h3:after{
    content:"";
    width:80px;
    height:4px;
    background:#ff6a00;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

/* List */
.custom-list{
    list-style:none;
    padding:0;
    margin:0;
}

.custom-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    line-height:1.8;
}

.custom-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:24px;
    height:24px;
    background:#ff6a00;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:24px;
    font-size:13px;
    font-weight:700;
}

/* Objectives */
.objective-card{
    background:#fff;
    border-left:5px solid #ff6a00;
    padding:25px;
    border-radius:15px;
    height:100%;
    font-weight:600;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.objective-card:hover{
    transform:translateY(-8px);
    border-left-color:#0046af;
}

/* Services */
.service-card{
    background:#fff;
    padding:30px 20px;
    border-radius:18px;
    text-align:center;
    height:100%;
    transition:.4s;
    border-top:4px solid #ff6a00;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-10px);
    border-top-color:#0046af;
    box-shadow:0 15px 35px rgba(0,70,175,.15);
}

.service-card h5{
    color:#0046af;
    font-weight:700;
    margin-bottom:15px;
}

/* CTA */
.cta-box{
    background:linear-gradient(135deg,#0046af,#0066ff);
    color:#fff;
    padding:70px 40px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
}

.cta-box:before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:250px;
    height:250px;
    background:rgba(255,106,0,.15);
    border-radius:50%;
}

.cta-box h3{
    font-size:38px;
    font-weight:800;
    margin-bottom:20px;
    color:#fff;
}

.cta-box p{
    max-width:900px;
    margin:auto;
    margin-bottom:25px;
}

.cta-box .btn{
    background:#ff6a00;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.cta-box .btn:hover{
    background:#fff;
    color:#0046af;
}

/* Responsive */
@media(max-width:768px){

    .section-title{
        font-size:30px;
    }

    .section-heading h3{
        font-size:26px;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h3{
        font-size:28px;
    }
}












/* ==========================================
   AI TRAINING & CAPACITY BUILDING
========================================== */

.ai-training-section{
    background:#f5f8fd;
    position:relative;
    overflow:hidden;
}

/* Heading */

.ai-badge{
    display:inline-block;
    padding:12px 30px;
    background:rgba(0,70,175,0.08);
    color:#0046af;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-desc{
    max-width:900px;
    margin:auto;
    color:#6c757d;
    font-size:18px;
    line-height:1.8;
}

/* Intro Card */

.intro-card{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border:1px solid #edf2f7;
    position:relative;
    overflow:hidden;
}

.intro-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#ff6a00;
}

.intro-card h3{
    color:#0046af;
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
}

.intro-card p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.ai-main-icon{
    font-size:140px;
    color:#0046af;
    opacity:.15;
}

/* Sector Cards */

.sector-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border:1px solid #edf1f7;
    transition:.4s;
}

.sector-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.sector-title{
    display:flex;
    align-items:center;
    font-size:28px;
    font-weight:800;
    color:#002c72;
    margin-bottom:25px;
}

.sector-title i{
    width:60px;
    height:60px;
    line-height:60px;
    text-align:center;
    border-radius:15px;
    background:#0046af;
    color:#fff;
    margin-right:15px;
    font-size:22px;
}

.sector-card p{
    color:#666;
    line-height:1.8;
}

.sector-card h5{
    color:#0046af;
    font-weight:700;
    margin-bottom:20px;
}

/* Lists */

.custom-list{
    list-style:none;
    padding:0;
    margin:0;
}

.custom-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:14px;
    color:#444;
    line-height:1.7;
}

.custom-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#ff6a00;
    color:#fff;
    text-align:center;
    line-height:22px;
    font-size:12px;
    font-weight:700;
}

/* Benefit Box */

.benefit-box{
    background:linear-gradient(135deg,#0046af,#006eff);
    color:#fff;
    padding:35px;
    border-radius:20px;
    height:100%;
}

.benefit-box h5{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.benefit-box ul{
    padding-left:18px;
    margin:0;
}

.benefit-box li{
    margin-bottom:12px;
    line-height:1.7;
}

/* Section Headings */

.training-models h3,
.why-us h3{
    color:#002c72;
    font-size:38px;
    font-weight:800;
    margin-bottom:40px;
}

/* Training Models */

.model-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
    border-top:4px solid #ff6a00;
    font-weight:700;
    color:#333;
}

.model-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Why Choose */

.why-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    border-top:4px solid #0046af;
    font-weight:700;
    color:#333;
    height:100%;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* CTA Section */

.ai-cta{
    background:linear-gradient(135deg,#002c72,#0046af);
    padding:80px 50px;
    border-radius:30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.ai-cta::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.ai-cta h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.ai-cta p{
    max-width:900px;
    margin:0 auto 25px;
    font-size:18px;
    line-height:1.9;
    position:relative;
    z-index:2;
}

.btn-ai{
    background:#ff6a00;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    transition:.4s;
    position:relative;
    z-index:2;
}

.btn-ai:hover{
    background:#fff;
    color:#0046af;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .section-title{
        font-size:38px;
    }

    .sector-title{
        font-size:24px;
    }

    .intro-card{
        padding:35px;
    }

    .sector-card{
        padding:30px;
    }

    .ai-main-icon{
        margin-top:25px;
        font-size:100px;
    }

    .ai-cta{
        padding:60px 30px;
    }

    .ai-cta h2{
        font-size:34px;
    }
}

@media(max-width:767px){

    .section-title{
        font-size:30px;
    }

    .section-desc{
        font-size:16px;
    }

    .sector-title{
        font-size:20px;
        flex-wrap:wrap;
        line-height:1.5;
    }

    .sector-title i{
        margin-bottom:10px;
    }

    .intro-card{
        padding:25px;
    }

    .sector-card{
        padding:25px;
    }

    .training-models h3,
    .why-us h3{
        font-size:28px;
    }

    .ai-main-icon{
        font-size:80px;
    }

    .ai-cta h2{
        font-size:28px;
    }

    .ai-cta{
        padding:50px 20px;
    }
}





.error{
    color:red!important;
}