*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  display: block;
}

/* Typo*/

h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.6rem;
}
h3 {
  font-size: 1.8rem;
}

.section-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #0f2640;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00d4ff;
  display: block;
  margin: 15px auto;
  border-radius: 2px;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  margin: 8px;
}

.btn.primary {
  background: #00d4ff;
  color: #0f2640;
  border: 2px solid #00d4ff;
}

.btn.primary:hover {
  background: #00b8e6;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid #00d4ff;
}

.btn.secondary:hover {
  background: #00d4ff;
  color: #0f2640;
}

.btn.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn.outline:hover {
  background: white;
  color: #0f2640;
}

.btn.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Header & Nav*/

.header {
  background: #0f2640;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: white;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  z-index: 1001;
}

.logo span {
  color: #00d4ff;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  transition: all 0.4s ease;
}

.nav-links li a {
  color: white;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00d4ff;
}

.mobile-menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Menu Active */
.nav-links.active {
  transform: translateX(0);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(15, 38, 64, 0.9), rgba(15, 38, 64, 0.95)),
    url("https://images.unsplash.com/photo-1590490360182-c33d5776da0d?auto=format&fit=crop&q=80")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.hero-highlights span {
  background: rgba(0, 212, 255, 0.25);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  backdrop-filter: blur(5px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Sections */
.section {
  padding: 100px 0;
}
.bg-light {
  background: #f8fbfd;
}
.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #0f2640;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.values ul {
  margin-top: 1rem;
}
.values li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.service-card ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
  list-style-type: none;
}
.service-card li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  list-style-position: inside;
 
}
.service-card li::before {
  content: "✓";
  color: #00d4ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-card i {
  font-size: 3.5rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.pricing-category h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #0f2640;
  font-size: 24px;
}
.price-card {
  background: white;
  padding: 3rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  font-size: 22px;
  margin-bottom: 1rem;
}
.price-card.highlight {
  padding: 24px;
  background: #0f2640;
  color: rgba(248, 247, 247, 0.918);
  transform: scale(1.05);
  font-size: 14px;
}

/* Projects */
.projects-grid {
  display: grid;
  gap: 4rem;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-img {
  background: url(./images/image.jpg) center/cover no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impact-list ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}
.impact-list li {
  position: relative;
  margin-bottom: 0.8rem;
   list-style-type: none;
}
.impact-list li::before {
  content: "✓";
  color: #00d4ff;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.why-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.why-item i {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: 100px 5%;
  background: #fff;
  text-align: center;
}
.team-section .section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.team-section .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00d4ff;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.team-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 60px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}
.team-card {
  background: #0f2640;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.team-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.team-img1 {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
.team-info {
  padding: 25px 20px;
}
.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #ece9e9;
}
.team-role {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #e7e4e4;
}
.role-ceo {
  color: #e67e22 !important;
  font-weight: 700;
}
.role-advisor {
  color: #9b59b6 !important;
  font-weight: 700;
}

/* Investors */
.investor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.investor-visual {
  background: url(./images/partner.jpeg) center/cover no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.check-list {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.check-list li {
  position: relative;
  margin-bottom: 1rem;
   list-style-type: none;
}
.check-list li::before {
  content: "✓";
  color: #00d4ff;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
 
}
.btn.large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.faq-item h3 {
  color: #0f2640;
  margin-bottom: 0.8rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info i {
  color: #00d4ff;
  margin-right: 10px;
}
.social a {
  font-size: 1.8rem;
  margin-right: 1rem;
  color: #0f2640;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

/* Footer */
.footer {
  background: #0f2640;
  color: white;
  text-align: center;
  padding: 3rem 0;
}
.footer-links a {
  color: #00d4ff;
}

/* Responsive Breakpoints */

@media (max-width: 1200px) {
  h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }

  /* Hide desktop menu */
  .nav-links {
    position: fixed;
    top: 0;
    left: -500px;
    width: 150px;
    height: auto;
    background: #0f2640;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .nav-links.show {
    display: flex;
    transform: translateX(0);
    left: 0;
  }
  .nav-links li a {
    font-size: 18px;
    padding: 0 15px;
    display: block;
  }
  ul {
    margin-top: 65px;
    border-radius: 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
    max-width: 300px;
  }

  /* Stack all grids */
  .about-grid,
  .contact-grid,
  .investor-grid,
  .project-card {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights span {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
