  @import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

  :root {
    /* Primary Brand Color */
    --brand-orange: #f07f18;
    /* RGB(240,127,24) */

    /* Supporting Colors */
    --brand-dark: #111111;
    --brand-light: #f9f7f3;

    --olive: rgb(54, 92, 27);
    --clay: rgb(117, 59, 36);
    --cocoa: rgb(90, 53, 23);
    --gold: rgb(102, 51, 0);
    --black: #000;
    --white: #fff;

    /* Fonts */
    /* --font-heading: "Abril Fatface", cursive; */
    /* --font-ui: "Mulish", sans-serif; ✅ NEW */
  }

  * {
    font-family: "Lato", sans-serif;
  }

  section {
    padding: 40px 0 !important;
  }


  p,
  li {
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }

  .small,
  .caption {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: #666;
  }

  .btn-primary {
    background: var(--brand-orange);
    color: white;
    font-family: var(--font-ui);
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
  }

  .btn-secondary {
    background: transparent;
    border: 1px solid var(--brand-orange);
    color: var(--brand-orange);
    font-family: var(--font-ui);
    padding: 10px 26px;
    border-radius: 999px;
  }

  .btn-secondary:hover {
    border: 2px solid var(--brand-orange);
    color: var(--white);
    background-color: var(--brand-orange);
  }

  .btn-outline-light {
    background: transparent;
    /* border: 2px solid var(--brand-orange);
    color: var(--brand-orange); */
    font-family: var(--font-ui);
    padding: 10px 26px;
    border-radius: 999px;
  }

  .btn-outline-light:hover {
    border: 2px solid var(--brand-orange);
    color: var(--white);
    background-color: var(--brand-orange);
  }

  /* Reset */
  body,
  html {
    /* font-family: var(--font-ui); */
    margin: 0;
    padding: 0;
  }

  /* ================= HEADER ================= */
  .main-nav {
    background: #fff;
    backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  }

  .main-nav.stuck {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  }

  .navbar-brand {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
  }

  .navbar-brand img {
    /* width: 332px; */
    height: 76px;
  }


  @media (max-width: 768px) {
    .navbar-brand img {
      /* width: 242px; */
    }
  }

  .nav-link {
    color: #000000;
    margin: 0 14px;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
    letter-spacing: 0.9px;
  }

  /* Hover underline effect */
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0%;
    height: 2px;
    background: #f07f18;
    /* brand orange */
    transition: 0.3s;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link:hover {
    color: var(--brand-orange);
  }

  /* Custom hamburger */
  /* .custom-toggler {
    border: none;
    outline: none;
  } */

  /* .toggler-line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--brand-orange);
    margin: 5px 0;
    transition: 0.4s;
  } */

  /* Mobile menu animation */
  @media (max-width: 991px) {
    /* .navbar-collapse {
      background: #ffffff;
      margin-top: 15px;
      padding: 20px;
      border-radius: 12px;
      animation: slideDown 0.4s ease;
    } */

    /* .nav-link {
      margin: 0;
      text-align: center;
      font-size: 1.1rem;
    } */
  }

  @media (max-width: 991px) {
    .navbar-collapse {
      transform: translateY(-10px);
      opacity: 0;
      transition: all 0.35s ease;
    }

    .navbar-collapse.show {
      transform: translateY(0);
      opacity: 1;
    }

    .nav-link {
      margin: 0;
      text-align: center;
      font-size: 1.1rem;
    }
  }


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

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

  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid var(--brand-orange) !important;
  }

  .nav-mobile {
    background-color: #fff;
  }

  .navbar-toggler {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--brand-orange);
    background: var(--brand-orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: background 0.3s ease;
  }

  .navbar-toggler:hover {
    background: var(--brand-orange);
    border: 1px solid var(--brand-orange);
  }

  .toggler-line {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
  }

  .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar-collapse {
    transition: all 0.4s ease;
  }




  /* ================= HERO SLIDER BASE ================= */

  .hero-slider,
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    width: 100%;
    height: 600px;
    padding: 0 !important;
  }

  .bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* ================= OVERLAY ================= */

  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.25));
    z-index: 1;
  }

  /* ================= CONTENT ================= */

  .hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding-left: 50px;
  }

  .hero-content h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 16px;
    margin: 18px 0 28px;
    opacity: 0.95;
    color: #fff;
  }

  /* ================= ARROWS ================= */

  .carousel-control-prev,
  .carousel-control-next {
    width: 70px;
    opacity: 1;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-image: none;
  }

  /* Orange circle */
  .carousel-control-prev::before,
  .carousel-control-next::before {
    content: "";
    width: 48px;
    height: 48px;
    background: var(--brand-orange);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  /* White arrow */
  .carousel-control-prev::after,
  .carousel-control-next::after {
    content: "";
    width: 14px;
    height: 14px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Directions */
  .carousel-control-prev::after {
    transform: translateY(-50%) rotate(45deg);
  }

  .carousel-control-next::after {
    transform: translateY(-50%) rotate(-135deg);
  }

  /* Hover */
  .carousel-control-prev:hover::before,
  .carousel-control-next:hover::before {
    background: #fff;
  }

  .carousel-control-prev:hover::after,
  .carousel-control-next:hover::after {
    border-color: var(--brand-orange);
  }

  /* ================= MOBILE ================= */

  @media (max-width: 768px) {

    .hero-slider,
    .hero-slider .carousel-item {
      height: 420px;
    }

    .hero-content {
      max-width: 100%;
      padding-top: 70px;
    }

    .hero-content p {
      font-size: 14px;
      color: #fff !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 52px;
    }

    .carousel-indicators {
      display: none;
    }

    .carousel-control-next,
    .carousel-control-prev {
      top: -169px;
    }
  }

  /* ======segment category section after header======= */
  /* ================= SECTION ================= */

  .category-section {
    background: #ffffff;
  }

  /* ================= CARD ================= */

  .category-card {
    position: relative;
    height: 150px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    animation: cardFadeUp 0.6s ease forwards;
  }

  /* stagger effect */
  .category-card:nth-child(1) {
    animation-delay: 0.05s;
  }

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

  .category-card:nth-child(3) {
    animation-delay: 0.15s;
  }

  .category-card:nth-child(4) {
    animation-delay: 0.2s;
  }

  /* ================= CONTENT ================= */

  .card-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
  }

  /* ================= TEXT ================= */

  .category-card h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
  }

  /* ================= ICON ================= */

  .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f07f18;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconPulse 4s ease-in-out infinite;
  }

  .icon-circle i {
    font-size: 26px;
    color: #ffffff;
    line-height: 1;
  }

  /* ================= IMAGE ================= */

  .hover-image {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ================= OVERLAY ================= */

  .hover-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }

  /* ================= LINK ================= */

  .category-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  /* ================= ANIMATIONS ================= */

  @keyframes cardFadeUp {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

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

  @keyframes iconPulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.04);
    }

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

  /* ================= MOBILE ================= */

  @media (max-width: 991px) {
    .category-card {
      height: 130px;
    }

    .category-card h6 {
      font-size: 14px;
    }

    .icon-circle {
      width: 50px;
      height: 50px;
    }

    .icon-circle i {
      font-size: 24px;
    }
  }



  /* ================= PRODUCT SECTION ================= */
  .product-section {
    padding: 80px 0;
    background-color: #fff8f2;
  }

  .section-heading {
    font-size: 33px;
    font-weight: 600;
    color: var(--brand-orange);
  }

