

html, body {
  font-family: "Poppins", sans-serif !important;
}

/* Optional: Make headings bold & crisp */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* Optional: Make navigation & buttons stronger */
.nav, .btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

 :root {
      --blue-dark: #00539b;
      --blue: #0069c2;
      --blue-light: #e8f2fb;
      --grey: #4a4a4a;
      --grey-light: #f6f6f6;
      --accent: #fcb410;
      --max-width: 1140px;
    }

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

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: #222;
      background: #fff;
      line-height: 1.6;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* ----------- Layout helpers ----------- */

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    .section {
      padding: 60px 0;
    }

    .section--light {
      background: #fff;
    }

    .section--grey {
      background: var(--grey-light);
    }

    .section--blue {
      background: var(--blue-dark);
      color: #fff;
    }

    .section-title {
      text-align: center;
      font-size: 28px;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
	  color: var(--blue-dark);
    }

    .sub-text {
      text-align: center;
      margin-bottom: 32px;
      color: #666;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      font-size: 15px;
    }

    /* ----------- Header / Nav ----------- */

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #fff;
      
      border-bottom: 1px solid #e5e5e5;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: bold;
      color: var(--blue-dark);
    }

    .nav-logo span {
      font-size: 12px;
      color: #555;
      font-weight: 400;
    }

    
   

   .nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-auth .btn {
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Outline Button (Login) */
.btn-outline {
  background: transparent;
  border: 1px solid #ffffff90;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #1f2125;
}

/* Primary Button (Sign Up) */
.btn-primary {
  background: #ff7a00;
  border: 1px solid #ff7a00;
  color: #fff;
}

.btn-primary:hover {
  background: #ff8f26;
}


    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 50px;
      border: 1px solid transparent;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
    }

    .btn-primary:hover {
      background: #004f8c;
    }

    .btn-outline {
      background: transparent;
      color: var(--blue-dark);
      border-color: var(--blue-dark);
    }

    .btn-outline:hover {
      background: var(--blue-dark);
      color: #fff;
    }
	
	
	
	
	
	
	
	
	
	

   /* ---------- NAV WRAPPER ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  transition: max-height .3s ease;
  z-index: 9999; /* IMPORTANT FIX */
}

/* MOBILE COLLAPSE */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    /* FIX: hide the blank bar when closed */
    padding: 0;
    max-height: 0;
    overflow: hidden;
  }

  .nav-links.open {
    padding: 15px 20px; /* Restore padding only when open */
    max-height: 600px;
  }
}

/* ---------- NAV LINKS ---------- */
.nav-links a,
.dropdown-toggle {
  text-decoration: none;
  color: #4a4a4a;
  font-weight: 600;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hover color */
.nav-links a:hover,
.dropdown-toggle:hover {
  color: #caa953;
}

/* ---------- DROPDOWN ---------- */
.dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  width: 260px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 9999;
}

.dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-bottom: 1px solid #eee;
  color: #333;
  font-weight: 500;
  font-size: 12px;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

