  :root {
    --primary: #ff7921;
    --primary-dark: #e66a1a;
    --secondary: #0d1b2a;
    --white: #ffffff;
    --text-main: #333333;
    --bg-light: #f4f7f9;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  body {
    background: var(--white);
    overflow-x: hidden;
    color: var(--text-main);
    line-height: 1.6;
  }

  html {
    scroll-behavior: smooth;
  }

  /* --- TOP BAR --- */
  .top-bar {
    background: #fdfdfd;
    padding: 10px 10%;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border-bottom: 1px solid #eee;
  }

  .top-bar i {
    color: var(--primary);
    margin-right: 5px;
  }

  @media (max-width: 768px) {
    .top-bar {
      display: none;
    }
  }

  /* --- NAVIGATION --- */
  nav {
    padding: 5px 10% 0;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    font-family: 'Outfit';
  }

  .logo span {
    color: var(--primary);
  }

  .nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    height: 100%;
    align-items: center;
  }

  .nav-links>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .nav-links>li>a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    padding: 0 15px;
    transition: var(--transition);
    font-size: 14px;
    text-transform: uppercase;
  }

  .nav-links li:hover>a {
    color: var(--primary);
  }

  /* Dropdown Logic */
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    padding: 10px 0;
  }

  .nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown li a {
    padding: 12px 25px;
    display: block;
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
  }

  .dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 30px;
  }

  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary);
  }

  .btn-quote-nav {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 800;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transition: var(--transition);
    display: inline-block;
  }

  .btn-quote-nav:hover {
    background: var(--secondary);
    transform: translateY(-3px);
  }

  /* Mobile Adjustments for Quote Button and Menu */
  @media (max-width: 1100px) {
    .nav-links {
      position: fixed;
      top: 90px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 90px);
      background: white;
      flex-direction: column;
      align-items: flex-start;
      padding: 40px 10%;
      transition: 0.4s;
      z-index: 999;
      overflow-y: auto;
      gap: 0;
    }

    .nav-links.active {
      left: 0;
    }

    .nav-links li {
      width: 100%;
      height: auto;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .nav-links li a {
      padding: 15px 0;
      display: block;
    }

    .dropdown {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
      padding-left: 20px;
      display: none;
    }

    .nav-links li:hover .dropdown {
      display: block;
    }

    .menu-toggle {
      display: block;
    }

    /* Move quote button inside nav links for mobile */
    .btn-quote-desktop {
      display: none;
    }

    .nav-links .mobile-quote-item {
      border-bottom: none;
      margin-top: 20px;
    }

    .nav-links .btn-quote-nav {
      clip-path: none;
      width: 100%;
      text-align: center;
      border-radius: 8px;
    }
  }

  @media (min-width: 1101px) {
    .nav-links .mobile-quote-item {
      display: none;
    }
  }

  /* --- HERO SLIDER --- */
  .hero-swiper {
    width: 100%;
    height: 85vh;
    background: var(--secondary);
  }

  .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 10%;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 8s ease;
  }

  .swiper-slide-active .hero-bg {
    transform: scale(1);
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.6), transparent);
    z-index: 2;
  }

  .hero-cutout {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 90%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
  }

  .swiper-slide-active .hero-cutout {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-content {
    position: relative;
    z-index: 5;
    color: white;
    max-width: 700px;
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s ease 0.3s;
  }

  .swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateX(0);
  }

  .hero-content h1 {
    font-size: 50px;
    font-family: 'Outfit';
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 700;
  }

  /* Mobile View (max-width: 768px) */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 36px;
      /* 50px se thoda chota aur clean */
      margin-bottom: 15px;
      line-height: 1.2;
      /* Mobile par readability ke liye thoda gap zaroori hai */
    }
  }

  /* Chote Mobile View (max-width: 480px) */
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 32px;
    }
  }

  .hero-content h1 span {
    color: var(--primary);
  }

  .hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
  }

  /* Mobile View (max-width: 768px) */
  @media (max-width: 768px) {
    .hero-content p {
      font-size: 16px;
      /* 20px se reduce karke 16px perfect rehta hai */
      margin-bottom: 25px;
      /* Space thoda kam kiya mobile ke liye */
      line-height: 1.5;
      /* Mobile par clean reading experience ke liye */
    }
  }

  /* --- ACHIEVEMENTS --- */
  .achievements {
    padding: 0 10% 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
  }

  .stat-card {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(255, 121, 33, 0.3);
  }

  .stat-card.dark {
    background: var(--secondary);
    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.3);
  }

  .stat-card:hover {
    transform: translateY(-15px);
  }

  .stat-card i {
    font-size: 50px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
  }

  .stat-card h3 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit';
  }

  .stat-card p {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .stat-card::after {
    content: '\f013';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -30px;
    bottom: -30px;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.07);
    animation: rotateGear 12s linear infinite;
  }

  /* --- ABOUT SECTION UPDATED --- */
  .about-section {
    padding: 60px 10% 30px;
    display: flex;
    gap: 30px;
    align-items: stretch;
    /* Ensures image and content columns match height */
  }

  .about-image {
    flex: 1;
    position: relative;
    min-height: 500px;
  }

  .about-image .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the area of the content height */
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }

  .about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centers text vertically against image height */
  }

  @media (max-width: 992px) {
    .about-section {
      flex-direction: column;
    }

    .about-image {
      min-height: 223px;
    }
  }

  .about-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-family: 'Outfit';
    box-shadow: 0 20px 40px rgba(255, 121, 33, 0.4);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
  }

  @keyframes float {

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

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

  .about-experience h2 {
    font-size: 40px;
    line-height: 1;
  }

  .about-content span {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }

  .about-content h2 {
    font-size: 44px;
    font-family: 'Outfit';
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.2;
  }

  /* Mobile devices (max-width: 768px) */
  @media (max-width: 768px) {
    .about-content h2 {
      font-size: 32px;
      /* Mobile ke liye perfect size */
      margin-bottom: 15px;
      line-height: 1.3;
    }
  }

  /* Extra small devices (max-width: 480px) */
  @media (max-width: 480px) {
    .about-content h2 {
      font-size: 28px;
    }
  }

  .about-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
  }

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

  .about-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 15px;
  }

  .about-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 121, 33, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  /* --- SERVICES --- */
  .services-section {
    padding: 120px 10%;
    background: var(--bg-light);
    text-align: center;
  }

  .section-header {
    max-width: 700px;
    margin: 0 auto 60px;
  }

  .section-header h2 {
    font-family: 'Outfit';
    font-size: 48px;
    color: var(--secondary);
  }

  .service-swiper {
    padding-bottom: 60px !important;
  }

  .service-card {
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: var(--transition);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.95), transparent 70%);
    transition: var(--transition);
  }

  .service-card:hover::before {
    background: linear-gradient(to top, var(--primary), transparent 90%);
  }

  .service-card:hover {
    transform: translateY(-10px);
  }

  .service-info {
    position: relative;
    z-index: 5;
    padding: 40px;
    text-align: left;
    color: white;
  }

  .service-info h4 {
    font-size: 26px;
    font-family: 'Outfit';
    margin-bottom: 15px;
  }

  .service-info p {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .service-card:hover .service-info p {
    opacity: 0.9;
    transform: translateY(0);
  }

  .arrow-btn {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 20px;
  }

  .service-card:hover .arrow-btn {
    background: var(--secondary);
    color: white;
    transform: rotate(-45deg);
  }

  /* --- FOOTER --- */
  footer {
    background: var(--secondary);
    color: white;
    padding: 40px 10% 20px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
  }

  .footer-logo {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Outfit';
    margin-bottom: 15px;
    display: block;
    color: white;
    text-decoration: none;
  }

  .footer-logo span {
    color: var(--primary);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* margin-top: 60px; */
    padding-top: 24px;
    text-align: center;
    font-size: 15px;
    opacity: 0.6;
  }

  /* Utilities */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease-out;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes rotateGear {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }


  .text-brand-orange {
    color: #f97316;
  }

  .bg-brand-orange {
    background-color: #f97316;
  }

  /* Hero Banner Styling */
  .hero-banner {
    position: relative;
    background: linear-gradient(rgb(15 23 42 / 62%), rgb(15 23 42 / 62%)), url(../image/banner/b3.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding-bottom: 60px;
  }

  .hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 20;
  }

  .hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
  }

  .hero-shape .shape-fill {
    fill: #ffffff;
  }

  /* Animation Classes */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .machine-card {
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
  }

  .machine-card:hover {
    transform: translateY(-5px);
    border-color: #f97316;
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.1);
  }

  .strength-card {
    transition: all 0.3s ease;
  }

  .strength-card:hover {
    background-color: #f97316;
    color: white !important;
    transform: scale(1.02);
  }

  .glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .grid-pattern {
    background-image: radial-gradient(#cbd5e1 0.5px, transparent 0.5px);
    background-size: 30px 30px;
  }

  /* Floating Animation for Image */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }

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

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

  .float-anim {
    animation: float 4s ease-in-out infinite;
  }

  /* Clean Reveal Animation */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive Fix for Mobile */
  @media (max-width: 768px) {
    .grid {
      gap: 1.5rem;
    }

    .group {
      /* padding: 2rem; */
    }
  }


  .bento-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .bento-item:hover {
    border-color: #fb923c;
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -15px rgba(251, 146, 60, 0.15);
  }

  .slider-container {
    width: 100%;
    height: 100%;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .slide.active {
    opacity: 1;
  }

  .orange-text {
    color: #f97316;
  }

  .badge {
    background: #fff7ed;
    color: #f97316;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ffedd5;
  }

  .service {
    padding: 60px 0 0;
  }

  .client-track span {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
  }

  .client-track i {
    color: #f97316;
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  .client-track span:hover {
    color: #f97316;
    border-color: #f97316;
    background: #fff7ed;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.2);
  }

  .client-track span:hover i {
    transform: scale(1.2);
  }

  .clients-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .client-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .orange-text {
    color: #f97316;
  }

  .client-slider {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }

  .client-track {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
  }

  .client-track span {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
  }

  .client-track span:hover {
    color: #f97316;
    border-color: #f97316;
    background: #fff7ed;
    transform: translateY(-3px);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-100% / 2));
    }
  }

  .client-slider:hover .client-track {
    animation-play-state: paused;
  }

  .product {
    padding: 60px 30px;
  }

  @media (max-width: 767px) {

    .service,
    .product {
      padding: 40px 30px;
    }

  }

  .nav-item-dropdown {
    position: relative;
    list-style: none;
    display: inline-block;
  }

  .nav-link-main {
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .arrow-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-top: -4px;
    transition: 0.3s;
  }

  .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    border-radius: 6px;
  }

  @media (min-width: 1025px) {
    .nav-item-dropdown:hover .sub-menu {
      display: block;
    }

    .nav-item-dropdown:hover .arrow-icon {
      transform: rotate(-135deg);
      border-color: #f28c28;
      margin-top: 4px;
    }
  }

  .nav-item-dropdown.is-open .sub-menu {
    display: block !important;
  }

  .nav-item-dropdown.is-open .arrow-icon {
    transform: rotate(-135deg);
    border-color: #f28c28;
    margin-top: 4px;
  }

  .sub-menu li a {
    color: #444;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    font-size: 14px;
  }

  .sub-menu li a:hover {
    background: #f8f8f8;
    color: #f28c28;
  }

  /* 1. Header Line Animation */
  .line-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #FF6B00, transparent);
    animation: scan 2s linear infinite;
  }

  /* 2. List Item Styling */
  .list-item {
    font-weight: 600;
    color: #111;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
  }

  .list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 2px;
    background: #FF6B00;
    transform: translateY(-50%);
  }

  /* 3. Dark Card Grid Background */
  .electric-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#FF6B00 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.1;
  }

  /* 4. Pulse Tag for Expansion */
  .pulse-icon {
    display: inline-block;
    background: #FF6B00;
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 20px;
    border-radius: 2px;
    animation: pulseShadow 2s infinite;
  }

  /* 5. Link Hover Animation */
  .arrow-link {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
  }

  .arrow-link:hover .arrow-anim {
    margin-left: 10px;
  }

  .arrow-anim {
    transition: 0.3s;
    display: inline-block;
  }

  /* 6. Card Staggered Entrance */
  .info-card {
    animation: slideIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
  }

  .stagger-1 {
    animation-delay: 0.1s;
  }

  .stagger-2 {
    animation-delay: 0.3s;
  }

  .stagger-3 {
    animation-delay: 0.5s;
  }

  /* 7. Hover Interactions */
  .info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
    border-color: #FF6B00 !important;
  }

  /* Keyframes */
  @keyframes scan {
    0% {
      transform: translateX(-100%);
    }

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

  @keyframes pulseShadow {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    70% {
      box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
  }

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

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

  @media (max-width: 767px) {
    .slider-container {
      width: 100% !important;
      min-height: 250px !important;
      display: block !important;
      position: relative !important;
      overflow: hidden !important;
    }

    .slider-container img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      display: none;
    }

    .slider-container img.active {
      display: block !important;
    }
  }

  :root {
    --brand-orange: #FF6600;
    --bg-light: #FAFAFA;
    /* Very light grey/white */
    --card-white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
  }

  .services-wrapper {
    background-color: var(--bg-light);
    padding: 60px 20px 20px;
    color: var(--text-main);
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .services-intro p {
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 850px;
    margin: 0 auto 30px;
    color: var(--text-muted);
  }

  .section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    margin: 30px 0 20px;
    color: #1a1a1a;
  }

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

  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 50px;
  }

  .offering-card {
    background: #ff79210d;
    border: 1px solid #eeeeee;
    padding: 50px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid transparent;
  }

  .offering-card:hover {
    transform: translateY(-10px);
    background: var(--card-white);
    border-bottom: 4px solid var(--brand-orange);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15);
    color: var(--brand-orange);
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 1.8rem;
    }

    .services-wrapper {
      padding: 50px 15px;
    }
  }

  :root {
    --brand-orange: #FF6600;
    --bg-light: #FAFAFA;
    /* Very light grey/white */
    --card-white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
  }

  .services-wrapper {
    background-color: var(--bg-light);
    padding: 60px 20px 20px;
    color: var(--text-main);
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .services-intro p {
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 850px;
    margin: 0 auto 30px;
    color: var(--text-muted);
  }

  .section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    margin: 30px 0 20px;
    color: #1a1a1a;
  }

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

  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 50px;
  }

  .offering-card {
    background: #ff79210d;
    border: 1px solid #eeeeee;
    padding: 50px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid transparent;
  }

  .offering-card:hover {
    transform: translateY(-10px);
    background: var(--card-white);
    border-bottom: 4px solid var(--brand-orange);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15);
    color: var(--brand-orange);
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 1.8rem;
    }

    .services-wrapper {
      padding: 50px 15px;
    }
  }

  /* Custom Orange Palette */
  .text-brand-orange {
    color: #f97316;
  }

  .bg-brand-orange {
    background-color: #f97316;
  }

  .border-brand-orange {
    border-color: #f97316;
  }

  .form-input {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
  }

  .form-input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    outline: none;
  }

  .contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  }

  .orange-blob {
    fill: #f97316;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }

  ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #f97316;
  }