.emulPge .section-heading{
	 font-size: 28px;
}

  .section-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
  }

  /* wrapper */
  .slider-wrapper {
    position: relative;
    /* padding: 0 60px; */
  }

  /* arrows */
  /* .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-orange);
    border: none;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  } */

  .product-prev {
    left: 0;
  }

  .product-next {
    right: 0;
  }

  @media (min-width: 992px) {
    .arrow-prev {
      left: -60px;
    }

    .arrow-next {
      right: -60px;
    }
  }

  /* slider */
  .product-swiper .swiper-slide {
    width: auto;
  }

  /* cards */
  .product-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  }

  .product-card img {
    width: 100%;
    height: 366px;
    object-fit: cover;
  }

  /* card-footer product */
  .card-footer {
    background: var(--brand-orange);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
  }

  .card-footer .arrow {
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* mobile */
  @media (max-width: 768px) {
    .slider-wrapper {
      padding: 0 40px;
    }
  }

  .swiper-button-lock {
    display: block !important;
  }


  /* ================= card product FOOTER ================= */

  .card-footer {
    margin-top: auto;
    background: var(--brand-orange);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .card-footer span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }

  .arrow {
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ================= CUSTOM SWIPER ARROWS ================= */

  .product-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .product-nav button {
    pointer-events: all;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.25s ease;
  }

  .product-nav button:hover {
    background: var(--brand-orange);
    color: #ffffff;
  }

  /* Override default swiper arrows */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  /* ================= VIEW ALL ================= */

  .view-all {
    margin-top: 30px;
  }

  .view-all button {
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid var(--brand-orange);
    background: transparent;
    color: var(--brand-orange);
    font-size: 15px;
    cursor: pointer;
  }

  /* ================= MOBILE ================= */

  @media (max-width: 768px) {
    .slider-wrapper {
      padding: 0 20px;
    }

    .product-card img {
      height: 290px;
    }

    .product-nav {
      display: none;
      /* hide arrows on mobile */
    }
  }

  /* ================= USP SPLIT LAYOUT ================= */

  .usp-section {
    background: #ffffff;
    overflow: hidden;
    padding: 80px 0;
  }

  .usp-title {
    color: var(--brand-orange);
    font-size: 40px;
    font-weight: 600;
  }

  .usp-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .usp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .usp-bullet {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--brand-orange);
    flex-shrink: 0;
  }

  .usp-item h6 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--brand-dark);
  }

  .usp-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
  }

  /* ================= IMAGE STACK ================= */

  .usp-image-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
  }

  .usp-bg {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  }

  /* .usp-foreground {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 65%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    border: 5px solid #fff;
  } */

  /* Mobile */
  @media (max-width: 991px) {
    .usp-title {
      font-size: 32px;
    }

    .usp-image-stack {
      margin: 0 auto;
    }

    /* .usp-foreground {
      position: relative;
      bottom: 0;
      right: 0;
      width: 100%;
      margin-top: 20px;
    } */
  }


  /* =====our solution section====== */
  /* ================= OUR SOLUTIONS ================= */

  .solutions-section {
    background: #fff8f2;
    padding: 80px 0;
  }

  /* LEFT IMAGE GRID */
  .solutions-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 24px;
  }

  .solution-img {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(237, 232, 232, 0.12);
  }

  .solution-img.tall {
    grid-row: span 2;
  }

  .solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* IMAGE LABEL */
  .solution-img span {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    z-index: 2;
  }

  .solution-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), trans ent);
  }

  /* RIGHT CONTENT */
  .solutions-content {
    padding-left: 20px;
  }

  .brand-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .solutions-content p {
    max-width: 520px;
    color: white;
  }

  /* MOBILE */
  @media (max-width: 991px) {
    .solutions-wrapper {
      padding: 40px 25px;
    }

    .solutions-image-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
    }

    .solution-img.tall {
      grid-row: auto;
    }

    .solutions-content {
      padding-left: 0;
      text-align: center;
    }
  }

  .btn-outline-primary {
    color: #ffffff;
    border-color: #fff;
    background-color: transparent;

    transition: all 0.25s ease;

    /* REMOVE BOOTSTRAP BLUE */
    box-shadow: none;
  }

  /* Hover */
  @media (hover: hover) and (pointer: fine) {
    .btn-outline-primary:hover {
      background-color: #f07f18;
      border-color: white;
      color: #ffffff;
      transform: translateY(-1px);
    }
  }

  /* Focus & Active (THIS FIXES BLUE OUTLINE) */
  .btn-outline-primary:focus,
  .btn-outline-primary:active,
  .btn-outline-primary:focus-visible {
    background-color: #f07f18;
    border-color: white;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(245, 244, 244, 0.35);
  }


  /* ================= APPLICATION LAB – PRODUCTS DEVELOPED ================= */

  .lab-products-developed {
    background: linear-gradient(#fce4d8, #fbe9e3);
    padding: 80px 0;
  }

  /* HEADER */
  .lab-products-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
  }

  .lab-products-header h2 {
    display: inline-block;
    color: #f1761e;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 26px;
    margin-bottom: 14px;
  }

  .lab-products-header p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
  }

  /* STACK */
  .product-stack {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* PILL */
  .product-pill {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    padding: 22px 26px;
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .product-pill:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(240, 127, 24, 0.25);
  }

  /* INDEX */
  .product-index {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* CONTENT */
  .product-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .product-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
  }

  /* MOBILE REFINEMENT */
  @media (max-width: 480px) {
    .product-pill {
      border-radius: 26px;
      padding: 20px;
    }

    .product-index {
      min-width: 36px;
      height: 36px;
      font-size: 13px;
    }
  }

  /* DESKTOP SCALE */
  @media (min-width: 768px) {
    .lab-products-header h2 {
      font-size: 30px;
    }
  }

  /* ================= APPLICATION LAB – LAB PICS ================= */

  .lab-pics {
    background: #fff;
    padding: 80px 0;
  }

  /* HEADER */
  .lab-pics-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
  }

  .lab-pics-header h1 {
    display: inline-block;

    color: #f1761e;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 26px;
    margin-bottom: 14px;
  }

  .lab-pics-header p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
  }

  /* WRAPPER */
  .lab-gallery-wrapper {
    position: relative;
    overflow: hidden;
  }

  /* GALLERY */
  .lab-gallery {
    display: flex;
    gap: 20px;
    animation: labScroll 40s linear infinite;
  }

  /* PAUSE ON HOVER */
  .lab-gallery-wrapper:hover .lab-gallery {
    animation-play-state: paused;
  }

  /* IMAGES */
  .lab-gallery img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease;
  }

  .lab-gallery img:hover {
    transform: scale(1.05);
  }

  /* ARROWS */
  .lab-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .lab-arrow:hover {
    background: var(--brand-orange);
  }

  .lab-arrow.left {
    left: 10px;
  }

  .lab-arrow.right {
    right: 10px;
  }

  /* ANIMATION */
  @keyframes labScroll {
    from {
      transform: translateX(0);
    }

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

  /* MOBILE */
  @media (max-width: 768px) {
    .lab-gallery img {
      width: 220px;
      height: 150px;
    }
  }


  /* =====footer code start here  */

  .main-footer {
    background: #f38722;
    margin-top: 70px;
  }

  .footer-title {
    font-weight: 600;
    margin-bottom: 10px;
  }

  .footer-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    margin-bottom: 6px;
  }

  .footer-link:hover {
    opacity: 1;
    text-decoration: none;
  }

  /* social icons */
  .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-heading {
    font-size: 28px;
    /* thoda bada */
    font-weight: 600;
  }

  .footer-btn {
    border-radius: 30px;
    /* pill shape */
    font-weight: 600;
    color: #f38722;
    /* tumhara brand orange */
    border: none;
  }

  .footer-title {
    font-size: 18px;
    /* heading size */
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
  }

  .footer-link {
    font-size: 15px;
    /* link thoda bada */
    line-height: 1.8;
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
  }

  .footer-link:hover {
    opacity: 1;
    text-decoration: underline;
  }

  .main-footer address {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-address {
    font-size: 18px;
    line-height: 1.8;
  }

  .footer-address i {
    margin-right: 6px;
    font-size: 18px;
  }





  /* ===== REWARDS & RECOGNITION ===== */

  .recognition-section {
    background: #fff;
    padding: 80px 0;
  }

  .recognition-title {
    color: var(--brand-orange);
    font-weight: 600;
  }

  /* cards */
  .award-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  }

  .award-card img {
    max-width: 140px;
    margin-bottom: 10px;
  }

  .award-card p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
  }


  /* ================= PARTNERS ================= */

  .partners-section {
    /*background: #fff8f2;*/
    padding: 80px 0;

  }

  .partner-logo {
    max-width: 210px;
    max-height: 90px;
    width: 100%;
    object-fit: contain;
  }


  /* ======home page restimonials */
  .testimonials-section {
    padding: 80px 0;
  }

  /* card */
  .testimonial-card {
    /* background: #fff; */
    padding: 30px 26px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    height: 100%;
  }

  .testimonial-card p {
    font-style: italic;
    margin-bottom: 18px;
  }

  .testimonial-card h6 {
    margin-bottom: 2px;
    font-weight: 600;
  }

  .testimonial-card span {
    font-size: 14px;
    color: #777;
  }

  /* arrows (same system as product slider) */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-orange);
    border: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

  .testimonial-prev {
    left: -20px;
  }

  .testimonial-next {
    right: -20px;
  }

  .testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--brand-orange);
  }

  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* mobile */
  @media (max-width: 768px) {
    .testimonial-prev {
      left: 0;
    }

    .testimonial-next {
      right: 0;
    }
  }


  /* =======blogs css home */
  .blogs-section {
    padding: 80px 0;
    background-color: #fff8f2;
  }

  .blogs-title {
    font-size: 2.2rem;
  }

  .blogs-desc {
    max-width: 720px;
    color: #555;
  }

  /* shared card */
  .blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  }

  /* featured */
  .featured-blog {
    position: relative;
  }

  .featured-blog img {
    object-fit: cover;
  }

  .blog-overlay {
    position: absolute;
    inset: 0;
    padding: 32px;
    background: linear-gradient(to top,
        rgba(0, 0, 0, .65),
        rgba(0, 0, 0, .15));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* side blogs */
  .side-blog {
    display: flex;
    gap: 16px;
    padding: 16px;
    align-items: center;
  }

  .side-blog img {
    width: 110px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
  }

  /* mobile */
  @media (max-width: 991px) {
    .side-blog {
      flex-direction: column;
      align-items: flex-start;
    }

    .side-blog img {
      width: 100%;
      height: 180px;
    }
  }


  /* new page product catgory page css start here  */
  .category-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ====product page css */
  .product-listing {
    background: #ffff;
    padding: 80px 0;
  }

  aside {
    background: #fff;
  }

  .card h5 {
    font-weight: 600;
  }

  .brand-check .form-check-input {
    border: 2px solid var(--brand-orange);
    cursor: pointer;
  }

  .brand-check .form-check-input:checked {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
  }

  .brand-check .form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(240, 127, 24, .25);
  }

  /* ========product details page */
  .category-hero {
    background-color: #fff8f2;
  }

  .category-hero-product {
    min-height: 50vh;
    width: 100%;
    position: relative;
  }

