* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #07111f;
  color: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  /* background: rgba(5, 13, 24, 0.75); */
  background-color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 200px;
}

.logo h2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  color: #38bdf8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: #000;
  font-size: 0.98rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #38bdf8;
}

.nav-btn {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #0c1728;
  z-index: 9999;
  padding: 90px 30px;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.1rem;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1.7rem;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background:
    radial-gradient(
      circle at top right,
      rgba(56, 189, 248, 0.2),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(37, 99, 235, 0.2),
      transparent 35%
    ),
    #07111f;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.hero-text span {
  color: #38bdf8;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.hero-card {
  position: relative;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 35px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 20px;
}

.mini-box i {
  color: #38bdf8;
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.mini-box h3 {
  margin-bottom: 10px;
}

.mini-box p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* SERVICES */
.services {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #38bdf8;
  font-weight: 600;
}

.section-title h2 {
  font-size: 2.7rem;
  margin: 18px 0;
}

.section-title p {
  color: #cbd5e1;
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: #0c1728;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.4);
}

.service-card i {
  width: 70px;
  height: 70px;
  background: rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #38bdf8;
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-card p {
  color: #cbd5e1;
  line-height: 1.8;
}

/* ABOUT */
.about {
  padding: 100px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

/* SLIDER */
.about-image {
  position: relative;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
}

/* Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 2;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.prev:hover,
.next:hover {
  background: #38bdf8;
}

/* CONTENT */
.about-content h2 {
  font-size: 2.8rem;
  margin: 18px 0;
}

.about-content p {
  color: #cbd5e1;
  line-height: 1.9;
  margin-bottom: 20px;
}

.features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: start;
}

.feature i {
  color: #38bdf8;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* CTA */
.cta {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0f172a, #13233d);
  border-radius: 35px;
  padding: 70px 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 700px;
  margin: auto;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links,
.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-socials a {
  color: #cbd5e1;
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

.footer-links a:hover,
.footer-socials a:hover {
  color: #38bdf8;
}

/* Optional styling to make the social icons slightly larger */
.footer-socials a {
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-wrapper,
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .about-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-title h2,
  .about-content h2,
  .cta-box h2 {
    font-size: 2rem;
  }

  .dashboard,
  .features {
    grid-template-columns: 1fr;
  }

  .floating-box {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .cta-box {
    padding: 50px 25px;
  }
}

@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .mobile-menu {
    width: 100%;
  }
}
