/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: gilroy-semibold;
  color: #FFF;
  scroll-behavior: smooth;

}
:root {
  --navy: #0b2a57;
  --border: rgba(255,255,255,0.25);
  --text-light: #ffffff;
}

/* ================= UTILITIES ================= */
.container {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
/* Hide Powered by Google Translate text */

div#\:0\.targetLanguage {
    padding: 12px;
    border-radius: 5px;
}

img.goog-te-gadget-icon {
    display: none;
}
.VIpgJd-ZVi9od-ORHb img {
    border: none;
    display: none;
}
.goog-te-combo, .VIpgJd-ZVi9od-ORHb *, .VIpgJd-ZVi9od-SmfZ *, .VIpgJd-ZVi9od-xl07Ob *, .VIpgJd-ZVi9od-vH1Gmf *, .VIpgJd-ZVi9od-l9xktf * {
    font-family: arial;
    font-size: 10pt;
    display: none;
}
/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0b1d3a;
}
.lang-menu a {
    color: #e6e6e6;
}
a.active {
  color: white;
}
.nav-bar {
  height: 100px;
  display: flex;
  align-items: center;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo a {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.nav-search input {
  width: 382px;
  padding: 8px 30px;
  border-radius: 4px;
  border: none;
  height: 48px;
}
span.search-icon {
  margin-right: -30px;
  position: relative;
  z-index: 1;
  top: 4px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
display:none !important;
}

.nav-menu-btn {
  background: transparent;
  border: 1px solid #ff8c1a;
  color: #ff8c1a;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  width: 48px;
  height: 48px;
}
.nav-actions .btn {
  background-color: #ff8c1a;
  color: #FFF;
  height: 48px;
}
.legal-content {
    color: black;
}
.privacy-title h1{
    color: black !important;
}
/* ================= BUTTONS ================= */
.btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #ff8c1a;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #e67610;
}

.btn-outline {
  border: 1px solid #ff8c1a;
  color: #ff8c1a;
}

.btn-outline:hover {
  background-color: #ff8c1a;
  color: #ffffff;
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  background: url(../images/image13.png) center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(11 29 58 / 25%) 40%, rgba(11, 29, 58, 0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 1220px;
    margin: auto;
}
.hero-text {
  margin-top: 85px;
}
.hero-title {
  font-family: gilroy-semibold;
  font-size: 64px;
  margin-bottom: 20px;
      max-width: 75%;
}

.hero-description {
  font-family: gilroy-semibold;
  font-size: 32px;
  margin-bottom: 32px;
  color: #ffffff;
  width: 68%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* ================= FEATURES SECTION ================= */
.features-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  .container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ---------- Header ---------- */
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-family: gilroy-bold;
    font-size: 52px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    text-align: center;
  }
  
  /* ---------- Layout ---------- */
  .features-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* ---------- Feature List ---------- */
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  /* ---------- Feature Card ---------- */
  .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  }
  
  /* ---------- Icon ---------- */
  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  /* Icon colors */
 
  
  /* ---------- Text ---------- */
  .feature-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .feature-title {
    font-family: gilroy-bold;
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
  }
  
  .feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
  }
  
  /* ---------- Image Section ---------- */
  .features-image {
    position: relative;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.35);
    height: 100%;
}
  
  .features-image-1 {
    display: block;
    border-radius: 12px;
    position: absolute;
    left: 20%;
    bottom: 0px;
    width: 65%;
  }
  
  /* Optional stacked second image (like the mockup) */
  .features-image-2 {
    display: block;
    border-radius: 12px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 55%;
  }
  /* Base */
