/*================ smooth-scroll ================ */
/* Ensure the page height is calculated correctly immediately */
html.lenis,
html.lenis body {
    height: auto;
}

/* Let the library handle the smoothing, not the browser */
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* Prevent layout jumps when Lenis is active */
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

/* Optional: Hide scrollbar if you want that ultra-clean look */
/* ::-webkit-scrollbar { width: 0; } */

:root {
    --primary-dark-blue: #101729;
    --blue: #4A84EE;
}

/*=========== Global Css ======== */
ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body,
* {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*========== preloader ==========  */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    transition: visibility 0.6s;
}

/* Centered Content */
.loader-content {
    position: relative;
    z-index: 10;
    text-align: center;
    transition: opacity 0.3s ease-out;
    /* Faster fade out */
}

.loader-logo {
    width: 300px;
    /* Adjust as needed */
    margin-bottom: 20px;
    display: block;
}

/* Circular Progress */
.circular-loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(74, 132, 238, 0.2);
    /* Light #4A84EE */
    border-top: 3px solid #4A84EE;
    /* Primary Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 10px;
    color: var(--primary-dark-blue);
    /* Dark Navy */
    font-family: sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
}

/* The 4 Vertical Slices */
.loader-slices {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.loader-slices span {
    flex: 1;
    height: 100%;
    background-color: #ffffff;
    /* Set origin to right so they collapse toward the left */
    transform-origin: right;
    /* Use scaleX instead of translateY */
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transform: scaleX(1);
    /* Initial state: full width */
}

/* Spin Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loaded State */
#preloader.loaded {
    visibility: hidden;
}

#preloader.loaded .loader-content {
    opacity: 0;
}

#preloader.loaded .loader-slices span {
    /* Collapse width to 0 */
    transform: scaleX(0);
    /* Ensure translateY is removed if it was there */
    translate: none;
    transition-delay: 0.1s;
}

/* Stagger the slices for a premium feel */

/* =================================== */
/* --- Header Base --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    /* Increased to stay above the menu */
    padding: 40px 50px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-header.menu-active {
    z-index: 99;
}

.main-header.menu-active .logo {
    opacity: 0;
    pointer-events: none;
}

/* --- The Sticky/Stay State --- */
.main-header.is-sticky {
    background: #101729;
    padding: 15px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Hamburger to X Animation --- */
.menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    margin-right: 60px;
    position: relative;
    z-index: 3001;
    /* Ensure button is always clickable */
}

.menu-text {
    font-weight: 700;
    margin-right: 15px;
    font-size: 15px;
    transition: opacity 0.3s;
    margin-bottom: 0;
}

.hamburger {
    width: 32px;
    height: 6px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:last-child {
    bottom: 0;
}

/* --- ACTIVE STATE (The Cross) --- */
/* When menu is open, we transform the two spans into an X */
.main-header.menu-active .hamburger span:first-child {
    top: 2.5px;
    transform: rotate(45deg);
}

.main-header.menu-active .hamburger span:last-child {
    bottom: 2.5px;
    transform: rotate(-45deg);
}

/* --- Updated Full Screen Overlay --- */
.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("../../assets/images/headerlayer.png");
    background-position: center;
    background-size: cover;
    z-index: 2000;

    /* Change: Use clip-path instead of translateY */
    /* This starts as a tiny circle at the top right (near the menu button) */
    clip-path: circle(0% at 90% 5%);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);

    display: flex;
    justify-content: flex-start;
    visibility: hidden;
}

.close_social_bar {
    width: 120px;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.close_social_bar ul {
    margin-bottom: 0;
    display: inline-flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}

.full-screen-menu.open {
    clip-path: circle(150% at 90% 5%);
    visibility: visible;
}

.menu-links {
    height: 100%;
    width: 244px;
    background: linear-gradient(142.13deg, rgba(254, 248, 255, 0.21) 1.8%, rgba(254, 248, 255, 0) 99.75%);
    backdrop-filter: blur(87.96089935302734px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
}

/* Hide the original Close div since we are using the hamburger now */
#menuClose {
    cursor: pointer;
    transition: 0.35s ease;
}

#menuClose:hover {
    transform: scale(2);
}

.menu-links ul {
    list-style: none;
    padding: 10px 0;
}

.menu-links li  {
    position: relative;
    opacity: 0;
    /* Hidden by default */
    transform: translateY(20px);
    transition: color 0.3s, transform 0.4s, opacity 0.4s;
}

.menu-links li a{
    display: block;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin: 15px 0;
}

.full-screen-menu.open .menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.full-screen-menu.open .menu-links li:nth-child(1) {
    transition-delay: 0.4s;
}

.full-screen-menu.open .menu-links li:nth-child(2) {
    transition-delay: 0.5s;
}

.full-screen-menu.open .menu-links li:nth-child(3) {
    transition-delay: 0.6s;
}

.full-screen-menu.open .menu-links li:nth-child(4) {
    transition-delay: 0.7s;
}

.full-screen-menu.open .menu-links li:nth-child(5) {
    transition-delay: 0.8s;
}

.full-screen-menu.open .menu-links li:nth-child(6) {
    transition-delay: 0.9s;
}

.full-screen-menu.open .menu-links li:nth-child(7) {
    transition-delay: 0.10s;
}

.menu-links a:hover {
    color: #4A84EE;
}
/* New menu */
/* ===============================
   Base Menu
================================ */
.menu_outer{
   background: linear-gradient(142.13deg, rgba(254, 248, 255, 0.21) 1.8%, rgba(254, 248, 255, 0) 99.75%);
   height: 100%;
   width: 244px;
}
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu > li {
  position: relative;
  opacity: 0;
    /* Hidden by default */
  transform: translateY(20px);
  transition: color 0.3s, transform 0.4s, opacity 0.4s;
}

.menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.menu > li > a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.full-screen-menu.open .menu > li{
    opacity: 1;
    transform: translateY(0);
}

.full-screen-menu.open .menu > li:nth-child(1) {
    transition-delay: 0.4s;
}

.full-screen-menu.open .menu > li:nth-child(2) {
    transition-delay: 0.5s;
    z-index: 9999;
    opacity: 1;
}

.full-screen-menu.open .menu > li:nth-child(3) {
    transition-delay: 0.6s;
}

.full-screen-menu.open .menu > li:nth-child(4) {
    transition-delay: 0.7s;
}

.full-screen-menu.open .menu > li:nth-child(5) {
    transition-delay: 0.8s;
}

.full-screen-menu.open .menu > li:nth-child(6) {
    transition-delay: 0.9s;
}

.full-screen-menu.open .menu > li:nth-child(7) {
    transition-delay: 0.10s;
}
.full-screen-menu.open .menu > li:nth-child(8) {
    transition-delay: 1s;
}

