:root {
  /* Brand Core Colors */
  --primary: #081c63;
  --midnight-navy: #030f26;
  --secondary: #ff5a1f;
  --white: #ffffff;
  --black: #000000;
  --green: #018b36;
  --orange: hsl(27, 100%, 53%);
  --purple: #7b2cbf;
  --solid-blue: #0061fc;
  --dark: #37383981;
  --border:#dadee2b5;

  /* Typography / Text Colors */
  --text-muted: #5c6679fa;
  --text-muted-blue: #08074bda;
  --dark-blue: rgba(158, 174, 184, 0.089);
  --bg-blue-light: #c6d7fb51;
  --blue-sky: #0099cc;
  --danger-light: #e11d1d;

  /* Layout, Shadows & Interactive */
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 20px rgba(16, 24, 40, 0.04);
  --shadow-hover: 0 15px 40px rgba(16, 24, 40, 0.08);
  --shadow-danger: rgba(197, 34, 34, 0.12);
  --shadow-success: rgba(22, 101, 52, 0.12);
  --border-badge: rgba(255, 204, 0, 0.85);

  --bg-btn-hover: #edf2f7;
  --bg-outline-hover: #f8fafc;
  --container: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: Inter, sans-serif;
  color: var(--black);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

h2 {
  font-family: "Roboto Condensed", sans-serif;
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ==========
   REUSABLE COMPONENTS
========== */

.container {
}

/* reusable button */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 44px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(255, 90, 31, 0.25);
}

.btn-login {
    background-color: var(--solid-blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 21, 255, 0.25);
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}

/* Logo */
.navbar-logo {
  max-width: 200px;
}

.navbar-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-menu li a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  transition: 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--secondary);
}

/* Active Link */

.nav-menu li a {
  position: relative;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 8px;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 50px;
  transition: width 0.3s ease;
}

/* Hover */
.nav-menu li a:hover::after {
  width: 100%;
}

/* Active */
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 50px;

  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}

/* Mobile Menu Button */

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 50px;
}

/* ==========
   HERO
========== */
.hero {
  padding: 20px 0 0px;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0px;
}

.hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-tagline {
  font-family: "Caveat", cursive;
}
.tagline-decoration svg {
  width: 100%;
  max-width: 330px;
  display: block;
}

.hero-tagline {
  color: var(--secondary);
  font-size: 28px;
  font-weight: 600;
  display: inline-block;
  font-family: "Kalam", cursive;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 56px;
  color: var(--midnight-navy);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 1px;
}

.hero h1 span {
  color: var(--secondary);
}

.hero-accent {
  display: flex;
  flex-direction: row;
  padding-top: 14px;
  letter-spacing: 1px;
}

.hero p {
  width: 100%;
  max-width: 450px;
  font-size: 18px !important;
  line-height: 1.6;
  color: var(--primary);
  font-weight: 500;
  white-space: initial !important;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 350px;
}
.hero-features-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted-blue);
}

.hero-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  font-weight: 900;
  border-radius: 100%;
  height: 6px;
  width: 6px;
  padding: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-secure-info {
  color: var(--text-muted-blue);
  font-size: 12px;
  font-weight: 550;
  display: inline;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Right side report card */
.hero-right-section .hero-image {
  max-width: fit-content;
  border-radius: 12px;
}

.hero-right-section .hero-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*===== help section style starts =====*/
/* --- Main Layout Container --- */
.help-section {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 40px;
    margin-top: 22px;
}

.help-container {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 50px;
}

/* --- Left Column: Form Styling --- */
.form-column h2 {
    color: var(--text-muted-blue);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-column .subtitle {
    color: var(--text-muted-blue);
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 500;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.row-span {
    grid-row: span 2;
}

.form-group label {
    color: var(--text-muted-blue);
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--secondary);
}

.form-group label .optional {
    color: #718096;
    font-weight: 400;
}

/* --- Input Fields --- */
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    background-color: var(--white);
    transition: all 0.2s ease;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.1);
}

.form-group textarea {
    height: 128px;
    resize: none;
}

/* --- Custom Dropdown Select --- */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1.5px solid var(--secondary); /* Orange border matching screenshot active state */
    border-radius: 6px;
    font-size: 14px;
    color: #64748b;
    background-color: var(--white);
    cursor: pointer;
}

.custom-select-trigger i {
    color: var(--text-muted-blue);
    font-size: 12px;
}

/* Mock Open Dropdown Menu Box */
.custom-options {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 10;
    max-height: 150px;
    overflow-y: auto;
    padding: 6px 0;
}

.custom-select-wrapper.open .custom-options {
    display: block;
}

.custom-select-wrapper.has-value .selected-label {
    color: var(--text-muted-blue);
}

.option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-muted-blue);
    cursor: pointer;
    transition: background 0.2s;
}

.option-item:hover {
    background-color: #f1f5f9;
}

.option-item i {
    width: 16px;
    color: var(--text-muted-blue);
    text-align: center;
}