.rc-how-it-works {
    padding: 90px 0;
    background: #ffffff;
    
  }
  
  .rc-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Title */
  .rc-title {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 70px;
  }
  
  /* Grid */
  .rc-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 120px;
    row-gap: 70px;
  }
  
  /* Step */
  .rc-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  /* Icon */
  .rc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  /* Icon Colors */
 
  
  /* Content */
  .rc-step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
    font-family: Plus Jakarta Sans;
  }
 
  .rc-step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #52525B;
    max-width: 330px;
    width: 330px;
    opacity: 0.8;
      font-family: 'Gilroy-regular', sans-serif;
}
 
  
  /* CTA */
  .rc-cta {
    text-align: center;
    margin-top: 80px;
  }
  
  .rc-btn {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
  }
  
  .rc-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
  }
  .rc-info-wrapper {
    padding: 0px 20px;
    background: #ffffff;
    
  }
  
  .rc-info-box {
    max-width: 1220px;
    margin: 0 auto;
    padding: 40px 60px;
    background: linear-gradient(135deg, #0b2a55, #0a2550);
    border-radius: 22px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  /* Subtle wave lines */
  .rc-info-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 14px
    );
    pointer-events: none;
  }
  
  /* Title */
  .rc-info-title {
    text-align: center;
    font-family: gilroy-bold;
    color:#FFF;
    margin-bottom: 16px;
  }
  
  /* Description */
  .rc-info-description {
    max-width: 738px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 24px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Features */
  .rc-info-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    text-align: center;
  }
  
  /* Feature Item */
  .rc-info-item h3 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 24px;
    font-family: gilroy-bold;
  }
  
  .rc-info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Gilroy-regular', sans-serif;
  }
  
  /* Icon */
  .rc-info-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rc-info-item {
      text-align: left;
  }
  /* Footer */
  .rc-info-footer {
    margin: 80px auto 0px;
    text-align: center;
    font-size: 24px;
    width: 70%;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Gilroy-regular', sans-serif;
}

  .rc-standards {
    padding: 120px 20px;
    background: #ffffff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  .rc-standards-container {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  /* Single Image */
  .rc-standards-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 18px;
  }
  
  /* Content */
  .rc-standards-content h2 {
    font-size: 40px;
    color: #111827;
    margin-bottom: 20px;
    font-family: gilroy-bold;
  }
  
  .rc-standards-content p {
    font-size: 32px;
    color: #374151;
    margin-bottom: 32px;
    font-family: 'Gilroy-regular', sans-serif;
    font-weight: 400;
  }
  
  /* Button */
  .rc-standards-btn {
    display: inline-block;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #f97316;
    border: 2px solid #f97316;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
     font-family: 'Gilroy-SemiBold', sans-serif;
    //display: none;
  }
  
  .rc-standards-btn:hover {
    background: #f97316;
    color: #ffffff;
    transform: translateY(-2px);
  }
  .rc-trust {
    padding: 100px 20px;
    background: #ffffff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  .rc-trust-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Title */
  .rc-trust-title {
    text-align: center;
    font-weight: 700;
    color: #111827;
    margin-bottom: 80px;
  }
  
  /* Grid */
  .rc-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 90px;
  }
  
  /* Item */
  .rc-trust-item {
    text-align: left;
  }
  
  .rc-trust-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
  }
  
  /* Text */
  .rc-trust-item h3 {
    font-size: 24px;
    font-family: gilroy-bold;
    color: #111827;
    margin-bottom: 8px;
  }
  
  .rc-trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
     font-family: 'Gilroy-medium', sans-serif;
     //width: 296px;
  }
  .rc-testimonials {
      padding: 80px 20px;
      background: #fff;
      overflow: hidden;
      text-align: center;
      position: relative;
     // display:none;
  }
  
  .rc-testimonials-container {
    max-width: 1220px;
    margin: auto;
    overflow: hidden;
  }
  .testimonial-gradient {
    width: 762px;
    height: 315px;
    background: linear-gradient(90deg, #44FF9A -0.55%, #44B0FF 22.86%, #8B44FF 48.36%, #FF6644 73.33%, #EBFF70 99.34%);
    opacity: 0.3;
    position: absolute;
    top: 215px;
    border-radius: 12px;
    margin: auto;
    left: 20%;
    right: 20%;
  }
  .rc-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  .rc-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 115px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    
  }
  
  .badge-img {
    vertical-align: middle;
    margin: 0 10px;
  }
  
  /* SLIDER */
  .rc-slider {
      position: relative;
      top: -30px !important;
  }
  
  .rc-slider::before {
    /* content: "";
    position: absolute;
    inset: 40px 0;
    border-radius: 16px;
    background: linear-gradient(
      90deg,
      #ccffe7,
      #d9d6ff,
      #ffd6cc,
      #fff6cc
    ); */
    z-index: 0;
  }
  
  .rc-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: infiniteSlide 25s linear infinite;
    position: relative;
    z-index: 1;
  }
  
  .rc-slider:hover .rc-slider-track {
    animation-play-state: paused;
  }
  
  /* CARD */
  .rc-card {
    width: 360px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    text-align: left;
  }
  
  .rc-stars {
    color: #ff9f0a;
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .rc-text {
    font-size: 18px;
    margin-bottom: 25px;
    color: #272727;
    font-family: Plus Jakarta Sans;
}
  
  .rc-user {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #272727;
  }
  
  .rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ccc,#999);
  }
  
  .rc-user span {
    font-size: 13px;
    color: #777;
  }
  
  /* CTA */
  .rc-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #f97316;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 35px;
    font-family: 'Gilroy-SemiBold', sans-serif;
   // display: none;
   border: 0px !important;
}
  .why-ridecheck {
    padding: 0px 20px;
    background: #ffffff;
  }
  
  .why-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .why-title {
    text-align: center;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 80px;
    color: #222;
  }
  
  /* GRID */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .why-grid-2 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 15px;
  }
  /* CARD */
  .why-card {
    background: #F2F2F7;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 30px 50px;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  
  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
  }
  
  .why-icon {
    height: 42px;
    margin-bottom: 18px;
  }
  
  .why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    font-family: 'Gilroy-SemiBold', sans-serif;
  }
  
  .why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: 'Gilroy-medium', sans-serif;
  }
  
  