.social_platforms li a{
  opacity: 0;
    /* Hidden by default */
  transform: translateY(20px);
  transition: transform 0.4s, opacity 0.4s;
}
.full-screen-menu.open .social_platforms li a{
    opacity: 1;
    transform: translateY(0);
}
.full-screen-menu.open .social_platforms li:nth-child(1) a{
    transition-delay: .1999s;
}
.full-screen-menu.open .social_platforms li:nth-child(2) a{
    transition-delay: .2999s;
}
.full-screen-menu.open .social_platforms li:nth-child(3) a{
    transition-delay: .3999s;
}
.full-screen-menu.open .social_platforms li:nth-child(4) a{
    transition-delay: .4999s;
}
.full-screen-menu.open .social_platforms li:nth-child(5) a{
    transition-delay: .5999s;
}
.full-screen-menu.open .social_platforms li:nth-child(6) a{
    transition-delay: .6999s;
}
/* ===============================
   Dropdown Arrow Icon
================================ */
.custom-dropdown > a::after {
  content: "▾";
  font-size: 14px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Rotate arrow */
.custom-dropdown.open > a::after,
.custom-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* ===============================
   Dropdown Menu (Floating)
================================ */
.dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;

  background: #0a3fa8;
  border-radius: 6px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

/* ===============================
   Submenu Items
================================ */
.menu-sub {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.menu-sub li a {
  display: block;
  padding: 10px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;

  transition: background 0.3s ease, padding-left 0.3s ease;
}

.menu-sub li a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 22px;
}

/* ===============================
   Desktop Hover Support
================================ */
@media (hover: hover) {
  .custom-dropdown:hover .dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ===============================
   JS Controlled Open State
================================ */
.custom-dropdown.open .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===============================
   Mobile Adjustments
================================ */
@media (max-width: 768px) {
 .dd-menu {
    width: 100%;
    border-radius: 0;

    max-height: 0;
    overflow: hidden;

    opacity: 1;          /* reset */
    visibility: visible; /* reset */
    transform: none;

    transition: max-height 0.4s ease;
  }

  .custom-dropdown.open .dd-menu {
    max-height: 500px; /* enough for submenu */
  }
}

/* --- Get in Touch Button --- */
.btn-get-in-touch {
    text-decoration: none;
    padding: 36px 20px !important;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    right: 20px;
    top: 20px;
    transition: 0.3s;
    z-index: 2999;
    height: max-content;
    border-radius: 0 !important;
    position: absolute !important;
    color: #223140;
}

/* --- Common Button Base --- */
.btn-custom {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    /* Crucial: hides the text when it slides out of bounds */
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
    border: 2px solid transparent;
}

.btn-custom.btn-black {
    background-color: #101729;
    border: 1px solid #101729;
}

.btn-custom.btn-black:hover {
    border-color: var(--blue);
}

.btn-custom span {
    font-weight: 700;
}

/* Background Sweep Layer */
.btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-custom:hover::before {
    width: 100%;
}

.btn-custom:hover {
    text-decoration: none;
}

/* --- Vertical Slide Logic --- */
.btn-custom span,
.btn-icon {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
}

/* On Hover: Slide the original elements UP and out */
.btn-custom:hover span {
    transform: translateY(-150%);
}

.btn-custom:hover .btn-icon {
    transform: translateY(-150%);
}

/* Create the "Duplicate" that slides in from the bottom */
/* We use ::after on the button to create a second text/icon layer if needed, 
   but for the cleanest UX without changing HTML, we use a simple vertical reset transition */

/* Alternative Premium Method: Resetting position instantly */
/* To make it look like it comes back in, we use a "Loop" animation style */

.btn-custom:hover span {
    animation: slideUpReturn 0.5s forwards;
}

.btn-custom:hover .btn-icon {
    animation: slideUpReturn 0.5s forwards;
    animation-delay: 0.05s;
    /* Slight delay for the icon to follow the text */
}

@keyframes slideUpReturn {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    49% {
        transform: translateY(-150%);
        opacity: 0;
    }

    50% {
        transform: translateY(150%);
        opacity: 0;
    }

    /* Teleport to bottom */
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    /* Slide back into place */
}

/* --- CASE 1: Primary Blue (#4A84EE) --- */
.btn-primary-blue {
    background-color: #4A84EE;
    color: #ffffff;
    border-color: #4A84EE;
}

.btn-primary-blue::before {
    background-color: #ffffff;
}

.btn-primary-blue:hover {
    color: #4A84EE;
}

.btn-primary-blue:hover .btn-icon {
    filter: invert(47%) sepia(91%) saturate(1917%) hue-rotate(205deg) brightness(97%) contrast(92%);
}

/* --- CASE 2: Secondary White --- */
.btn-secondary-white {
    background-color: #ffffff;
    color: #223140;
    border-color: #ffffff;
}

.btn-secondary-white::before {
    background-color: #4A84EE;
}

.btn-secondary-white:hover {
    color: #ffffff;
    border-color: #4A84EE;
}

.btn-secondary-white:hover .btn-icon {
    filter: brightness(0) invert(1);
}

.btn-secondary-white.btn-secondary-white-border {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-secondary-white.btn-secondary-white-border:hover {
    border: 1px solid transparent;
}

/* ====================== */
.banner-hero1 {
    background: url("../../assets/images/bizexherobanner.png");
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    overflow: hidden;
    padding: 170px 0 150px;
    position: relative;
    background-attachment: fixed;
}

.common_hero_section{
   background: url("../../assets/images/bizexherobanner.png");   
   background-position: center;
   -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
   display: flex;
   align-items: center;
   height: 577px;
}
.breadcrumb.customBreadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}
.customBreadcrumb .breadcrumb-item, .customBreadcrumb .breadcrumb-item a {
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
}
.customBreadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 3px 8px 0;
    background: url('../../assets/images/arrowright.svg') no-repeat center center;
    background-size: contain;
}
.bizexframeboxlayer {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}
.hero-heading{
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
}

.heroladyBox {
    position: absolute;
    bottom: 0;
    right: 95px;
    pointer-events: none;
    z-index: 1;
}

/* Container */
.text-content1 {
    position: relative;
    z-index: 2;
}

/* 1. The Reveal Logic */

/* 2. The "Typed" State */
.is-visible .type-line {
    clip-path: inset(0 0 0 0);
    /* Curtain opens to the right */
    opacity: 1;
}

/* 1. Faster Animation Speed */
.type-line {
    display: block;
    white-space: nowrap;
    width: fit-content;
    clip-path: inset(0 100% 0 0);
    /* Reduced duration to 0.8s for faster typing */
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.8s ease-in-out;
    opacity: 0;
    margin-bottom: 5px;
    font-weight: 700;
}

/* 2. Snappier Staggered Delays */
/* Lines now start appearing almost immediately after each other */
.is-visible .type-line:nth-child(1) {
    transition-delay: 0.1s;
}

.is-visible .type-line:nth-child(2) {
    transition-delay: 0.4s;
}

.is-visible .type-line:nth-child(3) {
    transition-delay: 0.7s;
}

.is-visible .type-line:nth-child(4) {
    transition-delay: 1.0s;
}

/* 3. Description appears much sooner */
.hero-desc {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
    transition-delay: 1.4s;
    font-size: 17px;
    font-weight: 700;
    max-width: 652px;
    margin-top: 20px;
    margin-bottom: 27px;
}

.is-visible .hero-desc {
    opacity: 1;
    transform: translateX(0);
}

/* Typography settings */
.hero-title {
    font-size: 56px;
    line-height: 70px;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: capitalize;
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

.topLadyStanding {
    position: absolute;
    right: 0;
    bottom: -6px;
}

.hero-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

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

/* Container */
.reveal-container {
    overflow: hidden;
    display: block;
    width: 100%;
}

.reveal-heading {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    color: inherit;

    /* Initial/Exit State (Hidden) */
    opacity: 0;
    transform: translateX(-50px);
    clip-path: inset(0 100% 0 0);

    /* Smooth transition for both appearing AND disappearing */
    transition: opacity 0.6s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    will-change: transform, opacity, clip-path;
    max-width: 872px;
    line-height: 1.3;
}

.reveal-heading.small-texts {
    font-size: 17px;
    letter-spacing: 0;
    color: #42484E;
    line-height: 27px;
    text-align: justify;
    margin-bottom: 40px;
}

.reveal-heading.btn-custom {
    font-size: 15px !important;
}

.reveal-heading.btn-custom.btn-primary-blue {
    color: #fff;
}

.reveal-heading.btn-secondary-white-border.btn-secondary-white {
    color: #fff !important;
}

.reveal-heading.btn-custom.btn-secondary-white {
    color: #223140;
}

.reveal-heading.btn-custom.btn-secondary-white:hover {
    color: #fff;
}

.reveal-heading.btn-custom.btn-primary-blue:hover {
    color: var(--blue);
}

.reveal-heading.btn-custom img {
    margin-left: 12px;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-regular {
    font-weight: 400 !important;
}

.reveal-heading.text-medium {
    font-weight: 700;
    font-size: 30px;
    line-height: 47px;
    max-width: fit-content;
}

/* Active State (Visible) */
.reveal-heading.reveal-now {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
}

/* No-JS Fallback: If JS is disabled, show the text */
.no-js .reveal-heading {
    opacity: 1;
    transform: none;
    clip-path: none;
}

/* ============= */
.sec-sub-heading {
    color: #4A84EE;
    font-size: 20px;
    font-weight: 700;
}

.py-gap {
    padding-top: 47px;
    padding-bottom: 47px;
}

.sign-div {
    gap: 30px;
}

.sign {
    right: 0;
    top: 0;
    width: 172px;
}

.sign-div-inner h5 {
    font-size: 17px;
    font-weight: 700;
    color: #091019;
    margin-top: 12px;
}

.sign-div-inner p {
    font-size: 15px;
    color: #42484E;
    margin-bottom: 0;
}

.ceo-contents {
    margin-top: 41px;
}

/* The container acts as a window */
.parallax-box {
    overflow: hidden;
    position: relative;
}

/* The image itself */
.parallax-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Scale it up slightly so we have "room" to move it */
    transform: scale(2);
    will-change: transform;
    transition: transform 0.1s linear;
    /* Keeps it synced with scroll */
}

/* =========== */
.section-dark {
    color: #ffffff;
}

/* Section Background */
.how-it-works {
    background-image: url("../../assets/images/darkbg.png");
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
}

.work-process-list {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-item {
    width: 100%;
    /* Spans full window width */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    cursor: pointer;
    transition: background 0.4s ease;
}

.process-item:last-child {
    border-bottom: 1px solid transparent;
}

.process-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title,
.step-number {
    font-size: 15px;
    color: #B1B9C1;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* --- THE ACCORDION LOGIC --- */
.process-content {
    display: grid;
    grid-template-rows: 0fr;
    /* Collapsed state */
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition:
        grid-template-rows 4s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.4s ease;
}

/* This allows the inner content to maintain its structure while height is 0 */
.process-content>.row {
    min-height: 0;
}

/* Active State Styles */
.process-item.active {
    background: rgba(255, 255, 255, 0.02);
}

.process-item.active .process-content {
    grid-template-rows: 1fr;
    /* Expanded state */
    opacity: 1;
    visibility: visible;
    padding-top: 30px;
}

.process-item.active .step-title,
.process-item.active .step-number {
    color: #ffffff;
}

.process-item:hover .process-content p,
.process-item.active .process-content p {
    color: #ffffff;
}

.process-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;
    margin: 0;
    max-width: 580px;
    margin-bottom: 40px;
}

.step-image {
    width: 100%;
    object-fit: cover;
    /* Keeps image proportional */
}

/* ============= */
/* Card Container */
.service-card-wrapper {
    perspective: 1000px;
    /* Essential for 3D effect */
    margin-bottom: 40px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid #E4E9F1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);

    /* Initial State for Scroll Animation */
    opacity: 0;
    transform: rotateX(-15deg) translateY(50px);
    will-change: transform, opacity;
}

/* Active State (When scrolled into view) */
.service-card.reveal-now {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
}

/* Hover UX: Lift and Shadow */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 24px 0px #0514231F;
}

/* Layout Styling */
.card-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #223140;
    text-align: center;
}

.title-divider {
    width: 100%;
    border-top: 2px solid #223140;
    opacity: 1;
    margin-bottom: 25px;
}

.card-body-layout {
    display: flex;
    gap: 25px;
}

.icon-box {
    background: #101729;
    padding: 15px;
    width: 80px;
    height: 78px;
}

.icon-box img {
    width: 40px;
    filter: brightness(0) invert(1);
}

.text-box p {
    font-size: 15px;
    line-height: 23px;
    color: #42484E;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #223140;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    font-size: 15px;
    transition: gap 0.3s;
}

.explore-btn:hover {
    gap: 12px;
    color: #4A84EE;
    text-decoration: none;
}

.services-section {
    background-color: #FFFFFF;
    color: #091019;
}

.sm-sec-sub-heading.sec-sub-heading {
    margin-bottom: 13px;
    display: inline-block;
    font-size: 15px;
    color: #4A84EE;
}

.sm-linheight {
    line-height: 35px !important;
}

/* =================== */
.setup-process-section {
    position: relative;
    background: #EEF0F3;
    width: 100%;
    overflow: hidden;
    /* Necessary for parallax overflow */
}

/* Create the background as a pseudo-element for smooth parallax */
/* Background Image Layer */
.setup-process-section::before {
    content: "";
    position: absolute;
    top: -10%;
    /* Extra margin to allow for movement */
    right: 0;
    width: 50%;
    height: 120%;
    background-image: url("../../assets/images/bizex_process.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    /* Uses BOTH move and scale for the Liquid effect */
    transform: translateY(var(--bg-move, 0px)) scale(var(--bg-scale, 1.1));
    will-change: transform;
    pointer-events: none;
}

/* Tracking Styles */
.step-num {
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-indicator {
    /* Set the default border thicker for a premium look */
    transition: border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ACTIVE THEME: Applied via JS */
.step-box.is-active .step-num {
    color: #4A84EE;
    /* Blue Number */
}

.step-box.is-active .step-indicator {
    border-right-color: #4A84EE;
    /* Blue Right Border */
}

/* Optional: Slight fade for inactive steps to draw focus to active one */
.step-box:not(.is-active) {
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

/* Vertical Step Styling */
.process-steps-vertical {
    margin-top: 50px;
    position: relative;
}

.step-box {
    display: flex;
    gap: 40px;
    transition: opacity 0.4s ease;
}

.step-text {
    max-width: 440px;
}

.step-num {
    font-size: 15px;
    color: #42484E;
    font-weight: 600;
    transition: color 0.4s ease;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align number to top of its box */
    padding-top: 5px;
    flex-shrink: 0;
    width: 70px;
    border-right: 2px solid #cdcbcb;
    /* Slightly thicker for visibility */
    transition: border-color 0.4s ease;
}

/* ACTIVE STATE THEME */
.step-box.is-active .step-num {
    color: #4A84EE;
    /* Blue Theme */
}

.step-box.is-active .step-indicator {
    border-right-color: #4A84EE;
    /* Blue Theme */
}

.step-heading {
    font-size: 19px;
    font-weight: 700;
    color: #091019;
    line-height: 25px;
    transition: color 0.4s ease;
}

.step-box.is-active .step-heading {
    color: #091019;
    /* Keep dark or shift to blue if preferred */
}

.step-desc {
    color: #42484E;
    font-size: 15px;
    line-height: 23px;
}

.visit_button {
    margin-left: 110px;
    margin-top: 31px;
}

/* ========= */
.accordion-container {
    border-top: 1px solid #eee;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.reveal-heading.accordion-title {
    font-size: 19px;
    font-weight: 700;
    color: #091019;
    margin: 0;
    transition: color 0.3s ease;
}

/* Plus/Minus Icon */
.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: #091019;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Horizontal line */
.accordion-icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

/* Vertical line (rotates to hide for "minus") */
.accordion-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}

/* THE REVEAL LOGIC */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    /* Collapsed */
    transition: grid-template-rows 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
    opacity: 0;
    overflow: hidden;
}

.accordion-inner {
    min-height: 0;
    /* Required for grid-row transition */
}

.accordion-item.is-active .accordion-inner {
    padding-top: 15px;
}

.accordion-inner p {
    color: #42484E;
    font-size: 17px;
    line-height: 27px;
    margin: 0;
}

/* Active State Styles */
.accordion-item.is-active .accordion-title {
    color: #4A84EE;
    /* Theme Blue */
}

.accordion-item.is-active .accordion-content {
    grid-template-rows: 1fr;
    /* Expanded */
    opacity: 1;
}

.accordion-item.is-active .accordion-icon::after {
    transform: rotate(90deg);
    /* Makes vertical line horizontal (Minus sign) */
    opacity: 0;
}

/* Ensure the column allows the image to stick */
.sticky-image-column {
    position: sticky;
    top: 72px;
    /* Adjust this based on your sticky header height */
    z-index: 10;
    align-self: flex-start;
    /* Prevents the column itself from stretching */
    height: fit-content;
}

/* Optional: Add a smooth transition for the container */
.img-container {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.why-choose-us p.small-texts {
    font-size: 17px;
    font-weight: 400 !important;
    color: #42484E !important;
    line-height: 27px !important;
    margin-top: 10px;
    margin-bottom: 25px !important;
    max-width: 376px;
}

/* =============== */
.business-setup {
    background-image: url("../../assets/images/darklayer.png");
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 81px;
    padding-bottom: 81px;
    background-attachment: fixed;
}

.business-setup .layer {
    top: -10%;
    /* Start higher to allow room for downward parallax */
    right: 0;
    /* Pull slightly off-screen like the screenshot */
    width: 100%;
    /* Adjust based on your image size */
    pointer-events: none;
    height: 120%;

    /* THE TILT: Static 3D rotation */
    /* THE MOVE: Variable handled by Lenis */
    transform:
        perspective(2000px) rotateZ(-5deg) rotateX(10deg) skewX(1deg) translateY(var(--tilt-move, 0px));

    will-change: transform;
    transition: transform 0.1s linear;
    /* Smooths out micro-jitters */
}

.tilt_image {
    top: 0;
    right: 0;
    height: 100%;
}

.reveal-heading.small-texts-15 {
    font-size: 15px;
    font-weight: 400 !important;
    line-height: 27px !important;
    margin-bottom: 26px;
}

.business-setup p {
    max-width: 579px;
}

.business-setup h3 {
    margin-bottom: 26px;
}

.logos-wrapper {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 65vw;
    height: 120%;
    pointer-events: none;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 150px);
    gap: 24px;
    width: max-content;
    transform: rotate(20deg);
}

.logo-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 100px 0;
    will-change: transform;
}

.logo-card {
    width: 150px;
    height: 200px;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.logo-card img {
    transform: rotate(-20deg);
}


/* ============== */
.faqs {
    background-color: #EEF1F3;
}

.faqs h3 {
    line-height: 52px !important;
}

.faqs .reveal-heading.accordion-title {
    max-width: 538px !important;
}

.faqs .accordion-inner p {
    max-width: 500px;
}

.faqs .accordion-item {
    border-bottom: 1px solid #B1B9C1;
    max-width: 565px;
}

.faqs .accordion-item:first-child {
    border-top: 1px solid #B1B9C1;
}

.government-authorities {
    background-color: #101729;
    padding: 84px 0;
}

.government-authorities-row {
    align-items: flex-end;
}

.max-width-auto {
    max-width: none !important;
}

.departmentsContainerWidth {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    overflow: hidden;
}

.departmentsLogo {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Wrapper with fade mask */
.dept-slider-wrapper {
    position: relative;
    overflow: hidden;
}

/* Edge fade (left & right) */
.dept-slider-wrapper::before,
.dept-slider-wrapper::after {
    content: none;
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.dept-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #faf7fc, transparent);
}

.dept-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #faf7fc, transparent);
}

/* Row base */
.dept-row {
    overflow: hidden;
}

/* Track */
.dept-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

/* Reverse direction */
.dept-row.right .dept-track {
    animation: scroll-right 30s linear infinite;
}

/* Cards */
.dept-card {
    min-width: 340px;
    height: 162px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E4E9F1;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: 0.3s ease;
}

.dept-card:hover {
    transform: rotate(5deg) scale(1.3);
    border-bottom: 1px solid #E4E9F1;
    border-right: 1px solid #E4E9F1;
}

.dept-card:hover img {
    transform: rotate(-5deg);
    transition: 0.3s ease;
}

.dept-card img {
    width: 90%;
}

.clients-testimonials {
    padding-top: 32px;
    padding-bottom: 44px;
    background-color: #101729;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
}

.video-wrapper::before {
    position: absolute;
    content: '';
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 45.96%);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px;
}

.video_play_button {
    background: transparent;
    box-shadow: none;
    outline: none;
    padding: 0;
}

.video-wrapper-footer .role h6 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.video-wrapper-footer .role p {
    color: #ffffff;
    font-size: 15px;
}

.testimonial_carousel {
    margin-top: 30px;
}

.testimonial_carousel .owl-stage {
    padding-left: 0 !important;
}

.common_ml {
    margin-left: 10%;
}

/* Specific container for the injected iframe */
.injected-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #000;
    animation: videoFadeIn 0.4s ease forwards;
}
/* ===============================
   Close Button
================================ */
.video-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;

  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.video-close-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.injected-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hide the gradient and UI when active */
.video-wrapper.video-playing::before,
.video-wrapper.video-playing .video-wrapper-footer,
.video-wrapper.video-playing .video-thumb {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =============== */
.clients-review {
    padding: 43px 0;
}

.clients-review h3 {
    max-width: 500px;
    color: #091019;
    letter-spacing: 1px;
}

.box-border-bottom {
    border-bottom: 1px solid #2C3F51;
    padding-bottom: 30px;
}

.review_carousel {
    margin-top: 40px;
}

.review_card .review_card_header {
    gap: 40px;
}

.review_card .texts_content {
    padding-top: 60px;
}

.review_card_content {
    width: 100%;
}

.review_card_content>div {
    align-items: center;
}

.review_card {
    background-color: #E4E9F14D;
    padding: 40px 50px;
}

.quoteIcon {
    flex-shrink: 0;
}

.review_card h6 {
    color: #091019;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 25px;
}

.review_card p {
    color: #091019;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 0;
    max-width: 385px;
}

.review_carousel .owl-stage {
    padding-left: 0 !important;
}

/* ================= */
.stats-section {
    background: #101729;
    color: #fff;
    padding: 37px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Ubuntu', sans-serif;
}

.stat-box p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

.new-heading {
    color: #222222;
    font-weight: 700;
    font-size: 48px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 25px;
}

/* =========== */
.plan_section {
    padding: 48px 0;
}

.plan_section .sec-sub-heading {
    margin-bottom: 0;
}

.price_card_wrapper {
    perspective: 1000px;
    justify-content: space-between;
}

.price_card_wrapper [class*="col-"] {
    padding: 0;
    -ms-flex: 0 0 31.2%;
    flex: 0 0 31.2%;
    max-width: 31.2%;

}

.price_card {
    padding: 37px 30px 27px;
    position: relative;
    /* We add a "wave" as a background image layer */
    background-size: 300% 100%;
    background-position: 100% 0;
    transition: background-position 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.4s ease,
        box-shadow 0.4s ease;

    /* Ensure the original background color stays under the wave */
    background-color: #F3F5F7;
}

/* For the Active (Dark) Card */
.price_card.active {
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 70%);
    background-color: #101729;
}

/* The Hover Animation */
.price_card:hover {
    background-position: 0 0;
    /* This pulls the "wave" across the card */
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(74, 132, 238, 0.1) 50%,
            rgba(255, 255, 255, 0) 70%);
}

