* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #FBF9E4;
  color: #122C4F;
}

/* ================= NAVBAR (BLUR) ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  z-index: 1000;
}
/* LOGO */
.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 216px;        /* Perfect SaaS navbar size */
  width: 258px;
  /* object-fit: contain; */
  cursor: pointer;
  padding-top: 12px;
}

/* Slight scale on hover (FAANG subtle effect) */
.logo-img:hover {
  transform: scale(1.03);
  transition: transform 0.25s ease;
}


/* FULL HOVER NAV */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding: 25px 20px;
  text-decoration: none;
  color: #122C4F;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #5B88B2;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #5B88B2;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  background: #122C4F;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  height: 3rem;
  margin-left: 20px;
}

/* ================= HERO ================= */
.hero {
  height: 68vh;
  background: linear-gradient(120deg, #122C4F, #5B88B2);
  display: flex;
  align-items: center;
  padding: 0 12%;
  color: #FBF9E4;
}

.hero-content {
  max-width: 730px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero h1 span {
  color: #FFCB9A;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
  opacity: 0.9;
}

.hero-buttons button {
  margin-right: 15px;
}

/* ================= BUTTONS ================= */
.primary-btn {
  padding: 14px 30px;
  background: #FBF9E4;
  color: #122C4F;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.outline-btn {
  padding: 14px 28px;
  background: transparent;
  color: #FBF9E4;
  border: 1px solid #FBF9E4;
  border-radius: 10px;
  cursor: pointer;
}

/* ================= FEATURES ================= */
.faang-features {
  padding: 140px 8%;
  background: linear-gradient(180deg, #ffffff, #FBF9E4);
}

.faang-container {
  max-width: 1200px;
  margin: auto;
}

.faang-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.2;
}

.faang-title span {
  color: #5B88B2;
}

/* FEATURE LIST */
.faang-list {
 display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.faang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 50px;
  border-radius: 26px;
  /* background:(120deg, #122C4F, #5B88B2); */
  background: linear-gradient(120deg, #122C4F, #5B88B2);
  color: #FBF9E4;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(18,44,79,0.08);
}

.faang-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* ACTIVE FEATURE */
.faang-item.active {
  background: linear-gradient(120deg, #122C4F, #5B88B2);
  color: #FBF9E4;
}

.faang-item.active p {
  opacity: 0.9;
}

/* TEXT */
.faang-text {
  max-width: 70%;
}

.faang-text h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.faang-text p {
  font-size: 16px;
  opacity: 0.8;
}

/* VISUAL */
.faang-visual {
  font-size: 48px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faang-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .faang-text {
    max-width: 100%;
  }

  .faang-title {
    font-size: 34px;
  }
}
/* ECOM ATTRACTIVE SECTION */
.ecom-attract {
  padding: 140px 8%;
  /* background: linear-gradient(180deg, #FBF9E4, #ffffff); */
  background: linear-gradient(120deg, #122C4F, #5B88B2);
}

.ecom-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.ecom-header {
  max-width: 700px;
  margin-bottom: 90px;
}

.ecom-header h2 {
  font-size: 44px;
  line-height: 1.15;
  /* color: #122C4F; */
  color: #ffffff;
  margin-bottom: 20px;
}

.ecom-header h2 span {
  color: #5B88B2;
}

.ecom-header p {
  font-size: 18px;
  opacity: 0.8;
  color: #ffffff;
}

/* GRID */
.ecom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.ecom-box {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  border: 1px solid rgba(18,44,79,0.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecom-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.ecom-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #122C4F;
}

.ecom-box p {
  font-size: 15px;
  opacity: 0.75;
}

/* CTA */
.ecom-cta {
  margin-top: 90px;
  text-align: center;
}

.ecom-cta button {
  padding: 16px 34px;
  background: #122C4F;
  color: #FBF9E4;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.ecom-cta button:hover {
  background: #0E213A;
}

.ecom-cta p {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ecom-header h2 {
    font-size: 32px;
  }
}

/* SELLER TRUST SECTION */
.seller-trust {
  padding: 70px 8%;
  background: linear-gradient(180deg, #ffffff, #FBF9E4);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.seller-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.seller-label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5B88B2;
  margin-bottom: 35px;
  font-weight: 600;
}

/* COLORFUL LOGOS */
.seller-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.seller-logos img {
  height: 80px;
  width: auto;
  opacity: 1;
  filter: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* SUBTLE FAANG HOVER */
.seller-logos img:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .seller-logos {
    justify-content: center;
  }

  .seller-logos img {
    height: 32px;
  }
}
/* DIGITAL ECOM SECTION */
.digital-ecom {
  padding: 140px 8%;
  background: linear-gradient(
    180deg,
    #0B1F3A 0%,
    #0E2A4D 100%
  );
  color: #F9FAFC;
}

.digital-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT */
.digital-left h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.digital-left h2 span {
  color: #2F80ED;
}

.digital-left p {
  font-size: 18px;
  color: #D1D5DB;
  margin-bottom: 30px;
  max-width: 520px;
}

.digital-points {
  list-style: none;
}

.digital-points li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #E5E7EB;
}

/* RIGHT */
.digital-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.digital-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.digital-card h3 {
  font-size: 32px;
  color: #2F80ED;
  margin-bottom: 8px;
}

.digital-card p {
  font-size: 15px;
  color: #D1D5DB;
}
@media (min-width: 900px) {
  .digital-card{
    min-width: 14rem;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .digital-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .digital-left h2 {
    font-size: 32px;
  }
}


/* ================= CTA ================= */
.cta {
  background: #122C4F;
  color: #FBF9E4;
  padding: 90px 8%;
  text-align: center;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 20px;
}
/* CONTACT SECTION */
.contact-section {
  padding: 140px 8%;
  background: linear-gradient(180deg, #0B1F3A, #0E2A4D);
  color: #F9FAFC;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-info h2 span {
  color: #2F80ED;
}

.contact-info p {
  font-size: 18px;
  color: #D1D5DB;
  margin-bottom: 30px;
  max-width: 520px;
}

.contact-info ul {
  list-style: none;
}

.contact-info ul li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #E5E7EB;
}

.contact-form {
  background: #FFFFFF;
  padding: 44px;
  border-radius: 22px;
  border: 1px solid #E6EDF7;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.contact-form h3 {
  margin-bottom: 26px;
  color: black;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #DCE3F1;
  background: #F9FBFF;
}

/* ================= FOOTER ================= */
.footer-dark {
  background: linear-gradient(120deg, #122C4F, #5B88B2);
  color: #E5E7EB;
  padding: 80px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 80px;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-brand p {
  margin-top: 16px;
  color: #9CA3AF;
  line-height: 1.7;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 14px;
  color: #D1D5DB;
}

.footer-links a {
  color: #D1D5DB;
  text-decoration: none;
}

.footer-links a:hover {
  color: #60A5FA;
}

.footer-divider {
  margin: 60px auto 30px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #9CA3AF;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2563EB;
  border-color: #2563EB;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }
}