@media(max-width:768px){
    .category-hero-product {
    min-height: 25vh;
  }
}





  .category-hero-overlay {
    position: absolute;
    inset: 0;
    /* top:0 left:0 right:0 bottom:0 */
    background: rgba(0, 0, 0, 0.55);
    display: flex;
  }


  .content-section {
    background: #fff;
    padding: 80px 0;
  }

  /* Base button */
  /* Base button */
  .accordion-button {
    font-size: 22px;
    font-weight: 600;
    padding: 18px 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #111;
    transition: all 0.25s ease;
  }

  /* Remove blue focus */
  .accordion-button:focus {
    box-shadow: none !important;
    outline: none;
  }

  /* Remove blue active bg */
  .accordion-button:not(.collapsed) {
    background: transparent !important;
    color: #111;
  }

  /* Bottom underline only */
  .accordion-item {
    border: none;
    border-bottom: 1px solid rgb(0 0 0 / 9%);
    border-radius: 0;
  }

  /* REMOVE Bootstrap default arrow */
  .accordion-button::after {
    content: "+";
    /* default closed */
    font-size: 22px;
    font-weight: 600;
    transform: none !important;
    background: none !important;
  }

  /* When open show - */
  .accordion-button:not(.collapsed)::after {
    content: "−";
  }

  /* Body */
  .accordion-body {
    font-size: 16px;
    line-height: 1.7;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
  }

  .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: orange;
  }

  .custom-list li {
    margin-bottom: 12px;
    font-size: 16px;
    position: relative;
    padding-left: 28px;
  }

  .custom-list li::before {
    content: "✔";
    color: orange;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
  }




  /* ======== aditiya contact us page css=========== */
  .collab-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
  }

  .collab-container {
    max-width: 1300px;
    margin: auto;
  }

  /* DESCRIPTION */
  .collab-desc {
    max-width: 720px;
    margin: 0 auto 22px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
  }

  /* CALL */
  .collab-call {
    font-size: 15px;
    margin-bottom: 60px;
    color: #111;
  }

  .collab-call span {
    margin-left: 6px;
    color: #111;
    font-weight: 500;
  }

  .collab-call i {
    color: #ff8a00;
    margin-right: 6px;
  }

  /* ================= CARDS ================= */
  .collab-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .collab-card {
    border: 1px solid #e5e5e5;
    padding: 40px 30px;
    background: #fff;
    transition: .35s ease;
  }

  .collab-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transform: translateY(-6px);
  }

  /* ICON */
  .card-icon {
    font-size: 44px;
    color: #ff8020;
    margin-bottom: 14px;
  }

  /* CARD TITLE */
  .collab-card h4 {
    font-size: 22px;
    color: #ff8020;
    margin-bottom: 12px;
    font-weight: 500;
  }

  /* EMAIL */
  .collab-card p {
    font-size: 15px;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .collab-card p i {
    color: #ff8020;
  }

  /* RESPONSIVE */
  @media(max-width:900px) {
    .collab-cards {
      grid-template-columns: 1fr;
    }

    .collab-title {
      font-size: 30px;
    }
  }

  section {
    scroll-margin-top: 80px;
  }

  .collab-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: #eee;
  }

  input:focus,
  select:focus,
  textarea:focus {
    border-bottom-color: #ff8a00;
  }

  .form-group label {
    transition: .3s ease;
  }

  input:focus+label,
  textarea:focus+label {
    color: #ff8a00;
  }

  .collab-card:hover,
  .office-card:hover,
  .office-card.active {
    transform: translateY(-6px);
  }


  /* ================= PRESENCE SECTION ================= */
  .presence-section {
    padding: 80px 0;
  }

  .presence-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .presence-content h2 {
    color: #ff8020;
    font-size: 40px;
    margin-bottom: 16px;
  }

  .presence-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
  }

  .presence-map {
    display: flex;
    justify-content: center;
  }

  .india-map-svg {
    width: 100%;
    max-width: 520px;
  }

  /* Dots */
  .map-point circle:first-child {
    fill: #fff;
  }

  .pulse {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    animation: pulse 2.5s infinite;
  }

  @keyframes pulse {
    0% {
      r: 6;
      opacity: .6;
    }

    70% {
      r: 16;
      opacity: 0;
    }

    100% {
      opacity: 0;
    }
  }

  /* Tooltip */
  .tooltip {
    opacity: 0;
    transition: .2s;
  }

  .tooltip rect {
    fill: #fff;
  }

  .tt-title {
    fill: #111;
    font-size: 12px;
    font-weight: 600;
  }

  .tt-text {
    fill: #111;
    font-size: 11px;
  }

  .map-point:hover .tooltip {
    opacity: 1;
  }

  /* Mobile */
  @media (max-width: 900px) {
    .presence-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .india-map-svg {
      max-width: 360px;
    }

    .tooltip {
      opacity: 1;
    }
  }

  @media (max-width: 480px) {
    .india-map-svg {
      max-width: 300px;
    }

    .presence-content h2 {
      font-size: 28px;
    }
  }



  /* ================= contact section page INFO ================= */

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

  .info-item i {
    color: #ff8a00;
    font-size: 18px;
  }

  /* ================= OFFICE CARDS ================= */

  .office-cards {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    width: 100%;
  }

  .office-card {
    position: relative;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s ease;
    height: 353px;
    flex:1;

  }

  .office-card.active {
    flex: 0 0 62%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .35);
  }

  /* Image */
  .office-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .office-card.active img {
    transform: scale(1.1);
  }

  /* Overlay */
  .office-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .2) 60%);
  }

  /* Title */
  .office-title {
    position: absolute;
    bottom: 16px;
    left: 14px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    transition: opacity .3s ease;
  }

  /* Info */
  .office-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;
    z-index: 2;
  }

  .office-card.active .office-info {
    opacity: 1;
    transform: translateY(0);
  }

  .office-card.active .office-title {
    opacity: 0;
  }

  /* ================= CONTACT FORM ================= */

  /* .contact-form {
    background: #f8dacd;
    border-radius: 26px;
    padding: 40px;
  } */

  /* Override Bootstrap a bit */
  .contact-form .form-control,
  .contact-form .form-select {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #111;
    background: transparent;
    font-size: 14px;
  }

  .contact-form .form-control:focus,
  .contact-form .form-select:focus {
    box-shadow: none;
    border-color: #f07f18;
  }

  /* FORM */
  .contact-form {
    /* background: #f8dacd;
    border-radius: 26px; */
    padding: 36px 22px;
  }

  @media (min-width: 1024px) {
    .contact-section {
      background: #f8dacd;
      border-radius: 26px;
    }
  }


  .contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .contact-form .form-group {
    position: relative
  }

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

  .contact-form input,
  select,
  textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #111;
    background: transparent;
    padding: 8px 2px;
    font-size: 14px;
    outline: none;
  }

  .contact-form textarea {
    height: 80px;
    resize: none
  }

  .contact-form label {
    position: absolute;
    top: -16px;
    font-size: 12px;
    color: #111
  }

  /* ================= MOBILE ================= */

  @media (max-width: 768px) {

    .office-cards {
      flex-direction: column;
      gap: 18px;
    }

    .office-card,
    .office-card.active {
      flex: none;
      width: 100%;
      height: 180px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    }

    .office-title {
      writing-mode: horizontal-tb;
      transform: none;
      top: 16px;
      left: 16px;
      bottom: auto;
      font-size: 16px;
      opacity: 1;
    }

    .office-info {
      opacity: 1;
      transform: none;
    }

    .contact-form {
      margin-top: 46px;
      background: #f8dacd;
      border-radius: 26px;
      padding: 36px 22px;
    }

    .contact-form .form-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    /* FLAT INPUT STYLE (NO FLOATING LABELS) */
    .contact-form .form-group label {
      position: static;
      display: block;
      font-size: 13px;
      margin-bottom: 6px;
      color: #333;
    }

    .contact-form input,
    select,
    textarea {
      font-size: 16px;
      padding: 12px 4px;
      border-bottom: 1px solid #999;
    }

    .contact-form textarea {
      height: 90px;
    }

    /* Remove floating label effects */
    .contact-form input:focus+label,
    .contact-form textarea:focus+label {
      color: #333;
    }
  }



  /* ================= aditiya CAREER – JOIN OUR TEAM ================= */

  .career-join-section {
    padding: 80px 0;
    background: #fff;
  }

  /* .career-join-desc {
    font-size: 20px;
    color: #111;
    line-height: 1.6;
    margin-bottom: 40px;
  } */

  /* IMAGE BLOCK */
  .career-join-image {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
  }

  .career-join-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 28px;
  }

  /* RESPONSIVE */
  @media(max-width:900px) {
    .career-join-section {
      padding: 60px 0;
    }

    .career-join-title {
      font-size: 32px;
    }

    .career-join-desc {
      font-size: 16px;
      margin-bottom: 28px;
    }

    .career-join-image img {
      height: 380px;
    }
  }

  /* ================= CAREER SEARCH SECTION ================= */

  .career-search-section {
    padding: 90px 0;
    background: #fff;
  }

  .career-search-title {
    font-size: 36px;
    font-weight: 700;
    color: #ff8020;
    margin-bottom: 18px;
  }

  .career-search-desc {
    max-width: 900px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .career-search-desc a {
    color: #2f3a77;
    text-decoration: underline;
  }

  /* SEARCH BAR */
  .career-search-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    margin-bottom: 70px;
  }

  .career-search-bar select {
    height: 54px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 0 16px;
    font-size: 14px;
    background: #fff;
  }

  .search-btn {
    height: 54px;
    padding: 0 38px;
    background: #ff8020;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  /* CURRENT OPENINGS */
  .career-openings-heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
  }

  /* JOB CARD */
  .career-job-card {
    background: #fff;
    border-radius: 60px;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
    margin-bottom: 8px;
  }

  .job-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .job-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #777;
  }

  .job-meta i {
    color: #ff8a00;
    margin-right: 6px;
  }

  /* PLUS BUTTON */
  .job-details {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    background: #fff;
    padding: 0 50px;
    border-radius: 0 0 40px 40px;
    border: 1px solid #eee;
    border-top: none;
  }

  .job-accordion.active .job-details {
    max-height: 300px;
    padding: 20px 50px 25px;
  }

  .job-expand {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #bbb;
    background: #fff;
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s;
  }

  /* Desktop rotate */
  .job-accordion.active .job-expand {
    transform: rotate(45deg);
  }


  /* mobile */
  @media (max-width: 768px) {
    .career-job-card {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .job-expand {
      width: auto;
      min-width: 40px;
      height: 36px;
      border-radius: 20px;
      font-size: 20px;
    }

    /* disable rotation on mobile */
    .job-accordion.active .job-expand {
      transform: none;
    }

    .job-accordion.active .job-details {
      padding: 15px 20px 20px;
    }
  }

  /* ================= CAREER PAGE – MOBILE FIX ================= */

  @media (max-width: 900px) {

    /* ===== JOIN OUR TEAM ===== */
    .career-join-section {
      padding: 50px 0;
    }

    .career-join-title {
      font-size: 30px;
      line-height: 1.2;
    }

    .career-join-desc {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .career-join-image {
      border-radius: 22px;
    }

    .career-join-image img {
      height: 320px;
      border-radius: 22px;
    }

    /* ===== SEARCH SECTION ===== */
    .career-search-section {
      padding: 50px 0;
    }

    .career-search-title {
      font-size: 28px;
    }

    .career-search-desc {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    /* STACK SEARCH FIELDS */
    .career-search-bar {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-bottom: 40px;
    }

    .career-search-bar select,
    .search-btn {
      height: 50px;
      font-size: 15px;
      width: 100%;
    }

    .search-btn {
      justify-content: center;
    }

    /* ===== OPENINGS ===== */
    .career-openings-heading {
      font-size: 24px;
      margin-bottom: 22px;
    }

    /* JOB CARD STACKING */
    .career-job-card {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      padding: 22px;
      border-radius: 22px;
    }

    .job-info h4 {
      font-size: 16px;
    }

    .job-meta {
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
    }

    /* BUTTON FULL WIDTH */
    .job-expand {
      width: 100%;
      height: 44px;
      border-radius: 30px;
      font-size: 20px;
    }
  }

  /* ===== SMALL MOBILE (≤480px) ===== */
  @media (max-width: 480px) {

    .career-join-title {
      font-size: 26px;
    }

    .career-join-desc {
      font-size: 14px;
    }

    .career-join-image img {
      height: 260px;
    }

    .career-search-title {
      font-size: 24px;
    }

    .career-openings-heading {
      font-size: 22px;
    }
  }

  /* ================= WHY JOIN SECTION ================= */

  .why-join-desc {
    font-size: 18px;
    color: #111;
    max-width: 820px;
    line-height: 1.6;
  }

  .tag {
    background: #ff8020;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }


  /* ================= BENEFITS SECTION ================= */

  .benefits-section {
    position: relative;
    background: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7");
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
  }

  /* Dark overlay layer */
  .benefits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgb(0 0 0 / 45%));
    z-index: 1;
  }

  /* Content above overlay */
  .benefits-section * {
    position: relative;
    z-index: 2;
  }

  /* CONTAINER */
  .benefits-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }

  /* TITLE */
  .section-heading {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  /* DESCRIPTION */
  .benefits-desc {
    font-size: 18px;
    max-width: 780px;
    margin: 0 auto 60px;
    line-height: 1.6;
  }

  /* ITEM */
  .benefit-item {
    padding: 20px;
  }

  /* ICON */
  .benefit-icon img {
    width: 75px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
  }

  /* TEXT */
  .benefit-item p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* MOBILE TWEAK */
  @media (max-width: 576px) {
    .section-heading {
      font-size: 28px;
    }

    .benefits-desc {
      font-size: 15px;
    }

    .benefit-icon img {
      width: 55px;
    }
  }

  /* aditiya application lab css start here  */
  .app-lab-section {
    background: #fff;
  }

  /* Grid Layout */
  .app-lab-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 28px;
  }

  /* Cards */
  .app-lab-item {
    border-radius: 22px;
    overflow: hidden;
  }

  .app-lab-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Positions */
  .large {
    grid-row: 1 / 3;
  }

  .bottom-wide {
    grid-column: 2 / 4;
  }

  /* Responsive */
  @media (max-width: 576px) {
    .app-lab-grid {
      grid-template-columns: 1fr;
    }

    .app-lab-item {
      height: 220px;
    }

    /* RESET SPANS */
    .large,
    .bottom-wide {
      grid-column: auto;
      grid-row: auto;
    }

    .app-lab-header h2 {
      font-size: 32px;
    }
  }


  /* ================= WHY US SECTION ================= */
  .whyus-section {
    padding: 30px 0 40px 0;
    background: #fff;
  }

  .why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .icons-circle {
    width: 125px;
    height: 125px;
    background: #ff8a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
  }

  .icons-circle i {
    font-size: 56px;
    color: #fff;
  }

  .why-card p {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    text-align: center;
  }

  /* .why-card:hover .icons-circle {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 18px 40px rgba(249, 204, 153, .8);
  } */


  /* ================= LAB SERVICES BACKGROUND SECTION ================= */



  .lab-products-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
  }

  .lab-products-container {
    max-width: 1300px;
    margin: auto;
  }

  /* HEADER */
  .lab-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--brand-orange);
    margin-bottom: 10px;
  }

  .lab-title span {
    color: var(--brand-orange);
  }

  .lab-subtitle {
    text-align: center;
    font-size: 16px;
    color: #000;
    margin-bottom: 40px;
  }

  /* TABS */
  .lab-tabs {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }

  .lab-tabs .tab {
    padding: 10px 22px;
    border-radius: 6px;
    border: 1px solid #e6e6e6;
    background: #fff;
    font-size: 15px;
    cursor: pointer;
    color: var(--brand-orange);
  }

  .lab-tabs .tab.active {
    background: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
  }

  /* CONTENT */
  /* .lab-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: flex-start;
  } */

  /* LEFT */
  .lab-category {
    font-size: 34px;
    color: var(--brand-orange);
    margin-bottom: 30px;
  }

  .lab-lists {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
  }

  .lab-list,
  .lab-new ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .lab-list li,
  .lab-new ul li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    position: relative;
    padding-left: 22px;
  }

  .lab-list li::before,
  .lab-new ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 22px;
    color: var(--brand-orange);
  }

  /* DIVIDER */
  .lab-divider {
    width: 1px;
    background: #e6e6e6;
  }

  /* NEW COMINGS */
  .lab-new h4 {
    font-size: 20px;
    color: var(--brand-orange);
    margin-bottom: 10px;
  }

  /* IMAGE */
  .lab-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  }

  /* RESPONSIVE */
  @media(max-width:900px) {
    .lab-content {
      grid-template-columns: 1fr;
    }

    .lab-lists {
      grid-template-columns: 1fr;
    }

    .lab-divider {
      display: none;
    }
  }


  /* lab pics */

  .lab-pics-section {
    padding: 100px 20px;
    background: #fff;
  }

  .lab-pics-container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
  }

  .lab-pics-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
  }

  /* FIXED paragraph alignment */
  .lab-pics-desc {
    margin: 0 auto 16px;
    max-width: 700px;
    line-height: 1.6;
  }

  /* image spacing controlled */
  .lab-pics-image img {
    width: 100%;
    border-radius: 28px;
    margin: 12px 0 20px;
  }

  /* =========================
   LAB PICS – MOBILE OPTIMIZATION
/* =========================
   LAB PICS – MOBILE OPTIMIZATION
========================= */
  @media (max-width: 800px) {

    .lab-pics-section {
      padding: 60px 12px;
    }

    .lab-pics-heading {
      font-size: 28px;
      margin-bottom: 6px;
    }

    .lab-pics-desc {
      max-width: 100%;
      font-size: 15px;
      margin-bottom: 14px;
    }

    /* IMAGE MADE VISUALLY LARGER */
    .lab-pics-image {
      margin-left: -12px;
      margin-right: -12px;
    }

    .lab-pics-image img {
      width: 100%;
      height: 30vh;
      border-radius: 16px;
      margin: 12px 0 18px;
    }

    .lab-pics-cta {
      padding: 12px 30px;
      font-size: 15px;
      margin-top: 4px;
    }
  }


  /* about us page css start here  */
  .our-team {
    background-color: #fff8f2;
  }

  .teamSwiper {
    padding: 20px 0;
  }

  .team-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .team-card h6 {
    font-weight: 600;
    margin-top: 8px;
  }

  /* Navigation buttons */
  .team-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f38722;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

  /* Desktop */
  .team-prev {
    left: -20px;
  }

  .team-next {
    right: -20px;
  }

  /* Mobile fix */
  @media (max-width: 768px) {
    .team-prev {
      left: 10px;
    }

    .team-next {
      right: 10px;
    }

    .team-nav {
      width: 40px;
      height: 40px;
    }
  }

  .founder-section {
    background: #f7f7f7;
    overflow-x: hidden;
  }

  .founder-img-wrap {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    overflow: hidden;
  }

  .founder-img-wrap img {
    border-radius: 12px;
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

@media(max-width:992px){
    .founder-img-wrap{
    	padding:10px;
    }
     .founder-img-wrap img{
         height:auto;
    }
}

  .founder-name {
    font-weight: 600;
    color: var(--brand-orange);
  }

  .mission-box {
    border-left: 4px solid #e91e63;
    padding-left: 20px;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.8;
  }


  /* blog section card  */
  .blog-card-img {
    height: 180px;
    object-fit: cover;
  }

  /* //lab page code  */

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

  .rd-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
  }

  .rd-image img {
    width: 100%;
    border-radius: 16px;
  }

  .rd-image {
    flex: 1;
  }

  .rd-content {
    flex: 1;
  }

  .rd-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .rd-content h2 span {
    color: #7e4aa8;
  }

  .rd-content h2 {
    color: #e6007e;
  }

  .rd-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .bold-text {
    font-weight: 600;
    margin: 20px 0;
  }

  .rd-flow {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }

  .flow-item {
    text-align: center;
  }

  .flow-item img {
    width: 70px;
  }

  .arrow {
    font-size: 30px;
    font-weight: bold;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .rd-container {
      flex-direction: column;
    }

    .rd-content h2 {
      font-size: 28px;
    }
  }


  /* blog page start */
  .blog-section {
    background: #fff;
  }

  .blog-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .blog-filters button {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
  }

  .blog-filters button.active {
    border-color: #f07f18;
    color: #fff;
    background-color: #f07f18;
  }

  .blog-card-page {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
  }
	
