/* ================================
   Global Variables
================================ */
:root {
  --indigo: #1A1F36;
  --blue: #3A7BFF;
  --gray-bg: #F4F6FA;
  --slate: #6B7280;
  --mint: #3FF0B5;
  --white: #FFFFFF;
}

/* ================================
   Reset & Base
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--indigo);
  background-color: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   Layout Helpers
================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3rem 0;
}

main {
  padding-bottom: 3rem;
}

/* ================================
   Navigation
================================ */
header {
  border-bottom: 1px solid #E5E7EB;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.stretch-div {
    background-position: center;
    background-color: #f5f5f5;
    padding: 2px;
    height: 210px
}

.hero-banner-label {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 40px; /* Adjust the font size as needed */
    font-weight: bold;
    text-align: center; /* Center the text horizontally */
    white-space: nowrap; /* Prevent text from wrapping */
}
.hero-banner {
    height: 200px; /* Adjust the height as needed */
    background-image: url('/Images/test.jpg');
    background-size:auto;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 100%;
}
    .hero-banner img {
        display: flex;
        object-fit: contain;
        height: 10%;
        width: 100%;
    }


    .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--mint), var(--blue));
  position: relative;
}
.logo-container img {
    width: 100px; /* or use max-width: 100% for responsiveness */
    height: auto;
    display: block;
}

.logo-icon::before,
.logo-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--white);
  opacity: 0.9;
}

.logo-icon::before {
  top: 4px;
  left: 14px;
}

.logo-icon::after {
  bottom: 4px;
  right: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--slate);
}
.site-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

    .site-banner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }



.nav-links a:hover {
  color: var(--blue);
}

/* Mobile nav toggle */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 56px;
  right: 0;
  background-color: var(--white);
  padding: 1rem 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

/* ================================
   Buttons
================================ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
  border: none;
}

.btn-primary {
  background-color: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #2556c7;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.btn-secondary:hover {
  background-color: rgba(58, 123, 255, 0.06);
  transform: translateY(-1px);
}

/* ================================
   Typography
================================ */
.section-heading {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--slate);
}

/* Hero right panel */
.hero-right {
  background: radial-gradient(circle at 0% 0%, rgba(63, 240, 181, 0.14), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(58, 123, 255, 0.15), transparent 55%),
              var(--indigo);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.hero-right h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.hero-highlight {
  font-size: 2.2rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-right p {
  font-size: 0.9rem;
  color: #cbd5ff;
  margin-bottom: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 0.8rem;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--mint);
}

/* ================================
   Cards & Grids
================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: var(--gray-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #E5E7EB;
}

.card h2,
.card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--slate);
}

/* Steps */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.step {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px dashed #D1D5DB;
  background-color: var(--white);
}

.step-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.step h3 {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--slate);
}

/* Chips / Pills */
.chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background-color: var(--white);
  font-size: 0.8rem;
  color: var(--slate);
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--blue);
}

.price {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 0.6rem;
}

/* CTA box */
.cta-section {
  padding: 3rem 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, #1A1F36, #222B55);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  color: var(--white);
}

.cta-box h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-box p {
  font-size: 0.95rem;
  color: #CBD5F5;
  margin-bottom: 1.5rem;
}

/* Layouts */
.layout-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Badges */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  font-size: 0.8rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background-color: var(--gray-bg);
  border: 1px solid #E5E7EB;
  color: var(--slate);
}

/* Forms */
form {
  background-color: var(--gray-bg);
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid #E5E7EB;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--indigo);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid #D1D5DB;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--indigo);
  background-color: var(--white);
  margin-bottom: 0.9rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(58, 123, 255, 0.35);
}

.note {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1.2rem;
}

/* Footer */
footer {
  border-top: 1px solid #E5E7EB;
  padding: 1.75rem 0;
  font-size: 0.85rem;
  color: var(--slate);
  background-color: var(--white);
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--slate);
}

.footer-links a:hover {
  color: var(--blue);
}

/* ================================
   Responsive
================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .how-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }
    #footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: #f5f5f5;
        padding: 20px;
    }
}