/* ================== SECTION ================== */
.faq-section {
  max-width: 1220px;
  margin: 80px auto;
  padding: 0 16px;
}
.faq-left {
    width: 503px;
}
.faq-container {
  background: var(--navy);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
    max-width: 1200px;
    margin: auto;
}
/* ================== LEFT ================== */
.faq-left h2 {
    color: var(--text-light);
    font-size: 64px;
    line-height: 1.2;
    font-family: gilroy-bold;
}

/* ================== ACCORDION ================== */
.faq-item {
  border-bottom: 1px solid var(--border);
 
}

.faq-item:last-child {
  border-bottom: none;
}

/* Hide checkbox */
.faq-item input {
  display: none;
}

/* Label row */
.faq-question {
  color: var(--text-light);
  font-family: 'gilroy-medium', sans-serif;
  font-size: 32px;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 104px;
}

/* Plus / Minus */
.faq-icon {
  font-size: 28px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.6;
}

/* Expanded state */
.faq-item input:checked ~ .faq-answer {
  max-height: 200px;
  padding-bottom: 22px;
}

.faq-item input:checked ~ label .faq-icon {
  transform: rotate(45deg); /* turns + into x/minus */
}
.future-section {
    position: relative;
    width: 100%;
    height: 730px; /* EXACT FIGMA HEIGHT */
    background: url("../images/futureback.jpeg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;

}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-note {
    margin-top: 30px;
  //  text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= CONTENT ================= */
.future-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px; /* Figma-style spacing */
    position: relative;
    z-index: 2;
}

.future-content {
  width: 56%;
}
.future-content {
    max-width: 520px;
    color: #ffffff;
}

.future-content h2 {
  font-size: 40px;
  font-family: gilroy-bold;
  margin-bottom: 16px;
}
.footer-bottom p {
  font-family: 'Public Sans';
  font-size: 16px;
}
.future-content p {
  font-family: 'gilroy-semibold', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.future-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11, 29, 58, 0.85) 0%,
        rgba(11, 29, 58, 0.65) 35%,
        rgba(11, 29, 58, 0.25) 60%,
        rgba(11, 29, 58, 0.00) 100%
    );
    z-index: 1;
}

