
    /* Root Variables */
    :root {
      --primary: #f65c5c;
      --primary-light: #ff7875;
      --dark-bg: #0a0a23;
      --dark-secondary: #1b1f3b;
      --light-text: #ffffff;
      --light-gray: #f5f5f7;
      --card-bg: rgba(255, 255, 255, 0.05);
      --nav-gradient-start: #ffffff;
      --nav-gradient-end: #1e90ff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--dark-bg);
      color: var(--light-text);
      line-height: 1.6;
      padding-top: 70px;
    }

    .navbar {
      background: linear-gradient(70deg, var(--nav-gradient-start) 10%, #0a0a23 100%);
      padding: 12px 15px;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .nav-left img {
      height: 35px;
      width: auto;
    }

    .nav-right {
      display: none;
    }

    .nav-right a {
      text-decoration: none;
      color: white;
      font-weight: 600;
      font-size: 16px;
      padding: 8px 0;
      position: relative;
      white-space: nowrap;
    }

    .nav-right a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: white;
      transition: width 0.3s ease;
    }

    .nav-right a:hover::after {
      width: 100%;
    }

    .nav-right .ai-btn {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.5);
      padding: 8px 16px;
      border-radius: 6px;
      color: white;
      font-weight: 600;
    }

    .nav-right .cta-btn {
      background: var(--primary);
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      color: white;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(246, 92, 92, 0.4);
    }

    .mobile-nav-controls {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .mobile-menu-btn,
    .mobile-close-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: white;
    }

    .container {
      width: 90%;
      margin: 20px auto;
      padding: 0 15px;
    }

    .services-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding-top: 40px;
    }

    .content-column {
      width: 100%;
      order: 1;
    }

    .slider-column {
      width: 100%;
      order: 2;
      margin-bottom: 30px;
    }

    .hero-tagline {
      font-size: 1rem;
      color: #fbfbfb;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .hero-text {
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 15px;
      background: white;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtext {
      font-size: 1rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 20px;
    }

    .content-text {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .cta-button {
      background: var(--primary);
      color: white;
      padding: 12px 25px;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin-top: 15px;
      font-size: 0.95rem;
      width: 100%;
      text-align: center;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(246, 92, 92, 0.5);
    }
    .cta-button1 {
      background:white;
      color:var(--primary);
      padding: 12px 25px;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin-top: 15px;
      font-size: 0.95rem;
      width: 100%;
      text-align: center;
      transition: all 0.3s ease;
    }

    .cta-button1:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(246, 92, 92, 0.5);
    }

    .slider-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 10px;
    }

    .services-slider {
      display: flex;
      transition: transform 0.5s ease;
      width: 100%;
    }

    .service-card {
      min-width: 100%;
      width: 100%;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(22, 22, 46, 0.08));
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(255, 255, 255, 0.08);
    }

    .service-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      color: white;
      font-size: 20px;
    }

    .service-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: white;
    }

    .service-description {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 15px;
      font-size: 0.88rem;
      line-height: 1.5;
      padding: 0 5px;
    }

    .learn-more {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: auto;
      font-size: 0.85rem;
      transition: all 0.3s ease;
    }

    .learn-more:hover {
      transform: translateX(5px);
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      margin-top: 15px;
      gap: 8px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      background: var(--primary);
      transform: scale(1.2);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 10, 35, 0.98);
      z-index: 100;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      backdrop-filter: blur(5px);
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      margin: 10px 0;
      padding: 10px 15px;
      border-radius: 6px;
      text-align: center;
      width: 100%;
      max-width: 200px;
    }

    .mobile-menu .ai-btn {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .mobile-menu .cta-btn {
      background: var(--primary);
      box-shadow: 0 4px 15px rgba(246, 92, 92, 0.4);
    }

    .close-menu {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Marquee styles */
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    
    .marquee-container {
      display: inline-block;
      white-space: nowrap;
      animation: marquee 50s linear infinite;
      padding-right: 100%;
    }
    
    .marquee-container:hover {
      animation-play-state: paused;
    }

    /* Startup slider styles */
    #startupSlider {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    /* Impact grid styles */
    #impactGrid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 95%;
      margin: auto;
    }

    .impact-box {
      border: 0.3px solid white;
      padding: 25px;
      border-radius: 16px;
      background: #16162e;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .impact-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
    }

    /* Services grid styles */
    #servicesGrid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      width: 95%;
      margin: 0 auto;
    }

    /* Footer styles */
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 90%;
      margin: auto;
    }

    /* Media Queries */
    @media (min-width: 768px) {
      body {
        padding-top: 8px;
      }

      .navbar {
        padding: 15px 30px;
      }

      .nav-left img {
        height: 40px;
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .mobile-nav-controls {
        display: none;
      }

      .services-container {
        display: grid;
        grid-template-columns: 60% 40%;
        gap: 40px;
      }

      .hero-text {
        font-size: 2.5rem;
      }

      .hero-subtext {
        font-size: 1.2rem;
      }

      .cta-button {
        width: auto;
        padding: 12px 30px;
      }

      .service-card {
        height: 350px;
        padding: 25px;
      }

      .service-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
      }

      .service-title {
        font-size: 2.2rem;
      }

      .service-description {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 767px) {
      .mobile-menu-btn {
        display: block;
      }

      .service-card {
        padding: 16px;
        height: 280px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
      }

      .service-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
      }

      .service-title {
        font-size: 2.2rem;
      }

      .service-description {
        font-size: 0.84rem;
      }

      .learn-more {
        font-size: 0.82rem;
      }

      /* Mobile adjustments for impact grid */
      #impactGrid {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .impact-box {
        padding: 20px !important;
      }

      .impact-count {
        font-size: 1.5rem !important;
      }

      /* Mobile adjustments for services grid */
      #servicesGrid {
        grid-template-columns: repeat(1, 1fr) !important;
      }

      /* Mobile adjustments for startup slider */
      #startupSlider > div {
        flex: 0 0 100% !important;
      }
    }

    @media (min-width: 992px) {
      .container {
        padding: 0 20px;
      }

      .hero-text {
        font-size: 2.8rem;
      }

      .service-card {
        height: 380px;
      }

      .services-container {
        grid-template-columns: 70% 30%;
      }
    }

        /* Legal Pages Container */
.legal-container {
  max-width: 90%;
  margin: 80px auto 50px;
  padding: 0 20px;
  color: var(--light-text);
}

/* Page Header */
.legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Content Sections */
.legal-section {
  margin-bottom: 40px;
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.legal-section h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.legal-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.legal-section h3 {
  color: var(--text-lighter);
  font-size: 1.4rem;
  margin: 25px 0 15px;
}

.legal-section p, 
.legal-section li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-section li {
  margin-bottom: 10px;
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.contact-info {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-info h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(246, 92, 92, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-form {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-lighter);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 92, 92, 0.5);
}

/* Map Container */
.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .legal-header h1 {
    font-size: 3rem;
  }
  
  .legal-header p {
    font-size: 1.2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .submit-btn {
    width: auto;
  }
}

@media (min-width: 992px) {
  .legal-container {
    margin-top: 100px;
  }
  
  .legal-section {
    padding: 40px;
  }
}