body{
    font-family: 'Poppins',sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden  ;
}

/* ---------- Header Basic ---------- */
.site-header {
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
  /* ---------- Logo ---------- */
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
  }
  
  .logo img {
    height: 80px;
    width: auto;
  }
  
  /* ---------- Navigation ---------- */
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #e2e8f0;
  }
  
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .nav ul li a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    display: block;
  }
  
  .nav ul li a:hover {
    background-color: #872d3e;
    color: #fff;
}
  
  .nav ul li a.active {
    background-color: #872d3e;
    color: #fff;
  }
  
  /* ---------- Hamburger Button ---------- */
  .nav-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }
  
  .bar {
    width: 24px;
    height: 2px;
    background-color: #0f172a;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  /* ---------- Toggle Open ---------- */
  .nav.open {
    display: block;
  }
  
  .nav-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  



  /* ---------- Desktop View ---------- */
  @media (min-width: 768px) {
    .nav {
      display: block;
      position: static;
      background: none;
      border: none;
    }
  
    .nav ul {
      flex-direction: row;
      align-items: center;
      gap: 20px;
    }
  
    .nav-toggle {
      display: none;
    }
  }
  


  /* ---------- HERO SECTION ---------- */
.hero {
    width: 100%;
    height: 90vh; /* full screen */
    background-image: url("./pics/hero-banner.jpg"); /* your uploaded image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    position: relative;
    color: white;
  }
  
  /* Optional overlay for readability */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05); /* dark overlay */
  }
  
  /* Content positioning */
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
  }
  
  /* Heading styles */
  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #872d3e; /* red color for heading */
    margin-bottom: 20px;
    line-height: 1.1;
  }
  
  /* Paragraph styles */
  .hero-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  /* Button styles */
  .hero-btn {
    background-color: #872d3e; /* red button */
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  /* Hover effect */
  .hero-btn:hover {
    background-color: white;
    color: #e03131;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  /* Responsive text */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .hero {
      padding: 0 20px;
      justify-content: center;
      text-align: center;
    }
  }
  

 /* ----- Overlap section wrapper (sits over hero edge) ----- */
.info-overlap {
    position: relative;
    z-index: 3;
    margin-top: -60px;              /* pulls card up into the hero */
    padding: 0 20px 40px 20px;      /* side padding + space below */
  }
  
  /* ----- The floating white card ----- */
  .info-card {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* soft floating shadow */
    border: 1px solid rgba(2, 6, 23, 0.06);
  }
  
  /* ----- Text ----- */
  .info-text {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #1f2937;                 /* slate-800 */
    flex: 1 1 auto;
  }
  
  /* emphasized red words */
  .highlight {
    color: #872d3e;
    font-weight: 700;
  }
  
  /* ----- Button on the right ----- */
  .info-cta {
    flex: 0 0 auto;
    display: inline-block;
    text-decoration: none;
    background-color: #872d3e;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }
  
  /* hover / focus */
  .info-cta:hover,
  .info-cta:focus-visible {
    background-color: #ffffff;
    color: #872d3e;
    box-shadow: 0 10px 24px rgba(224, 49, 49, 0.25), inset 0 0 0 2px #872d3e;
    transform: translateY(-2px);
    outline: none;
  }
  
  /* ----- Make sure the hero has room under it so the card can overlap nicely ----- */
  /* (If your hero already has enough height, you can skip this.) */
  .hero {
    padding-bottom: 40px;           /* gives breathing room at the bottom edge */
  }
  
  /* ----- Responsive: stack on small screens ----- */
  @media (max-width: 900px) {
    .info-card {
      padding: 24px;
      gap: 16px;
    }
    .info-text {
      font-size: 1.05rem;
    }
  }
  
  @media (max-width: 768px) {
    .info-overlap {
      margin-top: -40px;            /* slightly less overlap on small screens */
      padding: 0 16px 32px 16px;
    }
    .info-card {
      flex-direction: column;
      align-items: stretch;
      text-align: left;             /* keep left alignment; change to center if you prefer */
    }
    .info-cta {
      width: 100%;
      text-align: center;
    }
  }


  /* ---------- Section Wrapper ---------- */
.offer-section {
    padding: 72px 20px;
    background-color: #f6f7f9; /* light gray background */
  }
  
  /* ---------- Grid Layout ---------- */
  .offer-grid {
    max-width: 1070px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  
  /* ---------- Left Quote Card ---------- */
  .quote-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 36px 32px 32px 48px;
    position: relative;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }
  
  .quote-mark {
    position: absolute;
    left: 18px;
    top: 8px;
    font-size: 56px;
    line-height: 1;
    color: rgba(135, 45, 62, 0.18); /* faded brand color */
    font-weight: 700;
    color: #872d3e;
  }
  
  .quote-card p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
  }
  
  /* ---------- Right Column ---------- */
  .offer-content {
    padding-top: 6px;
  }
  
  /* Section Title */
  .section-title {
    margin: 0 0 8px 0;
    font-size: 1.75rem;
    color: #0f172a;
    letter-spacing: 0.5px;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin-top: 8px;
    border-radius: 999px;
    background-color: #872d3e; /* brand color underline */
  }
  
  /* Lead Text */
  .section-lead {
    margin: 18px 0 20px 0;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  /* ---------- List ---------- */
  .offer-list {
    margin: 0 0 26px 0;
    padding-left: 0;
    list-style: none;
  }
  
  .offer-list li {
    position: relative;
    padding-left: 28px;
    margin: 8px 0;
    color: #374151;
    font-size: 1.06rem;
    line-height: 1.6;
  }
  
  .offer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #872d3e; /* brand bullet */
    box-shadow: 0 0 0 4px rgba(135, 45, 62, 0.16);
  }
  
  /* ---------- Buttons ---------- */
  .btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  /* Common Button */
  .btn {
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 12px 18px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    display: inline-block;
  }
  
  /* Ghost Button */
  .btn-ghost {
    background-color: #f1f2f4;
    color: #374151;
  }
  
  .btn-ghost:hover {
    background-color: #872d3e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(135, 45, 62, 0.25);
  }
  
  /* Outline Button */
  .btn-outline {
    background-color: transparent;
    color: #872d3e;
    border: 2px solid #872d3e;
  }
  
  .btn-outline:hover {
    background-color: #872d3e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(135, 45, 62, 0.25);
  }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    .offer-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  
    .quote-card {
      padding: 28px 24px 24px 44px;
    }
  
    .quote-card p {
      font-size: 1.05rem;
    }
  }
  
  

  /* ----- Two headline lines ----- */