/* ================= BUTTON ================= */
.future-btn {
  display: inline-block;
  background: #ff7a18;
  color: #ffffff;
  font-size: 16px;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'gilroy-semibold', sans-serif;
 // display:none;
}

.future-btn:hover {
  background: #e96c10;
  transform: translateY(-1px);
}
/* ===== Footer Base ===== */
.footer {
  background: #ffffff;
  padding: 60px 0px 30px;
  font-family: Arial, sans-serif;
  color: #555;
  max-width: 1220px;
  margin: auto;
}

.footer-container {
      display: flex;
    /* justify-content: space-between; */
    gap: 80px;
    align-items: start;
    width: 100%;
    /* width: 1092px; */
    justify-content: center;
    margin-top: 65px;
}


/* ===== Logo ===== */
.footer-logo img {
  max-width: 180px;
}

/* ===== Center ===== */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  justify-content: center;
}

.footer-nav a {
  color: #444;
  font-family: Public Sans;
  text-decoration: none;
  font-size: 14px;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.contact-item img {
  width: 18px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 556px;
  text-align: center;
  font-family: 'gilroy-regular', sans-serif;
}

/* ===== Contact ===== */
.footer-contact h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-item a {
  color: #555;
  text-decoration: none;
}
/* ===== Footer Center Alignment ===== */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Space between menu & description */
.footer-desc {
  margin-top: 30px;
  max-width: 600px;
}

/* Navbar reset */
.navbar {
  position: relative;
}

/* Subnav wrapper */
.subnav {
  position: relative;
  display: inline-block;
}

/* Button */
.subnavbtn {
  font-size: 16px;
    border: 1px solid #f97316;
    outline: none;
    padding: 12px 20px;
    background-color: white;
    color: #f97316;
    cursor: pointer;
    border-radius: 4px;
}

/* Hover button */
.subnav:hover .subnavbtn {
  background-color: #ff8c1a;
  color: white;
}

/* Submenu */
.subnav-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  //background-color: #f97316;
  padding: 12px 20px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 999;
}

/* Show submenu on hover */
.subnav:hover .subnav-content {
  display: flex;
  gap: 25px;
}

/* Submenu links */
.subnav-content a {
  color: black;
  text-decoration: none;
  font-size: 14px;
}

.subnav-content a:hover {
  text-decoration: underline;
}

/* ===== Bottom ===== */
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-social a {
  margin-left: 14px;
  text-decoration: none;
  font-weight: bold;
  color: #444;
}

/* ===== Back To Top ===== */
.footer-contact {
    position: relative;
    margin-top: 47px;
}
.footer-backtotop {
    right: 0px;
    top: -20px;
    flex-wrap: wrap;
    float: right;
    clear: both;
    position: relative;
}
.back-to-top {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
}
.slider-wrapper {
    max-width: 1200px;
    margin: auto;
  }
  
  .bxslider {
    padding: 0;
  }

  .slider-wrapper .bx-wrapper {
    background-color: transparent;
    border: none;
    box-shadow: none;
}
  /* Remove default list style */
  .bxslider li {
    list-style: none;
  }
  /* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 25px;
  width: 400px;
  border-radius: 8px;
  position: relative;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 10px;

  padding: 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans';
}

.modal-content button {
  width: 100%;
  padding: 10px;
  background: #0a2d63;
  color: #fff;
  border: none;
  cursor: pointer;
}

.close {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color:black;
}
h2.modalbook-heading {
    color: black;
    text-align: center;
    margin-bottom: 20px;
}

/* ANIMATION */
@keyframes popup {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
