body {
    margin: 0;
    font-family: "Outfit", sans-serif !important;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
}
.topbar {
    background-color: #f4f5fb;
    font-size: 14px;
}

.container {
    max-width: 1280px !important;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    gap: 10px;
}

/* Left scrolling */
.left {
    width: 40%;
    overflow: hidden;
}

.scroll-box {
    width: 100%;
    overflow: hidden;
}

.scroll-text {
    display: flex;
    white-space: nowrap;
    animation: scrollLeft 15s linear infinite;
}

.scroll-text span {
    margin-right: 40px;
    font-weight: 600;
    color: #0a0a0a;
}

/* Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Right section */
.right {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
/*mega menu start  */

/* NAV */
.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

/* MEGA MENU */
/* Mega Menu */
.mega-menu-1 {
    width: 1000px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Show on hover */
.mega-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Left menu */
.menu-item {
    padding: 12px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: 0.3s;
}

.menu-item:hover,
.menu-item.active {
    background: #e9f9ef;
    color: #1ba557;
    border-left: 3px solid #1ba557;
}

/* Right content */
.mega-content {
    display: none;
}

.mega-content.active {
    display: block;
}

.mega-content a {
    color: #374151;
    text-decoration: none;
    margin-bottom: 5px;
}

.mega-content a:hover {
    color: #1ba557;
}

/*mega menu end*/

.contact-btn {
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 30px;
    text-decoration: none;
    color: #0a0a0a;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icon size */
.contact-btn .icon {
    width: 16px;
    height: 16px;
}

/* Hover effect */
.contact-btn:hover {
    color: #1ba557 !important;
    border-color: #1ba557 !important;
    text-decoration: none;
}

.btns:hover {
    background-color: #e5e7eb;
}

/* WhatsApp */
.whatsapp {
    border-color: #25d366;
}

.whatsapp:hover {
    background-color: #25d366;
    color: #fff;
}

/* ========================= */
/* 📱 TABLET VIEW */
/* ========================= */
@media (max-width: 992px) {
    .left {
        width: 50%;
    }
    .right {
        width: 50%;
        gap: 6px;
    }
    .btns {
        padding: 4px 10px;
        font-size: 13px;
    }
}

/* ========================= */
/* 📱 MOBILE VIEW */
/* ========================= */
@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        height: auto;
        padding: 8px 0;
    }

    .left {
        width: 100%;
    }

    .right {
        width: 100%;
        justify-content: center;
        margin-top: 6px;
    }

    .btns {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* ========================= */
/* 📱 SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {
    .scroll-text span {
        font-size: 12px;
    }

    .btns {
        font-size: 11px;
        padding: 3px 7px;
    }
}

/* Navbar */
.navbar {
    background: #fff;
    border-bottom: 1px solid #f4f5fb;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow:
        0 1px 3px 0 var(--tw-shadow-color, #0000001a),
        0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    padding: 0px !important;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* height: 64px; */
}

/* Logo */
.logo img {
    height: 45px;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu .menu-link {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.nav-menu a:hover {
    color: #1ba557;
    text-decoration: none;
}

/* Hover underline */
.nav-menu .menu-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #1ba557;
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 70%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.nav-item:hover svg {
    transform: rotate(360deg); /* or 180deg if you want flip */
}

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}

/* Arrow smooth transition */
.arrow {
    transition: transform 0.3s ease;
    font-size: 13px;
}

/* 🔥 SAME arrow rotate on hover */
.nav-item:hover .arrow {
    transform: rotate(180deg);
}

/* Underline animation */
.underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #1ba557;
    transition: 0.3s;
}

.nav-item:hover .underline {
    width: 75%;
}
.contact-btn .flag-icon {
    width: 20px;
    height: 14px;
}
.color-blue:hover {
    color: rgb(0, 109, 231) !important;
    border-color: rgb(0, 109, 231) !important;
}

.hero-section {
    padding: 60px 15px;
}
.home-box {
    padding: 104px 0px 60px 0px;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background-color: rgba(27, 165, 87, 0.1);
    border: 1px solid rgb(27 165 87);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Hover effect */
.trusted-badge:hover {
    transform: scale(1.05);
}

/* Dot */
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1ba557;
    animation: colorPulse 2s infinite linear;
}

@keyframes colorPulse {
    0% {
        background-color: #1ba557; /* normal */
    }
    50% {
        background-color: #9aebbe; /* slightly lighter */
    }
    100% {
        background-color: #1ba557; /* back to normal */
    }
}
/* Text */
.trusted-badge p {
    font-size: 14px;
    font-weight: 600;
    color: #1ba557;
    margin: 0;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .trusted-badge {
        padding: 6px 14px;
    }

    .trusted-badge p {
        font-size: 14px !important;
    }
}
.center-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-heading {
    font-weight: 700;
    color: #101828;
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}
.main-heading-h2 {
    font-weight: 700;
    color: #101828;
    font-size: 44px;
    margin-bottom: 20px;
    text-align: center;
}

/* Highlight text */
.highlight {
    color: #1ba557;
    position: relative;
    display: inline-block;
}

.main-heading:hover .highlight::after {
    transform: scaleX(1);
}
.sub-text-color {
    font-size: 20px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}
.content-box {
    text-align: center;
    /* width: 1150px; */
    margin: auto;
}
.content-box-2 {
    text-align: center;
}

/* Container */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Common button */
.btns {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 8px;
    align-items: baseline;
}

/* Primary button */
.primary-btns {
    background-color: #1ba557;
    color: #fff;
    border: none;
    text-decoration: none;
}

/* Arrow icon */
.arrow-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s ease;
}

/* Hover effects */
.primary-btns:hover {
    transform: scale(1.05);
    background-color: #1ba557;
    text-decoration: none;
    color: #fff;
}

/* Arrow move on hover */
.primary-btns:hover .arrow-icon svg {
    transform: translateX(5px);
}

/* Secondary button */
.secondary-btns {
    background-color: #fff;
    color: #101828;
    border: 1px solid #e5e7eb;
    text-decoration: none;
}

/* Secondary hover */
.secondary-btns:hover {
    transform: scale(1.05);
    color: rgb(27, 165, 87);
    border: 1px solid rgb(27, 165, 87);
    background-color: #fff !important;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .btns {
        padding: 12px 24px;
        font-size: 16px;
    }
}
/* Client Section */
.client-section {
    background: #f4f5fb;
    padding: 50px 15px;
    text-align: center;
}

.badge-custom {
    padding: 6px 15px;
    border: 1px solid #1ba557;
    border-radius: 50px;
    color: #1ba557;
    font-size: 14px;
}

/* LOGO BOX */
.logo-slider {
    overflow: hidden;
    width: 100%;
    background: #f4f5fb;
    margin-top: 40px;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 50s linear infinite;
}

.clints-logo {
    width: 160px;
    height: 80px;
    margin: 0 15px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.clints-logo:hover {
    border: 1px solid #1ba557;
}

.clints-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 🔥 Smooth infinite scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #f4f5fb;
    border: 1px solid #1ba557;
    color: #1ba557;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ICON */
.badge-icon {
    width: 16px;
    height: 16px;
    stroke: #1ba557;
    stroke-width: 2;
}
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.services-section {
    padding: 60px 15px;
    background: #fff;
}

/* Blur background */
.blur-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.top-left {
    background: #e6f7f0;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.bottom-right {
    background: #dbeafe;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.services {
    padding: 60px 15px;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 11px -8px rgb(85, 230, 148);
    border: 1px solid #1ba557;
}

/* CONTENT */
.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TITLE */
.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

/* TEXT */
.service-text {
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    margin-bottom: 12px;
    flex-grow: 1;
}

/* BUTTON */
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1ba557;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.explore-btn:hover {
    color: #1ba557;
    text-decoration: none;
}

/* ARROW */
.arrow-icon {
    width: 16px;
    height: 16px;
    stroke: #1ba557;
    stroke-width: 2;
    transition: transform 0.3s ease;
    margin-top: -2px;
}

/* HOVER ANIMATIONS */

.explore-btn:hover .arrow-icons {
    transform: translateX(6px);
}

.box-gap {
    row-gap: 20px;
}

.cta-section {
    padding: 50px 15px;
    background: linear-gradient(
        to bottom right,
        oklch(20.8% 0.042 265.755) 0%,
        oklch(27.9% 0.041 260.031) 50%,
        oklch(21% 0.034 264.665) 100%
    );
}

.features-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;

    /* Mobile first */
    grid-template-columns: 1fr;
}

/* Tablet */
@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover effect (only for desktop) */
@media (hover: hover) {
    .feature-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }
}

.icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* Improve spacing on larger screens */
@media (min-width: 1200px) {
    .feature-item {
        font-size: 16px;
        padding: 16px;
    }
}

.icon {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

/* Optional hover animation */
.feature-item:hover .icon {
    transform: scale(1.1);
    transition: 0.3s;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Tablet & Desktop */
@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.get-started-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #1ba557;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.arrow-icons {
    width: 18px;
    height: 18px;
    stroke: #1ba557;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

/* Arrow move on hover */
.get-started-btn:hover .arrow-icons {
    transform: translateX(5px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #fff !important;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #ffffff !important;
    text-decoration: none;
}
.portfolio {
    padding: 60px 15px;
    background: #fff;
}

/* Portfolio card */

/* Remove default tab border */
.custom-tabs {
    border-bottom: none !important;
    gap: 10px;
}

/* Tab buttons */
.custom-tabs .nav-link {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 7px 25px;
    font-weight: 600;
    color: #555;
    background: #fff;
    transition: 0.3s;
}

/* Active tab */
.custom-tabs .nav-link.active {
    background: #1ba557;
    color: #fff;
    border: none;
}

/* Hover */
.custom-tabs .nav-link:hover {
    background: #f0fdfa;
}

/* Grid */
.portfolio-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.card {
    border-radius: 20px;
    overflow: hidden;
}

.card-img {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    object-position: top;
}

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

/* Badge */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(27, 165, 87, 0.95);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #fff;
    text-align: center;
    padding: 20px;

    opacity: 0;
    transition: 0.4s;
}

.card:hover .overlay {
    opacity: 1;
}

/* Button */
.view-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: #fff;
    color: #1ba557;
    border: none;
    font-weight: 600;
    text-decoration: none;
}

.view-btn:hover {
    background: #1ba557;
    color: #fff;
    text-decoration: none;
}

/* Default tab style (optional) */
.nav-tabs .nav-link {
    border: none;
    color: #555;
    transition: 0.3s;
}

/* Active tab */
.nav-tabs .nav-link.active {
    background-color: #1da056 !important;
    color: #fff !important;
}

/* Optional hover */
.nav-tabs .nav-link:hover {
    color: #1da056;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none !important;
}
.status-badge {
    position: absolute;
    top: 16px;
    left: 16px;

    padding: 6px 14px;
    border-radius: 50px;

    display: flex;
    align-items: center;
    gap: 8px;

    background: rgba(27, 165, 87, 0.95);
    backdrop-filter: blur(10px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

.status-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.card-main {
    border-radius: 15px !important;
}
.custom-tabs .nav-link {
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
}

/* industries dropdown */

.industries-menu {
    position: relative;
    list-style: none;
}

/* mega menu */

.mega-menu {
    position: absolute;
    top: 40px;
    left: 5px;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* open mega menu on hover */

.industries-menu:hover .mega-menu {
    display: block;
}

/* left menu */

.industry-item {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub-menu-link {
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.sub-menu-link:hover {
    background: #e8f3ec;
}

/* sub mega menu */

.sub-mega-menu {
    position: absolute;
    left: 230px;
    top: 0;
    width: 210px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* open sub menu */

.industry-item:hover .sub-mega-menu {
    display: block;
}

.sub-mega-menu a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    font-size: 14px;
}

.sub-mega-menu a:hover {
    background: #e8f3ec;
}

/* Optional: text spacing effect */
.sub-mega-menu a:hover::after {
    background: none;
}
.industry-item img {
    width: 16px;
    height: 16px;
}
.sub-menu-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #000;
    text-decoration: none;
    align-items: center;
    font-size: 14px;
}
.tech-section {
    padding: 60px 20px 0px 20px;
    /* box-shadow: 0px 0px 8px 2px #f2f0f5; */
}
.font-40 {
    font-size: 40px;
}

.blob-shape {
    position: absolute;
    top: -80px;
    left: 200px;
    width: 380px;
    height: 380px;
    background: #00bba7;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(60px);
    animation: blobAnimation 5s infinite ease-in-out;
    z-index: -99;
}

@keyframes blobAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}
.tech-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #1ba5570d;
    border-radius: 8px;
    margin-bottom: 5px;
}

.tech-title {
    font-size: 20px;
    font-weight: 600;
    color: #101828;
}

.tech-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 16px;
}

.tech-item {
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 0px 7px 0px #ebebeb;
}

.tech-item img {
    width: 32px !important;
    margin-bottom: 4px;
}

.tech-item span {
    font-size: 12px;
    font-weight: 600;
    color: #344054;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.Industries-we-serve {
    padding: 60px 15px;
    background:  #ffffff;
}

.industry-card {
    position: relative;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 160px;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #1ba557;
}

.industry-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Bottom Hover Line */

.industry-card::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 17px;
    width: 88%;
    height: 3px;
    background: #1ba557;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.industry-card:hover::after {
    transform: scaleX(1);
}

/* Owl Carousel Navigation */

.owl-nav button {
    background: #1ba557 !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 5px;
    border: none;
    font-size: 18px;
    transition: 0.3s;
}

.owl-nav button:hover {
    background: #158c47 !important;
}
.owl-stage-outer {
    overflow: visible;
}
.industry-slider .industry-card {
    margin-top: 10px;
}
/* Slider wrapper */

.industry-slider {
    position: relative;
}

/* Navigation container */

.industry-slider .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

/* Buttons */

.industry-slider .owl-nav button {
    pointer-events: auto;
    background: #1ba557 !important;
    color: #fff !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(27, 165, 87, 0.3);
    transition: 0.3s;
}

/* Hover */

.industry-slider .owl-nav button:hover {
    background: #158c47 !important;
}

/* Left button */

.industry-slider .owl-nav .owl-prev {
    position: absolute;
    left: -30px;
}

/* Right button */

.industry-slider .owl-nav .owl-next {
    position: absolute;
    right: -30px;
}
.sub-text-16 {
    font-size: 16px;
    line-height: 1.6;
    color: #667085;
}
.discuss-btn-box {
    text-align: center;
    padding: 40px 0px;
}
.rounded-btn {
    border: none;
    background-color: #1ba557;
    color: #fff;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0px;
}

/* Box */

.stat-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-left: 3px solid #1ba557;
    align-items: flex-start;
}

/* Icon */

.icon-box-2 {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box-2 svg {
    width: 24px;
    height: 24px;
    stroke: #1ba557;
    stroke-width: 2;
}

/* Content */
.stat-content {
    text-align: left;
}

.stat-content h3 {
    color: #fff;
    font-size: 54px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-top: 5px;
}

/* Responsive */

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.working-model {
  padding: 60px 15px;
  background: #f9fafb;
 
}

.How_We_Work_section{
 margin-bottom: 60px;
}

.model-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-top {
    height: 6px;
    width: 100%;
    background: #0e8ab3;
}
.card-body {
    padding: 32px !important;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(14, 138, 179, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.model-card:hover .card-icon {
    transform: scale(1.1);
}

.model-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #101828;
}

.card-desc {
    font-size: 14px;
    color: #667085;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-list li {
    font-size: 14px;
    color: #344054;
    margin-bottom: 8px;
    padding-left: 0px;
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
}

.card-list li i{
    color: #1ba557;
    font-size: 16px;
}

.card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(27, 165, 87, 0.08);
    color: #1ba557;
    border: 1px solid rgba(27, 165, 87, 0.2);
    transition: 0.3s;
}

.card-btn:hover {
    background: #1ba557;
    color: #fff !important;
    text-decoration: none;
}
.card-btn:hover .icon-green {
    transform: translateX(4px) !important;
}
.feature-icon {
    width: 18px;
    height: 18px;
    stroke: #0e8ab3;
    stroke-width: 2.5;
    fill: none;
}

.feature-text {
    font-size: 14px;
    color: #344054;
}
.icon-light {
    display: none;
}
.card-btn:hover .icon-light {
    display: block;
    animation: lightPulse 1.5s infinite;
}
.card-btn:hover .icon-green {
    display: none;
}
.carousel-box {
    padding: 0px 40px;
}
.how-we-work {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.card-body-work {
    padding: 18px;
}
.heading-flex-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bg-light-green {
    background-color: #e6f7f0;
    margin-bottom: 16px;
}
.top-right-text {
    color: #1ba557 !important;
    font-size: 48px !important;
    opacity: 0.2;
}
.model-card-2 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    width: 19%;
}
.model-card-2 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #101828;
}
.model-card-2:hover {
    border: 1px solid #1ba557;
}
.process-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #e6f7f0;
    margin-top: 40px;
}