.price_card.active:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.price_card h4 {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 30px;
    position: relative;
}

.price_card h4::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #101729;
    bottom: 0;
    right: 0;
    transition: 0.35s ease;
}

.price_card h4::after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--blue);
    bottom: 0;
    left: 0;
    transition: 0.35s ease;
}

.price_card:hover h4::after {
    width: 100%;
}

.price_card:hover h4::before {
    width: 0;
}

.price_card_price {
    margin-top: 33px;
}

.price_card_price h5 {
    font-size: 45px;
    color: #101729;
    font-weight: 700;
    line-height: 32px;
}

.price_card_price h5 span {
    font-size: 25px;
    display: inline-block;
    font-weight: 700;
}

.price_card h6 {
    color: #42484E;
    font-weight: 500;
    font-size: 18px;
}

.feature_list_box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 28px;
    margin-top: 33px;
    color: #42484E;
    line-height: 22px;
    font-size: 15px;
    transition: 0.35s ease-in-out;
}

.price_card:hover .feature_list_box {
    transform: scale(1.1);
}

.feature_list_box .d-flex {
    gap: 30px;
    margin-bottom: 20px;
}

.feature_list_box .d-flex:last-child {
    margin-bottom: 0;
}

.tic_icon {
    flex-shrink: 0;
}

