/* Base reset & container */
* {
    box-sizing: border-box;
    margin: 50;
    padding: 10;
    font-family: 'Segoe UI', sans-serif;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header & navigation */
  .site-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  /* Logo */
  .logo {
    height: 80px;
  }
  
  /* Main nav */
  .main-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .nav-item a {
    text-decoration: none;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.2s;
  }
  .nav-item a:hover {
    color: #0b5ed7;
  }
  
  /* Button */
  .btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
  }
  .get-started-btn {
    background-color: #0b5ed7;
    color: #fff;
  }
  .get-started-btn:hover {
    background-color: #084298;
  }
  
  /* Mobile toggle (hidden on desktop) */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }
  .hamburger,
  .hamburger::before,
  .hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    position: relative;
  }
  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
  }
  .hamburger::before {
    top: -6px;
  }
  .hamburger::after {
    top: 6px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .main-nav {
      display: none;
    }
    .nav-toggle {
      display: block;
    }
    .nav-container.open .main-nav {
      display: block;
      position: absolute;
      top: 100%;
      right: 0;
      background: #fff;
      width: 200px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .main-nav .nav-list {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }
  }
  /* Hero Section */
  .hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 600px;
    padding: 0 1rem;
  }
  .hero-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #69a1ff;
  }
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  .hero-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    background-color: #0b5ed7;
    color: #fff;
    transition: background-color 0.2s;
  }
  .hero-btn:hover {
    background-color: #084298;
  }
  .btn-icon {
    margin-right: 0.5rem;
    font-size: 1.25rem;
  }
  /* About Us Section */
  .about-section {
    padding: 4rem 0;
    background: #f9faff;
  }
  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .about-text h2 {
    color: #0b5ed7;
    margin-bottom: 1rem;
  }
  .about-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Responsive About Us */
  @media (max-width: 768px) {
    .about-container {
      grid-template-columns: 1fr;
    }
  }
  /* Why Us Section */
  .why-us-section {
    padding: 4rem 0;
    background-color: #fff;
    text-align: center;
  }
  .section-title {
    font-size: 2rem;
    color: #0b5ed7;
    margin-bottom: 2rem;
  }
  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .card {
    background: #f7f8fc;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: left;
  }
  .card h3 {
    font-size: 1.25rem;
    color: #0b194e;
    margin-bottom: 0.75rem;
  }
  .card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  /* Solutions Section */
  .solutions-section {
    padding: 4rem 0;
    background: #f9fcff;
  }
  .solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .solution-card {
    display: flex;
    background: #eaf5ff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .solution-img {
    width: 150px;
    object-fit: cover;
  }
  .solution-content {
    padding: 1.5rem;
  }
  .solution-content h3 {
    font-size: 1.5rem;
    color: #0b194e;
    margin-bottom: 0.75rem;
  }
  .solution-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .solutions-grid {
      grid-template-columns: 1fr;
    }
    .solution-card {
      flex-direction: column;
    }
    .solution-img {
      width: 100%;
      height: 200px;
    }
  }
  /* Thoughts Section */
  .thoughts-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
  }
  .thoughts-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .thought-card {
    min-width: 280px;
    background: #f7f8fc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  .thought-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  .thought-content {
    padding: 1rem;
    text-align: left;
  }
  .thought-content h3 {
    font-size: 1.25rem;
    color: #0b194e;
    margin-bottom: 0.5rem;
  }
  .thought-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .solutions-grid {
      grid-template-columns: 1fr;
    }
    .solution-card {
      flex-direction: column;
    }
    .solution-img {
      width: 100%;
      height: 200px;
    }
  }
  .use-case-section {
  
  padding: 4rem 1rem;
  background-color: #fdfdfd;
  display: flex;
  justify-content: center;
}

.use-case-wrapper {
  width: 100%;
  max-width: 1200px;
}

.use-case-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #0b5ed7;

}

.use-case-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
}

.use-case-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-card img {
  width: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(37%) sepia(100%) saturate(748%) hue-rotate(178deg) brightness(103%) contrast(103%);
}

.use-case-card h3 {
  font-size: 1.1rem;
  color: #0d0d0d;
  margin-bottom: 1rem;
  font-weight: 700;
}

.use-case-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}
.ai-integration {
  padding: 4rem 1rem;
  background-color: #f9f9fc;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.ai-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.ai-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
}

.ai-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0f62fe;
}

.ai-card p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}
.business-model {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b5ed7;

}

.section-description {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.model-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.model-card:hover {
  transform: translateY(-5px);
}

.model-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.model-card p,
.model-card ul {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.model-card ul {
  padding-left: 20px;
  list-style-type: disc;
}


  /* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
  }
  .partners-container .section-title {
    margin-bottom: 2rem;
    color: #0b5ed7;
  }
  .partners-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 160px;
  }
  .partner-item img {
    max-width: 200px;
    margin-bottom: 0.5rem;
  }
  .partner-item p {
    font-size: 0.9rem;
    color: #555;
  }
.team-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 2.5rem;
  color: #0077cc;
  margin-bottom: 20px;
  text-align: center;
}

.team-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.95rem;
  color: #444;
}
  .contact-section {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b5ed7;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: #9ca3af; /* soft gray */
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.contact-item {
  flex: 1 1 250px;
  max-width: 300px;
}

.contact-item img {
  width: 30px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(27%) sepia(80%) saturate(2850%) hue-rotate(203deg) brightness(95%) contrast(105%);
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 1rem;
  color: #1f2937;
  line-height: 1.6;
}

  /* Footer Section */
  .site-footer {
    position: relative;
    height: 40vh;
    overflow: hidden;
  }
  .footer-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .footer-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    padding: 1rem 0;
  }
  .footer-logo-link {
    display: flex;
    align-items: center;
    background: transparent;
  }
  .footer-logo {
    height: 40px;
    width: auto;
    background: transparent;
    border-radius:10px;
  }
  .footer-nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    color: #ccc;
    font-size: 0.875rem;
  }