 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: white;
      padding: 10px 20px;
      position: relative;
    }

    .logo img {
      height: 70px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      color: #07194c;
      font-size: 18px;
      transition: color 0.3s;
    }

    .nav-links li:hover > a {
      color: #fa8a1e;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #07194c;
      min-width: 180px;
      z-index: 1000;
      padding: 10px 0;
    }

    .dropdown a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      color: #fff;
      transition: all 0.3s ease;
    }

    .dropdown a:hover {
      background: #07194c;
      color: #a4e6b1;
      padding-left: 25px;
    }

    .nav-links li:hover .dropdown {
      display: block;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .dropdown a:hover .arrow {
      transform: translateX(4px);
    }

    .apply-btn {
      background: #fa8a1e;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 4px;
      font-size: 22px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .apply-btn:hover {
      background: #ffffff;
    }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      color: #ffffff;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      color: #ffffff;
      background-color: #07194c;
    }

    @media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #07194c;
  }

  .apply-btn {
    margin-top: 20px;
  }
}
.submenu {
  list-style: none;  /* ✅ removes the bullet/dot */
  padding-left: 0;   /* optional: removes left indentation */
}
@media (min-width: 769px) {
  .symbol {
    display: none;
  }
}

.hero-section {
  background: linear-gradient(to right,#07194c, #183894);
  color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.25rem;
  max-width: 700px;
  color: #e9d5ff;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: #07194c;
  border: none;
}

.btn-primary:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #183894;
  transform: scale(1.05);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 56, 148, 0.8), transparent);
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  color: white;
}

.overlay-text h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

.overlay-text p {
  font-size: 0.875rem;
}

/* Responsive layout */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: row;
  }
}
/* Container */
.role-section {
  background-color: #ffffff;
  padding: 3rem 0;
}

.role-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.role-header {
  text-align: center;
  margin-bottom: 3rem;
}

.role-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
}

.role-header p {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .role-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.role-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.role-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-inner {
  padding: 1.5rem;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-bg {
  padding: 0.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purple-bg {
  background-color: #f3e8ff;
}

.blue-bg {
  background-color: #dbeafe;
}

.green-bg {
  background-color: #dcfce7;
}

.card-header h3 {
  margin-left: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

/* Text */
.card-inner p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* List */
.card-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.card-inner ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: #374151;
}

.card-inner ul li i {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

/* Button */
.btn {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.purple-btn {
  background-color: #7c3aed;
}

.purple-btn:hover {
  background-color: #6d28d9;
}

.blue-btn {
  background-color: #2563eb;
}

.blue-btn:hover {
  background-color: #1d4ed8;
}

.green-btn {
  background-color: #16a34a;
}

.green-btn:hover {
  background-color: #15803d;
}

/* Text Colors */
.text-purple {
  color: #7c3aed;
}

.text-blue {
  color: #2563eb;
}

.text-green {
  color: #16a34a;
}
/* transform your ideas */
.transform-cta {
  background-color: #07194c;
  color: white;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-bottom: 8%;
  /* height: 100vh; */
}

.cta-container {
  max-width: 900px;
  margin: auto;
  /* height: 100vh; */
  padding-top: 8%;
}

.cta-container h2 {
  font-size: 85px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 15px;
  text-align: center;
}

.cta-container h2 span {
  color: #fbbf24;
}

.cta-container p {
  font-size: 25px;
  color: #a1a1aa;
  margin-bottom: 30px;
  text-align: center;
}

.cta-buttons {
  width: 600px;
  margin-left: 15%;
  display: flex;
  justify-content: center;
  gap: 20px;
  /* flex-wrap: wrap; */
  flex-direction: row;
  text-align: center;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  min-width: 220px;  /* Ensures consistent button size */
  text-align: center;
}

.btn-primary {
  background-color: #fbbf24;
  color: #000;
}

.btn-primary:hover {
  background-color: #f59e0b;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fbbf24;
  color: #fbbf24;
}

.btn-secondary:hover {
  background-color: #fbbf24;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container {
    padding-top: 25%;
    height: auto;
  }

  .cta-container h2 {
    font-size: 36px;
  }

  .cta-container p {
    font-size: 16px;
  }

  .btn {
    min-width: 90%;   /* Makes buttons more stacked and readable on mobile */
  }

  .cta-buttons {
    flex-direction: column;
   margin-left: 20%;
    width: 300px;
  }
}


/* Scalora Acceleration Hub  */
/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

.hub-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.hub-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hub-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hub-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.hub-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hub-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

/* Icon background colors */
.bg-purple { background-color: #d8b4fe; color: #7c3aed; }
.bg-blue   { background-color: #bfdbfe; color: #2563eb; }
.bg-green  { background-color: #bbf7d0; color: #059669; }
.bg-yellow { background-color: #fde68a; color: #ca8a04; }

.hub-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.hub-card p {
  font-size: 0.9rem;
  color: #6b7280;
}
/*  Your built-in founding team  */
.team-section {
  position: relative;
 /* min-height:100vh; */
  overflow: hidden;
  padding-bottom: 120px; 
  color: white;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  
  z-index: -1;
}

.team-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 50px;
  z-index: 1;
}

.team-text {
  max-width: 600px;
}

.team-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.team-text p {
  font-size: 18px;
  line-height: 1.6;
}

.team-tags {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 350px;
  justify-content: flex-end;
}


.tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}

.tag:hover {
  transform: translateY(-5px);
}

.tag img {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .team-content {
    flex-direction: column;
    padding: 60px 20px;
    justify-content: flex-start;
  }

  .team-tags {
    position: static; /* no longer absolute */
    margin-top: 40px;
    justify-content: flex-start;
    max-width: 100%;
  }

}
.site-footer {
  background-color: #031136;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

/* .footer-logo img {
  width: 150px;
  margin-bottom: 15px;
} */
.footer-about {
  margin-bottom: 0;
}
.footer-about p {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
  width: 400px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* ensures spacing is uniform */
}
.footer-col h4 {
  color: #fbbf24;
  /* margin-bottom: 15px; */
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li  a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  /* align-items: center; */
}
.footer-resources{
  align-items: flex-start;

}
.footer-links{
  margin-left: 10%;
  align-items: flex-end;
}
.footer-col ul li a i {
  margin-right: 10px;
  color: #fbbf24;
}
.footer-contact {
  margin-top: 0;
}

.footer-contact p {
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: #fbbf24;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fbbf24;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #334155;
  padding-top: 20px;
  font-size: 13px;
  color: #9ca3af;
}
.footer-mid {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* gap: 40px; */
    padding: 20px;
  }
.footer-links{
  margin-left: 0%;
  align-items: center;
}
  .footer-col {
    width: 100%;
    max-width: 400px;
  }

  .footer-logo img {
    margin: 0 auto 15px auto;
    display: block;
  }

  .footer-about p {
    margin: 0 auto 10px auto;
    max-width: 90%;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .footer-col h4 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .footer-col ul li a,
  .footer-contact p {
    justify-content: center;
    text-align: left;
    padding-left: 20px;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
  }
}