.btn-mt {
    margin-top: 30px;
}

.price_card.active {
    background-color: #101729;
}

.price_card.active h4 {
    color: #fff;
}

.price_card.active h4::before {
    background-color: #fff;
}

.price_card.active h5,
.price_card.active h5 span,
.price_card.active h6,
.price_card.active .feature_list_box {
    color: #fff;
}

.price_card.active .feature_list_box {
    background-color: #23293A;
}

/* ================ */
.consultantion_form {
    background-image: url('../../assets/images/constultation_bg.png');
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 110px 0;
}

.floating_form_img {
    position: absolute;
    bottom: 0;
    left: 5%;
    transform: scaleX(-1);
    pointer-events: none;
}

.form_outer_box {
    background-color: #FFFFFF;
    max-width: 770px;
    width: 100%;
    padding: 70px;
}

.form_outer_box h4 {
    font-size: 26px;
    color: #091019;
    font-weight: 700;
    margin-bottom: 30px;
}

.form_outer_box button {
    margin-top: 10px;
}

.form_outer_box .form-control {
    border: 0;
    border-bottom: 1px solid #A7ADB3;
    height: 56px;
    border-radius: 0;
}

.form_outer_box .form-group {
    margin-bottom: 20px;
}

.form_outer_box textarea.form-control {
    height: 108px;
}

