body {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  background-color: #f9f9f9;
  margin: 0;
}

.hero { background: url(../images/hero.webp);}

.hero-247 { background: #acff1c2c; padding:5px 15px; display: inline-flex; color: #adff1c; border-radius: 100px; align-items: center; gap: 10px;font-weight: 700;}

.banner-h1 { font-weight: 400; color: #fff; font-size: 3rem; margin-top: 15px;}
.lead { font-size: 1.2rem; color: #ffffff96; margin-top: 10px; margin-bottom: 30px;}

.features-list { padding:0px;}
.features-list li {list-style: none; color: #fff; padding:10px; font-size:1.1rem; font-weight:600; display: flex; gap:10px;}

.banner-call { background: #adff1c; color: #000; padding:15px 30px; font-weight: 700; text-decoration: none; display: inline-flex; border-radius: 100px;}

.seo-section {
      padding: 60px 0;
    }
    .seo-section h2 {
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 20px;
    }
    .seo-section h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .seo-section p {
      font-size: 16px;
      color: #555;
    }
    .img-rounded {
      border-radius: 18px;
      overflow: hidden;
      width: 220px;
      height: 280px;
      object-fit: cover;
    }
    .progress {
      height: 10px;
      border-radius: 50px;
      background: #124143;
    }
    .progress-bar {
      background-color: #000;
      font-size: 12px;
      font-weight: 600;
      text-align: right;
      padding-right: 10px;
    }
    .btn-learn {
      background: #a6ff00;
      color: #000;
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 6px;
      margin-top: 20px;
      display: inline-block;
      text-decoration: none;
    }
    .btn-learn:hover {
      background: #8bd400;
      color: #000;
    }
    .seo-images {
      display: flex;
      gap: 20px;
      justify-content: center;
    }



.su-list { display: flex; align-items: center; gap:10px;font-size: 1.1rem; font-weight: 500; }
.su-list svg { stroke: #adff1c; background: #124143; border-radius: 100px; padding:2px;}



 .services-section {
      
      margin: 0 auto;
    }


    /* Card base */
    .service-card {
      background: var(--card-bg);
      border-radius: var(--card-radius);
      padding: 28px;
      position: relative;
      overflow: hidden;
      min-height: 200px;
      border: 1px solid rgba(16,20,24,0.04);
      transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s ease, border-color .28s ease;
    }

    /* large faint number in the corner (uses data-number attribute) */
    .service-card::after{
      content: attr(data-number);
      position: absolute;
      right: 22px;
      top: 20px;
      font-size: 72px;
      font-weight: 800;
      color: #12414314;
      pointer-events: none;
      transition: transform .35s ease, opacity .35s ease;
      transform-origin: center;
    }

    /* icon circle */
    .icon-circle{
      width:52px;
      height:52px;
      border-radius:50%;
      background:#124143;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-bottom:14px;
      transition: transform .35s cubic-bezier(.2,.9,.3,1), background .28s ease, box-shadow .28s ease;
      flex-shrink:0;
    }
    .icon-circle svg { width:24px; height:24px; fill:var(--accent-pink); }

    /* title + desc */
    .service-title {
      font-size:18px;
      font-weight:700;
      margin-bottom:10px;
      color:#111;
    }
    .service-desc {
      font-size:14px;
      color: var(--muted);
      line-height:1.5;
      margin-bottom:18px;
      max-width: 520px;
    }

    .learn-link{
      font-weight:700;
      font-size:14px;
      color:#111;
      text-decoration:none;
    }
    .learn-link .arrow{ margin-left:8px; opacity:0.85; }

    /* active (pink) card style like the screenshot */
    .service-card.active{
      background: var(--accent-pink);
      color: #fff;
      border-color: rgba(255,15,87,0.12);
    }
    .service-card.active .icon-circle { background: rgba(255,255,255,0.14); box-shadow: none; }
    .service-card.active .icon-circle svg { fill: #fff; }
    .service-card.active .service-desc { color: rgba(255,255,255,0.92); }
    .service-card.active .service-title { color:#fff; }
    .service-card.active .learn-link { color:#fff; }

    /* Hover animation */
    .service-card:hover{
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(16,20,24,0.08);
      border-color: rgba(16,20,24,0.06);
    }
    .service-card:hover::after{
      transform: translateY(-6px) scale(1.03);
      opacity: 0.22;
    }
    .service-card:hover .icon-circle{
      transform: translateY(-6px) scale(1.06);
      box-shadow: 0 8px 22px rgba(16,20,24,0.06);
    }

    /* subtle icon pulse for active card */
    .service-card.active .icon-circle{
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0%{ transform: scale(1); opacity: 1; }
      50%{ transform: scale(1.04); opacity: 0.92; }
      100%{ transform: scale(1); opacity: 1; }
    }

    /* make number less visible on small screens */
    @media (max-width: 767.98px){
      .service-card::after{ font-size:46px; right:18px; top:12px; }
      .service-desc{ max-width:100%; }
    }

    /* slightly different layout for emphasized (first) card to match screenshot — larger height */
    .service-card.tall { min-height: 230px; }

    /* keyboard focus */
    .service-card:focus-within, .service-card a:focus {
      outline: 3px solid rgba(0,0,0,0.06);
      outline-offset: 2px;
    }



.cta { background: #adff1c; padding:2rem; border-radius: 24px;}
.contact-box { background: #1b3400; height: 100%; display: flex; border-radius: 16px; padding:20px;flex-direction: column;justify-content: center; }
.inner-contact {padding:15px; border:1px solid #ffffff1e; margin:5px 0px; border-radius: 12px; }
.inner-contact h5 { color: #adff1c; background: #acff1c1b; display: inline-flex; font-size: 14px; padding:5px 15px; border-radius: 100px;}
.inner-contact p {color: #ffffffb5; margin-bottom: 0; padding-left: 15px; }


/* Image */
.main-img {
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

/* Floating social icons */
.icon {
  position: absolute;
  font-size: 1.6rem;
 
  color: #333;
  padding: 0.6rem;
  border-radius: 50%;

  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.icon-1 { top: 5%;  left: 60%; }
.icon-2 { top: 25%; left: 85%; }
.icon-3 { top: 55%; left: 95%; }
.icon-4 { top: 80%; left: 70%; }
.icon-5 { top: 90%; left: 40%; }
.icon-6 { top: 60%; left: 10%; }
.icon-7 { top: 20%; left: 5%; }



footer { background: #000; color: #fff;}
footer a { text-decoration: none; color: #6cb800;}

.disc-box { background: #12414312; padding:2rem; border-radius: 24px;}

.disc-box h6 { background: #118d90; display: inline-flex; align-items: center; gap:10px; padding:5px 10px; border-radius: 100px; color: #fff; }

.disc-box ul li { list-style: none; padding:5px 0px; position: relative;}
.disc-box ul li::before { content: ''; width: 6px; height:6px; background: #118d90; position: absolute; border-radius: 100px; left:-16px; top:15px;}
.hero-padd { padding-top: 7rem;}






@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Text tweaks */
.badge {
  font-size: 0.9rem;
}





.reslt-header { background: #124143;}















.arc-txt { display: flex; gap: 10px; align-items: center; text-transform: uppercase; justify-content: end;}
.arc-txt p { color: #fff; margin-bottom: 0; font-size: 1rem;}
.air-support {background: #4D0A2A;
background: linear-gradient(45deg, rgba(77, 10, 42, 1) 0%, rgba(157, 29, 90, 1) 100%); display: inline-block;color: #fff; text-transform: uppercase; padding:10px 20px; border-radius: 100px; font-size: .875rem;}





.travellers-box { background: #fff; min-width: 300px; padding: 15px 0px; border-radius: 12px; position: absolute; top: 65px; box-shadow: 0px 0px 5px #0000002b; z-index: 9999999999999; }
.qty { display: flex ; margin-bottom: 15px; padding: 0px 15px; align-items: center; justify-content: space-between; gap: 15px; }
.qty label { margin: 0px; padding: 0px 10px 0px 0px; display: inline-block; float: left; color: #000; margin-top: 5px; font-weight: 600; font-size: 13px; }
.pl-mi-box { display: inline-flex ; align-items: center; border: 1px solid #e6e7e8; border-radius: 4px; overflow: hidden; padding: 2px; }
.plus, .minus { background-color: #fff; border: none; padding: 8px; font-size: 18px; cursor: pointer; line-height: 1; color: #000; border-radius: 4px; }
.plus:hover, .minus:hover { background: #e6e7e8; color: #000; }
.count { width: 36px; text-align: center; padding: 7px; border: 1px solid #fff; font-size: 14px; height: 36px; }

.search-box { margin-top: 30px; background: #12414315;  padding:20px 15px; border-radius: 12px;}
.search-boxes { width: 100%; margin-top: 10px;}
.search-boxes label { display: block; padding-left: 10px; font-size: 14px; font-weight: 600;}
.search-boxes input { padding: 15px 20px;
    border: 1px solid #dddfe0;
    background: #fff;
    border-radius: 8px;
    width: 100%; }
.search-btn {padding: 16px 20px; border:0px; background: #adff1c;border-radius: 8px; color: #124143; width: 100%; font-weight: 600; }
.search-btn:hover { background: #124143; color: #adff1c;}
.trip-select { border:1px solid #d8d8d8; padding:10px; border-radius: 8px; cursor: pointer; height: 100%;}
.travellers { display: flex;}
.travellers .input { border:1px solid #d8d8d8; padding:10px; border-radius: 8px; width: 100%; padding-right:30px; position: relative; cursor: pointer; background: #fff; -webkit-user-select: none; /* prevent text selection on mobile */
  user-select: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);}
.travellers .input::after {
content: "";
  position: absolute; /* or relative depending on context */
  right: 5px; /* adjust */
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  pointer-events: none;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: 1em 1em;
}



.agent-box {display: flex; gap: 10px; align-items: center;}
.agent-box small {position: relative; padding-left: 15px; display: inline-flex; align-items: center; color: #fff;}
.agent-box small::before { content: ''; width:8px; height: 8px; background: #05a400; border-radius: 100px; position: absolute; left: 0;}
.agent-box a{ background: #adff1c; color: #124143; padding:10px 20px; border-radius: 100px; text-decoration: none; font-weight: 700;}


.radio-group {
      display: flex;
      gap: 1rem;
    }

    .radio-option {
      position: relative;
      display: inline-block;
      flex: auto;
    }

    .radio-option input[type="radio"] {
      display: none; /* hide default */
    }

    .radio-option label {
      display: inline-block;
      padding: 10px 20px;
      border: 2px solid #ccc;
      border-radius: 8px;
      cursor: pointer;
      user-select: none;
      transition: all 0.2s ease-in-out;
      width: 100%;
    }
    .radio-option label small { display: block;}
    .radio-option label span {}


    .radio-option input[type="radio"]:checked + label {
      border-color: #124143;
      background: #124143;
      color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .radio-option input[type="radio"]:focus + label {
      outline: 2px dashed #124143;
      outline-offset: 4px;
    }
.soryy-box { background: #fff; margin-top: 30px; padding: 15px; border-radius: 20px; }
.t-time { padding:3px!important; text-align: center;}



.btn_done { background: #00000012;
    border: 0px;
    padding: 5px 15px;
    border-radius: 8px;transition: all ease-out .2s; }
.btn_done:hover { background: #333; transition: all ease-in .2s; color: #fff}










.py-10 { padding-top: 10rem; padding-bottom: 10rem;}









.cls { display: none;}








@media (max-width: 767.98px) {

  .filter { position: fixed; bottom: 0; background: #fff; left:0;right:0; padding:15px; box-shadow: 0px 0px 20px #3333333b; border-radius: 15px 15px 0px 0px; z-index:99999;}
  .fltr { width: 100%; padding:10px 15px; border:0px; border:1px solid #e4e4e4; border-radius: 12px;}
  .modfy { width: 100%; padding:10px 15px; border:0px; border:1px solid #124143; border-radius: 12px; background: #124143; color: #fff;}
.search-btn { margin-top: 20px;}

.agent-box { display: block;}
.agent-box small { display: inline-flex; }
.agent-box a { display: block; margin-top: 10px;}

.filter { display: none;}
.cls { display: inline-block; color: #e05252; border:0px; background: #fff;}
.search-box-mob {position: fixed; top:0;right:0;background: #fff; left:0; bottom:0; z-index: 999; display: none;}
.search-boxes { margin-top:10px;}
.arc-txt { justify-content: center;}
.arc-txt img { max-width: 100px;}
.arc-txt p { font-size: .875rem;}
.py-10 { padding:5rem 0;}
.hero-padd {
    padding-top: 3rem;
}.banner-h1 {
    font-weight: 400;
    color: #fff;
    font-size: 2rem;
    margin-top: 15px;
}.features-list li{
  justify-content: center;
}
.travellers-box { position: fixed; bottom:0; top:auto; left:0;right:0;}


.trip-select { width: 100%;}

.img-rounded { width:50%; }

.search-box-mob {position: fixed; top:0;right:0;background: #fff; left:0; bottom:0; z-index: 999; display: none;         margin-top: 0;} 

.travellers .input, .trip-select { font-size: .875rem;}

.icon-1 { left: auto; right: 0; }

.travellers { flex: auto; }


}