.blog-card-page a.crdLink {
    text-decoration: none;
    color: #000;
}

  .blog-img {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
  }

  .blog-img img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    transition: transform .4s ease;
  }

  /* Hover pop */
  .blog-card-page:hover .blog-img img {
    transform: scale(1.08);
  }

  .tag-git {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 2;
  }

  .blog-content {
    padding: 14px 4px;
  }

  .blog-content .date {
    color: #f07f18;
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
  }


  .blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    padding-top: 8px;
  }


  /* Floating vertical button */
  .contact-float {
    position: fixed;
    right: 20px;
    top: 40%;
    background: #5D8583;
    color: #fff;
    padding: 10px 38px;
    font-weight: 600;
    cursor: pointer;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: right top;
    border-radius: 6px 6px 0 0;
    z-index: 9999;
  }

  .modal-header {
    background-color: #f07f18;
    color: #fff;
  }

  .modal-close {
    color: #fff;
  }


  .main__page .category-link {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }

        .category-section.main__page{
          padding: 60px 0 !important;
        }

        .main__page .category-card {
            background: #fff;
            padding: 25px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgb(0 0 0 / 16%);
            position: relative;
            transform: translateY(0px);
            transition: transform 0.3s ease;
            overflow: visible; 
            height: 100%;
            display: flex;
            align-items: center;
            animation:none;
            
        }

        .main__page .category-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            width: 90%;
            height: 2px;
            background-color: #ec812b;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.4s ease;
        }

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

        .main__page .icon-wrapper {
               display: inline-flex;
                align-items: center;
                position: relative;
                z-index: 3;
                width: 80px;
                height: 80px;
        }
        .main__page .icon-circle {
            background-color: #1a1a1a;
            border-radius: 50%;
            position: relative;
            width: 80px;
            height: 80px;
            -webkit-transition: all 500ms cubic-bezier(0.38, 0.53, 0.01, 0.97);
            line-height: 80px;
            text-align: center;
            color: #fff;
            font-size: 35px;
            z-index: 1;
        }
    

        .main__page .hover-image {
            position: absolute;
            rotate: -30deg;
            top: 0;
            width: 80px;
            height: 80px;
            position: absolute;
            -webkit-transition: all 500ms cubic-bezier(0.38, 0.53, 0.01, 0.97);
            transition: all 500ms cubic-bezier(0.38, 0.53, 0.01, 0.97);
        }

        .main__page .hover-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }


        .main__page .hover-image::after{
          content: none;
        }

        .main__page .category-card h6 {
            margin: 0;
            font-weight: 700;
            color: #1a1a1a;
            font-size: 16px;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 5;
            padding-left: 25px;
            letter-spacing: 1px;
        }

        /* --- HOVER EFFECTS --- */
        
     
        .main__page .category-card:hover {
            transform: translateY(-5px);
        }
        .main__page .category-card:hover .icon-circle {
            background-color: #ec812b;
            color: #fff;
            width: 55px;
            height: 55px;
            font-size: 24px;
            z-index: 2;
            text-align: center;
            transition: all 500ms ease;
            -webkit-transition: all 500ms ease;
            line-height: 55px;
        }

       .main__page .category-card:hover .hover-image {
            transition: all 500ms ease;
            -webkit-transition: all 500ms ease;
            rotate: 0deg;
            width: 100px;
            height: 100px;
            top: -40px;
            left: 0px;
            z-index: 1;
        }

        .main__page .category-card:hover h6 {
            transform: translateX(10px);
        }


        @media(max-width:1024px){
            

            .main__page .hover-image {
                rotate: 0deg;
                width: 80px;
                height: 80px;
                top: -40px;
                left: 0px;
                z-index: 1;
            }
            .main__page .icon-circle {
                background-color: #f07f18;
                color: #fff;
                width: 50px;
                height: 50px;
                font-size: 25px;
                z-index: 2;
                text-align: center;
                line-height: 50px;
            }
            .main__page .category-card:hover .hover-image {
                rotate: 0deg;
                width: 80px;
                height: 80px;
                top: -40px;
                left: 0px;
                z-index: 1;
            }
            .main__page .category-card:hover .icon-circle {
                background-color: #EF233C;
                color: #fff;
                width: 45px;
                height: 45px;
                font-size: 25px;
                z-index: 2;
                text-align: center;
                line-height: 45px;
            }
        }


        @media(max-width:576px){
          .main__page .category-link{
            margin: 15px 0px;
          }
          .category-section.main__page {
              padding: 60px 25px !important;
              background-color: #FAF8F7;
          }
            .main__page .category-card {
                flex-direction: column;
                align-items: start;
                padding: 15px;
                height: auto;
            }
            .main__page .category-card h6{
                padding: 0;
                transform:none;
                font-size: 12px;
                line-height: normal;
            }
            .main__page .category-card:hover .hover-image {
                rotate: 0deg;
                width: 80px;
                height: 80px;
                top: -40px;
                left: 0px;
                z-index: 1;
            }
            .main__page .category-card:hover .icon-circle {
                background-color: #EF233C;
                color: #fff;
                width: 45px;
                height: 45px;
                font-size: 25px;
                z-index: 2;
                text-align: center;
                line-height: 45px;
            }
            .email_id_Span {
                font-size: 15px;
            }
        }



         /* about-gallery slider */



       .our-team .custom-slider {
            margin-bottom: 60px;
            padding: 0 15px;
        }


       .our-team .slider-image {
            border-radius: 20px;
            width: 100%;
            max-height: 87vh;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }


        .our-team .carousel-indicators {
            bottom: -50px;
        }

       .our-team .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ac7c4f;
            border: none;
            margin: 0 6px;
            opacity: 0.5;
            transition: all 0.3s ease;
        }


        .our-team .carousel-indicators .active {
            background-color: #f07f18;
            opacity: 1;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
           .our-team .carousel-indicators {
                display: block;
            }
            .our-team .carousel-control-prev,.our-team .carousel-control-next{
              display: none;
            }
        }


     .insights-link {
        position: relative;
        padding-bottom: 10px;
      }

      /* underline */
      /* .insights-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background: orange;
      } */

      .insights-dropdown {
        position: relative;
      }

      .custom-dropdown {
        position: absolute;
        top: calc(100% + 18px); /* ⬅ pushes dropdown below underline */
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        min-width: 240px;
        padding: 16px 0;
        border-radius: 24px;
        box-shadow: 0 20px 45px rgba(0,0,0,0.18);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
        z-index: 999;
      }

      .custom-dropdown::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #fff;
      }


      .custom-dropdown a {
        display: block;
        padding: 12px 28px;
        color: #111;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
      }

      .custom-dropdown a:hover {
        background: #f6f6f6;
      }

      .insights-dropdown:hover .custom-dropdown {
        opacity: 1;
        visibility: visible;
      }


    