.form_outer_box .form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #223140;
}

.form_outer_box .form-control::placeholder {
    color: #42484E;
    font-size: 14px;
}

.font-17 {
    font-size: 17px !important;
}

/* ============= */
.blogs_section {
    padding: 25px 0;
    color: #091019;
}

.blogs_section h3.reveal-heading {
    color: #091019;
}

.btn_border_bottom {
    color: #223140;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    transition: 0.35s ease-in;
    padding-left: 0;
    padding-right: 0;
}

.btn_border_bottom::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #223140;
    right: 0;
    bottom: 0;
    transition: 0.5s ease-in;
}

.btn_border_bottom::after {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--blue);
    left: 0;
    bottom: 0;
    transition: 0.5s ease-in;
}

.btn_border_bottom img {
    margin-left: 5px;
    transition: 0.35s ease-in;
}

.btn_border_bottom:hover img {
    transform: translateX(2px);
}

.btn_border_bottom:hover::after {
    width: 100%;
}

.btn_border_bottom:hover::before {
    width: 0;
}

.btn_border_bottom:hover {
    color: var(--blue);
}

.blogs_carousel {
    margin-top: 47px;
}

.blogs_carousel .owl-stage {
    padding-left: 0 !important;
}

.blogs_card {
    display: block;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 0;
}

.blogs_card:hover {
    text-decoration: none;
}

.blogs_title {
    display: inline;
    color: #223140;
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    background-image: linear-gradient(to right, var(--blue) 0%, var(--blue) 100%);
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: 0 1.15em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: background-size 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.blogs_card:hover .blogs_title {
    background-size: 100% 2px;
}
.blogs_card_img{
    overflow: hidden;
}
.blogs_card_img img{
    transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blogs_card:hover .blogs_card_img img{
    transform: scale(1.1);
}
.blogs_card:hover .blogs_title {
    text-decoration-color: var(--blue);
    color: var(--blue);
}

/* .blogs_title::before{
    position: absolute;
    content: '';
    width: 100%;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #E4E9F1;
    transition: 0.35s ease-in;
}
.blogs_title::after{
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--blue);
    transition: 0.35s ease-in;
}
.blogs_card:hover .blogs_title::before{
    width: 0;
}
.blogs_card:hover .blogs_title::after{
    width: 100%;
} */
.blogs_desc {
    color: #42484E;
    font-size: 15px;
    line-height: 23px;
    margin-top: 20px;
}

.link_alike {
    display: inline-flex;
    margin-top: 15px;
    color: #223140;
    font-size: 15px;
    font-weight: 700;
    gap: 9px;
}
.blogs_card:hover .link_alike{
    color: var(--blue);
}
.blogs_card:hover .link_alike img{
    margin-left: 8px;
}
.link_alike img {
    width: 17px !important;
    transition: 0.35s ease;
}

.blogs_date img {
    width: auto !important;
}

.blogs_date {
    gap: 10px;
    margin: 18px 0 15px;
}

.blogs_date span {
    color: #223140;
    font-size: 13px
}

/* ============== */
.gallery-reveal-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding-top: 43px;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: gallery-scroll 40s linear infinite;
    will-change: transform;
}

/* Pause animation on hover */
.gallery-reveal-section:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 auto;
}

