/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: #1f2933;
  background-color: #f5f6f8;
}

img {
  max-width: 100%;
  display: block;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0b2040;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
.logo-img {
  height: 200px;
  width: auto;
  display: block;
  filter: contrast(1.4) brightness(1.1);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 22px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary,
.btn-primary-nav {
  background: #2563eb;
  color: #fff;
}

.btn-primary-nav {
  padding-inline: 16px;
}

.btn-primary:hover,
.btn-primary-nav:hover {
  background: #1d4ed8;
}

.btn-outline {
  border-color: #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.06);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 80px 0 60px;
  background: radial-gradient(circle at top left, #1d4ed8 0, #0b2040 45%, #020617 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.25), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 15px;
  margin-bottom: 16px;
  max-width: 480px;
}

.hero-points {
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-points li::before {
  content: "✔";
  margin-right: 8px;
  color: #4ade80;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.hero-meta {
  font-size: 12px;
  opacity: 0.85;
}

/* HERO IMAGE + SLIDER */

.hero-image {
  justify-self: center;
  max-width: 430px;
}

/* Swiper container */
.hero-image .swiper {
  width: 100%;
  height: 480px;
}

/* Slide content */
.hero-image .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Swiper controls */
.hero-image .swiper-button-next,
.hero-image .swiper-button-prev {
  color: #e5e7eb;
}

.hero-image .swiper-pagination-bullet {
  background: #e5e7eb;
  opacity: 0.4;
}

.hero-image .swiper-pagination-bullet-active {
  opacity: 1;
}

/* HERO ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text {
  animation: fadeUp 0.9s ease-out;
}

.hero-image {
  animation: slideInRight 1s ease-out 0.1s both;
}

/* TRUST STRIP */

.trust-strip {
  background: #0f172a;
  color: #e5e7eb;
  font-size: 13px;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 10px 0;
}

.trust-inner span::before {
  content: "◆ ";
  font-size: 10px;
  opacity: 0.7;
}

/* SECTIONS */

.section {
  padding: 56px 0;
  background: #f5f6f8;
}

.section-grey {
  background: #e5e7eb;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 28px;
  max-width: 540px;
}

/* CARDS */

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  height: 160px;
  object-fit: contain;
}

.card h3 {
  font-size: 16px;
}

.card p {
  font-size: 13px;
  color: #4b5563;
}

.card-link {
  font-size: 13px;
  color: #2563eb;
  margin-top: auto;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* TWO COLUMN (WHY + STATS) */

.two-col {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: flex-start;
}

.bullet-list {
  list-style: none;
  font-size: 14px;
  margin-top: 12px;
}

.bullet-list li {
  margin-bottom: 6px;
}

.bullet-list li::before {
  content: "• ";
  color: #111827;
  font-weight: 700;
}

.stats-card {
  background: #0b2040;
  color: #e5e7eb;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.35);
}

.stats-card h3 {
  margin-bottom: 10px;
}

.stats-card ul {
  list-style: none;
  font-size: 14px;
}

.stats-card li {
  margin-bottom: 8px;
}

/* INDUSTRIES */

.icon-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 20px;
}

.icon-card {
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

/* CTA + CONTACT FORM */

.section-cta {
  background: linear-gradient(135deg, #0b2040, #1d4ed8);
  color: #e5e7eb;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.cta-inner h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.cta-inner p {
  font-size: 14px;
  max-width: 520px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cta-note {
  font-size: 12px;
  opacity: 0.9;
  margin-top: 8px;
}

/* CONTACT FORM */

.contact-form {
  background: rgba(15, 23, 42, 0.75);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row label {
  font-size: 12px;
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  border-radius: 10px;
  border: 1px solid #374151;
  background: #020617;
  color: #e5e7eb;
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #6b7280;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #60a5fa;
}

.form-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.form-note {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 4px;
}

/* FOOTER */

.footer {
  background: #020617;
  color: #9ca3af;
  font-size: 13px;
  padding-top: 32px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
}

.footer h3 {
  color: #f9fafb;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links h4 {
  color: #e5e7eb;
  margin-bottom: 4px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  border-top: 1px solid #111827;
  text-align: center;
  padding: 10px 0 16px;
  font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-image {
    order: -1;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .hero-image .swiper {
    height: 360px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none; /* later burger menu bana sakte hain */
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 4px;
  }
}