/* ⬅  map_section-update-css */


.map-container {
        width: 100%;
        max-width: 550px;
        position: relative;
        margin: auto;
    }

    svg {
      width: 100%;
      height: auto;
      display: block;
      overflow: visible;
    }

    /* --- Map Styling --- */
    path {
      fill: #f38722;      /* Very light grey-blue/white */
      stroke: #dbe0e8;    /* Subtle grey outline */
      stroke-width: 0.8;
      transition: fill 0.3s ease;
    }
    
    /* path:hover {
      fill: #f0f4f8;
    } */

    /* --- Connectors --- */
    .connector {
      fill: none;
      stroke: #000000;
      stroke-width: 1.5;
      stroke-dasharray: 6 4;
      opacity: 0.5;
      stroke-linecap: round;
      pointer-events: none;
      animation: dashFlow 10s linear infinite;
    }

    @keyframes dashFlow {
      to { stroke-dashoffset: -100; }
    }

    /* --- Markers --- */
    .marker-group {
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .marker-group:hover {
      transform: scale(1.2);
      z-index: 10;
    }

    .dot {
      fill: #3a00ed;
      stroke: #ffffff;
      stroke-width: 1.5;
    }

    .ring-inner {
          fill: #000000;
         opacity: 0.8;
    }

    .ring-outer {
      fill: #000000;
        opacity: 0.2;
        stroke: #000000;
        stroke-width: 0.5;
        stroke-opacity: 0.2;
    }

    .marker-group:hover .ring-outer {
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.05; }
      50% { transform: scale(1.1); opacity: 0.15; }
      100% { transform: scale(1); opacity: 0.05; }
    }

    /* --- Tooltip --- */
    .tooltip {
      position: absolute;
      pointer-events: none;
      background: white;
      color: #333;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 13px;
      line-height: 1.4;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      border: 1px solid #e0e0e0;
      display: none;
      z-index: 100;
      width: 150px;
      transform: translate(-50%, -12px);
      left: 0;
      top: 0;
    }
    
    .tooltip h4 {
      margin: 0 0 6px 0;
      color: #2c3e66;
      font-size: 14px;
      font-weight: 700;
      border-bottom: 1px solid #eee;
      padding-bottom: 4px;
    }
    
    .tooltip div {
      color: #666;
    }

    .tooltip::after {
      content: '';
      position: absolute;
      width: 10px; height: 10px;
      background: white;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      border-bottom: 1px solid #e0e0e0;
      border-right: 1px solid #e0e0e0;
    }


    .firstLc:hover {
        transform: translate(200px, 230px);
    }
   
    .secondLc:hover {
        transform: translate(190px, 210px);
    }
    .thirdLc:hover {
        transform: translate(114px, 450px);
    }
    .fourthLc:hover {
        transform: translate(210px, 485px);
    }
    


	.testimonials-swiper .swiper-slide{
        height:auto;}

	  /* <--------------------------Slider-Image-------------------------> */

       .csr_slider.slider-wrapper {
      overflow: hidden;
      position: relative;
    }

  