/* --- Submit Wrapper Zone --- */
.submit-wrapper {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.btn-submit {
  margin-right: 20px;
}

.privacy-note {
    display: flex;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted-blue);
    font-weight: 500;
    line-height: 1;
}

.privacy-note i {
    color: var(--text-muted-blue);
    margin-right: 2px;
}

.privacy-note span {
    color: #64748b;
    font-weight: 400;
}

.form-status {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.form-status.is-success {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #86efac;
}

.form-status.is-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.btn-submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* --- Right Column: Sidebar Styling --- */
.info-column {
    padding-left: 10px;
}

.info-block h3 {
    color: var(--text-muted-blue);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.sidebar-divider {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 30px 0;
}

/* Info Row Items */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.info-item.alignment-top {
    align-items: flex-start;
}

.info-icon {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
.info-icon i{
    font-size: 24px;
    font-weight: 200;
}

.info-icon svg{
    width: 28px;
    height: 30px;
}

.icon-orange {
    color: #ff5a1f;
}

.icon-blue {
  background-color: var(--bg-blue-light);
  width: 60px;
  height: 60px;
}

.info-text h4 {
    color: var(--text-muted-blue);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.info-text p {
    color: var(--text-muted-blue);
    font-size: 13.5px;
    line-height: 1.4;
}

.info-text p a {
    color: var(--text-muted-blue);
    text-decoration: none;
}

.info-text p a:hover {
    text-decoration: underline;
}

.info-text p span {
    color: #64748b;
}

.commitment-p {
    color: #334155;
    font-size: 13.5px;
    line-height: 1.5 !important;
    font-weight: 400;
}
/*===== help section style ends =====*/

/*===== Connection section style starts =====*/
.connection-section {
    background: rgba(232, 230, 230, 0.162);
    padding: 40px 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-top: 22px;
}

/* --- Header Styling --- */
.connection-header {
    text-align: center;
    margin-bottom: 40px;
}

.connection-header h2 {
    color: var(--text-muted-blue);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
}

.connection-header .decorative-line {
    display: inline-block;
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
}

.connection-header p {
    color: var(--text-muted-blue);
    font-size: 14px;
    font-weight: 400;
}

/* --- Grid Grid Layout --- */
.connection-body {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    align-items: center;
    position: relative;
}

/* --- Cards Styling --- */
.connect-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 45px 35px 35px 35px;
    position: relative;
    min-height: 280px;
}

/* Badges atop the borders */
.card-badge {
    position: absolute;
    top: -16px;
    left: 35px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    color: var(--white);
}

.badge-navy {
    background-color: var(--text-muted-blue);
}

.badge-orange {
    background-color: var(--secondary);
}

/* Lists styling */
.connect-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.connect-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.connect-list li i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

/* Color splitting for icons as per screenshot */
.badge-navy ~ .connect-list li i {
    color: var(--text-muted-blue);
}

.badge-orange ~ .connect-list li i {
    color: var(--secondary);
}

.connect-list li span {
    color: var(--text-muted-blue);
    font-size: 14.5px;
    font-weight: 500;
}

/* --- Center Link Animation / Layout --- */
.center-link-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Horizontal dashed connector */
.connecting-dashed-line {
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 1px dashed #cbd5e1;
    z-index: 1;
}

.link-circle {
    width: 84px;
    height: 84px;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    z-index: 2;
}

.link-circle i {
    color: #ff5a1f;
    font-size: 32px;
    transform: rotate(-6deg); /* Perfect diagonal alignment */
}

/*===== Connection section style ends =====*/


/*===== Connection section style starts =====*/
.workflow-section {
    background: rgba(232, 230, 230, 0.162);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    margin-top: 22px;
}

/* --- Title/Header Styling --- */
.workflow-header {
    text-align: center;
    margin-bottom: 20px;
}

.workflow-header h2 {
    color: var(--text-muted-blue);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.workflow-header .line-decorator {
    display: inline-block;
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
}

/* --- Content Container Split --- */
.workflow-container {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    align-items: stretch;
}

/* --- Left Area: Flow Steps --- */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 10px 10px 10px;
}

.step-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 165px;
}

/* Icons Circles & Badges */
.icon-circle-wrapper {
    position: relative;
    margin-bottom: 22px;
}

.icon-circle {
    width: 68px;
    height: 68px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.icon-circle i {
    color: #04143a;
    font-size: 22px;
}

.step-number {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 22px;
    height: 22px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Steps Typography */
.step-item h3 {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    min-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item p {
    color: var(--text-muted-blue);
    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 500;
}

/* Connecting Flow Arrows */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px; /* Perfectly aligned horizontally with icon circles */
    color: var(--text-muted-blue);
    font-size: 18px;
}

/* --- Right Area: Sidebar CTA Card --- */
.highlight-cta-card {
    background-color: var(--midnight-navy);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Custom Animated Type Icon Box */
.cta-icon-box {
    position: relative;
    width: 50px;
    height: 40px;
    margin-bottom: 25px;
}

.cta-icon-box i {
    color: var(--white);
    font-size: 38px;
}

.cta-icon-box .star-plus {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 300;
}

.cta-icon-box .star-plus.top-left {
    top: -8px;
    left: -8px;
}

.cta-icon-box .star-plus.top-right {
    top: -10px;
    right: -6px;
}

.cta-icon-box .star-star {
    position: absolute;
    color: var(--white);
    font-size: 11px;
    top: -14px;
    left: 18px;
}

/* CTA Card Typography */
.highlight-cta-card h2 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.highlight-cta-card .orange-text {
    display: block;
    color: var(--secondary);
    margin-top: 4px;
}


/*===== Connection section style ends =====*/


/*====== Footer style start ======*/
.main-footer {
  background-color: var(--midnight-navy); 
  padding: 40px 40px 24px 40px;
  color: var(--white);
  margin-top: 22px;
  margin-bottom: 22px;
  border-radius: 12px;
}

/* Top Sections Matrix Wrap */
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Left Branding Styling */
.footer-brand {
  flex: 2;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.brand-logo {
  width: 200px;
}
.brand-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.brand-desc {
  color: var(--white);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 400;
}

/* Middle Navigation Block Columns */
.footer-links-grid {
  flex: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.links-column {
  flex: 1;
}

.main-footer h3 {
  color: var(--secondary); 
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.links-column ul {
  list-style: none;
}

.links-column ul li {
  margin-bottom: 12px;
}

.links-column ul li a {
  color: var(--border);
  font-size: 13.5px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.links-column ul li a:hover {
  color: var(--white);
}

/* Right Newsletter Layout Block */
.footer-newsletter {
  flex: 2;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter p {
  color: #94a3b8;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Embedded Inline Input-Form Controls */
.subscribe-form {
  display: flex;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 4px;
  align-items: center;
  width: 100%;
}

.subscribe-form input {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #000a1f;
  font-family: inherit;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #94a3b8;
}

.subscribe-form button {
  background-color: #f95716;
  border: none;
  border-radius: 6px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.subscribe-form button:hover {
  background-color: #e04608;
}

.subscribe-form button svg {
  width: 16px;
  height: 16px;
}

/* Bottom Copy and Meta Links Section */
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

.bottom-links {
  display: flex;
  gap: 24px;
}

.bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s ease;
}

.bottom-links a:hover {
  color: #94a3b8;
}

/*====== Footer style end ========*/


/* Responsive Breakpoints implementation */
@media (max-width: 1199.98px) {
  /* Navbar */
  .nav-menu {
    gap: 20px;
    padding: 24px;
  }

  .logo img {
    width: 220px;
  }

    .workflow-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .highlight-cta-card {
        padding: 35px 20px;
    }

}


@media (max-width: 992px) {

    /* Navbar */
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 24px;
    padding: 30px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .navbar .btn-primary {
    display: none;
  }

  .logo img {
    width: 200px;
  }

/* Hero style starts */
.hero {
  padding: 20px 0 0px;
  overflow: hidden;
}

.hero-wrapper {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  max-width: 100%;
  gap: 25px;
  padding-left: 40px;
}

/* Hero style ends */

    .help-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .info-column {
        padding-left: 0;
    }

        .connection-body {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .center-link-container {
        height: 60px;
    }
    
    .connecting-dashed-line {
        width: 1px;
        height: 100%;
        border-top: none;
        border-left: 1px dashed #cbd5e1;
    }
    
    .connect-card {
        min-height: auto;
    }

/* Footer style starts */
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-brand, .footer-newsletter {
    max-width: 100%;
    width: 100%;
  }
  .footer-links-grid {
    width: 100%;
  }
}

@media (max-width: 790px) {
  .hero-content {
    max-width: 100%;
    gap: 25px;
    padding-left: 20px;
  }
    .hero-content h1 {
    font-size: 50px !important;
  }

  .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .step-item {
        max-width: 100%;
    }
    .step-arrow {
        height: auto;
        transform: rotate(90deg);
        margin: 5px 0;
    }
}

@media (max-width: 640px) {

  .hero-content {
    max-width: 100%;
    gap: 20px;
    padding-left: 0px;
  }

  .hero-content h1 {
    font-size: 35px !important;
  }

  .hero-content p {
    font-size: 14px !important;
    white-space: normal !important;
    width: 100%;   
  }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.row-span {
        grid-row: auto;
    }

    .submit-wrapper {
        flex-direction: column;
        margin-top: 180px;
        gap: 15px;
    }
    .help-section {
        padding: 20px;
    }


    .connection-section {
        padding: 40px 20px;
    }
    .connection-header h2 {
        font-size: 17px;
    }
    .connection-header .decorative-line {
        display: none;
    }
    .connect-card {
        padding: 40px 20px 25px 20px;
    }
    .card-badge {
        left: 20px;
        padding: 6px 16px;
        font-size: 11px;
    }

  .footer-links-grid {
    flex-direction: column;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
  }
  .bottom-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}