* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background: linear-gradient(135deg, #213a58, #0c6478, #15919b);
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: #80ee98;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  opacity: 0.9;
}

.cta {
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  background: #80ee98;
  color: #213a58;
  font-weight: 500;
  cursor: pointer;
}

/* HERO */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 8%;
  min-height: 100vh;
}

/* LEFT */

.hero-left {
  max-width: 600px;
}

.hero-left h1 {
  font-family: "Syne", sans-serif;
  font-size: 70px;
  line-height: 1.1;
}

.hero-left span {
  color: #80ee98;
}

.hero-left p {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.85;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
}

.btn1 {
  background: #80ee98;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: #213a58;
}

.btn2 {
  border: 2px solid #80ee98;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: white;
}

/* RIGHT SIDE */

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-card h3 {
  color: #80ee98;
  margin-bottom: 10px;
}

/* BLOBS */

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #09d1c7;
  filter: blur(200px);
  top: 10%;
  left: -100px;
  z-index: 0;
}

.blob2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #46dfb1;
  filter: blur(200px);
  bottom: -150px;
  right: -100px;
}

/* MOBILE */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .hero-right {
    align-items: center;
  }

  .hero-left h1 {
    font-size: 45px;
  }

  .nav-links {
    display: none;
  }
}
/* ABOUT SECTION */

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 8%;
  gap: 60px;
  position: relative;
}

/* LEFT */

.about-left {
  max-width: 600px;
}

.about-left h2 {
  font-family: "Syne", sans-serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #80ee98;
}

.about-left p {
  opacity: 0.85;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* STATS */

.stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box h3 {
  color: #80ee98;
  font-size: 24px;
}

/* RIGHT */

.about-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.12);
}

.about-card h3 {
  color: #80ee98;
  margin-bottom: 10px;
}

/* MOBILE */

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-right {
    align-items: center;
  }
}
/* SERVICES UNIQUE (NO SCROLL) */

.services {
  padding: 120px 8%;
  position: relative;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: #80ee98;
}

/* WRAP */

.services-wrap {
  display: flex;
  gap: 20px;
  height: 350px;
}

/* CARD BASE */

.service {
  flex: 1;
  border-radius: 25px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: 0.5s;
  background: linear-gradient(135deg, #0c6478, #213a58);
  position: relative;
  overflow: hidden;
}

/* TEXT */

.service h3 {
  font-size: 22px;
  color: #80ee98;
  margin-bottom: 10px;
}

.service p {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

/* ACTIVE CARD */

.service.active {
  flex: 3;
  background: linear-gradient(135deg, #15919b, #09d1c7);
}

/* SHOW TEXT */

.service.active p {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER EFFECT */

.service:hover {
  flex: 3;
}

/* GLOW */

.service::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #80ee98, transparent);
  top: -50%;
  right: -50%;
  opacity: 0;
  transition: 0.5s;
}

.service:hover::before {
  opacity: 0.3;
}

/* MOBILE */

@media (max-width: 768px) {
  .services-wrap {
    flex-direction: column;
    height: auto;
  }

  .service {
    flex: unset;
    height: 200px;
  }

  .service.active {
    height: 250px;
  }
}
/* WHY SECTION */

.why {
  padding: 120px 8%;
  position: relative;
}

.why-container {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* LINE */

.line {
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #80ee98;
  opacity: 0.3;
}

/* ITEM */

.why-item {
  position: relative;
  margin-left: 60px;
  margin-bottom: 60px;
  padding: 25px 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

/* DOT */

.why-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 30px;
  width: 12px;
  height: 12px;
  background: #80ee98;
  border-radius: 50%;
}

/* TEXT */

.why-item h3 {
  color: #80ee98;
  margin-bottom: 10px;
}

.why-item p {
  opacity: 0.85;
}

/* HOVER */

.why-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.1);
}

/* MOBILE */

@media (max-width: 768px) {
  .line {
    left: 10px;
  }

  .why-item {
    margin-left: 40px;
  }
}
/* CONTACT SECTION */

.contact {
  padding: 120px 8%;
  position: relative;
}

/* CONTAINER */

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT */

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.contact-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-box h3 {
  color: #80ee98;
  margin-bottom: 10px;
}

.contact-box p {
  opacity: 0.9;
  line-height: 1.6;
}

/* RIGHT */

.contact-right {
  max-width: 500px;
}

.contact-right h1 {
  font-family: "Syne", sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: #80ee98;
}

.contact-right p {
  opacity: 0.85;
  margin-bottom: 30px;
}

/* BUTTON */

.contact-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 40px;
  background: #80ee98;
  color: #213a58;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #46dfb1;
  transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-left {
    width: 100%;
  }

  .contact-right h1 {
    font-size: 32px;
  }
}
/* FOOTER */

.footer {
  margin-top: 100px;
  background: linear-gradient(135deg, #0c6478, #213a58);
  padding-top: 60px;
  position: relative;
}

/* CTA */

.footer-cta {
  text-align: center;
  margin-bottom: 50px;
}

.footer-cta h2 {
  font-family: "Syne", sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #80ee98;
}

.footer-cta a {
  display: inline-block;
  padding: 14px 30px;
  background: #80ee98;
  color: #213a58;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-cta a:hover {
  background: #46dfb1;
  transform: translateY(-3px);
}

/* MAIN */

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 8% 40px;
  flex-wrap: wrap;
}

.footer-col {
  max-width: 300px;
}

.footer-col h3 {
  color: #80ee98;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #80ee98;
}

.footer-col p {
  opacity: 0.85;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: white;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #80ee98;
}

/* BOTTOM */

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.7;
}

/* MOBILE */

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-col {
    max-width: 100%;
  }
}
html {
  scroll-behavior: smooth;
}