/* DESKTOP — SHOW DROPDOWN ON HOVER */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* MOBILE — CLICK TO OPEN */
@media (max-width: 768px) {
  .dropdown-menu {
    position: relative;
    top: 0;
    width: 100%;
    border: 1px solid #eee;
    box-shadow: none;
  }

  .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ---------- HAMBURGER ---------- */
.nav-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    margin: 15px;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    display: none;  /* hide by default */
  }

  .dropdown-menu.open {
    display: block; /* show on click */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   

    /* ----------- Hero ----------- */

    .hero {
      background: linear-gradient(180deg, var(--blue-dark) 0%, #00447f 60%, var(--blue-dark) 100%);
      color: #fff;
      padding: 80px 0 60px;
      text-align: center;
    }

    .hero h1 {
      font-size: 34px;
      max-width: 720px;
      margin: 0 auto 18px;
      line-height: 1.3;
    }

    .hero p {
      max-width: 640px;
      margin: 0 auto 26px;
      color: #e2e8f0;
      font-size: 15px;
    }

    .hero .btn-primary {
      padding: 12px 32px;
      font-size: 15px;
      font-weight: 600;
    }

    /* ----------- Logo strip ----------- */

    .logo-strip {
      background: #fff;
      border-bottom: 1px solid #eee;
      padding: 24px 0;
    }

    .logo-strip-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      align-items: center;
      font-size: 13px;
      color: #777;
    }

    .logo-item {
      min-width: 80px;
      text-align: center;
      font-weight: 500;
    }

    /* ----------- Intro / Text + Image ----------- */

    .intro-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 40px;
      align-items: flex-start;
    }
      .intro-grid h1 {
      font-size: 30px;
      margin-bottom: 10px;
      color: var(--blue-dark);
    }


    .intro-grid h2 {
      font-size: 24px;
	   margin-top: 10px;
      margin-bottom: 10px;
      
    }

    .intro-grid h3 {
      font-size: 18px;
      margin-top: 22px;
      margin-bottom: 8px;
    }

    .intro-grid p {
      font-size: 14px;
      color: #555;
      margin-bottom: 8px;
    }

    .intro-image {
      /*background: url("") center/cover no-repeat;*/
      border-radius: 6px;
      min-height: 260px;
    }

    /* ----------- Certifications ----------- */

.certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  margin-top: 20px;
}

.cert-card {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

/* Icon style */
.cert-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--blue-dark);
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
}

/* ---------- MOBILE: 2 per row ---------- */
@media (max-width: 768px) {
  .cert-card {
    width: 45%;       /* two cards per row */
    margin-bottom: 20px;
  }

  .certs {
    gap: 20px;        /* smaller spacing on mobile */
  }
}


    /* ----------- Features table ----------- */

    .features-table-wrap {
      margin-top: 30px;
      overflow-x: auto;
    }

    .features-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      min-width: 640px;
    }

    .features-table thead {
      background: var(--blue);
      color: #fff;
    }

    .features-table th,
    .features-table td {
      padding: 10px 12px;
      border-bottom: 1px solid #e3e3e3;
      text-align: left;
    }

    .features-table tbody tr:nth-child(odd) {
      background: #f9fbff;
    }

    .check {
      font-weight: bold;
    }

    /* ----------- Deal types grid ----------- */

    .tiles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .tile {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      min-height: 150px;
      background: #ccc url("https://via.placeholder.com/500x330") center/cover no-repeat;
    }

    .tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    }

    .tile-label {
      position: absolute;
      left: 16px;
      bottom: 14px;
      right: 16px;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      z-index: 1;
    }

    /* ----------- Support ----------- */

    .support-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 90px;
      margin-top: 24px;
      font-size: 13px;
    }
	.sw-font{
		font-size: 14px;
    font-weight: 600;
	}

    .support-item {
      text-align: center;
    }

    .support-icon-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 1px solid var(--blue-dark);
      display: flex;
	  gap:20px;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px;
      font-size: 24px;
    }

    /* ----------- How it works ----------- */

    .how-steps {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }

    .step {
      flex: 1;
      min-width: 120px;
      text-align: center;
      font-size: 13px;
    }

    .step-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px;
      font-size: 22px;
    }

    /* ----------- Text section ----------- */

    .text-columns {
      display: grid;
      /*grid-template-columns: 2.2fr 1fr;*/
      gap: 40px;
      margin-top: 24px;
    }

    .text-columns p {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
    }

    .text-box {
      padding: 16px;
      border-left: 4px solid var(--blue);
      background: #f9fbff;
      font-size: 13px;
      color: #444;
    }

    /* ----------- Footer ----------- */

 footer {
  background: #1f2125;
  padding: 30px 0 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-links i {
  font-size: 11px;
  margin-right: 10px;
  color: #bbb;
}

.footer-links a {
  color: #d9d9d9;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  color: #fff;
}

/* Contact text */
.footer-col p {
  margin: 5px 0;
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
}

/* Social icon circle */
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #323438;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 15px;
}

/* Cards Section */
.accepted-title {
  font-size: 14px;
  font-weight: 600;
  margin: 15px 0 10px;
}

.accepted-cards img {
  width: 60px;
  margin-right: 10px;
}