.gallery-image-wrapper {
    height: 420px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    height: 100%;
    width: auto;
    display: block;
    background-color: #101729;
}

/* KEYFRAMES */
@keyframes gallery-scroll {
    from {
        transform: translateX(0);
    }

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

/* ========= */
footer {
    background-color: #101729;
    padding-top: 110px;
}

.info-contact_text {
    color: #FFFFFF;
    font-size: 17px;
    transition: 0.35s ease-in;
    font-weight: 400;
}

.info-contact_text:first-child {
    margin-right: 50px;
}

.info-contact_text:hover {
    text-decoration: none;
    color: var(--blue);
}

.footer_hr {
    border-bottom: 1px solid #2C3F51;
    padding-bottom: 40px;
    margin-bottom: 90px;
}

.footer_links h6 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.footer_links a {
    color: #B1B9C1;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
    transition: 0.35s ease-in;
}

.footer_links a:hover,
.terms_cond a:hover {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.footer_desc {
    line-height: 25px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    max-width: 330px;
}

.terms_cond {
    gap: 18px;
}

.terms_cond a,
.copyright_text {
    font-size: 15px;
    color: #B1B9C1;
    transition: 0.35s ease-in;
}

.terms_cond .divider {
    height: 11px;
    width: 1px;
    background-color: #B1B9C1;
    opacity: 0.9;
}

.bottom_footer {
    padding-top: 90px;
    padding-bottom: 30px;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 37px;
    height: 67px;
    background-color: #223140;
    /* Your theme dark color */
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: none;
    outline: none;
    border: 1px solid transparent;
}

.scroll-top-btn img {
    width: 20px;
    filter: brightness(0) invert(1);
    /* Makes arrow white */
}

/* State when user has scrolled */
.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #4A84EE;
    /* Your theme blue */
    transform: translateY(-5px);
}
/* ======== */
.numbersText{
    font-size: 17px;
    font-weight: 400;
    color: #42484E;
}
.mission-vission-contexts h3{
    color: #091019;
    font-size: 26px;
    font-weight: 700;
}
.mission-vission-contexts p.reveal-heading{
    color: #42484E;
    font-size: 14px;
    line-height: 27px;
}
.mission-vission-contexts h3{
    margin: 15px 0 20px;
}
.mt-70{
    margin-top: 70px;
}
.new-breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .new-breadcrumb-content {
    position: relative;
    z-index: 2;
    top: 211px;
    /* left: 135px; */
  }

  .new-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .new-breadcrumb-link {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.9;

    line-height: 24px;
    letter-spacing: 0%;
  }

  .new-breadcrumb-link:hover {
    opacity: 1;
    color: #ffffff;
    text-decoration: none;
  }

  .new-breadcrumb-separator {
    color: #ffffff;
    opacity: 0.7;
    font-size: 14px;
  }

  .new-breadcrumb-current {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
  }
  .left_side_article {
    height: 100%; 
    display: flex;
    flex-direction: column;
}
  .servieDetails{
    padding: 50px 0;
  }
  .services_filter,.floating_form,.latest-posts{
    background-color: #EEF1F3;
    padding: 40px;
    max-width: 442px;
  }
  .floating_form{
    margin-top: 70px;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 110px; /* Adjust this to clear your #stickyHeader height */
    z-index: 10;
  }
  .latest-posts{
    margin-top: 50px;
    position: relative;
    z-index: 5;
  }
  .services_filter h4,.serve-sm-title,.latest-posts .h6{
    color: #091019;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: 700;
    border-bottom: 2px solid #091019;
  }
  a.btn-custom.service-hero-btn{
    padding-top: 22px;
    padding-bottom: 22px;
  }
  a.btn-custom.service-hero-btn img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
  a.btn-custom.service-hero-btn:hover img{
     transform: translateY(-45%);
  }
  a.btn-custom.service-hero-btn:hover,.service-hero-btn.active{
    border-color:  #223140 !important;
  }
  a.btn-custom.service-hero-btn:hover::before,.service-hero-btn.active {
    background-color: #223140 !important;
  }
  .service-hero-btn.active span{
    color: #ffffff;
  }
  .service-hero-btn.active img{
      filter: brightness(0) invert(1);
}
  .service-content-para{
    margin-top: 50px;
  }
  .touch__input{
    box-shadow: 0px 4px 24px 0px #0514230D;
    background-color: #ffffff;
    height: 58px;
    border-color: transparent;
    border-radius: 45px;
    color: #42484E;
    font-size: 14px;
    padding-left: 40px;
  }
  .touch__input:focus{
    box-shadow: none;
    border-color: var(--blue);
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-dark-blue);
  }
  textarea#contact_message{
    height: 173px;
    border-radius: 25px;
    padding-top: 20px;
  }
.form-group{
    margin-bottom: 25px;
}
.blogs{
    padding-top: 100px;
    padding-bottom: 38px;
}
.blog_card{
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}
.blog_card:hover{
    text-decoration: none;
}
.blog_image_card{
    max-height: 267px;
    overflow: hidden;
}
.blog_image_card .blog_image{
    height: 100%;
    width: 100%;
    transition: 0.35s linear;
    object-fit: cover;
}
.blog_card:hover .blog_image_card .blog_image{
    transform: scale(1.1);
}
.blogBody{
    padding: 40px;
}
.blogBody .card-title{
    color: #223140;
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    margin-bottom: 8px;
    transition: 0.35s ease-in;
}
.blog_card:hover .blogBody .card-title{
    color: var(--blue);
    text-decoration: underline;
} 
.blogBody .card-text{
    color: #42484E;
    line-height: 23px;
    font-size: 15px;
    margin-top: 8px;
}
.blog_card .link_alike{
    color: #223140;
    font-size: 15px;
    font-weight: 700;
}
.blog_card:hover{
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
}
.blog_card:hover .link_alike{
    color: var(--blue);
}
.blog_card:hover .link_alike img{
    transform: translateX(7px);
}
.blog_card .link_alike img{
    transition: 0.35s ease-in;
}
.cardMb{
    margin-bottom: 44px;
}
.page-item{
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #223140;
    transition: 0.35s ease-in;
}
.page-link{
    color: #223140;
    font-size: 17px;
    background-color: transparent;
    border: none;
}
.page-item.active{
    background-color: #223140;
}
.page-link:hover,.page-item.active .page-link{
    background-color: transparent;
}
.page-item.active:hover .page-link,.page-item:hover .page-link{
    color: #ffffff;
}
.page-item:hover{
    background-color:#223140;
}
.page-item .page-link svg path{
    fill: #223140;
    transition: color 0.35s ease-in;
}
.page-item:hover .page-link svg path{
    fill: #ffffff;
}
.page-item:first-child .page-link svg{
    transform: rotate(-180deg);
}
.pagination{
    gap: 20px;
    margin-bottom: 0;
}
.post_heading{
    max-width: 1080px;
}
.post_sub_heading{
    color: #222222;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin: 30px 0 25px;
}
.post .avatar {
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
}
.post .title, .post .date, .post .comments, .post .views {
    font-weight: 500;
    color: #94959B;
    text-transform: capitalize;
    font-size: 16px;
}
.circle{
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #94959B;
    margin-left: 10px;
    margin-right: 10px;
}
.eyeIconLeft{
    margin-left: 30px;
}
.blog-post-heading{
    color: #001524;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}
.postImage{
    box-shadow: 0px 4px 24px 0px #0514231F;
}
.blog-posts{
    margin-bottom: 30px;
}
.post-blog-card{
    box-shadow: 0px 24px 60px 0px #051F2E0F;
    padding: 12px;
    background-color: #ffffff;
    display: inline-block;
}
.post-blog-card img{
    border-radius: 8px;
}
.post-blog-card .title{
    color: #021738;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
}
.post-blog-card:hover .title{
    color: var(--blue);
    text-decoration: underline;
}
.sidebar_wrapper {
    position: relative;
    height: 100%;
}
.latest-posts {
   margin-top: 20px;
   padding-bottom: 50px;
}
#right_float_form {
    z-index: 100;
    transition: opacity 0.3s ease;
}
#wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    }
#main{
    flex: 1;
}
/* ============= */
@media (prefers-reduced-motion: reduce) {
    .logo-column {
        transform: none !important;
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .gallery-image-wrapper {
        height: 300px;
    }
}

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

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

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .dept-track {
        animation: none;
    }
}