.about-lines {
    padding: 64px 20px 24px 20px;
    background-color: #fff;
    border-bottom: 1px solid #872d3e;
    text-align: center;
  }
  
  .about-lines p {
    margin: 0 0 18px 0;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #000;
  }
  
  .about-lines .red {
    color: #872d3e;
    font-weight: 700;
  }
  
  /* ----- Flags section wrapper ----- */
  .flags-wrap {
    padding: 40px 20px 70px 20px;
    background-color: #fff;
  }
  
  /* Title + underline */
  .flags-head {
    max-width: 1200px;
    margin: 0 auto 22px auto;
  }
  
  .flags-head h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #0f172a;
    letter-spacing: 0.5px;
  }
  
  .flags-head .underline {
    display: inline-block;
    width: 60px;
    height: 4px;
    background-color: #872d3e;
    border-radius: 999px;
    margin-top: 10px;
  }
  
  /* ----- Scroller ----- */
  .flags-scroller {
    max-width: 1200px;
    margin: 18px auto 0 auto;
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 14px;
  }
  
  .flags-viewport {
    overflow: hidden;
    background-color: #f6f7f9;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 10px;
    position: relative;
  }
  
  /* Track with images inline */
  .flags-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    will-change: transform;
  }
  
  /* Flag images */
  .flags-track img {
    height: 64px;          /* keep flags same height */
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
    transition: transform 0.2s ease;
  }
  
  .flags-track img:hover {
    transform: translateY(-3px);
  }
  
  /* Prev/Next buttons */
  .flag-btn {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #872d3e;
    background-color: #ffffff;
    color: #872d3e;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  }
  
  .flag-btn:hover,
  .flag-btn:focus-visible {
    background-color: #872d3e;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(135,45,62,0.25);
    outline: none;
    transform: translateY(-2px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-lines p { font-size: 1.2rem; }
    .flags-scroller { grid-template-columns: 44px 1fr 44px; }
    .flag-btn { width: 44px; height: 44px; font-size: 18px; }
    .flags-track { gap: 24px; }
    .flags-track img { height: 52px; }
  }
  

  /* ---------- FOOTER ---------- */
.site-footer {
    background-color: #000;
    color: #fff;
    padding-top: 48px;
    font-family: "Segoe UI", sans-serif;
  }
  
  /* Layout grid */
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 36px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 0.7fr 1fr;
    gap: 36px;
  }
  
  /* Brand section */
  .footer-brand .footer-logo {
    width: 130px;
    height: 130px;
    display: block;
    margin-bottom: 14px;
  }
  
  .footer-brand h3 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }
  
  /* Address section */
  .footer-col h4 {
    margin: 0 0 14px 0;
    color: #ffffff;
    letter-spacing: 0.3px;
  }
  
  .footer-col p {
    margin: 0 0 14px 0;
    line-height: 1.7;
    color: #fff;
  }
  
  .footer-col a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-col a:hover {
    color: #872d3e;
  }
  
  /* Links */
  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-links li {
    margin: 8px 0;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #872d3e;
  }
  
  /* Search box */
  .footer-search input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #3b3b3b;
    background-color: #2b2b2b;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .footer-search input::placeholder {
    color: #fff;
  }
  
  .footer-search input:focus {
    border-color: #872d3e;
    box-shadow: 0 0 0 3px rgba(135, 45, 62, 0.35);
  }
  
  /* Bottom line */
  .footer-bottom {
    border-top: 1px solid #343434;
    padding: 14px 20px;
    text-align: center;
    color: #fff;
    font-size: 0.95rem;
  }
  
  .footer-bottom .brand-highlight {
    color: #872d3e;
    font-weight: 600;
  }
  
  /* Back to top button */
  .to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #cfcfcf;
    background-color: #f0f0f0;
    color: #111;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
  }
  
  .to-top.show {
    opacity: 1;
    pointer-events: auto;
  }
  
  .to-top:hover {
    background-color: #ffffff;
    border-color: #872d3e;
    color: #872d3e;
    transform: translateY(-2px);
  }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 992px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 560px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .footer-bottom {
      text-align: center;
    }
  }
  


  /* ---------- Sticky Call To Action Button ---------- */
.cta-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;               /* slightly above back-to-top */
    background-color: #007bff;  /* blue */
    color: #ffffff;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    font-family: "Segoe UI", sans-serif;
  }
  
  /* Hover effect */
  .cta-btn:hover {
    background-color: #0056b3;  /* darker blue */
    box-shadow: 0 8px 24px rgba(0, 86, 179, 0.4);
    transform: translateY(-3px);
  }
  
  /* Smaller screens */
  @media (max-width: 768px) {
    .cta-btn {
      right: 16px;
      bottom: 70px;
      padding: 12px 20px;
      font-size: 0.95rem;
    }
  }
  