@import url('fonts.css');

* {
    scroll-behavior: smooth;
}
:root {
    --main-color: #353788;
    --second-color: #e6f3ff;
    --orange: #d97706;
    --third-color: #006a43;
    --fourth-color: #0096c7;
}
.fs-7 {
    font-size: 0.875rem;
}
.bg-green {
    background: var(--secondary-color);
}
.min-vh-80{
    min-height: 80vh;
}
.text-main-color {
    color: var(--main-color) !important;
}
.header {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    transition: background-color .3s ease, box-shadow .3s ease;
}

.header .nav-link {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color .3s ease, opacity .3s ease;
}

.header .nav-link:hover {
    opacity: 0.85;
}

/* after scroll */
.header.scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

.header.scrolled .nav-link {
    color: #0f172a !important;
    font-weight: 500;
}
/* MENU LINK */
.mega-menu-container {
    width: 100%;
    max-width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    display: none;
    padding: 1rem;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 999;
    border-radius: 0 0 4rem 4rem;
}

.mega-parent:hover .mega-menu-container {
    display: block;
}

/* LEFT SIDEBAR */
.sidebar-menu1 {
    overflow-y: auto;
    padding: 1rem;
}

.sidebar-menu1 a {
    font-family: "Inter", sans-serif;
    display: block;
    padding: 14px 20px;
    font-weight: 500;
    color: #111827;
    font-size: 0.9rem;
    border-left: 4px solid transparent;
    transition: 0.25s;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0.85rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.2px;
}
.sidebar-menu1 .arrow-icon {
    opacity: 0;
    transform: translateX(-5px);
    transition: 0.25s ease;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Arrow shown only when active */
.sidebar-menu1 a.active .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}
.sidebar-menu1 a:hover {
    background-color: #f1f5f9;
}
.sidebar-menu1 a.active {
    background: #1e293b;
    color: #ffffff;
    font-weight: 600;
}

/* RIGHT CONTENT AREA */
.mega-content {
    height: 480px;
    overflow-y: auto;
    padding: 30px 35px;
}

/* PANELS */
.mega-panel {
    display: none;
}

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

.mega-panel h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #353788;
}

.mega-panel p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

/* GRID CONTENT ALIGNMENT */
.mega-panel .nav-link {
    padding: 4px 0;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 500;
    transition: 0.25s;
    font-family: "Inter", sans-serif;
    transition: color 0.25s ease;
}