/* Pause on hover (desktop) */
@media (min-width:768px) {

    .dept-track:hover,
    .dept-row.right .dept-track:hover {
        animation-play-state: paused;
    }
}

/* DESKTOP: Hover Logic */
@media (min-width: 992px) {
 
}

@media (min-width: 1025px) {

    .custom-container1,
    .custom-container {
        width: 95%;
    }

    .common_ml {
        margin-left: 3%;
    }
}

@media (min-width: 1281px) {

    .custom-container1,
    .custom-container {
        width: 88%;
    }

    .about-founder-div {
        padding-left: 66px;
    }

    .common_ml {
        margin-left: 6%;
    }
}

@media (min-width: 1316px) {}

@media (min-width: 1400px) {

    .custom-container1,
    .custom-container {
        width: 88%;
    }

    .common_ml {
        margin-left: 6%;
    }
}

@media (min-width: 1600px) {
    .heroladyBox {
        right: 129px;
    }

    .custom-container1,
    .custom-container {
        width: 80%;
    }
    .custom-container2{
        width: 88%;
    }

    .common_ml {
        margin-left: 10%;
    }
}

@media only screen and (min-width: 1920px) {
    .fullwidth-container {
        padding-left: calc(10% + 15px);
        padding-right: calc(10% + 15px);
    }

    .heroladyBox {
        right: 211px;
    }
}

@media (max-width: 1552px) {
    .bizexframeboxlayer {
        top: unset;
        bottom: 0;
    }

    /* .heroladyBox img{
        width: 400px;
     } */
    .setup-process-section::before {
        width: 48%;
    }
}

@media (max-width: 1399.98px) {
    .heroladyBox img {
        width: 400px;
    }

    .setup-process-section::before {
        width: 45%;
    }
}

@media (max-width: 1365px) {
    .heroladyBox {
        right: 130px;
    }

    .floating_form_img {
        left: 1%;
    }
}

@media (max-width: 1345px) {
    .hero-title {
        font-size: 50px;
        line-height: 65px;
    }

    .hero-desc {
        max-width: 607px;
    }

    .heroladyBox {
        right: 125px;
    }
}

