* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0f172a;
  color: white;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: sticky;
  top: 0;
  background: #0f172a;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #5b6cff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #5b6cff;
}

.nav-btn button {
  background: #5b6cff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.nav-btn button:hover {
  background: #4452ff;
}

/* HERO SECTION */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  gap: 50px;
}

.hero-left {
  max-width: 550px;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left span {
  color: #5b6cff;
}

.hero-left p {
  color: #cbd5e1;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #5b6cff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #5b6cff;
  padding: 14px 28px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

/* HERO RIGHT CARDS */

.hero-right {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  gap: 20px;
}

.hero-card {
  background: #1e293b;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.hero-card:hover {
  transform: translateY(-10px);
  background: #2b3a55;
}

.solutions {
  padding: 120px 8%;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

.bento {
  background: #1e293b;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.bento.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento:hover {
  transform: translateY(-8px);
  background: #2b3a55;
}

.bento h3 {
  margin-bottom: 10px;
}

.bento p {
  color: #94a3b8;
}

.solutions {
  padding: 120px 8%;
}

.section-title {
  font-size: 38px;
  text-align: center;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

.bento {
  background: #1e293b;
  padding: 30px;
  border-radius: 18px;
  transition: 0.3s;
  position: relative;
}

.bento:hover {
  transform: translateY(-8px);
  background: #2b3a55;
}

.bento.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.bento h3 {
  margin-bottom: 10px;
}

.bento p {
  color: #94a3b8;
  margin-bottom: 15px;
}

.bento ul {
  color: #cbd5e1;
  padding-left: 18px;
  margin-bottom: 20px;
}

.bento-btn {
  background: #5b6cff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

.about {
  padding: 120px 8%;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-left p {
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-btn {
  margin-top: 10px;
  background: #5b6cff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

.about-right {
  display: grid;
  gap: 20px;
}

.about-card {
  background: #1e293b;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.about-card:hover {
  background: #2b3a55;
  transform: translateY(-5px);
}
.why-us {
  padding: 120px 8%;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.why-left p {
  color: #94a3b8;
  line-height: 1.6;
}

.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: #1e293b;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  background: #2b3a55;
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  color: #94a3b8;
  font-size: 14px;
}
.footer {
  background: #020617;
  padding: 70px 8% 20px;
  margin-top: 120px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  color: #94a3b8;
  margin-top: 10px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  color: #94a3b8;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
}

.footer-links a:hover {
  color: #5b6cff;
}

.footer-contact p {
  color: #94a3b8;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}
.contact {
  padding: 120px 8%;
  text-align: center;
}

.contact-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.contact-card {
  background: #1e293b;
  padding: 35px;
  border-radius: 18px;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: #2b3a55;
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  color: #94a3b8;
  line-height: 1.6;
}
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #5b6cff;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