/* Hide scrollbar clean */
.sidebar-menu1::-webkit-scrollbar,
.mega-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu1::-webkit-scrollbar-thumb,
.mega-content::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 10px;
}
.mega-item {
    padding: 6px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mega-item:hover {
    background: #f8f9fa;
}

.icon-boxxx i{ 
    font-size: 1.35rem;
}   
.icon-boxxx {    
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-link.mega-link i {
    font-size: 0.75rem;
}

/* Rotate chevron when parent dropdown is hovered */
.nav-item.mega-parent:hover > .nav-link.mega-link i {
    transform: rotate(180deg); /* points up */
}
.see-whats-new .nav-link{
    font-weight: 500;
    font-size: 0.81rem;
    --shift-distance: calc(4 * .0625rem);
    color: var(--link-color);
    z-index: 1;
    border-radius: 2em;
    padding-right: 2.5rem !important;
    line-height: 2rem;
    text-decoration: none;
    transition: color .15s ease-in-out, transform .3s;
    display: inline-block;
    position: relative;
    transform: translate(0);
    max-width: 400px;
}
.see-whats-new .nav-link::before{
    content: "";
    z-index: -1;
    background-color: var(--fourth-color);
    background-image: url('https://mailchimp.com/release/plums/d587a00f04ec1dd3.svg');
    background-position: calc(100% - .4375rem) calc(100% - .4375rem);
    background-repeat: no-repeat;
    background-size: 1.125rem;
    border-radius: 1rem;
    height: 2rem;
    transition: left .3s cubic-bezier(.34, 1.2, .64, 1), right .3s, background-position .3s;
    display: block;
    position: absolute;
    left: calc(100% - 2rem);
    right: 0;
}
.see-whats-new .nav-link:hover{
    color: var(--link-color-hovered);
    -webkit-transform: translateX(var(--shift-distance));
    -ms-transform: translateX(var(--shift-distance));
    transform: translateX(var(--shift-distance));
    color: #fff;
}
.see-whats-new .nav-link:hover::before {
    background-position-x: calc(100% - (var(--shift-distance) * 3.5));
    transition: right .3s, background-position .3s;
    animation: .3s ease-in-out fakebounce;
    left: -1rem;
}
    /* Dropdown menu */
    .insight-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: -50%;
        min-width: 200px;
        padding: 10px;
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
        transform: translateY(10px);
        transition: all 0.25s ease;
    }

    /* Show on hover */
    .insight-dropdown:hover .insight-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Dropdown items */
    .insight-menu .dropdown-item {
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 0.88rem;
        font-weight: 500;
        color: #0f172a;
        font-family: "Inter", sans-serif;
        transition: all 0.2s ease;
    }

    .insight-menu .dropdown-item:hover {
        background: #f8f9fa;
        color: #0f172a;
    }

    /* Chevron animation */
    .insight-dropdown .mega-link i {
        font-size: 0.75rem;
        transition: transform 0.25s ease;
    }

    .insight-dropdown:hover .mega-link i {
        transform: rotate(180deg);
    }
    .dropdown-arrow {
        position: absolute;
        top: -7px;
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
        background: #ffffff;
        transform: translateX(-50%) rotate(45deg);
        box-shadow: -3px -3px 6px rgba(0,0,0,0.04);
    }
.custom-btn {
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ===== Request Call Button ===== */
.btn-call {
    padding: 7px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    box-shadow: 0 6px 20px rgba(255, 122, 24, 0.35);
    transition: all 0.3s ease;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 24, 0.45);
}

/* ===== WhatsApp Button ===== */
.btn-whatsapp {
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 600;
    color: #25D366;
    border: 2px solid #25D366;
    background: transparent;
    transition: all 0.3s ease;
}

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

/* ===== When header is scrolled ===== */
.header.scrolled {
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.header.scrolled .btn-call {
    background: linear-gradient(135deg, #ff7a18, #ff9f1c);
    color: #fff;
}

.header.scrolled .btn-whatsapp {
    color: #198754;
    border-color: #198754;
}
.logo-wrapper{
    max-width: 180px;
}
.logo-wrapper .logo {
    transition: opacity 0.3s ease;
    object-fit: cover;
    width: 100%;
}
.logo-dark {
    display: none;
}
.header.scrolled .logo-light {
    display: none;
}
.header.scrolled .logo-dark {
    display: block;
}

/* remove default toggler border */
.navbar-toggler {
    border: none;
}
/* center logo properly */
.custom-toggler i {
    color: #fff;
    font-size: 20px;
}
/* on scroll */
.header.scrolled .custom-toggler i {
    color: #000;
}
.banner-section {
    background: 
        linear-gradient(to right, rgba(14, 59, 130, 0.97) 0%, rgba(21, 94, 210, 0.9) 100%),
        url('https://moradhamdy.com/morad/bright/images/files/parallax-background-images/image123.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 6rem 0;
}

.banner-text {
    line-height: 50px;
    width: 100%;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.price small {
    font-size: 1rem;
    font-weight: normal;
    color: #555;
}

.btn-buy {
    background: var(--main-color);
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-buy:hover {
    background: #00d8ad;
}

.small-note {
    font-size: 0.8rem;
    color: #555;
}

/* about us section */
.about-section {
    background: #f9fafb;
}

.left-img-1 img {
    border-top-left-radius: 4rem;
}

.left-img-2 img {
    border-bottom-right-radius: 4rem;
}

.left-img-1 img,
.left-img-2 img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.left-img-1:hover img,
.left-img-2:hover img {
    transform: scale(1.05);
}

/* Experience Box */
.experience-box {
    background: #111827;
    color: #fff;
}

.testimonials-section {
    padding: 30px 20px;
    position: relative;
    background: #1a1d29;
    background-size: cover;
    background-position: center;
    height: 90%;
}

/* Exact dotted pattern from image */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: -1;
}

.testimonials-section {
    background: var(--main-color) url('../img/testimonial-bg.png') center/cover no-repeat;
    padding: 3rem 0;
}

.testimonials-section .row {
    border-radius: 1rem;
}

.testimonials-section img.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

.testimonial-two-logos .stars {
    font-size: 14px;
    line-height: 1;
}

.testimonial-two-logos img {
    height: 30px;
    object-fit: contain;
}

/* Container for rating / authors / title */
.testimonial-two-content {
    background-color: var(--second-color);
    text-align: center;
}

/* Rating number */
.testimonial-two_rating {
    font-size: 128px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 20px;
}

/* Authors list */
.testimonial-two_authors {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-two_authors ul {
    display: flex;
    margin-left: 20px;
    padding: 0;
    list-style: none;
}

.testimonial-two_authors ul li {
    width: 54px;
    height: 54px;
    margin-left: -20px;
    border-radius: 50%;
    border: 3px solid #000;
    overflow: hidden;
}

/* Title */
.testimonial-two_title {
    margin-top: 20px;
    font-size: 1.5rem;
}

.testimonials-section .gradient-bg {
    position: relative;
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    overflow: hidden;
}

/* Light grain texture overlay */
.testimonials-section .gradient-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
    opacity: 0.1;
    pointer-events: none;
}

/* new testinomial */
.testimonials-section2 .card-custom {
    border-radius: 22px;
    overflow: hidden;
    height: 350px;
    background: #fff;
}
.testimonials-section2 .trust-star {
    background: #00b67a;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 4px;
    width: auto;
}
/* RIGHT SIDE IMAGE BG */
.testimonials-section2 .right-bg {
    /* background: rgba(53, 55, 136, 1.0); */
    background: #43509b;
}

.review-text {
    color: #333;
    font-size: 0.90rem;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.review-content{
    height: 100%;
}
.testimonials-section2 .object-cover {
    object-fit: cover;
}

/* Faded side slides */
.swiper-nav-bottom {
    display: flex;
    justify-content: center;   /* CENTER horizontally */
    gap: 12px;                 /* space between arrows */
    margin-top: 40px;          /* space below slider */
}

/* ARROWS */
.testimonials-section2 .custom-arrow1 {
    width: 40px;
    height: 40px;
    background: #6D6AFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 18px rgba(109,106,254,0.35);
}

/* ICON */
.testimonials-section2 .custom-arrow1 i {
    font-size: 18px;
    color: #fff;
}

/* REMOVE DEFAULT SWIPER POSITION */
.testimonials-section2 .swiper-button-next,
.testimonials-section2 .swiper-button-prev {
    position: static !important;   /* VERY IMPORTANT: reset */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: #ff4500;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.section-title {
    font-weight: 500;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--main-color);
}

.hero-banner {
    overflow: hidden;
    position: relative;
}

.banner-content {
    max-width: 700px;
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    text-align: justify;
}

.banner-cta {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.banner-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 38px;
    align-items: center;
}

.stats-container {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* padding: 40px 20px; */
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-right: 1px solid #e9ecef;
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--main-color), #0056b3);
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 0.9rem;
    color: rgb(58, 58, 58);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Animation for counting effect */
.counting {
    animation: pulse 0.1s ease-in-out;
}

.container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.feature-card {
    background: rgb(240, 240, 240);
    /* backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.feature-card:hover .icon-container {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.icon {
    width: 40px;
    height: 40px;
    fill: #04386b;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.2);
}

.feature-card .card-title {
    color: #04386b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-description {
    opacity: 1;
}

/* Different gradient backgrounds for each card */
.feature-card:nth-child(1) .icon-container {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    box-shadow: 0 10px 30px rgba(255, 154, 158, 0.3);
}

.feature-card:nth-child(1):hover .icon-container {
    box-shadow: 0 15px 40px rgba(255, 154, 158, 0.5);
}

.feature-card:nth-child(2) .icon-container {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 10px 30px rgba(168, 237, 234, 0.3);
}

.feature-card:nth-child(2):hover .icon-container {
    box-shadow: 0 15px 40px rgba(168, 237, 234, 0.5);
}

.feature-card:nth-child(3) .icon-container {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    box-shadow: 0 10px 30px rgba(252, 182, 159, 0.3);
}

.feature-card:nth-child(3):hover .icon-container {
    box-shadow: 0 15px 40px rgba(252, 182, 159, 0.5);
}

/* Floating animation */
@keyframes float {

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

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

.feature-card {
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation-delay: -2s;
}

.feature-card:nth-child(3) {
    animation-delay: -4s;
}

/* .feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.feature-card:hover::after {
    width: 200px;
    height: 200px;
} */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.brand-text {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.certifications {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.cert-badge {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    transition: transform 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-3px);
}

.cert-badge .cert-icon {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
}

.contact-info strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #04386b, #28a745);
    border-radius: 50%;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.industries-we-serve .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* default desktop: 4 cols */
    gap: 16px;
}

/* Grid items */
.industries-we-serve .grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    background-size: cover;
    background-position: center;
}

/* Hover effect */
.industries-we-serve .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Title inside item */
.industries-we-serve .grid-item>.title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 15px;
    transition: opacity 0.3s ease;
    z-index: 2;
    position: relative;
    color: #fff;
}

.industries-we-serve .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(1, 146, 25, 0.9);
    padding: 30px 20px 20px;
    color: white;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.industries-we-serve .grid-item:hover>.title {
    opacity: 0;
    visibility: hidden;
}

.industries-we-serve .grid-item:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.industries-we-serve .overlay .title {
    font-size: 22px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.industries-we-serve .grid-item.active>.title {
    opacity: 0;
    visibility: hidden;
}

.industries-we-serve .grid-item.active .overlay {
    opacity: 1;
    visibility: visible;
}

.industries-we-serve .item-1 {
    grid-row: 1 / 3;
    grid-column: 1;
}

.industries-we-serve .item-2 {
    grid-row: 1;
    grid-column: 2;
}

.industries-we-serve .item-3 {
    grid-row: 1;
    grid-column: 3;
}

.industries-we-serve .item-4 {
    grid-row: 2;
    grid-column: 2;
}

.industries-we-serve .item-5 {
    grid-row: 1 / 3;
    /* Spans both rows */
    grid-column: 4;
}

/* Individual item styling */
.industries-new-design .industry-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    /* min-width: 320px; */
}

/* Top Logo */
.industries-new-design .industry-logo {
    width: 85px;
    height: auto;
    object-fit: contain;
}

/* Case link */
.industries-new-design .case-link {
    font-size: 14px;
    color: #6b6f7b;
    text-decoration: none;
    margin-top: 6px;
}

.industries-new-design .case-link:hover {
    text-decoration: underline;
}

/* Card Image */
.industries-new-design .industry-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 10px;
}

/* Description */
.industries-new-design .industry-desc {
    font-size: 1rem;
    color: #575757;
    line-height: 1.8;
}

/* Tag badge */
.industries-new-design .industry-tag {
    background: #eef1ff;
    padding: 5px 16px;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 0.85rem;
    display: inline-block;
}

/* CARD WIDTH */
.industries-new-design .swiper-slide {
    min-width: 350px !important;
}

/* FONT AWESOME NAV BUTTONS */
.industries-section-bg {
    background: linear-gradient(180deg, #f7f9ff, #eef2ff);
    padding: 70px 0;
}

/* Navigation container bottom-left */
.industries-new-design .swiper-nav-bottom {
    position: absolute;
    bottom: -55px;
    left: 20px;
    display: flex;
    gap: 12px;
}

/* FontAwesome circle buttons */
.industries-new-design .custom-nav2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.industries-new-design .custom-nav2:hover {
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

/* Remove Swiper default positioning */
.industries-new-design .swiper-button-next,
.industries-new-design .swiper-button-prev {
    position: static !important;
    margin: 0 !important;
}

.flip-card-back .arrow {
    background: #fff;
    transform: translateX(20px);
}

.flip-card-back .arrow::after {
    border-left-color: #fff;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 20px;
}

.cta-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* blog page */
.breadcrump-banner {
    position: relative;
    /* Needed for absolute heading */
    background: url('../img/faq-it-asset-management-company-b2bexportsllc.png') center/cover no-repeat;
    min-height: 150px;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.banner-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}

.banner-heading h3 {
    font-size: 1.75rem;
}

.banner-heading h3 span::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    margin: 10px auto 0;
    background-color: #fff;
}

.blog-section {
    padding: 60px 0;
}

.blog-section .blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding-bottom: 1rem;
    margin: 10px 10px;
    position: relative;
}

.blog-section .blog-image img {
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.blog-section .date-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    border-radius: 6px;
    text-align: center;
    padding: 6px 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}

.blog-section .date-box .day {
    display: block;
    font-size: 1.25rem;
}

.blog-section .date-box .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-section .blog-body {
    padding: 1rem 1.25rem 0;
}

.blog-section .meta {
    color: #777;
    font-size: 0.85rem;
}

.blog-section .meta i {
    color: #dc3545;
    margin-right: 4px;
}

.blog-section .blog-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-section .read-more-wrap {
    display: flex;
    align-items: center;
}

.blog-section .read-more {
    text-decoration: none;
    font-weight: 500;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-section .read-more .arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.blog-section .read-more:hover .arrow {
    background: #bb2d3b;
}

/* Slick arrows */
.blog-section .slick-prev:before,
.blog-section .slick-next:before {
    color: #000;
    font-size: 24px;
}

.blog-section .custom-arrow {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.blog-section .slick-previous {
    left: -50px;
}

.blog-section .slick-next-step {
    right: -50px;
}

.blog-section .slick-prev,
.blog-section .slick-next {
    display: none;
}

.blog-section .custom-arrow i {
    font-size: 18px;
    color: #dc3545;
}

.blog-section .custom-arrow:hover {
    background: #dc3545;
}

.blog-section .custom-arrow:hover i {
    color: #fff;
}

.hover-btn {
    position: relative;
    overflow: hidden;
    color: var(--secondary-color);
    background: transparent;
    border: 1px solid var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-out;
    z-index: 1;
}

.hover-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s ease-out;
    z-index: -1;
}

.hover-btn:hover {
    color: #fff !important;
}

.hover-btn:hover::before {
    transform: scaleX(1);
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.article-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.article-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2b6cb0, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.blog-featured-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-featured-image:hover {
    transform: scale(1.02);
}

.blog-detail p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
}

.blog-detail .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #718096;
    font-size: 0.925rem;
    margin-bottom: 30px;
}

.blog-detail .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-detail .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.blog-detail .popular-posts {
    background: #ffffff;
    /* border-radius: 24px; */
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* border: 1px solid #e2e8f0; */
}

.blog-detail .sidebar {
    position: sticky;
    top: 90px;
    /* max-height: calc(100vh - 100px);  */
    padding-right: 5px;
    overflow-y: hidden;
}

.blog-detail .sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #2b6cb0, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-detail .post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.blog-detail .post-item:hover {
    background: rgba(66, 153, 225, 0.05);
    transform: translateX(5px);
    border-color: rgba(66, 153, 225, 0.2);
    box-shadow: 0 5px 20px rgba(66, 153, 225, 0.1);
}

.blog-detail .post-item:last-child {
    margin-bottom: 0;
}

.blog-detail .post-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-detail .post-info h4 {
    font-size: 0.925rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a202c;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-detail .post-item:hover .post-info h4 {
    color: #3182ce;
}

.blog-detail .post-meta {
    font-size: 0.8rem;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.category-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.category-item {
    border: none !important;
    border-bottom: 1px solid #e9ecef !important;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.category-item:last-child {
    border-bottom: none !important;
}

.category-item:hover {
    background-color: #f8f9fa;
    transform: translateX(4px);
}

.category-item.active {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.category-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.category-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    color: #6c757d;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.category-text {
    font-weight: 500;
    color: #495057;
    transition: color 0.3s ease;
}

.expand-icon {
    color: #6c757d;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: transparent;
    border: none;
}

.expand-icon:hover {
    background-color: #e9ecef;
    color: #495057;
}

.expand-icon.expanded {
    transform: rotate(45deg);
    color: #dc3545;
}

.subcategory-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

.subcategory-list.expanded {
    max-height: 400px;
    padding: 12px 0;
}

.subcategory-item {
    padding: 10px 24px;
    margin: 0 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.subcategory-item:hover {
    background-color: white;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.subcategory-icon {
    color: #8e24aa;
    font-size: 0.75rem;
}

.subcategory-text {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 400;
}

.category-badge {
    background-color: #e3f2fd;
    color: #1976d2;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subcategory-item {
    animation: slideIn 0.3s ease forwards;
}

.newsletter-section {
    /* background-color: #e8f4f8; */
    background-color: var(--main-color);
    color: #fff;
}

.subscription-container {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.subscription-content {
    flex: 1;
}

.subscription-title {
    font-size: 48px;
    font-weight: 600;
    /* color: var(--main-color); */
    margin-bottom: 8px;
    line-height: 1.1;
}

.subscription-subtitle {
    font-size: 18px;
    /* color: #333; */
    font-weight: 400;
}

.subscription-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 500px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    background-color: white;
    color: #666;
}

.email-input::placeholder {
    color: #999;
    font-size: 16px;
}

.email-input:focus {
    border-color: #2c8aa6;
    box-shadow: 0 0 0 3px rgba(44, 138, 166, 0.1);
}

.subscribe-btn {
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background-color: #ffb300;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.content-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* ===== Sidebar ===== */
.faq-sidebar {
    flex: 0 0 320px;
    max-width: 320px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.faq-sidebar h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

/* ===== Accordion Items ===== */
.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

/* ===== Accordion Buttons ===== */
.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
    padding: 1.3rem 2rem;
    background-color: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:hover {
    background: #f8fafc;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

/* ===== Accordion Body ===== */
.accordion-body {
    color: #64748b;
    line-height: 1.7;
}

/* ===== Accordion Animation ===== */
.accordion {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===== Content Area ===== */
.flex-grow-1 {
    flex: 1;
    min-width: 0;
}

.category-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    width: 100%;
}

.category-btn:hover,
.category-btn.active {
    background: #3b82f6;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.06);
    animation: float1 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wanttobuy-grid {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: slideUp 0.8s ease-out;
    perspective: 1000px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wanttobuy-grid .left-section {
    width: 100%;
    /* max-width: 500px;
    min-height: 450px; */
    position: relative;
}

.wanttobuy-grid .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

.left-section:hover .flip-inner {
    transform: rotateY(180deg);
}

.wanttobuy-grid .flip-front {
    position: relative;
    overflow: hidden;
}

.wanttobuy-grid .flip-front img.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

.wanttobuy-grid .flip-front,
.wanttobuy-grid .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

/* Back side */
.wanttobuy-grid .flip-back {
    transform: rotateY(180deg);
    background: var(--main-color);
    color: white;
}

.flip-front p,
.flip-front h3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.flip-front p:nth-child(3) {
    animation-delay: 0.1s;
}

.flip-front h3 {
    animation-delay: 0.2s;
}

.flip-front p.subtitle:nth-of-type(1) {
    animation-delay: 0.35s;
}

.flip-front p.subtitle:nth-of-type(2) {
    animation-delay: 0.5s;
}

.flip-back h1,
.flip-back p {
    opacity: 0;
    transform: scale(0.95);
    animation: fadeScale 0.5s ease forwards;
}

.flip-back h1 {
    animation-delay: 0.15s;
}

.flip-back p {
    animation-delay: 0.35s;
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.input-field,
.select-field,
.text-area-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.input-field:focus,
.select-field:focus,
.text-area-field:focus {
    outline: none;
    border-color: #60a5fa;
    background: white;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
    transform: translateY(-2px);
}

.select-field {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    appearance: none;
}

.text-area-field {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    background-color: var(--main-color);
    color: #fff;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:hover::before {
    left: 100%;
}

.form-container h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.underline::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0 auto;
}

.underline-want-to::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--main-color);
    margin: 0.8rem auto 0 auto;
}

.contact-flip-container .main-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.contact-flip-container .card-header {
    /* background: linear-gradient(135deg, var(--main-color), var(--secondary-color)); */
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 12px;
    border: none;
    position: relative;
}

.contact-flip-container .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-flip-container .card .card-body {
    min-height: 530px;
}

.contact-flip-container .office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 600px;
}

.contact-flip-container .flip-card {
    background-color: transparent;
    width: 100%;
    min-height: 250px;
    perspective: 1000px;
}

.contact-flip-container .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.contact-flip-container .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.contact-flip-container .flip-card-front,
.contact-flip-container .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-flip-container .flip-card-front {
    border-color: var(--main-color);
    background: linear-gradient(135deg, var(--main-color) 0%, #0550a3 100%);
    color: white;
}

.contact-flip-container .flip-card-back {
    border-color: var(--secondary-color) !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #02b621 100%) !important;
    color: white;
    transform: rotateY(180deg);
}

.contact-flip-container .flip-card-front i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    /* animation: pulse 2s infinite; */
}

.contact-flip-container .flip-card-back i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.contact-flip-container .office-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-flip-container .office-info {
    font-size: 1rem;
    line-height: 1.4;
    margin: 5px 0;
    opacity: 0.95;
}

.contact-flip-container .office-phone {
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
}

.contact-flip-container .middle-border {
    position: relative;
}

.contact-flip-container .middle-border::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    z-index: -1;
}

.contact-flip-container .middle-border::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 120%;
    background: linear-gradient(0deg, transparent, var(--secondary-color), transparent);
    z-index: -1;
}

.caret-animation i {
    font-size: 1rem !important;
    animation: caretBlink 1s infinite;
    opacity: 0.3;
}

.caret-animation i:nth-child(1) {
    animation-delay: 0s;
}

.caret-animation i:nth-child(2) {
    animation-delay: 0.2s;
}

.caret-animation i:nth-child(3) {
    animation-delay: 0.4s;
}

.caret-animation i:nth-child(4) {
    animation-delay: 0.6s;
}

/* footer */
.footer {
    background: linear-gradient(120deg, #02332e, #035c54);
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    color: #fff;
}
.footer-logo img {
    max-width: 180px;
}
footer .footer-head p{
    font-size: 1.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    /* color: #1a1a1a; */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-weight: 300;
}

.footer-column ul li a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00b894;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00b894;
}

.footer-copyright {
    color: #bbbbbb;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-content ul {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease;
}

/* when visible */
.footer-content.show-menus ul {
    max-height: 500px; /* enough for all links */
    opacity: 1;
}
.footer-content ul li {
    transform: translateY(5px);
    transition: transform 0.3s ease;
}

.footer-content.show-menus ul li {
    transform: translateY(0);
}
/* Headings always visible */
.footer-column h3 {
    margin-bottom: 15px;
}
.footer-toggle {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* full width border */
.footer-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e9ecef;
    z-index: 1;
}

/* center button */
#footerToggleBtn {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #e9ecef;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    /* PERFECT CENTER */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.footer-certification .col-md-7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    align-items: center;
    justify-items: center;
}
/* chevron */
.footer-toggle .toggle-icon {
    font-size: 14px;
    color: #333;
    transition: transform 0.3s ease;
}
/* Floating rounded bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    gap: 10px;
    z-index: 999;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 0.85rem 0.85rem 0 0;
}

/* Buttons */
.mobile-sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 9px 5px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Colors */
.mobile-sticky-bar .call {
    background: #2d6cdf;
}

.mobile-sticky-bar .email {
    background: #333;
}

.mobile-sticky-bar .whatsapp {
    background: #25D366;
}

/* Hover / Tap feel */
.mobile-sticky-bar a:active {
    transform: scale(0.95);
}

/* Icons */
.mobile-sticky-bar i {
    font-size: 14px;
}
@keyframes caretBlink {
    0% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(2px);
    }

    100% {
        opacity: 0.3;
        transform: translateX(0);
    }
}

.thankyou-page .main-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: rgba(245, 245, 245, 0.95);
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-page .checkmarks {
    width: 50px;
    aspect-ratio: 1 / 1;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: checkmarkPop 0.8s ease-out;
}

.thankyou-page .checkmarks i {
    color: white;
    font-size: 30px;
    display: block;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-page h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thankyou-page .description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
}

.thankyou-page .content-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    gap: 40px;
}

.thankyou-page .section {
    flex: 1;
    text-align: center;
    background: white;
    padding: 22px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.thankyou-page .section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.thankyou-page .section h2 {
    font-size: 1.3rem;
    color: var(--main-color);
    font-weight: bold;
}

/* Social icons */
.thankyou-page .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.thankyou-page .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.thankyou-page .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thankyou-page .facebook {
    background: #1877f2;
}

.thankyou-page .linkedin {
    background: #0077b5;
}

.thankyou-page .pinterest {
    background: #bd081c;
}

.thankyou-page .twitter {
    background: #000000;
}

/* Button */
.thankyou-page .visit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(1, 146, 25, 0.3);
    min-width: 150px;
}

.thankyou-page .visit-btn:hover {
    background: #016a14;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 146, 25, 0.4);
}

.checkboxa {
    position: relative !important;
    margin-left: 210px !important;
}
.error-page{
    background: linear-gradient(120deg, #0e213f, #0b1a33);
}
.error-page .container-animation {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-page .error-illustration {
    position: relative;
    margin-bottom: 3rem;
    display: inline-block;
}

.error-page .error-number {
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 0px rgba(4, 56, 107, 0.1);
    line-height: 1;
    position: relative;
    display: inline-block;
}

.error-page .error-number::before {
    content: '404';
    position: absolute;
    top: 4px;
    left: 4px;
    color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.error-page .content {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(4, 56, 107, 0.1);
    backdrop-filter: blur(10px);
}

.error-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--main-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-page .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.error-page .description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-page .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 100%);
    color: var(--white);
}

.error-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0559a3 0%, var(--main-color) 100%);
}

.certifications .certification-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certifications .certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* .certifications .cert-info {
    margin-bottom: 30px;
} */

.certifications .cert-info h1 {
    color: var(--main-color);
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: bold;
}

.certifications .meta-info {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.certifications .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.certifications .inner-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.certifications .inner-text p {
    margin-bottom: 15px;
}

.certifications .certification-details {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.certifications .certificate-design {
    /* width: 250px; */
    /* height: 350px; */
    /* background: linear-gradient(45deg, var(--main-color), #065a9e); */
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 30px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.certifications .certificate-design::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    /* border: 2px solid rgba(255,255,255,0.3); */
    border: 2px solid rgba(5, 42, 250, 0.3);
    border-radius: 10px;
}

.certifications .certificate-visual {
    position: relative;
    overflow: hidden;
    padding: 0.85rem;
    display: flex;
    justify-content: center;

}

.certifications .cert-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.certifications .cert-logo img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* why choose us */
.why-choose-section {
    padding: 60px 0;
}

.why-choose-section .reason-list {
    position: relative;
    padding-left: 45px;
}

.why-choose-section .reason-list::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f0c330;
    /* yellow line */
}

.why-choose-section .reason-item {
    position: relative;
    margin-bottom: 40px;
}

.why-choose-section .reason-number {
    position: absolute;
    left: -45px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #f0c330;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.why-choose-section .reason-item h5 {
    font-weight: 600;
}

.why-choose-section .why-image img {
    max-width: 100%;
    border-radius: 12px;
}

.blog-border {
    font-size: 20px;
    margin: 3px 0 12px;
    font-weight: 500;
    color: #fff;
    padding: 3px 0px;
    border-bottom: solid var(--secondary-color) 3px;
    left: 25px;
    width: 100%;
}

/* services */
.service-section {
    /* background: linear-gradient(135deg, #f0eaff, #ffffff); */
    padding-top: 80px;
    padding-bottom: 80px;
}

.heading-title {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.3;
    color: var(--main-color);
}

/* Service title */
.service-box h5 {
    font-size: clamp(16px, 2vw, 18px);
}

/* Service description */
.service-box p {
    font-size: clamp(14px, 1.8vw, 15px);
}

/* Icon */
.icon {
    background: #f8f6ff;
    padding: clamp(6px, 1.5vw, 8px);
    border-radius: 12px;
    width: clamp(40px, 6vw, 50px);
}

/* Buttons */
.custom-btn,
.custom-outline-btn {
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
}

.custom-btn {
    background-color: var(--main-color);
    border-color: var(--main-color);
    border-radius: 3rem 0.3rem 2rem 3rem;
}

.custom-outline-btn {
    background-color: transparent;
    border-radius: 10px;
    color: #6a5bff;
}

/* Hover */
.custom-btn:hover {
    background-color: var(--main-color);
}

.explore {
    font-size: 0.95rem;
    font-weight: 500;
}
/* Image rounded */
.service-section .swiper-img {
    border-radius: 20px;
}

/* Dots center me */
.service-section .controls-wrap {
    gap: 15px;
}

/* Pagination box styling */
.service-section .swiper-pagination {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: rgb(235, 235, 235);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    width: auto !important;
    position: relative !important;
}

/* Dots */
.service-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cfc6ff;
    opacity: 1;
    margin: 0 4px !important;
}
.service-section .swiper-pagination-bullet-active {
    background: #6a5bff;
}
.swiper-button-next svg, .swiper-button-prev svg {
    display: none !important;
}
/* Remove Swiper default arrow icons */
.service-section .swiper-button-next::after,
.service-section .swiper-button-prev::after {
    content: none !important;
}
.service-section .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 0 !important;
}
/* Custom arrow design */
.service-section .custom-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgb(235, 235, 235);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

/* Arrow icon */
.custom-nav i {
    font-size: 18px;
    color: #6a5bff;
}
.custom-nav:hover i {
    color: var(--main-color);
}

/* Remove absolute positioning */
.service-section .swiper-button-next,
.service-section .swiper-button-prev {
    position: static !important;
    margin: 0 !important;
    inset: unset !important;
}
/* cta */
.cta-section {
    background: #ffffff;
}

.cta-section .cta-box {
    /* max-width: 900px; */
    background: linear-gradient(180deg, #f5f2ff 0%, #d3c4ff 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: clamp(20px, 5vw, 50px);
}

.cta-section .cta-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
    color: #2d1c66;
}
.cta-section p {
    font-size: clamp(14px, 2vw, 16px);
    max-width: 700px;
    margin: 0 auto;
}
/* BUTTONS */
.cta-section .btn {
    padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
    font-size: clamp(14px, 2vw, 16px);
}

/* COLORS */
.cta-section .btn-primary {
    background-color: #6a4dfd;
    border-color: #6a4dfd;
}

.cta-section .btn-primary:hover {
    background-color: #5938f0;
    border-color: #5938f0;
}

.cta-section .btn-outline-primary {
    color: #6a4dfd;
    border-color: #6a4dfd;
}

.cta-section .btn-outline-primary:hover {
    background-color: #6a4dfd;
    color: #fff;
}

.icon-box {
    position: absolute;
    bottom: 7px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.icon-box i {
    font-size: 20px;
    color: #fff;
}

.service-card h5 {
    font-size: 1.05rem;
}

.service-card p {
    font-size: 0.85rem;
}

.slick-dots li button:before {
    color: #fff;
    opacity: 0.6;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.faq-section .custom-accordion {
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-section .custom-accordion:not(.collapsed) {
    background: var(--third-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .custom-accordion::after {
    filter: brightness(0) invert(0);
    /* Black */
}

.faq-section .custom-accordion:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    /* White */
}

.process-section .process-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}

.process-section .process-card {
    position: relative;
    background: #fff;
    padding: 30px 15px;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-color);
}

.process-section .process-card:hover {
    transform: translateY(-5px);
    border: 2px solid var(--secondary-color);
}

.process-section .process-card .card-front {
    z-index: 2;
}

.process-section .process-card .icon-step {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    border-bottom-right-radius: 16px;
    z-index: 2;
    overflow: hidden;
}

.process-section .process-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: 3;
}

.process-section .process-card:hover .card-overlay {
    opacity: 1;
}

.process-section .process-card .card-front .icon-circle {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightgray;
    margin: 0 auto 10px;
}

.process-section .process-card .card-front .icon-circle i {
    font-size: 25px;
    color: rgb(54, 54, 54);
}
.process-section .img-frame img{
    max-height: 550px;
    object-fit: cover;
    width: 100%;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.itad-card {
    background: #fff;
    border: 1px solid #eee;
}

.itad-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itad-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f9fafc;
}

.itad-list li:hover {
    background: #eef5ff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.itad-list .icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.itad-list .text {
    flex: 1;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.itad-list strong {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}

.lifecycle-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    width: 4px;
    height: calc(100% + 30px);
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    position: relative;
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
}

.content-differeciate {
    color: #ffffff;
    /* min-height: 100vh; */
    background: url('../img/industrial-service.jpg');
    position: relative;
    overflow-x: hidden;
}

.content-differeciate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.content-differeciate .content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-differeciate .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.content-differeciate .content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.vs-divider {
    /* grid-column: 1 / -1; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(59, 130, 246, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.vs-circle:hover {
    transform: scale(1.1);
    box-shadow:
        0 15px 40px rgba(59, 130, 246, 0.4),
        0 0 0 6px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vs-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0.5;
}

.vs-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow:
            0 10px 30px rgba(59, 130, 246, 0.3),
            0 0 0 4px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow:
            0 15px 40px rgba(59, 130, 246, 0.4),
            0 0 0 6px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.itam-type-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.itam-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
}

.itam-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ads-img-box .ad-btn-img {
    max-width: 150px;
    object-fit: cover;
}

.ad-buttons a {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover glow only inside .ad-buttons */
.ad-buttons a.bg-main-color:hover {
    box-shadow: 0 0 12px rgba(4, 56, 107, 0.6);
    transform: translateY(-2px);
}

.ad-buttons a.bg-second-color:hover {
    box-shadow: 0 0 12px rgba(1, 146, 25, 0.6);
    transform: translateY(-2px);
}

/* about us digi */
.about-left {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.stack-wrapper {
    position: relative;
    height: calc(3 * 430px + 2 * 40px);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* cards */
/* .stack-card {
    position: sticky;
    top: 100px;
    min-height: 430px;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform .35s ease, box-shadow .35s ease;
}
.stack-wrapper .card1 {
    z-index: 1;
    background: linear-gradient(rgba(0, 63, 116, 0.8), rgba(0, 63, 116, 0.8)),
        url('../img/certification-retrotech.webp');
    background-size: cover;
    background-position: center;
}

.stack-wrapper .card2 {
    z-index: 2;
    background: linear-gradient(rgba(0, 128, 96, 0.8), rgba(0, 128, 128, 0.8)),
        url('../img/growth-retrotech.webp');
    background-size: cover;
    background-position: center;
}

.stack-wrapper .card3 {
    z-index: 3;
    background: linear-gradient(rgba(0, 63, 116, 0.8), rgba(0, 63, 116, 0.8)),
        url('../img/certification-retrotech.webp');
    background-size: cover;
    background-position: center;
} */

/* icon badge */
.icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 32px;
    color: var(--main-color);
    background: linear-gradient(145deg, var(--second-color), #fff);
    border: 3px solid var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.stack-card .card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: inline-block;
}

.stack-card .card-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 80px;
    margin: 0.5rem auto 0 auto;
    border-radius: 50px;
    background: #fff;
}

.partner-logo {
    background: #fff;
    border-radius: 12px;
    padding: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo img {
    max-height: 70px;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* hover: icon badge gets stronger gradient */
.stack-card:hover .icon-wrap {
    background: linear-gradient(145deg, var(--main-color), var(--second-color));
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* hover on whole card */
.stack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.bg-lime {
    background: #d4f54d;
}

/* container styles */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

/* moving text */
.marquee-wrapper .marquee {
    display: inline-block;
    padding: 1rem 0;
    font-weight: 700;
    font-size: 1.25rem;
    color: #000;
    animation: scroll-left 18s linear infinite;
}

/* spacing between items */
.marquee-wrapper .marquee span {
    display: inline-block;
    margin: 0 1.5rem;
}

.marquee-wrapper .marquee .divider {
    font-size: 1.2rem;
}

/* smooth left scroll */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.contact-card h5 {
    font-weight: 600;
}

.contact-card i {
    color: #0d6efd;
    margin-right: 8px;
}

.form-control,
.form-select {
    border-radius: 8px;
}

.btn-submit {
    background: var(--main-color);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-submit:hover {
    background: #e85b00;
}

.info-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.info-header {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    padding: 18px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-body {
    padding: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.info-icon {
    background: #f0f4ff;
    color: #0d6efd;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.info-actions {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* industries */
.industries-section {
    background: var(--second-color);
    color: var(--main-color);
}

.industries-section .section-title {
    font-weight: 700;
    font-size: 2rem;
}

.industries-section .industries-card {
    background: #fff;
    border-radius: 50rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform .3s;
}

.industries-card:hover {
    transform: translateY(-5px);
}

.industries-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 50rem;
    border-top-right-radius: 50rem;
}

.industries-body {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.industries-icon {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: -50px auto 12px;
    z-index: 2;
    position: relative;
}

.industries-link {
    width: 44px;
    height: 44px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    bottom: -22px;
    /* half outside */
    left: 50%;
    transform: translateX(-50%);
    transition: background .3s;
}

.industries-link:hover {
    background: #00284c;
}

/* Slick dots/arrow optional tweaks */
.industries-section .slick-prev:before,
.slick-next:before {
    color: var(--main-color);
}

.industries-section .slick-slide {
    padding: 0 12px;
}

.text-orange {
    color: var(--main-color);
}

.btn-orange {
    background: var(--main-color);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

.btn-orange:hover {
    background: #b75e04;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e5e5;
    transform: translateX(-50%);
}

/* step wrapper */
.step {
    position: relative;
    margin-bottom: 5rem;
    text-align: center;
}

.timeline .step:last-child {
    margin-bottom: 0;
}

/* circle on the line (between cards) */
.step-circle {
    position: absolute;
    top: -19%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: var(--main-color);
    z-index: 2;
}

/* card to the right of the line */
.step-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
}

.crm-features .feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: 1.6rem 1.3rem;
    text-align: center;
    transition: box-shadow .2s ease;
    height: 100%;
}

.crm-features .feature-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
}

.crm-features .feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

.crm-features .feature-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.crm-features .crm-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: .5rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.crm-features h2.section-title {
    font-weight: 700;
    margin-bottom: .25rem;
}

.crm-features p.section-subtitle {
    color: #6b7280;
    margin-bottom: 3rem;
}

.crm-features .feature-card h5 {
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: 1rem;
}

.crm-features .feature-card p {
    color: #3d3d3d;
    font-size: .87rem;
    margin: 0;
}

.crm-banner {
    background: linear-gradient(135deg, #fff 0%, #ffeef8 100%);
    padding: 4rem 0 4rem 0;
    overflow: hidden;
}

.crm-banner h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

.crm-banner .btn-primary-custom {
    background: #a32748;
    border: none;
    color: #fff;
}

.crm-banner .stat-box {
    background: #fff;
    padding: 1rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.crm-banner .banner-img {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
}

/* .pre-built-demos {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
} */

.collab-section .section-title,
.pre-built-demos .section-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.pre-built-demos .section-subtitle {
    max-width: 640px;
    margin: 0 auto 2rem;
    color: #6b7280;
    font-size: 1.125rem;
}

.pre-built-demos .card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pre-built-demos .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.pre-built-demos .card-body {
    padding: 1rem 1.25rem 1.5rem;
}

.pre-built-demos .card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pre-built-demos .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.pre-built-demos .card-body {
    padding: 1rem 1.25rem 1.5rem;
}

.pre-built-demos h6 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.pre-built-demos .nav-link {
    font-weight: 500;
    color: #003f74;
    transition: color .2s;
}

.pre-built-demos .nav-link:hover {
    color: #0d6efd;
}

.pre-built-demos .card img {
    transition: transform .35s ease;
}

.pre-built-demos .card:hover img {
    transform: scale(1.03);
}

.collab-section {
    position: relative;
    background: var(--main-color);
    padding: 80px 0;
    z-index: 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.collab-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/bg-line-2.png") repeat center;
    /* opacity: 0.08; */
    z-index: -2;
    top: 0;
    left: 0;
}

/* Heading + subtitle */
.collab-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Buttons list */
.collab-list {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.collab-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.collab-list button {
    background: #fff;
    color: var(--main-color);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.collab-list button:hover {
    background: #e6f3ff;
    transform: translateY(-3px);
}

.collab-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -80px;
    right: -60px;
    z-index: -2;
}

.collab-section .collab-images img {
    border: 5px solid rgba(255, 255, 255, 0.5019607843);
    border-radius: 10px;
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.2509803922);
    position: absolute;
    bottom: -1%;
}

.collab-section .collab-images .collab-image-1 {
    /* left: 27%; */
    width: 38%;
    position: relative;
    bottom: -50px;
}

.collab-section .collab-images .collab-image-2 {
    left: 9.5%;
    width: 27%;
    z-index: -1;
}

.collab-section .collab-images .collab-image-3 {
    right: 20%;
    width: 32%;
    z-index: -1;
}

.collab-section .collab-images .collab-image-4 {
    right: 13%;
    width: 21%;
    z-index: -2;
}

.seo-hero-banner {
    background: var(--bg-banner) no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 20px 0;
}

.enquiry-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.enquiry-box:hover {
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
}

/* Header */
.enquiry-header {
    text-align: center;
    margin-bottom: 15px;
}

.enquiry-header h4 {
    font-size: 1.25rem;
    /* smaller heading */
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.enquiry-header p {
    font-size: 0.85rem;
    color: #666;
}

/* Form Fields */
.enquiry-box form {
    font-size: 0.9rem;
}

.enquiry-box .form-label {
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.enquiry-box .form-control,
.enquiry-box .form-select {
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 8px 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.enquiry-box .form-control:focus,
.enquiry-box .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    font-size: 0.95rem;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #0056b3, #004099);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.seo-about-us-section .sticky-col {
    position: sticky;
    top: 100px;
    /* viewport ke top se distance */
    align-self: flex-start;
    height: fit-content;
}

.seo-about-us-section .feature-icon {
    font-size: 1.8rem;
    color: #444;
    margin-right: 12px;
}

.seo-about-us-section .highlight {
    color: #e63946;
    font-weight: 600;
}

.seo-about-us-section .soon-badge {
    background-color: #0d6efd;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.seo-about-us-section .feature-box {
    margin-bottom: 1.5rem;
}

.seo-about-us-section .demo-img {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.seo-about-us-section .view-demo {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: -10px;
    margin-bottom: 2rem;
}

#formOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 40, 62, 0.8);
    z-index: 998;
    display: none;
}

#service_form {
    position: relative;
    transition: box-shadow 0.3s ease-in-out;
}

#service_form.form-highlight {
    z-index: 9999;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.area-service-section .icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--main-color), var(--fourth-color));
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Hover: rotate icon, add glow */
.area-service-section .icon-btn:hover {
    transform: rotate(180deg) scale(1.15);
    background: linear-gradient(135deg, var(--fourth-color), var(--main-color));
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25),
        0 0 10px var(--fourth-color);
}

/* Icon pulse glow effect */
.area-service-section .icon-btn i {
    transition: transform 0.4s ease, color 0.3s ease;
}

.area-service-section .icon-btn:hover i {
    transform: rotate(-180deg);
    color: #fff;
}

/* ================================
   Explore More Button Styling
================================ */
.area-service-section .explore-btn .btn {
    background: linear-gradient(135deg, var(--main-color), var(--fourth-color));
    color: #fff;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    padding: 0.7rem 1.6rem;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Glow & rotate arrow animation */
.area-service-section .explore-btn .btn i {
    display: inline-block;
    transition: transform 0.4s ease;
}

.area-service-section .explore-btn .btn:hover i {
    transform: rotate(180deg);
}

/* Hover effect with gradient flip */
.area-service-section .explore-btn .btn:hover {
    background: linear-gradient(135deg, var(--fourth-color), var(--main-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Align text content vertically center with image */
.project-text-slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.project-slider-img {
    max-width: 550px;
    margin: 0 auto;
}

.project-slider-img img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.project-text-slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 30px 20px;
    animation: fadeIn 0.8s ease-in-out;
}

/* Smooth text appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.section-seo h2 {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.4;
    color: #222;
}

.section-seo h2 .highlight {
    color: #007bff;
}

/* Paragraph */
.section-seo p.lead {
    font-size: 1.1rem;
    color: #555;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Toggle section */
.toggle-container {
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #333;
}

/* Stats card */
.stat-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.25);
}

.stat-card .icon-box {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.stat-card h3 {
    margin: 0;
    font-weight: 700;
    color: #222;
}

.stat-card p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.95rem;
}

/* CTA button */
.cta-btn {
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.office-slider-section {
    background-color: #fff;
    padding-bottom: 30px;
}

.office-slider-section h2 {
    font-weight: 700;
    margin-bottom: 45px;
    color: var(--main-color);
}
.office-swiper {
    padding: 10px 5px 50px;
}

.office-swiper .swiper-slide {
    height: auto;
    display: flex;
}
/* Card Styles */
.office-slider-section .office-swiper .office-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--second-color);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.office-slider-section .office-swiper .office-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.office-slider-section .office-card img {
    width: 100%;
    object-fit: cover;
    padding: 0.85rem;
}

.office-slider-section .office-card-body {
    padding: 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.office-slider-section .office-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.office-slider-section .office-arrow i {
    font-size: 20px;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

/* Hover effect */
.office-slider-section .office-arrow:hover {
    background: var(--main-color);
}

.office-slider-section .office-arrow:hover i {
    color: #fff;
    transform: scale(1.2);
}

/* Arrow positioning refinement */
.office-slider-section .office-swiper .swiper-button-prev {
    left: 0px;
}

.office-slider-section .office-swiper .swiper-button-next {
    right: 0px;
}
.office-slider-section .office-card-body h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--main-color);
}

.office-slider-section .office-card-body p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

/* Button */
.office-slider-section .office-card-body .btn-direction {
    border-radius: 50px;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.office-slider-section .office-card-body .btn-direction:hover {
    background-color: #00294f;
}

.office-slider-section .office-card-body .btn-direction i {
    margin-left: 8px;
    transition: margin-left 0.2s ease;
}

.office-slider-section .office-card-body .btn-direction:hover i {
    margin-left: 12px;
}

/* Slick Customization */
.office-slider-section .slick-slide {
    padding: 10px;
}

.office-slider-section .slick-prev:before,
.office-slider-section .slick-next:before {
    color: var(--main-color);
    font-size: 25px;
}

.office-slider-section .slick-dots li button:before {
    color: var(--main-color);
}

.office-slider-section .slick-dots li.slick-active button:before {
    color: var(--main-color);
    opacity: 1;
}

.office-head-img img {
    border-radius: 10px;
}

.horizontal-line {
    height: 4px;
    background-color: var(--main-color);
    border-radius: 10px;
    max-width: 100%;
}

/* webdevelopment */
.offer-section {
    padding: 80px 0;
}

.offer-section h2 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 60px;
}

.offer-section .offer-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.offer-section .offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.offer-section .offer-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
}

.offer-section .offer-card p {
    color: #7a7a7a;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.offer-section .offer-card img {
    width: 100%;
    border-radius: 1rem;
    height: 180px;
    object-fit: cover;
}

.offer-section .arrow-btn {
    background-color: #705cf6;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: auto;
    transition: transform 0.4s ease, background-color 0.3s ease;
}

/* Rotate the up arrow initially to look like up-right */
.offer-section .arrow-btn i {
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

/* Hover animation for arrow */
.offer-section .offer-card:hover .arrow-btn i {
    transform: rotate(90deg) scale(1.3);
}

.offer-section .offer-card:hover .arrow-btn {
    background-color: var(--main-color);
}

.offer-section .view-btn {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-section .view-btn:hover {
    background-color: var(--main-color);
    color: #fff;
    transform: scale(1.05);
}

.offer-section .view-btn i {
    margin-left: 6px;
    transform: rotate(45deg);
    display: inline-block;
}
.box-design .icon-box3 {
    border-radius: 12px;
    padding: 15px 20px;
    transition: background 0.3s ease;
}

.box-design .icon-box3:hover {
    background: #fff;
}

/* Flip effect setup */
.box-design .icon-img {
    perspective: 600px; /* creates a 3D depth */
}

.box-design .icon-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.6s ease;
    transform-origin: center;
}

/* Flip along X-axis on hover */
.box-design .icon-box3:hover .icon-img img {
    transform: rotateY(180deg);
}

.box-design .icon-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}
/* section title new 20 nov 2025 */
.pitch-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pitch-title {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 600;
    color: #2d2d3a;
    letter-spacing: -0.5px;
}
.pitch-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    color: #6f6f7a; 
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.6;
}

/* scroll section */
.our-new-project-section .slide-card {
    display: flex;
    overflow: hidden;
    width:260px;
    height: 120px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    line-height: 0;
}

.our-new-project-section .slide-card img {
    width: 100%;
    height: 100%;               /* height fill karega */
    object-fit: cover;          /* crop + beautiful look */
    object-position: center;    /* center crop */
    display: block;
}
.our-new-project-section .swiper-wrapper {
    display: flex;
    gap: 14px; 
    padding: 14px 0;
}

.swiper {
    overflow: hidden;
}
.overlap-card {
    margin-top: -70px;           
    z-index: 20;
    position: relative;
}
/* Big Title */
.overlap-card .card-title {
    font-size: 2.3rem;            
    font-weight: 800;
    margin-bottom: 0.75rem;
    border: 3px dashed var(--orange);
}

/* Subtitle smaller & soft */
.overlap-card .card-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
}

.tabs-why-choose-new .stat-box {
    background: #f8f9ff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.tabs-why-choose-new .stat-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.tabs-why-choose-new .stat-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.tabs-why-choose-new .stat-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #4f6df5;
    border-radius: 50%;
}

.tabs-why-choose-new .stat-list strong {
    color: #111827;
    font-weight: 700;
}
.tabs-why-choose-new .stat-header-clean {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.tabs-why-choose-new .icon-bordered {
    font-size: 16px;
    color: #4f6df5;
    padding: 8px;
}
/* Header (icon + text) */
.tabs-why-choose-new .stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #4f5d73;
}

.tabs-why-choose-new .stat-header i {
    font-size: 20px;
    color: #4f6df5;
}

/* Title */
.tabs-why-choose-new .stat-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #1f2937;
}

/* Subtitle */
.tabs-why-choose-new .stat-title span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-top: 6px;
    color: #6b7280;
}

.tabs-why-choose-new .nav-pills .nav-link {
    padding: .875rem 2.65rem;
    border-radius: 30px;
    font-weight: 600;
    color: #555;
    font-size: 1rem;
}

/* Tabs container spacing */
.tabs-why-choose-new .nav-pills {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
}
/* Hide scrollbar */
.tabs-why-choose-new .nav-pills .nav-link.active {
    background: var(--tab-active) !important;
    color: #fff !important;
}

.tabs-why-choose-new .hero-section1 {
    background: var(--bg-content-tab);
    padding: 30px 0px 30px 30px;
    border-radius: 22px;
    color: #fff;
}
.tabs-why-choose-new .hero-section1 .mockup-box img{
    border-radius: 0.9rem 0rem 0 0.9rem;
}

.content-section .hero-section1 p{
    line-height: 1.7;
}

/* technology */
.technologiy-section .swiper-slide .card {
  width: 100%;  
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  line-height: 0;
  box-sizing: border-box;
}

.technologiy-section .swiper-wrapper {
  /* don't set display:flex or gap here — let Swiper manage it */
  padding: 14px 0;
}
.faq-section-new {
    background: linear-gradient(135deg, #f7faff, #eef4ff);
}

.faq-section-new .faq-card {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-section-new .faq-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    /* Smooth slide animation */
    .faq-section-new .accordion-collapse {
        transition: all 0.35s ease !important;
    }

.faq-section-new .faq-number {
    font-weight: 600;
    color: #4a89ff;
    margin-right: 14px;
    min-width: 30px;
}

.faq-section-new .faq-title {
    font-size: 15px;
    font-weight: 600;
}

.faq-section-new .faq-icon i {
    font-size: 20px;
    transition: transform .3s ease, color .3s ease;
}

.faq-section-new .accordion-body {
    padding: 0 28px 22px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Open state */
.faq-section-new .faq-card.open .faq-icon i {
    transform: rotate(0deg);
    color: #4a89ff;
}
.faq-tabs-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden; /* IMPORTANT */
  border-bottom: 1px solid #eee;
}

.faq-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.faq-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 0;
}
.faq-tabs .nav-link {
  border: none;
  background: #f5f7fb;
  padding: 10px 20px;
  border-radius: 30px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.faq-tabs .nav-link.active {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-tabs .nav-link:hover {
  background: #e9ecf5;
}
.hero-section {
    /* background: linear-gradient(120deg, #0e213f, #0b1a33); */
    padding-top: 120px;
    padding-bottom: 80px;
}
.hero-section .hero-banner-head{
    font-family: Season Mix,Helvetica Neue,Helvetica,Arial,sans-serif;
}
/* FORM CARD */
.hero-section .hero-form-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.08),
        0 5px 15px rgba(15, 23, 42, 0.05);
    position: relative;
    top: 20px;
    font-family: "Inter", sans-serif;
}

.hero-section .hero-form-card h4 {
    font-weight: 600;
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 1.8rem;
}

.hero-section .form-control,
.hero-section textarea {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #111827;
    transition: all 0.25s ease;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.hero-section .form-control::placeholder,
.hero-section textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}
.hero-section .form-control:focus,
.hero-section textarea:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    outline: none;
}
.hero-section .service-dropdown {
    position: relative;
}

.hero-section .service-toggle {
    width: 100%;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-section .service-toggle:hover {
    background: #ffffff;
    border-color: #2563eb;
}

.hero-section .service-toggle i {
    transition: transform 0.3s ease;
}

/* Dropdown Box */
.hero-section .service-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 20;
    display: none;
    margin-top: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-section .service-dropdown.active .service-menu {
    display: block;
}

.hero-section .service-dropdown.active .service-toggle i {
    transform: rotate(180deg);
}
.hero-section .cursor {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.hero-section .hero-form-card .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    border-radius: 14px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.hero-section .hero-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

/* Spacing for brands + certificates */
.hero-section .our-brands {
    margin-top: 50px;
}

.hero-section .cert-img {
    border-radius: 15px;
}
.hero-section .hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
/* Buttons */
.hero-section .hero-btns .btn {
    padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
    font-size: clamp(14px, 2vw, 16px);
}
.process-btn {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    background: #f8f8f8 !important;         
    border-radius: 50px !important;
    margin-bottom: 1rem;         
    font-weight: 500;
    border: 1px solid #e2e2e2; 
    color: #444;
    transition: 0.25s;
}

.process-btn:hover {
    background: #efefef;
    border-color: #d5d5d5;
}

.process-btn.active {
    background: #111 !important;  /* Active button dark */
    color: #fff !important;
    border-color: #111;
}
.process-btn:hover {
    background: #f1f1f1;
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.invest-section {
    background: #fdf5e6; /* Soft cream background like your sample */
}

.internal-section .tag {
    font-size: 14px;
    font-weight: 600;
    color: #003087;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.internal-section .title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #07143B;
    line-height: 1.2;
    margin-top: 10px;
    font-family: Season Mix,Helvetica Neue,Helvetica,Arial,sans-serif;
}

.internal-section .desc {
    font-size: 1rem;
    color: #444;
    margin-top: 15px;
}

.internal-section .learn-link {
    font-size: 16px;
    font-weight: 600;
    color: #0044ff !important;
    text-decoration: none;
}

.internal-section .learn-link:hover {
    text-decoration: underline;
}

.internal-section .invest-img-box {
    border-radius: 20px;
}

.internal-section .rounded-custom {
    border-radius: 18px;
}

.invest-features .feature-box {
    padding-right: 15px;
}

.invest-features .feature-icon {
    width: 48px;
    height: 48px;
    background: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.invest-features .feature-icon i {
    font-size: 20px;
    color: #000; /* Same as image style */
}

.invest-features h4 {
    font-size: 22px;
    font-weight: 700;
    color: #07143B;
    margin-bottom: 12px;
}

.invest-features p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.invest-features .feature-link {
    color: #0044ff;
    font-weight: 600;
    text-decoration: none;
}

.invest-features .feature-link:hover {
    text-decoration: underline;
}
.internal-section .service-card {
    border: none !important;
    border-radius: 12px;
    /* padding: 20px; */
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.internal-section .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.internal-section .service-card h6 {
    color: #555555;
    font-weight: 300;
}
.internal-section .service-card i {
    color: #4b6cb7;
}
.contact-section-new .contact-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 12px;
}

.contact-section-new .contact-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-section-new .contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Each row */
.contact-section-new .contact-item-new {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Icon box */
.contact-section-new .contact-item-new .icon {
    min-width: 42px;
    height: 42px;
    background: rgba(0, 86, 224, 0.08);
    color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Text */
.contact-section-new .contact-item-new .text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

/* Links */
.contact-section-new .contact-item-new .link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.contact-section-new .contact-item-new .link:hover {
    color: var(--main-color);
}

/* Hover effect */
.contact-section-new .contact-item-new:hover .icon {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
}
.contact-section-new .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-section-new .social-icons .social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 86, 224, 0.08);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover effects */
.contact-section-new .social-icons .social:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
}
.contact-section-new .left-bg {
    position: absolute;
    width: 60%;
    height: 100%;
    background: #f7f7f7;
    left: -20px;
    top: 0;
    z-index: -2;
    border: 15px solid var(--main-color);
}
/* Reference-style underline inputs */
.custom-form-card{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.custom-form-card .input-line {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border-radius: 0 !important;
    padding-left: 0;
}
.custom-form-card .input-line:focus {
    border-bottom: 1.5px solid var(--main-color) !important;
    box-shadow: none !important;
}
.custom-form-card .input-line:hover {
    border-bottom: 1.5px solid #e93d27 !important;
    transition: 0.3s ease;
}
.custom-form-card .custom-form-card {
    border-radius: 0;
    transition: 0.3s ease;
}
.custom-form-card .custom-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}
/* Checkbox alignment clean */
.custom-form-card .form-check-input {
    margin-top: 5px;
}
/* Button */
.custom-form-card .btn-danger {
    background: #e93d27;
    border: none;
    letter-spacing: 2px;
}
.content-section .nav-pills .nav-link {
    font-size: 1rem;
    
}
/* local seo services */
.services-wrapper {
    background: radial-gradient(circle at top left, #e54b2d, #0c1530 45%, #000 80%);
    border-radius: 18px;
    padding: 60px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* LEFT LIST */
.services-wrapper .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-wrapper .service-item.nav-link {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.45);
    font-size: 34px;
    font-weight: 500;
    padding: 24px 0;
    text-align: left;
    border-radius: 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    font-family: "DM Sans", serif;
    cursor: pointer;
}

.service-item.nav-link.active {
    color: #fff;
    border-bottom: 1px solid #ffffff;
    background: transparent !important;
}

/* RIGHT CARD */
.services-wrapper .service-card {
    background: #fff;
    color: #000;
    border-radius: 18px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-wrapper .icon-boxes {
    width: 60px;
    height: 60px;
    background: #8b93ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
}

.services-wrapper .service-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-wrapper .service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.services-wrapper .service-card .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.services-wrapper .service-card .feature-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 12px;
}

.services-wrapper .service-card .feature-list i {
    font-size: 12px;
    margin-right: 12px;
}

.services-wrapper .service-card .btn-outline-dark {
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 14px;
}
/* digital mrketing services */
.brixon-section {
  background: radial-gradient(circle at top left, #141c25, #0e141b);
}

/* Preview window */
.brixon-section .preview-window {
  border-radius: 12px;
  background: #1a1f26;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}

.brixon-section .window-header {
  background: #111;
  padding: 8px 12px;
  display: flex;
  gap: 6px;
}

.brixon-section .window-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
}

.brixon-section .preview-body {
  position: relative;
}

.brixon-section .preview-body img {
  width: 100%;
  display: block;
}
.brixon-section .action-bar {
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.brixon-section .contact-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-radius: 50%;
    color: #cfd6dd;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s ease;
    text-decoration: none;
}

.brixon-section .contact-icons a:hover {
    color: #fff;
    border-color: #d4af37;
    transform: translateY(-2px);
}

.brixon-section .contact-icons i {
    font-size: 1.2rem;
}

.brixon-section .action-bar .btn-gold {
    color: #0e141b;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    border: none;
    font-size: 14px;
    letter-spacing: 0.6px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(212,175,55,0.25);
    transition: all 0.3s ease;
}

.brixon-section .action-bar .btn-gold:hover {
    background: linear-gradient(135deg, #e6c85a, #caa43d);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212,175,55,0.35);
    color: #0e141b;
}
/* Right side */
.brixon-section .learn-more {
  color: #4da3ff;
  text-decoration: none;
  font-weight: 500;
}

.brixon-section .learn-more:hover {
  text-decoration: underline;
}

/* Stats */
.brixon-section .stat-box h3 {
  font-weight: 700;
  margin-bottom: 4px;
}

.brixon-section .stat-box p {
  margin: 0;
  color: #9aa4af;
  font-size: 14px;
}

.brixon-section .stat-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin-bottom: 10px;
}
/* title header */
/* .service-header {
    background: #ffffff;
} */

/* Small label */
.digital-service-title .section-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    padding-left: 22px;
    display: inline-block;
}

.digital-service-title .section-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 10px;
    height: 10px;
    background: #f6c600;
    box-shadow: 14px 0 0 #f6c600;
}

/* Title */
.digital-service-title .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1c252c;
    line-height: 1.2;
}

/* Gradient line */
.digital-service-title .gradient-line {
    width: 260px;
    height: 8px;
    background: linear-gradient(
        90deg,
        #007cf0,
        #7928ca,
        #ff0080,
        #ff8c00,
        #ffe600
    );
    border-radius: 4px;
}

/* Description */
.digital-service-title .section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #7a7f85;
}

.development-services::before{
    content: "";
    position: absolute;
    background: url('https://www.webbycentral.com/assets/images/background.png');
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}
.development-services .nav-pills .nav-link.active, 
.development-services .nav-pills .show>.nav-link{
    color: orange;
    background-color: transparent;
}
.development-services .nav-pills .nav-link{
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    text-align: start;
    font-family: 'Segoe UI', sans-serif;
    padding-left: 0;
}
.development-services .nav-pills .nav-link em{
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #fa7805;
    left: 102%;
    top: 50%;
    z-index: 1;
    display: none;
    transform: translateY(-50%);
}
.development-services .nav-pills .nav-link.active em{
    display: block;
}
.development-services .nav-pills .nav-link em i{
    color: white;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
}
.development-services .service-brand{
    color: #e8e8e8;
    font-size: 82px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 0.9px;
    display: block;
    position: relative;
}
.development-services .service-brand h2{
    color: #000;
    font-size: 37px;
    font-weight: 700;
    text-transform: capitalize;
    position: absolute;
    left: 0;
    top: 50%;
    margin-left: 8px;
    margin-top: -2px;
    margin-bottom: 0;
    letter-spacing: -0.1px;
    transform: translateY(-50%);
}
.development-services .service-desc{
    line-height: 1.7;
}
.development-services .service-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.development-services .service-list li{
    display:flex;
    align-items:flex-start;
    font-size:15px;
    color:#444;
    line-height:1.6;
    margin-bottom: 0.80rem;
}

.development-services .tick{
    width:30px;
    height:30px;
    border-radius:50%;
    background:linear-gradient(135deg,#007bff,#00c6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    color:#fff;
    font-size:13px;
    box-shadow:0 6px 14px rgba(0,0,0,0.15);
}
/* services four */
.new-services-four .stack-card {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #f8f9fa;
    transition: all 0.4s ease;
}
.new-services-four .stack-card:not(:first-child) {
    margin-top: -60px;
}
.new-services-four .hero-section_ {
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.new-services-four .hero-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.new-services-four .hero-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
}
.new-services-four .feature-list{
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.new-services-four .feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.new-services-four .feature-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff5a00;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
    box-shadow: 0 0 0 4px rgba(255,90,0,0.15);
}
.new-services-four .btn-orange {
    background: #ff5a00;
    color: #fff;
    padding: 9px 22px; 
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid #ff5a00;
    transition: all 0.3s ease;
    font-size: 14px;
}
.new-services-four .btn-orange:hover {
    background: #e64e00;
    color: #fff;
}
/* OUTLINE BUTTON */
.new-services-four .btn-outline-orange {
    background: transparent;
    color: #ff5a00;
    padding: 9px 22px; 
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid #ff5a00;
    transition: all 0.3s ease;
    font-size: 14px;
}
.new-services-four .btn-outline-orange:hover {
    background: #ff5a00;
    color: #fff;
}
.new-services-four .hero-image {
    border-radius: 20px;
    overflow: hidden;
}

.new-services-four .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-banner {
    position: relative;
    padding-top: 15rem;
    padding-bottom: 5rem;
    background: url('../img/page-title.jpg') center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content .page-head {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content .page-head span {
    color: #6CFF4F; /* green highlight */
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #6CFF4F;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "-";
    color: #6CFF4F;
    padding: 0 10px;
}
/* ===========================
   ABOUT STRATEGY SECTION
=========================== */
.about-strategy-section h1 {
    font-size: 2.6rem;
    line-height: 1.2;
}
.strategy-green {
    color: #7CFF4E;
}

/* Experience Badge */
.strategy-experience-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    padding: 18px 50px;
    width: fit-content;
    background: #fff;
}

.strategy-experience-badge .number {
    font-size: 55px;
    font-weight: 500;
    color: #111;
}

.strategy-experience-badge .text {
    font-size: 20px;
    line-height: 1.3;
}

/* Underline */
.strategy-underline {
    width: 70px;
    height: 3px;
    background: #000;
    border-radius: 4px;
}

/* Images */
.strategy-experience-badge .strategy-img {
    object-fit: cover;
}

/* Positioning */
.about-strategy-section .left-img {
    margin-top: 80px;     /* niche */
}
.about-strategy-section .right-img {
    margin-bottom: 80px;  /* upar */
}

.about-strategy-section .strategy-letter {
    letter-spacing: 2px;
}
/* custom about us page */
.about-page-custom .timeline-bs {
    position: relative;
}

/* Vertical line */
.about-page-custom .timeline-bs::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #000;
    transform: translateX(-50%);
}

/* Center column */
.about-page-custom .timeline-center {
    position: relative;
}

.about-page-custom .timeline-center .step {
    display: inline-block;
    background: #fff;
    padding: 6px 12px;
    font-weight: 600;
    z-index: 2;
}

/* custom stats */
.kuch-bhi-section .stats-section {
    color: #fff;
}

.kuch-bhi-section .stats-item {
    padding: 20px 10px;
}

.kuch-bhi-section .stats-number {
    font-size: 64px;
    font-weight: 500;
    color: #ff7a18;
    margin-bottom: 8px;
}

.kuch-bhi-section .stats-label {
    font-size: 15px;
    color: #d0d0d0;
}
.crm-hero {
    background: radial-gradient(
        circle at top,
        #1e293b,
        #020617 65%
    );
    padding-top: 140px; /* transparent header */
}

/* Badge */
.crm-hero .crm-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.35);
    padding: 10px 18px;
    font-weight: 500;
    border-radius: 999px;
}

/* Title */
.crm-hero .crm-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}

/* Subtitle */
.crm-hero .crm-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    margin: 0 auto;
}

/* Gradient text */
.crm-hero .text-gradient {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.crm-hero .shadow-primary {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
}

/* Floating icons */
.crm-hero .crm-icon {
    position: absolute;
    font-size: 46px;
    color: rgba(255, 255, 255, 0.08);
}

.crm-hero .icon-1 {
    top: 22%;
    left: 12%;
}

.crm-hero .icon-2 {
    bottom: 22%;
    right: 14%;
}

.crm-hero .icon-3 {
    top: 30%;
    right: 28%;
    font-size: 36px;
}

/* Blur shapes */
.crm-hero .blur-shape {
    position: absolute;
    filter: blur(110px);
    opacity: 0.55;
}

.crm-hero .blur-1 {
    width: 320px;
    height: 320px;
    background: #2563eb;
    top: -100px;
    left: -100px;
}

.crm-hero .blur-2 {
    width: 280px;
    height: 280px;
    background: #7c3aed;
    bottom: -80px;
    right: -80px;
}
/* new section design crm */


/* Card wrapper */
.dashboard-showcase .dashboard-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    padding: 10px;
    transition: transform 0.4s ease;
}

/* Image */
.dashboard-showcase .dashboard-card img {
    border-radius: 12px;
    background: #fff;
}

/* Hover lift */
.dashboard-showcase .dashboard-card:hover {
    transform: translateY(-10px);
}

/* Overlay */
.dashboard-showcase .card-overlay {
    position: absolute;
    inset: 10px;
    background: rgba(2, 6, 23, 0.75);
    /* backdrop-filter: blur(4px); */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 12px;
}

/* Show overlay */
.dashboard-showcase .dashboard-card:hover .card-overlay {
    opacity: 1;
}

/* Button hover */
.dashboard-showcase .card-overlay .btn {
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Title */
.dashboard-showcase .card-title {
    font-weight: 600;
    letter-spacing: 0.3px;
}
/* slider dashboard */
/* .crm-dashboard-slider {
    padding-bottom: 100px;
} */

/* Swiper base */
.crm-dashboard-slider .swiper {
    width: 100%;
    overflow: visible;
}

/* Slides */
.crm-dashboard-slider .swiper-slide {
    opacity: 0.35;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

/* Image */
.crm-dashboard-slider .swiper-slide img {
    width: 100%;
    display: block;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* CENTER SLIDE */
.crm-dashboard-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1.08);
    z-index: 2;
}

/* LEFT + RIGHT SLIDES */
.crm-dashboard-slider .swiper-slide-prev,
.crm-dashboard-slider .swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.96);
}

/* Smooth depth feel */
.crm-dashboard-slider .swiper-slide-active img {
    box-shadow: 0 50px 120px rgba(99,102,241,0.35);
}
/* industries page */
.industries-section-new {
  background: #f8fafc;
}

.industries-section-new .industry-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.25s ease;
  height: 100%;
}

.industries-section-new .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.industries-section-new .card-img-wrapper {
  position: relative;
  padding: 12px;
}

.industries-section-new .card-img-wrapper img {
  border-radius: 14px;
  width: 100%;
  object-fit: cover;
}

/* icon badge */
.industries-section-new .icon-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.industries-section-new .icon-badge i {
  color: #7c3aed;
  font-size: 16px;
}

.industries-section-new .card-body {
  padding: 16px 20px 24px;
}

.industries-section-new .card-body h5 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.industries-section-new .card-body p {
  color: #6b7280;
  font-size: 14px;
}
.industries-section-new .swiper-button-next,
.industries-section-new .swiper-button-prev {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.industries-section-new .swiper-button-next::after,
.industries-section-new .swiper-button-prev::after {
  font-size: 16px;
  color: #111;
  font-weight: bold;
}
/* SECTION BACKGROUND */
.workflow-section-new {
  padding: 60px 0;
  background: linear-gradient(135deg, #2f6bff, #2a1bbf);
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* TITLE */
.workflow-section-new .small-title {
  font-size: 14px;
  opacity: 0.9;
}

.workflow-section-new .small-title span {
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

.workflow-section-new .main-title {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}
/* STEP CARD */
.workflow-section-new .workflow-step {
  text-align: center;
  position: relative;
  padding: 40px 15px 0px;
}

/* BIG FADED NUMBER */
.workflow-section-new .step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 90px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
}

/* TEXT */
.workflow-section-new .workflow-step h5 {
  margin-top: 60px;
  font-weight: 600;
}

.workflow-section-new .workflow-step p {
  font-size: 14px;
  opacity: 0.9;
}

/* CIRCLE BUTTON */
.workflow-section-new .step-circle-new {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  background: #2f43ff; 
  position: relative;
  z-index: 2;
}

.workflow-section-new .step-circle-new i {
  color: #fff;
}

/* image */
.indus-services-section .image-wrapper img {
    width: 100%;
    border-radius: 16px;
}

/* card */
.indus-services-section .service-card {
    padding: 30px;
    position: relative;
    left: -80px; 
}

/* service items */
.indus-services-section .service-item {
    gap: 18px;
    align-items: flex-start;
}

.indus-services-section .number-box {
    width: 46px;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #444;
    background: #fff;
}

.indus-services-section .service-card hr {
    margin: 20px 0;
    border-color: gray;
}
/* ===== MOBILE NAV WRAPPER ===== */
.mobile-nav {
    font-family: Inter;
}

/* HEADER */
.mobile-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.mobile-subheader {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 60px;
    z-index: 15;
    background: #fff;
}

.mobile-subheader.active {
    display: flex;
}
.back-btn {
    font-size: 18px;
    background: none;
    border: none;
}

.menu-title {
    font-weight: 600;
}

/* CONTAINER */
.menu-container {
    position: relative;
    height: calc(100vh - 110px);
    overflow: hidden;
}

/* LEVEL */
.menu-level {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE SCREEN */
.menu-level.active {
    transform: translateX(0);
    box-shadow: -8px 0 20px rgba(0,0,0,0.08);
}

/* PREVIOUS SCREEN (fully hidden left) */
.menu-level.prev {
    transform: translateX(-100%);
}

/* ITEM */
.menu-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-forward {
    font-size: 13px;
    color: #999;
}

/* hover feel */
.menu-item:hover {
    background: #f9fafb;
}
/* LINKS */
.menu-link {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: #64748b;    
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
}
.menu-link:last-child {
    border-bottom: none;
}

.menu-link:hover {
    background: #f8fafc;
    color: #0f172a;
}
.menu-level[data-level="1"] {
    background: #fafafa;
}

.menu-level[data-level="1"] .menu-item {
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.menu-level[data-level="1"] .menu-item:last-child {
    border-bottom: none;
}

.menu-level[data-level="1"] .menu-item:hover {
    background: #f1f5f9;
}

.menu-level[data-level="1"] .menu-forward {
    font-size: 12px;
    color: #94a3b8;
}
@media(min-width: 991px) {
    .industries-we-serve .grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .industries-we-serve .grid-item:hover>.title {
        opacity: 0;
        visibility: hidden;
    }

    .industries-we-serve .grid-item:hover .overlay {
        opacity: 1;
        visibility: visible;
    }
    .certificateSwiper {
        display: none;
    }
    .kuch-bhi-section .stats-border {
        border-left: 1px solid rgba(255,255,255,0.15);
    }
    .development-services .services-title{
        color: #fff;
    }
}

@media(min-width: 768.98px) {}

@media (max-width: 992px) {
    .development-services .nav-pills .nav-link{
        color: #000;
    }
    .development-services::before {
        display: none;
    }
    .development-services .nav {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px;
    }

    .development-services .nav-link {
        font-size: 16px !important;
        padding: 8px 10px !important;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        text-align: center;
    }

    /* arrow hide */
    .development-services .nav-link em {
        display: none !important;
    }
    .development-services .service-brand {
        font-size: 40px;
    }

    .development-services .service-brand h2 {
        font-size: 22px;
        position: static;
        transform: none;
        margin: 0;
    }
    .development-services .row {
        gap: 25px;
    }

    .development-services .service-desc {
        font-size: 14px;
    }

    .development-services .service-list li {
        font-size: 14px;
    }

    .development-services .tick {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .tabs-why-choose-new .hero-section1 {
        padding: 25px;
    }
    /* better spacing */
    .mockup-box {
        margin-top: 20px;
    }
    .footer{
        margin-bottom: 60px;
    }
    .footer-content{
        display: none;
    }
     .footer-mobile .footer-column {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 14px 0;
    }

    .footer-mobile .footer-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 15px;
        color: #fff;
        margin-bottom: 0;
    }

    /* FIX: force vertical */
    .footer-mobile .footer-links {
        display: block;
        list-style: none;
        padding-left: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease; /* smoother */
    }

    .footer-mobile .footer-links.active {
        max-height: 300px;
        margin-top: 10px;
    }

    .footer-mobile .footer-links li {
        margin-bottom: 10px;
    }

    .footer-mobile .footer-links a {
        display: block;
        font-size: 14px;
        color: #bbb;
    }

    /* Arrow animation */
    .footer-mobile .footer-title i {
        transition: transform 0.3s ease;
    }
    .footer-mobile .footer-title.active{
        margin-bottom: 0.85rem;
    }
    .footer-mobile .footer-title.active i {
        transform: rotate(180deg);
    }
    .footer .footer-head p{
        font-size: 1rem;
    }
    .mega-menu-container {
        display: none !important;
    }
    .indus-services-section .service-card {
        left: 0;
        margin-top: 25px;
    }
    .kuch-bhi-section .stats-number {
        font-size: 42px;
    }
    .timeline-bs::before {
        left: 15px;
        display: none;
    }

    .timeline-center {
        text-align: left !important;
        margin-bottom: 15px;
    }

    .timeline-center .step {
        margin-left: -8px;
    }
    /*  */
    .about-strategy-section .left-img,
    .about-strategy-section .right-img {
        margin: 0;
    }

    .strategy-experience-badge {
        flex-direction: column;
        text-align: center;
    }
    .certificate-static {
        display: none !important;
    }
    .banner-title {
        font-size: 2.8rem;
    }

    .minimal-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    .offcanvas-body .dropdown-menu {
        position: absolute !important;
        top: 100%;
        left: 0;
        min-width: 200px;
        z-index: 1050;
    }

    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer .services-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .experience-number {
        font-size: 140px;
    }

    .industries-we-serve .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-we-serve .grid-container .grid-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .itad-list li {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .itad-list .icon {
        flex: 0 0 45px;
        height: 45px;
        width: 45px;
        font-size: 18px;
        margin-right: 12px;
    }

    .itad-list .text {
        font-size: 14px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .timeline-item::before {
        left: 20px;
        transform: none;
    }

    .timeline-number {
        left: 20px;
        transform: none;
        top: 0;
        margin-bottom: 1rem;
    }

    .timeline-content {
        margin: 1rem 0 1rem 60px;
        width: 100%;
    }
    .contact-section-new .left-bg {
        width: 80%;
        border-width: 10px;
    }
    .contact-section-new .title h3 {
        font-size: 2.2rem;
    }
    .contact-section-new .custom-form-card {
        margin-top: 30px;
    }
    .pitch-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .testimonials-section2 .card-custom {
        height: auto;   /* content cut fix */
    }

    /* row stack properly */
    .testimonials-section2 .row {
        flex-direction: column;
    }

    /* right section visible properly */
    .testimonials-section2 .right-bg {
        padding: 15px !important;
        display: block;
    }

    /* review box fix */
    .review-content {
        height: auto;   /* h-100 hatao effect */
        padding: 18px;
    }

    /* text readable */
    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }
    .step{
        margin-bottom: 0;
    }
}

@media (max-width:768px) {
    .blog-section .slick-previous {
        left: 10px;
    }

    .blog-section .slick-next-step {
        right: 10px;
    }
    .stat-box {
        flex-direction: column;
        text-align: center;
    }

    .banner-heading {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 15px;
        width: 100%;
    }

    .custom-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .left-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experience-card {
        width: 325px;
        height: 325px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-banner {
        padding-bottom: 60px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 30px;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .industries-we-serve .grid-container {
        grid-template-columns: 1fr;
    }

    .industries-we-serve .grid-container .grid-item {
        min-height: auto;
        height: auto;
    }

    .industries-we-serve .title {
        font-size: 20px;
    }

    .industries-process .section-title {
        font-size: 2rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .industries-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-title {
        font-size: 2rem;
    }

    .blog-detail .popular-posts {
        position: static;
    }

    .faq-sidebar {
        position: static;
        order: -1;
    }

    .category-btn {
        justify-content: center;
        font-size: 0.85rem;
    }

    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-flip-container .office-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-flip-container .flip-card {
        height: 200px;
    }

    .thankyou-page .main-content {
        padding: 40px 30px;
    }

    .thankyou-page h1 {
        font-size: 2.5rem;
    }

    .thankyou-page .content-sections {
        flex-direction: column;
        gap: 30px;
    }

    .thankyou-page .section {
        padding: 30px 20px;
    }

    .thankyou-page .section h2 {
        font-size: 1.2rem;
    }

    .thankyou-page .social-icons {
        gap: 8px;
    }

    .thankyou-page .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .thankyou-page .visit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .footer .locations {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer .services-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .faq-sidebar {
        flex: 1 1 auto;
        max-width: 100%;
        position: static;
    }

    .breadcrump-banner {
        min-height: 120px;
        padding: 20px 0;
        text-align: center;
    }

    .banner-heading h3 {
        font-size: 1.4rem;
    }

    .breadcrumb {
        justify-content: center;
        font-size: 0.9rem;
    }

    .timeline-number {
        display: none;
    }

    .timeline-content {
        margin-left: 0;
        padding-left: 1rem;
    }

    .timeline-item::before {
        left: 10px;
    }

    .timeline-item {
        margin-bottom: 0;
    }

    .area-service-section .contact-row {
        flex-direction: column;
        align-items: center;
    }

    .area-service-section .icon-group {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 0.8rem;
    }

    .area-service-section .explore-btn {
        justify-content: center;
    }

    .project-images-slider .slick-prev {
        left: 10px;
    }

    .project-images-slider .slick-next {
        right: 10px;
    }
    .swiper-button-prev { left: 2%; }
    .swiper-button-next { right: 2%; }
/* new design */
     .nav-pills {
        justify-content: center;
        overflow: visible;
        white-space: normal;
    }

    .nav-pills::-webkit-scrollbar {
        display: none;
    }

    .nav-pills .nav-item {
        flex: 0 0 auto;
    }
    .contact-section-new .left-bg {
        width: 100%;
        left: 0;
        border-width: 8px;
    }

    .title h3 {
        font-size: 2rem;
    }

    .contact-section-new .address-detail h5 {
        font-size: 1.1rem;
    }

    .contact-section-new .input-line {
        font-size: 0.9rem;
    }

    .contact-section-new .custom-form-card {
        padding: 10px 5px;
    }

    .contact-section-new .btn-danger {
        width: 100%;
    }

    /* Reduce checkbox clutter */
    .contact-section-new .form-check-label {
        font-size: 0.9rem;
    }
}

@media (max-width:576px) {
    .development-services {
        padding: 30px 0;
    }

    .development-services .nav-link {
        width: 100%;
    }
    .hero-section .hero-btns {
        flex-direction: column;
    }

    .hero-section .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    .pitch-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .pitch-title {
        line-height: 1.3;
        letter-spacing: 0;
    }
    .pitch-subtitle {
        max-width: 100%;
        padding: 0 10px;
    }
    /* buttons stack */
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    /* spacing adjust */
    .cta-section .cta-box {
        padding: 20px;
    }
    /* stack reverse (image neeche aaye) */
    .tabs-why-choose-new .hero-section1 .row {
        flex-direction: column-reverse;
    }

    /* padding fix */
    .tabs-why-choose-new .hero-section1 {
        padding: 20px;
        text-align: center;
    }

    /* image spacing */
    .mockup-box {
        margin-top: 15px;
    }

    /* image radius fix */
    .tabs-why-choose-new .hero-section1 .mockup-box img {
        border-radius: 12px;
    }

    /* button full width */
    .tabs-why-choose-new .hero-section1 .btn {
        width: 100%;
    }
}

@media (max-width:468px) {
    .contact-section-new .title h3 {
        font-size: 1.7rem;
    }

    .contact-section-new {
        padding: 2rem 0;
    }

    .contact-section-new .left-bg {
        border-width: 6px;
    }

    .contact-section-new .custom-form-card {
        margin-top: 20px;
        padding: 20px 12px;
    }

    .contact-section-new .form-check-input {
        width: 14px;
        height: 14px;
    }
    .contact-section-new .title h3 {
        font-size: 1.7rem;
    }

    .contact-section-new {
        padding: 2rem 0;
    }

    .contact-section-new .left-bg {
        border-width: 6px;
    }

    .contact-section-new .custom-form-card {
        margin-top: 20px;
        padding: 20px 12px;
    }

    .contact-section-new .form-check-input {
        width: 14px;
        height: 14px;
    }
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-cta {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .about-us .shape-1 {
        max-width: 320px;
    }

    .experience-card {
        width: 290px;
        height: 290px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        min-height: 1500px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .thankyou-page .main-content {
        padding: 30px 20px;
    }

    .thankyou-page h1 {
        font-size: 2rem;
    }

    .thankyou-page .description {
        font-size: 1rem;
    }

    .thankyou-page .section h2 {
        font-size: 1.4rem;
    }

    .service-banner-section .lead {
        font-size: 1rem;
    }

    .industries-process-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services-inner-page.hero h1 {
        font-size: 2rem;
    }

    .services-inner-page .section-title.h2 {
        font-size: 1.6rem;
    }

    .services-inner-page .benefit-card {
        padding: 1.2rem;
    }
}