@media (max-width: 1280px) {
    .heroladyBox {
        right: 110px;
    }
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: .5px;
        line-height: 120%;
    }

    .bizexframeboxlayer {
        top: unset;
        bottom: 0;
    }

    .heroladyBox {
        right: 120px;
    }

    .process-content p {
        max-width: 450px;
    }

    .reveal-heading.small-texts {
        font-size: 14px;
        letter-spacing: 0;
        line-height: 1.55;
        margin-bottom: 15px;
    }

    .ceo-contents {
        margin-top: 15px;
    }

    .sign-div {
        gap: 10px;
    }

    .py-gap {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .reveal-heading {
        font-size: 30px;
    }

    .reveal-heading.text-medium {
        font-size: 22px;
        line-height: 1.6;
    }

    .work-process-list {
        margin-top: 30px;
    }

    .setup-process-section::before {
        width: 45%;
    }

    .btn-custom {
        padding: 16px 22px;
    }

    .common_ml {
        margin-left: 15px;
    }

    .review_card {
        padding: 20px 25px;
    }

    .review_card .texts_content {
        padding-top: 20px;
    }

    .review_card .review_card_header {
        gap: 22px;
    }

    .price_card_wrapper [class*="col-"] {
        padding: 0;
        -ms-flex: 0 0 32%;
        flex: 0 0 32%;
        max-width: 32%;
    }

    .price_card {
        padding: 27px 20px 17px;
    }

    .price_card h4 {
        padding-bottom: 15px;
    }

    .price_card_price {
        margin-top: 15px;
    }

    .price_card_price h5 {
        font-size: 40px;
    }

    .price_card_price h5 span {
        font-size: 20px;
    }

    .feature_list_box {
        padding: 20px 18px;
    }

    .feature_list_box .d-flex {
        gap: 15px;
    }

    .btn_border_bottom {
        font-size: 15px !important;
    }

    .info-contact_text {
        font-size: 15px;
    }

    footer {
        padding-top: 50px;
    }

    .footer_hr {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .bottom_footer {
        padding-top: 30px;
    }

    .form_outer_box {
        width: 500px;
    }

    .floating_form_img {
        width: 50%;
        left: 10px;
    }

    .main-header {
        padding-left: 15px;
    }

    .main-header .container-fluid {
        padding-left: 0;
    }

    .heroladyBox img {
        width: 350px;
    }

    .hero-desc {
        max-width: 567px;
    }
    .services_filter,.latest-posts,.floating_form{
        padding: 15px;
    }
    .floating_form{
        padding-left: 0;
        padding-right: 0;
    }
    .floating_form{
        margin-top: 30px;
    }
    a.btn-custom.service-hero-btn{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    a.btn-custom.service-hero-btn{
        font-size: 12px !important;
    }
    a.btn-custom.service-hero-btn img{
        right: 8px;
    }
    .services_filter h4, .serve-sm-title, .latest-posts .h6{
        margin-bottom: 16px;
        padding-bottom: 8px;
    }
    .common_hero_section{
        height: 380px;
    }
}

@media (min-width: 1280px) and (max-width: 1570px) {
    .form_outer_box {
        max-width: 650px;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .video-wrapper-footer .role p {
        font-size: 13px;
    }
}

@media (min-width: 1200px) and (max-width: 1280.98px) {
    .main-header {
        padding-left: 0;
    }

    .form_outer_box {
        max-width: 550px;
    }

    .floating_form_img {
        left: 0;
    }
}

@media (max-width: 1024px) {
    .logos-wrapper {
        width: 100vw;
        right: -15%;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 150px);
        transform: rotate(12deg);
    }
     .new-main-container {
      max-width: 1170px;
      margin-left: auto;
      margin-right: auto;
    }
}

@media (max-width: 1099.98px) {
    .heroladyBox {
        right: 90px;
    }
}

@media (max-width: 1023.98px) {
    .heroladyBox img {
        width: 290px;
    }

    .heroladyBox {
        right: 30px;
    }
    .blogBody{
        padding: 15px;
    }
    .blogs{
        padding: 30px 0;
    }
    .our_bogs{
        margin-top: 5px !important;
    }
    .post_heading{
        font-size: 35px;
        max-width:500px
    }
}

@media (max-width: 992px) {
     .new-breadcrumb-section {
      height: 380px;
    }

    .new-breadcrumb-content {
      top: 160px;
    }

    .new-breadcrumb-title {
      font-size: clamp(26px, 6vw, 48px);
      line-height: 1.3;
      text-align: center;
    }

    .new-breadcrumb-nav {
      justify-content: center;
      text-align: center;
    }

    .new-section-title {
      font-size: 32px;
    }
}
@media (max-width: 768px) {
    .new-breadcrumb-section {
      height: 320px;
    }

    .new-breadcrumb-content {
      top: 130px;
    }

    .new-breadcrumb-title {
      font-size: clamp(24px, 5vw, 40px);
      line-height: 1.3;
    }

    .new-breadcrumb-link,
    .new-breadcrumb-current {
      font-size: 15px;
    }

    .new-breadcrumb-nav {
      gap: 8px;
      justify-content: center;
    }

    .new-section-title {
      font-size: 28px;
      text-align: center;
    }
  }
@media (max-width: 767px) {
    .py-gap {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .custom-container1 {
        width: 100% !important;
        margin: 0 !important;
    }

    .dept-slider-wrapper::before,
    .dept-slider-wrapper::after {
        content: none;
    }

    div.departmentsContainer {
        width: 100%;
        overflow: hidden;
    }

    .px-mob-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .sticky-image-column {
        position: relative;
        top: 0;
    }

    .stats-section {
        padding-bottom: 65px !important;
    }

    .stat-box h3 {
        font-size: 20px;
    }

    .stat-box p {
        font-size: 13px;
        position: absolute;
        bottom: -30px;
        text-align: center;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .stat-box {
        position: relative;
    }

    .stats-section {
        margin-bottom: 16px;
    }

    .form_banner_image {
        text-align: center;
    }

    .floating_form_img {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
        position: unset;
    }

    .price_card_wrapper [class*="col-"] {
        padding: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 25px;
        line-height: 1.2;
        max-width: 300px;
        letter-spacing: 0.1px;
    }

    .main-header {
        padding: 15px;
    }

    .main-header.is-sticky {
        padding: 10px 0 10px 10px;
    }

    .main-header.is-sticky .btn-get-in-touch {
        top: 6px !important;
        right: 6px !important;
    }

    .main-header .container-fluid {
        padding: 0;
    }

    .menu-text {
        margin-right: 8px;
    }

    .menu-toggle {
        margin-right: 75px;
    }

    .heroladyBox {
        position: unset;
        width: 100%;
        text-align: center;
    }

    .banner-hero1 {
        padding-bottom: 0;
    }

    .heroladyBox img {
        width: 90%;
    }

    .bizexframeboxlayer {
        display: none;
    }

    .reveal-heading {
        font-size: 32px;
        line-height: 120%;
    }

    .faqs h3 {
        line-height: 120% !important;
    }

    .sec-sub-heading {
        font-size: 14px;
    }

    .reveal-heading.small-texts {
        font-size: 14px;
        letter-spacing: 0;
        line-height: 1.56;
    }

    .reveal-heading.text-medium {
        font-size: 27px;
        line-height: 120%;
    }

    .work-process-list {
        margin-top: 15px;
    }

    .setup-process-section::before {
        content: none;
    }

    .services-section {
        padding-bottom: 7px !important;
    }

    .step-indicator {
        width: 40px;
    }

    .step-box {
        gap: 22px;
    }

    .visit_button {
        margin-left: auto;
        margin-right: auto;
    }

    .accordion-icon {
        flex-shrink: 0;
    }

    .government-authorities .reveal-heading,
    .clients-review h3 {
        margin-bottom: 10px;
    }

    .clients-review-header-sec,
    .review_card .review_card_header,
    .blogs_section-header {
        flex-direction: column;
    }

    .review_card .review_card_header,
    .price_card_wrapper {
        gap: 15px;
    }

    .review_card {
        padding: 30px;
    }

    .review_card .texts_content {
        padding-top: 20px;
    }

    .quoteIcon img {
        width: auto !important;
    }

    .common_ml {
        margin-left: 15px;
    }

    .price_card {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding: 37px 30px 27px;
    }

    .loader-logo {
        width: 250px;
    }

    .consultantion_form {
        padding: 48px 0;
    }

    .form_outer_box {
        padding: 30px;
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }

    a.btn_border_bottom {
        font-size: 17px !important;
    }

    .blogs_section-header {
        align-items: flex-start !important;
    }

    .info-contact_text {
        margin-right: 0;
    }

    footer {
        padding-top: 40px;
    }

    .footer_hr {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .bottom_footer {
        padding-top: 45px;
    }

    .btn-custom {
        padding: 16px 30px;
    }

    .price_card_price h5 {
        font-size: 45px;
    }

    .price_card_price h5 span {
        font-size: 25px;
    }

    .feature_list_box {
        padding: 30px 28px;
    }

    .feature_list_box .d-flex {
        gap: 30px;
    }

    .logos-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
        top: auto;
        right: auto;
        margin-top: 40px;
        overflow: hidden;
    }

    .business-setup {
        padding: 40px 0;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 140px);
        justify-content: center;
        transform: none;
        /* REMOVE tilt */
        gap: 16px;
    }

    .logo-card {
        width: 140px;
        height: 180px;
    }

    .logo-column {
        padding: 60px 0;
    }

    .dept-track.new_sm_slider {
        gap: 10px;
    }

    .new_sm_slider .dept-card img {
        transform: rotate(-20deg);
        width: auto;
    }

    .new_sm_slider .dept-card {
        width: 80px;
        min-width: 160px;
        height: 80px;
    }
    .new_sm_slider {
        margin-bottom: 15px;
    }
    .common_hero_section{
        height: 290px;
    }
    .hero-heading{
        font-size: 26px;
        max-width: 280px;
    }
    .pagination{
        gap: 8px;
    }
    .page-item{
        flex-shrink: 0;
        width: 42px;
        height: 42px;
    }
    .service-content-para{
        margin-top: 15px;
    }
    .servieDetails{
        padding: 20px 0;
    }
    .close_social_bar{
        height: 100vh;
        overflow-y: auto;
    }
}
 @media (max-width: 576px) {
    .new-breadcrumb-section {
      height: 280px;
    }

    .new-breadcrumb-content {
      top: 100px;
    }

    .new-breadcrumb-title {
      font-size: clamp(22px, 6vw, 32px);
      line-height: 1.2;
    }

    .new-breadcrumb-link,
    .new-breadcrumb-current {
      font-size: 14px;
      line-height: 1.4;
    }

    .new-breadcrumb-nav {
      flex-direction: row;
      justify-content: center;
      gap: 6px;
    }
  }