    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #0d0f1a;
      color: #fff;
      overflow-x: hidden;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      position: fixed;
      width: 100%;
      top: 0;
      background: rgba(13, 15, 26, 0.9);
      backdrop-filter: blur(6px);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    header.scrolled {
      padding: 15px 60px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    header img {
      height: 90px;
    }

    header nav a {
      margin: 0 15px;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    header nav a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background: linear-gradient(135deg, #a45ee5, #ff8c42);
      transition: width 0.3s ease;
    }

    header nav a:hover {
      color: #ff7b00;
    }

    header nav a:hover:after {
      width: 100%;
    }

    /* Hero Slider */
    .hero-slider {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      background-size: cover;
      background-position: center;
    }

    .slide.active {
      opacity: 1;
    }

    .slide-1 {
      background: linear-gradient(rgba(13, 15, 26, 0.8), rgba(13, 15, 26, 0.8)), 
                  url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    }

    .slide-2 {
      background: linear-gradient(rgba(13, 15, 26, 0.8), rgba(13, 15, 26, 0.8)), 
                  url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
    }

    .slide-3 {
      background: linear-gradient(rgba(13, 15, 26, 0.8), rgba(13, 15, 26, 0.8)), 
                  url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2020&q=80');
    }

    .hero-content {
      max-width: 800px;
      animation: fadeInUp 1s ease-out;
    }

    .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 15px;
      background: linear-gradient(135deg, #a45ee5, #ff8c42);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #ddd;
      line-height: 1.6;
    }

    .btn {
      margin-top: 20px;
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      background: linear-gradient(135deg, #a45ee5, #ff8c42);
      color: #fff;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn: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: 0.5s;
    }

    .btn:hover:before {
      left: 100%;
    }

    .btn:hover {
      transform: scale(1.08);
      box-shadow: 0 10px 20px rgba(164, 94, 229, 0.3);
    }

    .slider-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      margin: 0 5px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .dot.active {
      background: #ff8c42;
    }

    section {
      padding: 100px 60px;
      text-align: center;
    }

    section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #ff8c42;
      position: relative;
      display: inline-block;
    }

    section h2:after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      bottom: -10px;
      left: 20%;
      background: linear-gradient(135deg, #a45ee5, #ff8c42);
    }

    .about-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      margin-top: 40px;
      text-align: left;
    }

    .about-text {
      flex: 1;
      max-width: 600px;
    }

    .about-text p {
      margin-bottom: 20px;
      line-height: 1.6;
      color: #ddd;
    }

    .about-graphic {
      flex: 1;
      max-width: 500px;
      height: 300px;
      background: linear-gradient(135deg, #5315a6, #ff7b00);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-graphic:before {
      content: '';
      position: absolute;
      width: 150%;
      height: 150%;
      background: conic-gradient(from 0deg, transparent, #a45ee5, transparent);
      animation: rotate 10s linear infinite;
    }

    .about-graphic:after {
      content: '';
      position: absolute;
      inset: 5px;
      background: #1b1d2b;
      border-radius: 12px;
    }

    .graphic-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 20px;
    }

    .graphic-content i {
      font-size: 4rem;
      color: #ff8c42;
      margin-bottom: 15px;
    }

     /* Services Section */
  #services {
    padding: 100px 60px;
    text-align: center;
  }

  #services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff8c42;
    position: relative;
    display: inline-block;
  }

  #services h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    bottom: -10px;
    left: 20%;
    background: linear-gradient(135deg, #a45ee5, #ff8c42);
  }

  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    background: #1b1d2b;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.1), transparent);
    transition: 0.5s;
  }

  .service-card:hover:before {
    left: 100%;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
  }

  .service-icon {
    font-size: 3rem;
    color: #ff8c42;
    margin-bottom: 20px;
  }

  .service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }

  .service-card p {
    color: #ddd;
    line-height: 1.6;
  }

    /* New Tabbed Section */
  .tabbed-section {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
  }

  .tab-menu {
    flex: 0 0 250px;
    background: #1b1d2b;
    border-radius: 15px;
    padding: 20px 0;
  }

  .tab-item {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
  }

  .tab-item:hover {
    background: rgba(255, 140, 66, 0.1);
  }

  .tab-item.active {
    border-left: 3px solid #ff8c42;
    background: rgba(255, 140, 66, 0.1);
    color: #ff8c42;
  }

  .tab-content {
    flex: 1;
    background: #1b1d2b;
    border-radius: 15px;
    padding: 30px;
  }

  .tab-panel {
    display: none;
  }

  .tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  .tab-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff8c42;
  }

  .tab-panel p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ddd;
  }

  .image-features-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    align-items: flex-start;
  }

  .tab-image {
    width: auto;
    max-width: 45%;
    border-radius: 10px;
    max-height: 300px;
    object-fit: cover;
  }

  .tab-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    flex: 1;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background: linear-gradient(135deg, #a45ee5, #ff8c42);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .feature-text h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }

  .feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

 

    footer {
      text-align: center;
      padding: 30px;
      background: #11121b;
      color: #bbb;
      margin-top: 40px;
    }

    .social-links {
      margin-bottom: 20px;
    }

    .social-links a {
      display: inline-block;
      margin: 0 10px;
      color: #ddd;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }

    .social-links a:hover {
      color: #ff8c42;
    }

    .svg-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 45%;
  }

  .svg-graphic svg {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .about-content, .tabbed-section {
        flex-direction: column;
      }
      
      header {
        padding: 15px 30px;
      }
      
      section {
        padding: 80px 30px;
      }
      
      .hero-content h1 {
        font-size: 3rem;
      }
      
      .tab-menu {
        flex: 0 0 auto;
        width: 100%;
      }
      
      .tab-panel-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      header nav {
        display: none;
      }
      
      .hero-content h1 {
        font-size: 2.5rem;
      }
      
      .hero-content p {
        font-size: 1rem;
      }
      
      header img {
        height: 120px;
      }
    }

      /* Responsive adjustments for services */
  @media (max-width: 992px) {
    .services {
      grid-template-columns: repeat(2, 1fr);
    }
    .tabbed-section {
      flex-direction: column;
    }
    
    .tab-menu {
      flex: 0 0 auto;
      width: 100%;
    }
    
    .image-features-container {
      flex-direction: column;
    }
    
    .tab-image {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .services {
      grid-template-columns: 1fr;
    }
    
    #services {
      padding: 80px 30px;
    }
  }