.process-icon {
    width: 20px;
    height: 20px;
    color: #1ba557;
}

.process-text {
    font-weight: 600;
    color: #1ba557;
}
.contact-section {
    padding: 50px 15px;
    background-color: #fff;
}
.model-card-2 ul {
    margin: 0px !important;
}
.contact-section {
    padding: 50px 15px;
    background-color: #fff;
}

.contact-bg {
    background-image: url(./images/contact-form-img.webp);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    position: relative;
    opacity: 0.2;
    padding: 48px;
}
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        to right,
        rgba(13, 148, 136, 0.4),
        rgba(37, 99, 235, 0.4),
        rgba(147, 51, 234, 0.4)
    );
}

section.faq {
    margin-top: 60px;
}

.hover-img {
    display: none;
}
.contact-btn:hover .active-img {
    display: none;
}
.contact-btn:hover .hover-img {
    display: inline-block;
}
.custom-tab-content {
    margin-top: 40px;
}

.industry-carousel {
    padding: 40px;
}


.industry-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-6px);
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
    color: #666;
}
.Have_Idea_form_section {
  padding: 10px 20px;
}
.accordion-item-custom {
    margin-bottom: 16px;
    border: none !important;
}
.accordion-head .accordion-button {
    padding: 16px !important;
    border: 1px solid #1ba557 !important;
    background-color: #fff !important;
}
.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}
.accordion-body {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    border: 1px solid #1ba557 !important;
}
.accordion-head button.collapsed {
    border-radius: 16px !important;
}
.accordion-btn-cmt {
    border-bottom: 0px !important;
}

