
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary-orange: #FF5F15;
    --secondary-orange: #FFA802;
    --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    --bg-dark: #0d163e;
    --text-light: #ffffff;
    --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
    --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
    --border-orange: rgba(255, 95, 21, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }


  .highligh-text {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.1;
    font-weight: 600;
    color: var(--primary-orange);
    /* text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); */
  }

  body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    background: var(--bg-dark);
    color: var(--text-light);
    scroll-behavior: smooth;
    overflow-x: hidden;
  }


  .container-fluid {
    max-width: 1850px;
  }

  h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    color: white;
  }

  h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
    font-weight: 700;
    color: white;
  }

  h4 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.3;
    font-weight: 700;
    color: white;
  }

  h5 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.4;
    font-weight: 600;
    color: white;
  }

  p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }

  /* Gradient Text */
  .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }

  /* Hero Section */
  .hero-services-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
    align-items: center;
    overflow: hidden;
    margin-top: 5rem;
    border-bottom: 4px solid var(--primary-orange);
    border-radius: 0px 0px 30px 30px;
    background: var(--bg-dark);
  }

  /* Animated Background */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
  }

  /* Geometric Shapes */
  .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -5%;
    animation-delay: 0s;
  }

  .shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -3%;
    animation-delay: 2s;
  }

  .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-30px) rotate(180deg);
    }
  }

  .hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 max(40px, 3vw);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .hero-text {
    position: relative;
    z-index: 3;
    margin-top: 0;
    max-width: 700px;
    width: 100%;
  }


  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    color: var(--secondary-orange);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: slideInLeft 1s ease-out;
  }

  .hero-badge i {
    font-size: 16px;
    animation: pulse 2s infinite;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInLeft 1.2s ease-out 0.3s both;
  }

  .hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
  }

  .hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 1.5s both;
  }

  @keyframes expandLine {
    0% {
      width: 0;
    }

    100% {
      width: 100%;
    }
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 35px;
    animation: slideInLeft 1.2s ease-out 0.6s both;
  }

  /* Hero Actions */
  .hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1.2s ease-out 0.9s both;
  }

  .hero-btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
  }

  .hero-btn-primary:hover::before {
    left: 100%;
  }

  .hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-3px);
    text-decoration: none;
  }

  /* Right Visual */
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: slideInRight 1.2s ease-out 0.6s both;
    height: 100%;
    max-height: calc(100vh - 200px);
    width: 100%;
    max-width: 700px;
    justify-self: end;
  }

  .services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 550px;
    width: 100%;
    position: relative;
  }

  .service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 95, 21, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.5s;
  }

  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.3);
    background: rgba(255, 255, 255, 0.08);
  }

  .service-card:hover::before {
    left: 100%;
  }

  .service-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    transition: var(--transition);
  }

  .service-card:hover .service-card-icon {
    transform: rotateY(360deg) scale(1.1);
  }

  .service-card-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
  }

  .service-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
  }

  .central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(255, 95, 21, 0.5);
    animation: logoFloat 3s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.1);
  }




  .central-logo img {
    width: 90px;
    height: auto;
    filter: brightness(0) invert(1);
  }

  @keyframes logoFloat {

    0%,
    100% {
      transform: translate(-50%, -50%) scale(1);
      box-shadow: 0 25px 50px rgba(255, 95, 21, 0.5);
    }

    50% {
      transform: translate(-50%, -50%) scale(1.15);
      box-shadow: 0 30px 60px rgba(255, 95, 21, 0.7);
    }
  }

  /* Animations */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .hero-text {
      text-align: center;
      order: 2;
      max-width: 100%;
      justify-self: center;
    }

    .hero-visual {
      order: 1;
      max-height: none;
      justify-self: center;
    }

    .services-showcase {
      max-width: 450px;
      margin: 0 auto;
    }

    .hero-actions {
      justify-content: center;
    }



    .central-logo {
      width: 120px;
      height: 120px;
    }

    .central-logo img {
      width: 70px;
    }
  }

  @media (max-width: 768px) {
    .hero-services-section {
      padding: 60px 0;
      min-height: 60vh;
    }

    .hero-content-wrapper {
      padding: 0 20px;
    }

    .hero-grid {
      gap: 20px;
    }

    .hero-badge {
      padding: 10px 20px;
      font-size: 12px;
    }

    .hero-subtitle {
      margin-bottom: 30px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
      padding: 15px 28px;
      font-size: 15px;
    }

    .services-showcase {
      gap: 15px;
      max-width: 380px;
    }

    .service-card {
      padding: 25px 15px;
    }

    .service-card-icon {
      width: 60px;
      height: 60px;
      font-size: 24px;
    }

    .service-card-title {
      font-size: 15px;
    }

    .service-card-desc {
      font-size: 12px;
    }

    .central-logo {
      width: 100px;
      height: 100px;
    }

    .central-logo img {
      width: 60px;
    }
  }

  @media (max-width: 576px) {
    .hero-services-section {
      padding: 50px 0;
    }

    .hero-actions {
      flex-direction: column;
      width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      justify-content: center;
      padding: 14px 25px;
      font-size: 14px;
    }

    .services-showcase {
      max-width: 320px;
      gap: 12px;
    }

    .service-card {
      padding: 20px 12px;
    }

    .service-card-icon {
      width: 50px;
      height: 50px;
      font-size: 20px;
      margin-bottom: 15px;
    }

    .service-card-title {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .service-card-desc {
      font-size: 11px;
    }

    .central-logo {
      width: 85px;
      height: 85px;
    }

    .central-logo img {
      width: 50px;
    }
  }

  @media (max-width: 480px) {

    .shape-1,
    .shape-2,
    .shape-3 {
      display: none;
    }

    .services-showcase {
      max-width: 280px;
    }
  }

  /* hero section end  */

  /* Services Section Enhanced Zigzag Layout */
  .services-zigzag {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
  }

  .service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 95, 21, 0.15);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .service-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.05), transparent);
    transition: left 0.6s ease;
  }

  .service-row:hover {
    border-color: rgba(255, 95, 21, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(255, 95, 21, 0.2);
    transform: translateY(-5px);
  }

  .service-row:hover::before {
    left: 100%;
  }

  /* Reverse layout for alternating rows */
  .service-row.reverse {
    direction: rtl;
  }

  .service-row.reverse>* {
    direction: ltr;
  }

  /* Image Wrapper */
  .service-image-wrapper {
    position: relative;
  }

  .service-image-box {
    position: relative;
    width: 102%;
    height: auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
  }

  .service-row:hover .service-image-box {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 95, 21, 0.3);
  }

  .service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.1), rgba(255, 168, 2, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .service-row:hover .image-overlay {
    opacity: 1;
  }

  /* Content Wrapper */
  .service-content-wrapper {
    padding: 20px;
  }

  .service-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  .service-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: white;
  }

  .service-heading .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .service-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }

  .service-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .service-list i {
    color: var(--secondary-orange);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .service-action-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
    text-decoration: none;
  }

  .service-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.5);
  }

  .service-action-btn i {
    transition: transform 0.3s ease;
  }

  .service-action-btn:hover i {
    transform: translateX(5px);
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .service-row {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 30px;
    }

    .service-row.reverse {
      direction: ltr;
    }

    .service-image-box {
      height: 350px;
    }
  }

  @media (max-width: 768px) {
    .services-zigzag {
      gap: 50px;
    }

    .service-row {
      padding: 25px 20px;
    }

    .service-image-box {
      height: 300px;
    }

    .service-image-box img {
      object-fit: contain;
    }

    .service-content-wrapper {
      padding: 10px;
    }
  }

  @media (max-width: 480px) {
    .service-row {
      padding: 20px 15px;
    }

    .service-image-box {
      height: 250px;
      border-radius: 20px;
    }

    .service-badge {
      font-size: 0.75rem;
      padding: 6px 15px;
    }

    .service-action-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* Stats Section */
  .stats-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    margin: 60px 0;
    padding: 60px 0;
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-orange);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
  }

  .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
  }



  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulseOverlay {

    0%,
    100% {
      opacity: 0.8;
      transform: scale(1);
    }

    50% {
      opacity: 1;
      transform: scale(1.02);
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }

  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
    margin-top: 5rem;
  }

  @media (max-width: 768px) {
    .fade-in-up.show {
      margin-top: 7.7rem;
    }
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .service-item {
      grid-template-columns: 1fr;
      gap: 30px;
      /* text-align: center; */
    }

    .service-item:nth-child(even) {
      direction: ltr;
    }

    .service-image {
      height: 300px;
    }
  }

  @media (max-width: 768px) {

    .section {
      /* padding: 50px 0; */
    }

    .service-content {
      padding: 20px;
    }

    .stats-section,
    .cta-section {
      margin: 40px 0;
      padding: 40px 20px;
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }

  @media (max-width: 480px) {


    .section {
      /* padding: 40px 0; */
    }

    .stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .service-image {
      height: 250px;
    }
  }