/* Bottom footer */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #2e3033;
  margin-top: 25px;
  padding-top: 10px;
}
.accepted-cards {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
}













    /* ----------- Responsive ----------- */

    @media (max-width: 992px) {
      .intro-grid {
        grid-template-columns: 1fr;
      }

      .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

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

    @media (max-width: 768px) {
     
      
      .nav-open .nav-auth {
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 12px 0 16px;
        margin-top: 10px;
        border-top: 1px solid #eee;
      }

      

      .hero {
        padding: 60px 0 40px;
      }

      .hero h1 {
        font-size: 26px;
      }

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

      .support-icons {
        justify-content: center;
      }

      .how-steps {
        justify-content: flex-start;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .section {
        padding: 40px 0;
      }

      .section-title {
        font-size: 22px;
		color: var(--blue-dark);
      }
    }
	
	
	/* Logo Slider Wrapper */
.logo-slider-section {
  padding: 30px 0;
  background: #fff;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
}

/* Track */
.logo-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll 20s linear infinite;
}

/* Logo images */
.logo-track img {
  height: 60px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Infinite scroll animation */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    height: 45px;
  }
}

.features-section {
  background: #1f4c88;
  padding: 35px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.features-container {
  max-width: 1140px;
  margin: auto;
}

.features-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  font-size: 14px;
  line-height: 1.5;
}

.tick {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  padding-left: 10px;
}

/* Responsive: Stacks on mobile */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


.deal-type-section {
  padding: 50px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.deal-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.deal-title {
  font-size: 26px;
  font-weight: 700;
  color: #1f4c88;
  margin-bottom: 35px;
}

/* GRID LAYOUT */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.deal-card {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

/* OVERLAY */
.deal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 1;
  transition: background 0.3s ease;
}

/* TITLE */
.deal-overlay h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

/* READ MORE BTN */
.deal-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #1f4c88;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.deal-card:hover .deal-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.deal-card:hover .deal-btn {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .deal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .deal-grid {
    grid-template-columns: 1fr;
  }
}

.how-section {
  position: relative;
  background-image: url("img/how-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* simple CSS parallax effect */
  padding: 40px 15px;
  color: #ffffff;
}

/* Optional dark overlay to improve text readability */


/* Simple container */
.how-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Simple row + columns */
.how-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.center-text {
  text-align: center;
  margin-bottom: 30px;
}

.how-col-8 {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.how-col-12 {
  width: 100%;
  text-align: center;
}

/* Title styling */
.how-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Image styling */
.how-image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .how-section {
    padding: 60px 15px;
  }

  .how-title {
    font-size: 26px;
  }
}

/*---------- Popup Button ----------*/
.open-popup-btn {
  padding: 10px 22px;
  background: #ffffff;
    color: #1d4383;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
}

/*---------- Checkbox Control ----------*/
.popup-checkbox { display: none; }

/*---------- Overlay ----------*/
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/*---------- Modal ----------*/
.popup-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95%;
  max-width: 650px;
  background: #fff;
  border-radius: 8px;
  transform: translate(-50%, -40%) scale(0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
  overflow: hidden;
}

/* Show when checked */
.popup-checkbox:checked ~ .popup-overlay {
  opacity: 1;
  visibility: visible;
}
.popup-checkbox:checked ~ .popup-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/*---------- Header ----------*/
.popup-header {
  padding: 18px 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}
.popup-header h2 {
  font-size: 20px;
  font-weight: 700;
}
.popup-close {
  font-size: 28px;
  cursor: pointer;
}

/*---------- Body ----------*/
.popup-body {
  padding: 20px 25px;
}

/*---------- Form Layout ----------*/
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.form-group {
  flex: 1;
}
.form-group.full {
  width: 100%;
}

/* Labels */
label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}
label span { color: red; }

/* Inputs */
.form-control {
  width: 100%;
  border: 1px solid #dcdcdc;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}

/* Buttons */
.form-actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}
.btn-submit,
.btn-reset {
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  background: #1b4e8a;
  color: white;
}
.btn-reset {
  background: #0d3b72;
}

/*---------- Responsive ----------*/
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}