/* LEFT SHADOW */
.csr_slider.slider-wrapper::before,
.csr_slider.slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Left fade */
.csr_slider.slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0.8) 30%, rgb(255 245 245 / 0%) 70%)
}

/* Right fade */
.csr_slider.slider-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 10%, rgba(255, 255, 255, 0.8) 30%, rgb(255 245 245 / 0%) 70%)
  
}

   .csr_slider .slider-track {
      display: flex;
      width: max-content;
      animation: scroll 20s linear infinite;
    }

    .csr_slider .slider-item {
      flex: 0 0 auto;
      width: 260px;
      margin-right: 16px;
    }

   .csr_slider .slider-img {
      height: 260px;
      width: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

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


  @media (max-width: 768px) {
      .csr_slider.slider-wrapper::before, .csr_slider.slider-wrapper::after{
          width:60px
      }
      .csr_slider .slider-item{
          width:160px;}
      .csr_slider .slider-img{
          height:auto;
      }
}



.stats-section {
            background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            padding: 80px 0 !important;
            color: #ffffff;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #111111d9;
            z-index: 1;
        }

        .stats-content {
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
            line-height: 1;
        }

        .stat-text {
            font-size: 0.85rem;
            font-weight: 400;
            opacity: 0.9;
        }

        @media (min-width: 992px) {
            .stat-item {
                position: relative;
            }

            .stat-item:not(:last-child)::after {
                content: '';
                position: absolute;
                right: 0;
                top: 15%;
                height: 70%;
                width: 1px;
                background-color: rgba(255, 255, 255, 0.6);
            }
        }

        @media (max-width: 991px) {
            .stat-item {
                margin-bottom: 30px;
            }
        }



        /* --- Tab Styling --- */
        .custom-tabs {
            border-bottom: none;
        }

        .custom-tabs .nav-link {
            font-weight: 500;
            border-radius: 6px;
            padding: 10px 24px;
            transition: all 0.3s ease;
            background-color: #4e4a4a17;
            border: none;
        }

		.custom-tabs .nav-link:hover:after{
            height:0px; 
            width:0px;
        }

		.custom-tabs .nav-link:after{
            height:0px;            
        }
        .custom-tabs .nav-link.active {
            background-color: #f07f18;
            color: white;
            box-shadow: 0 4px 10px rgba(223, 27, 124, 0.3);
        }

        /* --- Custom Slider Track --- */
        .slider-container {
            overflow: hidden;
            width: 100%;
            padding: 10px 0;
        }

        /* --- Custom Slider Track --- */
.slider-track {
    display: flex;
    gap: 24px; /* Space between cards */
    transition: transform 0.6s ease-in-out;
}

/* Default: 4 Cards on Desktop (992px and up) */
.slide-card {
    flex: 0 0 calc(25% - 18px); 
}

/* 3 Cards on Tablet / Small Desktop (768px to 991px) */
@media (max-width: 991px) {
    .slide-card {
        flex: 0 0 calc(33.333% - 16px);
    }
    .custom-tabs{
        gap:15px;
    }
}

/* 2 Cards on Large Mobile (425px to 767px) */
@media (max-width: 767px) {
    .slide-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* 1 Card on Small Mobile (Under 425px) */
@media (max-width: 424px) {
    .slide-card {
        flex: 0 0 100%;
    }
}

        /* --- Card Styling --- */
        .tab_slider .custom-card {
            border: none;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            background: #fff;
            overflow: hidden;
            height: 100%;
        }

        .tab_slider .card-img-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .tab_slider .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tab_slider .badge-overlay {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: #df1b7c;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .tab_slider .custom-card-body {
            padding: 20px 15px;
        }

        .tab_slider .custom-card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #000;
            margin: 0;
        }




       .application-centre {
            background-color: #ffffff;
            padding: 80px 0;
        }

        .lab_cntr .app-title {
            font-size: 2.8rem;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

 

        .lab_cntr .text-pink {
            color: #f07f18;
        }

        .lab_cntr .app-subtitle {
            font-size: 1.05rem;
            font-weight: 700;
            color: #222;
        }

        /* List Styling */
        .lab_cntr .app-list {
            list-style: none;
            padding-left: 0;
            margin-top: 10px;
        }

        .lab_cntr .app-list li {
            position: relative;
            padding: 18px 0 18px 32px;
            border-bottom: 1px solid #f2f2f2;
            color: #333;
            font-size: 1rem;
            line-height: 1.5;
        }

        .lab_cntr .app-list li:last-child {
            border-bottom: none;
        }

        
        .lab_cntr .app-list li .bi-chevron-right {
            position: absolute;
            left: 0;
            top: 18px; 
            color: #f07f18;
            font-size: 1.2rem;
            font-weight: bold;
            -webkit-text-stroke: 1px #f07f18; 
        }

        .lab_cntr .app-img {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .lab_cntr .app-title {
                font-size: 2.2rem;
            }
        }