.accordion-body.accordion-body-custom {
    border-top: 0px !important;
    padding-top: 5px;
}
.accordion-btn-cmt .accordion-collapse {
    border-bottom: 0 !important;
}
.accordion-button:not(.collapsed) {
    border-bottom: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

.accordion-btn-cmt::after {
    display: none;
}
.accordion-btn-cmt {
    position: relative;
}

.accordion-btn-cmt::before {
    content: "";
    position: absolute;
    right: 20px;
    width: 18px;
    height: 18px;
    background-image: url("../images/chevron-up-gr-20.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s;
}

/* when open */

.accordion-btn-cmt:not(.collapsed)::before {
    background-image: url("../images/chevron-down-gr-20.svg");
}
.accordion-button.accordion-btn-cmt {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1ba557 !important;
}
.accordion-body.accordion-body-custom p {
    color: #4a5565 !important;
    font-size: 16px !important;
}
.process-box i {
    color: #1ba557;
}
@media (max-width: 1100px) {
     .Mobile_Application .google_play img {
        height: 35px;
        width: auto !important;
    }
     .faq #accordionExample {
        width: 100% ;
    }
    .faq {
        padding: 0px 15px;
    }
     .home-box .Case_Studies_section {
        margin-top: -40px;
    }
     .home-box .expertise-section {
        padding: 50px 15px;
    }
}
@media (max-width: 800px) {
.count_box_about .count_number {
    margin-bottom: 20px;
}
    .working-model {
        padding-bottom: 50px !important;
    }
    .how-we-work {
        justify-content: center;
    }
      .Mobile_Application .google_play img {
        height: 30px;
        width: auto !important;
    }
    .faq #accordionExample {
        width: 100% ;
    }
    .faq {
        padding: 0px 10px;
    }
    .filter_section .filter-bar {
        display: block;
    }
    .filter_section .filter_box {
        display: block;
    }
    .filter_section .filter_box .filter_select {
        width: 48%;
        margin-bottom: 10px;
        margin-left: 5px;
    }
    .filter_section .filter-bar .filter-label {
        margin-bottom: 10px;
    }
    .filter_section .filter-bar #project_type {
        width: 98%;
    }
    .Case_Studies_section .Studies_text {
        font-size: 16px;
    }
    .home-box .case_studie_right_box h3 {
        font-size: 26px;
    }
     .Case_Studies_section .main-heading-sub-page {
        font-size: 36px;
    }
    .home-box .Case_Studies_section {
        margin-top: -40px;
    }
    /* industry page responisve */
    .home-box .our_story_section  {
        padding: 50px 5px;
    }
    .home-box .our_story_section .heading_text_b {
        font-size: 16px;
        line-height: 24px;
    }
    .home-box .our_story_section .heading_text {
        font-size: 16px;
        line-height: 24px;
    }
    .our_story_right_box .our_story_right_box_count {
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
    }
    .home-box .expertise-section {
        padding: 50px 10px;
    }
    .expertise-section .expert-card {
        padding: 12px;
    }
    .expertise-section .expert-card h6 {
        font-size: 18px;
    }
    .our_core_value_section .our_core_about {
        width: 100%;
    }
    .our_story_right_box .our_story_right_box_count {
        padding: 15px;
    }
}
@media (max-width: 600px) {
   
    .hero-section {
        padding: 0px 5px 50px 5px !important;
    }
    .main-heading {
        font-size: 30px ;
    }
    .sub-text-color {
        font-size: 16px;
        line-height: 24px;
    }
    .main-heading-h2 { 
        font-size: 30px;
    }
    .count_box_about .count_number  {
        margin-bottom: 15px;
    }
    .Why_Choose_Milestone_section  {
        padding: 50px 5px !important;
    }
    .Industries-we-serve {
        padding: 30px 0px 50px 0px !important;
    }
    .carousel-box {
        padding: 0px 10px;
    }
    .Working_Model_box  {
        margin-top: 30px;
    }
    
    .related_case_section {
        padding: 50px 5px !important;
    }
    .faq_servise {
        padding: 30px 10px !important;
    }
    #accordionExample {
        width: 100% !important;
    }
    .accordion-button.accordion-btn-cmt {
        font-size: 14px !important;
    }
    .accordion-body.accordion-body-custom p {
        font-size: 14px !important;
    }
    .count_box_about {
        width: 100% !important;
    }
    .services  {
        padding: 50px 5px !important;
    }
    .our_core_about {
        width: 100% !important;
    }
    .industry-slider .owl-nav button {
        width: 30px !important;
        height: 30px !important;
    }
    .industry-slider .owl-nav .owl-prev {
        left: -20px !important;
    }
    .industry-slider .owl-nav .owl-next {
        right: -20px !important;
    }
    .tech-section {
        padding: 50px 5px !important;
    }
    .client-section {
        padding: 50px 15px !important;
    }
    .count_box_about .count_number {
        padding: 12px 0px !important;
    }
    .count_icon {
        margin-bottom: 10px !important;
    }
    .count_box_about .count_number h3 {
        font-size: 24px !important;
    }
    .service-title {
        font-size: 18px !important;
    }
    .row_gaps .our_core_value_card {
        padding: 20px;
    }
    .row_gaps .mission_icon {
        width: 50px;
        height: 50px;
    }
    .Mobile_Application .google_play img {
        height: 35px;
        width: auto !important;
    }
    .second_accordion .count_icon {
        min-width: 50px;
    }
    .home-box .Case_Studies_section {
        margin-top: -40px;
    }
    .Case_Studies_section .main-heading-sub-page {
        font-size: 30px;
    }
    .filter_section .filter_box .filter_select {
        margin-left: 8px;
    }
    .home-box .filter_section  {
        padding: 10px 0px;
    }
    .filter_section .filter-bar {
        display: block;
    }
    .filter_section .filter_box {
        display: block;
    }
    .filter_section .filter_box .filter_select {
        width: 47%;
        margin-bottom: 10px;
    }
    .filter_section .filter-bar .filter-label {
        margin-bottom: 10px;
    }
    .filter_section .filter-bar #project_type {
        width: 98%;
    }
    .Case_Studies_section .Studies_text {
        font-size: 16px;
    }
    .home-box .case_studie_right_box h3 {
        font-size: 26px;
    }
    /* industry page responisve */
    .home-box .our_story_section  {
        padding: 50px 5px;
    }
    .home-box .our_story_section .heading_text_b {
        font-size: 16px;
        line-height: 24px;
    }
    .home-box .our_story_section .heading_text {
        font-size: 16px;
        line-height: 24px;
    }
    .our_story_right_box .our_story_right_box_count {
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
    }
    .home-box .expertise-section {
        padding: 50px 5px;
    }
    .expertise-section .expert-card {
        padding: 12px;
    }
    .expertise-section .expert-card h6 {
        font-size: 18px;
    }
    .our_story_right_box .our_story_right_box_count {
        padding: 15px;
    }
     .home-box .our_core_value_section  {
        padding: 50px 5px;
     }
     .home-box .our_story_left_box {
        padding-right: 0px;
     }
     .home-box .our_story_right_box img {
        height: 300px;
     }
     .home-box  .our_mission_section {
        padding: 50px 5px;
     }
     .home-box  .our_mission_about  {
        width: 100%;
     }
     .home-box .mission_box {
        margin-bottom: 20px;
     }
}
.footer-section ul li a {
    display: flex;
    gap: 8px;
    align-items: center;
}