
.mobile-menu-toggle { position: absolute; left: -9999px; }

.mobile-menu-trigger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 46px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  z-index: 1201;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-trigger span{
  display:block;
  height:3px;
  border-radius:3px;
  background: #10C6FF;
  transition:transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1),
  transform-origin: center;
}

/* spacing between bars */
.mobile-menu-trigger span:nth-child(1){ width: 100%; }
.mobile-menu-trigger span:nth-child(2){ width: 70%; align-self: flex-end; }
.mobile-menu-trigger span:nth-child(3){ width: 100%; }

/* transform to X when checked */
.mobile-menu-toggle:checked + .mobile-menu-trigger span:nth-child(1){
  transform: translateY(11.5px) rotate(45deg);
  width: 100%;
}
.mobile-menu-toggle:checked + .mobile-menu-trigger span:nth-child(2){
  opacity: 0;
  transform: scaleX(0.2);
}
.mobile-menu-toggle:checked + .mobile-menu-trigger span:nth-child(3){
  transform: translateY(-11.5px) rotate(-45deg);
  width: 100%;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  pointer-events: none;
  z-index: 1200;
  transition:transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* ---------- MENU PANEL ---------- */
.mobile-menu {
  position: fixed;
  right: 14px;            
  top: 72px;              
  width: calc(100% - 28px);
  max-width: 420px;
  border-radius: 14px;
  z-index: 1202;
  transform-origin: top right;
  transform: translateY(-18px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition:transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
  background:#fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.04);
}

/* show menu when checked */
.mobile-menu-toggle:checked ~ .mobile-menu {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 18px 40px rgba(6,12,30,0.6);
}

/* overlay becomes visible and clickable when open */
.mobile-menu-toggle:checked ~ .mobile-menu-overlay {
  background: rgba(0,0,0,0.42);
  pointer-events: auto;
}

/* menu list */
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu a{
  display: block;
  padding: 12px 14px;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

/* active / hover */
.mobile-menu a.active,
.mobile-menu a:hover,
.mobile-menu a:focus{
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  transform: translateX(6px);
  color: var(--accent);
  outline: none;
}

/* small separators */
.mobile-menu li + li { margin-top: 2px; }

/* make sure large tap targets on mobile */
.mobile-menu a { min-height: 44px; display:flex; align-items:center; }
@media (min-width: 769px) {
  .mobile-menu-trigger,
  .mobile-menu,
  .mobile-menu-overlay,
  .mobile-menu-toggle { display: none; }
}


.mobile-menu-trigger:focus { outline: 2px solid rgba(255,255,255,0.12); border-radius:6px; }

.mobile-menu-toggle:checked ~ .mobile-menu a{
  transform: translateY(6px);
  opacity: 0;
  transition: transform 360ms var(--ease), opacity 360ms var(--ease);
}
.mobile-menu-toggle:checked ~ .mobile-menu a:nth-child(1){ transition-delay: 80ms; transform:none; opacity:1; }
.mobile-menu-toggle:checked ~ .mobile-menu a:nth-child(2){ transition-delay: 120ms; transform:none; opacity:1; }
.mobile-menu-toggle:checked ~ .mobile-menu a:nth-child(3){ transition-delay: 160ms; transform:none; opacity:1; }
.mobile-menu-toggle:checked ~ .mobile-menu a:nth-child(4){ transition-delay: 200ms; transform:none; opacity:1; }
.mobile-menu-toggle:checked ~ .mobile-menu a:nth-child(5){ transition-delay: 240ms; transform:none; opacity:1; }
.mobile-menu-toggle:checked ~ .mobile-menu a:nth-child(6){ transition-delay: 280ms; transform:none; opacity:1; }

.menu {
    display: flex;
    align-items: center;
    gap: 45px;
}

.menu a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.menu a:not(:last-child)::after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #0A84FF; 
    border-radius: 50%;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}




.right-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* search button style applied to link also */

.agent-btn {
    display: inline-block;
    padding: 12px 26px;
 background: linear-gradient(135deg, #0A84FF, #0057D9);
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 10px 24px rgba(19,203,166,0.22);
}

/* hover effect */

.agent-btn:hover {
    background: linear-gradient(135deg, #0A84FF, #10C6FF);

    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(19,203,166,0.28);
}



/* ===== HEADER FIXED ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: #ffffff;
    z-index: 1000;
}

/* ===== PAGE CONTENT DOWN ===== */
body {
    margin: 0;
    padding-top: 110px;
}

/* ===== LOGO ===== */
.logo {
    height: 90px;
    width: auto;
}

/* ===== MENU ===== */
.menu {
    display: flex;
    gap: 60px;
}

.menu a {
    text-decoration: none;
    color: #002A59;
    font-size: 20px;
}

.menu a.active {
    color: #0A84FF;
}

/* ===== SECTION ANCHOR FIX (MAIN SOLUTION) ===== */
section {
    scroll-margin-top: 120px;
}

/* ===== SMOOTH SCROLL (OPTIONAL) ===== */
html {
    scroll-behavior: smooth;
}

/* SHOW trigger on mobile only */
@media (max-width: 900px) {
    .menu { display: none !important; }
    .search-btn { display: none !important; }
    .logo { height: 55px !important; }
 
}


.custom-travel-hero{
  background:var(--bg);
  padding:75px 20px 80px;
  position:relative;
  overflow:visible;
}

/* dotted "world" behind everything */
.custom-travel-hero::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  z-index:0;
  opacity:var(--dot-opacity);
  background-image: radial-gradient(circle, rgba(0,0,0,.22) 1px, transparent 1px);
  background-size:11px 11px;
  transform: translateY(6%);
}

/* elementor overlay image (if present) - keep behind */
.custom-travel-hero .elementor-background-overlay{
  position:absolute; inset:0; z-index:0;
  background-image: none; /* keep none unless you add path; kept for compatibility */
  pointer-events:none;
}

/* container */
.hero-inner{
  max-width:1320px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 720px;
  gap:40px;
  align-items:center;
  position:relative;
  z-index:3; /* above dotted BG */
}
@media(max-width:1180px){
  .hero-inner{ grid-template-columns:1fr; padding:0 18px; }
}

/* LEFT text */
.small-label{ font-size:13px; color:#7b8588; letter-spacing:1px; margin:0 0 30px; }
.big-title{
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight:900; font-size:52px; line-height:1.2; margin:0; color:#0f1720;
}
.big-title .underline_text_effect{ position:relative; display:inline-block; padding-bottom:10px; }
.big-title .underline_text_effect::after{
  content:""; position:absolute; left:-6px; right:-6px; bottom:6px; height:14px; background:#ffd200; border-radius:2px; z-index:-1;
}
@media(max-width:1180px){
  .big-title{ font-size:44px; text-align:center; }
  .small-label{ text-align:center; }
}

/* ===== OVALS: SVG clip-path applied to wrapper ===== */
.hero-center{
  display:flex;
  gap:36px;
   align-items:flex-start;
  position:relative;
  z-index:2;
      margin-left: -40px;
}
/* FORGOT PASSWORD – LOGIN JAISE DESIGN */
.dvforgot {
    position: absolute;
    top: 0;
    left: 0;
    width: 92%;

    display: none;          /* JS control karega */
    z-index: 2;

    /* SAME AS LOGIN PILL */
    background: #ffffff;
    border-radius: 18px;
    padding: 10px 8px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);

    display: flex;
    align-items: center;
    gap: 16px;
}
button#Proceed{
        flex: 0 0 160px;
    min-width: 180px;
    margin-top: 0px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0A84FF, #0057D9);
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(19, 203, 166, 0.2);
    transition: transform .18s, box-shadow .18s;
    text-align: center;
}

#frgPass {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}


/* Bootstrap row/col ko horizontal force karo */
.dvforgot .row {
    margin: 0;
    width: auto;
    display: flex;
    align-items: center;
}

.dvforgot [class*="col-"] {
    padding: 0;
    width: auto;
    max-width: none;
    flex: none;
}



/* INPUT – login jaisa */
.dvforgot input[type="text"],
.dvforgot input[type="email"] {
    height: 40px;
    min-width: 260px;

    background: #eef4ff;
    border: 1px solid #dbe5ff;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 15px;
}

/* BUTTON – Sign In jaisa */
.dvforgot button,
.dvforgot input[type]()


/* responsive center alignment on small screens */
@media(max-width:1180px){
  .hero-center{ justify-content:center; margin-top:0px; }
}
/* Pill shape using border-radius */
.oval {
  width: 360px;
  height: 800px;
  overflow: hidden;
  border-radius: 999px;          /* full-pill */
  box-shadow: 0 28px 80px rgba(10,20,30,0.14);
  flex: 0 0 auto;
}

.oval.oval-right {
    margin-top:100px;
  width: 360px;
  height: 800px;
  transform: translateY(150px);
  box-shadow: 0 20px 60px rgba(10,20,30,0.12);
}

.oval img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 32%;
  -webkit-user-drag: none;
  user-select:none;
}

/* Responsive tweaks */
@media (max-width:1100px){
  .oval{ width:360px; height:600px; }
  .oval.oval-right{ width:300px; height:460px; transform:translateY(48px); }
}
@media (max-width:700px){
  .oval{ width:260px; height:420px; }
  .oval.oval-right{ width:210px; height:340px; transform:translateY(20px); }
}


/* subtle hover lift */
.custom-travel-hero:hover .oval img{ transform: translateY(-12px); transition: transform .45s cubic-bezier(.2,.8,.2,1); }

/* responsive adjustments */
@media (max-width:1100px){
  .oval{ width:360px; height:600px; }
  .oval.oval-right{ width:300px; height:460px; transform: translateY(48px); }
  .oval img{ object-position:center 36%; }
}
@media (max-width:700px){
  .hero-inner{ grid-template-columns: 1fr; }
  .oval{ width:260px; height:420px; }
  .oval.oval-right{ width:210px; height:400px; transform: translateY(20px); }
  .big-title{ font-size:32px; }
  .oval img{ object-position:center 42%; }
}

/* ===== Floating search pill ===== */
.hero-left {
    margin-bottom: 600px;
}
/* Wrapper (positioning same as search bar) */
/* ===== FINAL: Single-line login pill (override) ===== */

/* wrapper: center horizontally and responsive */
.adv9-hero-search-wrap {
  position: absolute;
  left: 550px;
  transform: translateX(-50%) !important;
  bottom: 420px;
  width: 88%;
  max-width: 1200px;
  z-index: 1000;
  padding: 0 12px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .adv9-hero-search-wrap {
    position: static;
    transform: none;
    margin-top: 20px;
    padding: 0 15px;
  }
}

/* pill container: single row layout (desktop) */
.adv9-login-pill {
  background: #ffffff;
  padding: 5px 5px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(10,20,30,11.06);
  border: 1px solid rgba(0,0,0,0.06);
  flex-wrap: nowrap;
  width: 92%;
  box-sizing: border-box;
}

/* If multiple definitions exist, force this layout */
.adv9-login-pill[style] { display:flex !important; }

/* Generic field wrapper used in partials (supporting various markup) */
.adv9-login-pill .form-group,
.adv9-login-pill .adv8-field,
.adv9-login-pill label.adv8-field,
.adv9-login-pill .field {
  position: relative;
  flex: 1 1 0;
  min-width: 190px;
  margin: 0; /* remove extra margins that break inline layout */
}
span.pforgot {
    margin-left: 97px;
}
/* Ensure span icons inside are absolutely positioned */
.adv9-login-pill .form-group span,
.adv9-login-pill .adv8-field span,
.adv9-login-pill label span {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #10C6FF;
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
}

/* Input selectors: support your classes and plain inputs */
.adv9-login-pill .form-control-login,
.adv9-login-pill .adv8-input,
.adv9-login-pill input[type="text"],
.adv9-login-pill input[type="email"],
.adv9-login-pill input[type="password"] {
  width: 100%;
  padding: 12px 14px 12px 44px; /* space for icon */
  border-radius: 12px;
  border: 1px solid #e8ecef;
  font-size: 15px;
  background: #f9fafb;
  color: #0f1720;
  box-sizing: border-box;
  transition: box-shadow .18s, border-color .18s, transform .18s;
  display: block;
}

/* remove inline-block/width issues from older rules */
.adv9-login-pill input { max-width: none !important; }

/* focus style (attractive) */
.adv9-login-pill .form-control-login:focus,
.adv9-login-pill .adv8-input:focus,
.adv9-login-pill input:focus {
  outline: none !important;
  border-color: #13cba6;
  box-shadow: 0 8px 26px rgba(19,203,166,0.12);
  transform: translateY(-1px);
}
/* vertical divider between fields inside login pill */
.adv9-login-pill .location-search .form-group {
    position: relative;
    padding-right: 20px; /* spacing before border */
    margin-left: 6px;  /* spacing after border */
    border-right: 1px solid #F1F1F1; /* the divider */
}


/* Button: fixed width on right */
.adv9-login-pill .button,
.adv9-login-pill .adv8-btn,
.adv9-login-pill button[type="submit"],
.adv9-login-pill button#adv8-LoginBtn {
  flex: 0 0 160px;
  min-width: 180px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
 background: linear-gradient(135deg, #0A84FF, #0057D9);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(19,203,166,0.2);
  transition: transform .18s, box-shadow .18s;
  text-align: center;
}

/* small desktop tweak: if viewport too narrow, reduce button size */
@media (min-width:901px) and (max-width:1100px) {
  .adv9-login-pill .button { flex: 0 0 140px; }
}

/* hover/active */
.adv9-login-pill .button:hover { transform: translateY(-3px); background: linear-gradient(135deg, #0A84FF, #10C6FF); }
.adv9-login-pill .button:active { transform: translateY(-1px); }

/* Divider between fields (optional thin line) */
.adv9-login-pill .adv9-divider,
.adv9-login-pill .divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(15,20,25,0.02), rgba(15,20,25,0.06));
  border-radius: 2px;
  flex: 0 0 1px;
}

/* Message and small links use full width below the pill on mobile */
.adv9-login-pill .adv8-msg,
.adv9-login-pill .labletxt,
.adv9-login-pill .info-contct { font-size: 13px; }

/* RESPONSIVE: collapse to vertical stack on small screens */
@media (max-width: 900px) {
  .adv9-login-pill {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }
  .adv9-login-pill .form-group,
  .adv9-login-pill .adv8-field,
  .adv9-login-pill label.adv8-field {
    flex: none;
    width: 100%;
  }
  .adv9-login-pill .button { width: 100%; flex: 0 0 auto; min-width: 0; }
  .adv9-login-pill .adv9-divider,
  .adv9-login-pill .divider { display: none; }
}

/* ensure highest precedence to override older conflicting rules */
.adv9-login-pill .form-control-login,
.adv9-login-pill input { -webkit-appearance: none; appearance: none; }
.location-search {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.search-pill{
  display:flex; align-items:center; gap:18px; padding:40px; background:#fff; border-radius:14px;
  box-shadow: 0 24px 60px rgba(12,20,30,0.09); border:1px solid rgba(0,0,0,0.04);
}
@media(max-width:900px){ .search-pill{ flex-direction:column; align-items:stretch; } }

.field{ display:flex; align-items:center; gap:12px; flex:1; min-width:0; position:relative; padding-left:48px; }
.field i{ position:absolute; left:-11px; top:50%; transform:translateY(-50%); color:#00b8d4; background:#e6fbff; width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; }
.field .label{ font-size:13px; font-weight:700; color:#1e2b2b; margin-bottom:6px; }
.field input, .field select{ border:none; background:transparent; font-size:14px; color:#6b7376; padding:0; margin:0; width:100%; }

.divider{ width:1px; height:48px; background:linear-gradient(#eee,#f6f6f6); margin:0 6px; }

.btn-wrap{ flex:0 0 180px; }
.search-pill button{
  width:100%; padding:12px 26px; border-radius:10px; border:none; background:var(--accent); color:#fff; font-weight:800; cursor:pointer;
  box-shadow:0 10px 26px rgba(17,183,159,0.16);
}
.custom-travel-hero {
    position: relative;
    overflow: hidden;
}

/* Background Overlay FIX */
.custom-travel-hero .elementor-background-overlay {
    background-image: url('../images/bg-01.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;

    position: absolute;
    inset: 0;
    z-index: 0 !important; /* 🔥 puts background behind content */
}

/* Bring your content ABOVE overlay */
.custom-travel-hero .hero-inner {
    position: relative;
    z-index: 5;
}

@media(max-width:600px){ .btn-wrap{ flex:none; } .search-pill button{ width:100% } }

/* ---------- basic reset for this section */
/* Parent must be relative */
.packages-hero {
    position: relative;
    overflow: visible;
    background: var(--bg);
    padding: 0px 0px 40px 0px;
}

/* Background overlay inside the section */
.packages-hero .elementor-background-overlay {
      background-image: url(../images/bg-01.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    position: absolute;
    inset: 0;
    z-index: 0 !important;
}

/* Bring your real content above the background */
.packages-hero .container {
    position: relative;
    z-index: 5;  
               /* show clearly above image */
}

.packages-hero .container { max-width:1200px; margin:0 auto; padding:0px 0px; position:relative;     width: 100%;}

/* dotted world background (right) */
.packages-hero .hero-row { display:flex; gap:40px; align-items:flex-start; }
.packages-hero .hero-card-left { flex:1 1 50%; max-width:640px; z-index:2; }
.packages-hero .hero-card-right {
  flex:0 0 420px;
  height:300px;
  background-image: radial-gradient(circle, rgba(0,0,0,0.14) 1px, transparent 1px);
  background-size:11px 11px;
  opacity:0.12;
  align-self:flex-start;
  border-radius:8px;
  margin-left:auto;
  margin-top:20px;
}

/* left text */
.eyebrow { color:#17b79e; font-weight:700; margin:0 0 8px; font-size:14px; }
.hero-title { font-size:40px; line-height:1.1; margin:0 0 14px; font-weight:800; }
.hero-desc { color:#6b7275; max-width:52ch; margin:0 0 18px; }
.btn-primary { display:inline-block; background:#0A84FF; color:#fff; padding:7px 7px; border-radius:6px; text-decoration:none; font-weight:700; }

/* features row (small pills) */
.features-row { display: flex;
    gap: 26px;
    margin-top: 28px; }
.feature {     display: flex;
    align-items: center;
    gap: 12px;
    width: calc(67% - 8px);
    min-width: 380px;
    background: #fff;
    padding: 6px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(8, 16, 20, 0.06);}
.feature-icon { width:56px; height:56px; display:flex; align-items:center; justify-content:center; border-radius:12px; background:#ffd400; color:#fff; }
.feature-text strong { font-size:15px; color:#0f1720; }
/* final bounce animation */
@keyframes iconBounceFinal {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* apply animation only on stop */
.feature.animate .feature-icon {
    animation: iconBounceFinal 0.8s ease-out;
}

/* cards grid */
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:15px; align-items:start; }
@media (max-width:1100px){ .cards-grid { grid-template-columns:repeat(2,1fr); } .packages-hero .hero-right { display:none; } }
@media (max-width:700px){ .cards-grid { grid-template-columns:1fr; } }

/* card */
.card { height:550px;   background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 18px 50px rgba(8,16,20,0.06); display:flex; flex-direction:column; }
.card-hero { position:relative; width:100%; height:220px; overflow:hidden; }
.card-hero img { width:100%; height:100%; object-fit:cover; display:block; }

.badge { position:absolute; top:16px; right:16px; padding:6px 12px; border-radius:14px; color:#fff; font-weight:700; font-size:12px; background:#14b9d5; }
.card-body { padding:18px 20px 22px; display:flex; flex-direction:column; gap:12px; }
.card-top { display:flex; justify-content:space-between; align-items:center; }
.chip { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; background:#fff; border-radius:10px; box-shadow:0 6px 18px rgba(8,16,20,0.04); font-weight:700; color:#444; font-size:13px; }
.card-title { margin:0; font-size:20px; font-weight:800; }
.card-location { color:#6b7275; margin:0; font-weight:600; font-size:13px; }
.card-desc { color:#6b7275; margin:8px 0 0; font-size:14px; line-height:1.45;text-align:justify }

/* footer - button + price */
.card-footer { display:flex; align-items:center; justify-content:space-between; margin-top:12px; }
.btn-outline { background:#fff; border:1px solid #e9eef0; padding:10px 14px; border-radius:8px; text-decoration:none; color:#0f1720; font-weight:700; }
.price small{ display:block; color:#6b7275; font-size:12px; }
.price strong{ font-size:20px; display:block; margin-top:4px; color:#0f1720; }
.price .old{ text-decoration:line-through; color:#9aa3a6; font-size:12px; margin-left:8px; }

/* utility: small icon button */
.icon-btn { background:transparent; border:none; color:inherit; padding:6px; border-radius:6px; cursor:pointer; }

/* small visual tweaks */
.card-hero .badge.sale { background:#ff7fbf; }
/* Feature Icon Base */
.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd400;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* SVG base style */
.feature-icon svg {
  width: 28px;
  height: 28px;
  transition: transform .45s ease-in-out;
  transform-origin: center;
}

/* 🔥 HOVER: circular movement inside circle */
.feature-icon:hover svg {
  animation: circle-move 1s infinite ease-in-out;
}

/* 🔄 circular motion keyframes */
@keyframes circle-move {
  0%   { transform: translate(0px, 0px) rotate(0deg); }
  25%  { transform: translate(3px, -3px) rotate(10deg); }
  50%  { transform: translate(0px, -5px) rotate(0deg); }
  75%  { transform: translate(-3px, -3px) rotate(-10deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}


.feature-icon:active svg {
  animation: icon-bounce 0.35s ease-out;
}

@keyframes icon-bounce {
  0%   { transform: scale(1) }
  40%  { transform: scale(1.25) }
  70%  { transform: scale(0.9) }
  100% { transform: scale(1) }
}

/* Optional: lift on hover */
.feature-icon:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

/* Background */
.adv-hero-bg {
  /*background-image: url(../images/bag.jfif);*/
  background-size: cover;
  background-position: center center;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color:#fff;
  font-family: "Inter", Arial, sans-serif;
}

.adv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 23, 23, .65) 45%, rgb(10 10 10 / 95%));
}

/* Container */
.adv-hero-container {
  width: 90%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 50px;
}

/* LEFT IMAGE CARD */
.adv-hero-left {
  width: 48%;
  display: flex;
  justify-content: center;
}

.adv-hero-card {
  width: 500px;
  height: 380px;
  background: #000;
  border-left: 6px solid rgba(255,255,255,0.15);
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}

/* Slider */
.adv-hero-slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}

.adv-active {
  opacity: 1 !important;
}

/* Right Side */
.adv-hero-right {
  width: 52%;
}

.adv-subtitle {
  font-size: 15px;
  margin-bottom: 6px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.adv-title {
  font-size: 33px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
}

.adv-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Check List */
.adv-checklist {
  list-style: none;
  padding: 0;
  margin: 10px 0 25px 0;
}

.adv-checklist li {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.adv-check-icon {
  width: 20px;
  height: 20px;
  color: var(--adv-accent);
}

/* Button */
.adv-btn {
  padding: 12px 26px;
  background: var(--adv-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  transition: .2s;
}

.adv-btn:hover {
  transform: scale(1.05);
}
.adv-hero-card{position:relative; width:500px; height:380px; overflow:hidden; border-radius:4px;}
.adv-hero-slides{position:relative; width:100%; height:100%;}
.adv-hero-slides img{position:absolute; left:0; top:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition:opacity .6s ease; -webkit-transition:opacity .6s ease;}
.adv-hero-slides img.adv-active{opacity:1;}
/* optional: pause cursor hint */
.adv-hero-card {cursor: default;}
/* Responsive */
@media (max-width: 950px) {
  .adv-hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .adv-hero-left,
  .adv-hero-right {
    width: 100%;
  }

  .adv-title {
    font-size: 34px;
  }
}

/* Page wrapper (optional background) */
.adv2-section {
  width: 100%;
  box-sizing: border-box;
  padding: 60px 25px;
  background-color: #fff;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--adv2-text);
}

/* container similar to elementor boxed but stretched */
.adv2-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Left column */
.adv2-left {
  width: 50%;
  box-sizing: border-box;
  padding-right: 20px;
}

.adv2-brand {
  color: #0A84FF;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.6px;
  font-size: 14px;
}

.adv2-title {
  font-size: 48px;
  line-height: 1.02;
  margin: 0 0 18px 0;
  font-weight: 800;
  color: var(--adv2-dark);
}

.adv2-desc {
  color: var(--adv2-muted);
  margin: 0 0 28px 0;
  max-width: 620px;
  line-height: 1.6;
  font-size: 15px;
}

/* Label above progress */
.adv2-prog-label {
  font-size: 15px;
  margin: 22px 0 8px 0;
  color: #444;
  font-weight: 600;
}

/* Progress wrapper */
.adv2-progress-wrap {
  width: 100%;
  max-width: 760px;
  background: #eee;
  height: 10px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* progress bar fill */
.adv2-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--adv2-accent), #12b993);
  transition: width 900ms cubic-bezier(.2,.9,.2,1);
}

/* second progress style taller (to match screenshot) */
.adv2-progress-wrap--tall {
  height: 14px;
  border-radius: 10px;
}

/* CTA */
.adv2-cta {
  display:inline-block;
  margin-top: 28px;
  padding: 10px 18px;
  background: var(--adv2-accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(19,203,166,0.18);
}

/* Right column — oval image */
.adv2-right {
  width: 50%;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* image container using clip-path to make oval shape */
.adv2-image-oval {
    width: 850px;
    height: 600px;
    overflow: hidden;
    position: relative;

    /* Smooth left curve, straight right side */
    -webkit-clip-path: polygon(
        100% 0%,
        100% 100%,
        65% 100%,
        50% 98%,
        38% 94%,
        28% 88%,
        20% 80%,
        14% 70%,
        10% 60%,
        8% 50%,
        10% 40%,
        14% 30%,
        20% 20%,
        28% 12%,
        38% 6%,
        50% 2%,
        65% 0%
    );

    clip-path: polygon(
        100% 0%,
        100% 100%,
        65% 100%,
        50% 98%,
        38% 94%,
        28% 88%,
        20% 80%,
        14% 70%,
        10% 60%,
        8% 50%,
        10% 40%,
        14% 30%,
        20% 20%,
        28% 12%,
        38% 6%,
        50% 2%,
        65% 0%
    );
}

.adv2-image-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* small tilt/translate effect (optional) */
.adv2-image-oval:hover img { transform: scale(1.04) translateX(2%); }

/* Responsive: stack on small screens */
@media (max-width: 980px){
  .adv2-container { flex-direction: column; gap: 28px; padding-top: 30px; padding-bottom: 30px; }
  .adv2-left, .adv2-right { width: 100%; text-align: center; }
  .adv2-left { order: 2; }
  .adv2-right { order: 1; }
  .adv2-title { font-size: 34px; }
  .adv2-image-oval { width: 80%; max-width: 720px; height: 320px; margin: 0 auto; -webkit-clip-path: ellipse(60% 70% at 50% 50%); clip-path: ellipse(60% 70% at 50% 50%); }
  .adv2-desc { margin-left: auto; margin-right: auto; }
}

/* small screens: tighten paddings */
@media (max-width: 480px){
  .adv2-title { font-size: 26px; }
  .adv2-image-oval { height: 260px; }
}
.adv3-wrap{font-family:Inter,system-ui,Segoe UI,Arial; padding:40px 6%; background:#fff;}
.adv3-inner{max-width:1300px;margin:0 auto;}
.adv3-header{display:flex;flex-direction:column;align-items:flex-start;gap:6px;margin-bottom:18px}
.adv3-title{font-size:34px;line-height:1;margin:0;color:#222;font-weight:800}
.adv3-accent{color:#0A84FF}
.adv3-sub{margin:0;color:#6b7378;font-size:14px}

/* viewport: holds the moving track */
.adv3-viewport{overflow:hidden;width:100%;position:relative;}

/* track: flex row, will be animated */
.adv3-track{display:flex;align-items:center;gap:28px;padding:18px 0;margin:0;list-style:none;
  /* animation will be applied by JS via inline style for duration control */
}

/* items */
.adv3-item{flex:0 0 auto;width:160px;display:flex;align-items:center;justify-content:center}
.adv3-item img{display:block;max-width:100%;height:60px;object-fit:contain;opacity:.95;filter:grayscale(.05);transition:transform .25s,opacity .25s}
.adv3-item img:hover{transform:translateY(-4px) scale(1.02);opacity:1}

/* continuous animation keyframes: move left by 50% (assuming track content duplicated) */
@keyframes adv3-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* -50% shifts one full set (original length) */
}

/* pause on hover */
.adv3-viewport:hover .adv3-track { animation-play-state: paused; }

/* responsive tweaks */
@media (max-width:1200px){ .adv3-item{width:140px} }
@media (max-width:900px){ .adv3-header{align-items:center;text-align:center} .adv3-item{width:120px} .adv3-title{font-size:28px} }
@media (max-width:600px){ .adv3-item{width:110px;margin-right:12px} .adv3-item img{height:48px} }
.adv5-wrap{padding:28px 6%;font-family:Inter,system-ui,Segoe UI,Roboto,Arial;background:#fff;color:var(--adv5-dark);}
.adv5-inner{max-width:1200px;margin:0 auto;}
.adv5-header{text-align:left;margin-bottom:14px}
.adv5-title{font-size:30px;margin:0 0 6px 0;font-weight:800}
.adv5-sub{margin:0;color:var(--adv5-muted)}

/* grid:
   columns: hero (1fr) + right stack (260px)
   bottom row spans hero area only (we'll place it with grid-area)
*/
.adv5-grid{
  display:grid;
  grid-template-columns:1fr 260px;
  grid-template-rows:auto auto;
  gap:18px;
  align-items:start;
}

/* hero occupies row 1 col 1 */
.adv5-hero {
    width: 100%;
    min-height: 420px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* Background image for Our Services */
    background-image: url('../images/services.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Soft overlay for readability */
.adv5-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.35), 
        rgba(0,0,0,0.55)
    );
    z-index: 1;
}

/* Content stays above overlay */
.adv5-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #ffffff;
}

/* Beautiful heading */
.adv5-hero-title {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 14px;
    text-shadow: 0px 3px 12px rgba(0,0,0,0.4);
}

/* Description text */
.adv5-hero-text {
    font-size: 17px;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width:768px) {
    .adv5-hero-title { font-size: 26px; }
    .adv5-hero-text { font-size: 15px; }
}

/* hero content */
.adv5-hero-kicker{color:var(--adv5-accent);font-weight:800;letter-spacing:.6px;margin-bottom:8px}
.adv5-hero-title{font-size:22px;margin:0 0 8px 0}
.adv5-hero-text{color:var(--adv5-muted);margin:0 0 14px;line-height:1.6}
.adv5-hero-cta{display:inline-block;padding:10px 14px;background:var(--adv5-accent);color:#fff;border-radius:8px;text-decoration:none;font-weight:700}

/* right stack (vertical four boxes) */
.adv5-right{
  grid-column:2 / 3;
  grid-row:1 / 2;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* each side item */
.adv5-side-item{
  background:#fff;border-radius:10px;    padding: 20px;display:flex;gap:12px;align-items:center;
  box-shadow:0 10px 24px rgba(6,8,10,0.06);transition:transform .22s var(--adv5-ease), box-shadow .22s var(--adv5-ease), opacity .4s;
  opacity:0; transform:translateX(12px);
}
.adv5-side-item.adv5-visible{opacity:1;transform:none}
.adv5-side-item:hover{transform:translateY(-6px);box-shadow:0 26px 44px rgba(6,8,10,0.08)}
.adv5-badge{min-width:86px;height:64px;border-radius:8px;display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#fff,#f4fbf8);font-weight:800;text-transform:uppercase;color:var(--adv5-dark);box-shadow:inset 0 -6px 18px rgba(19,203,166,0.03)}
.adv5-side-body{display:flex;flex-direction:column}
.adv5-side-body strong{font-size:14px}
.adv5-side-body span{font-size:12px;color:var(--adv5-muted)}

/* bottom 4 boxes — these span below hero (grid-row:2) and under column 1 */
.adv5-bottom{
  grid-column:1 / 2;
  grid-row:2 / 3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:-100px;
}

/* each bottom card */
.adv5-card{
  background:#fff;border-radius:10px;padding:14px;box-shadow:0 10px 24px rgba(6,8,10,0.06);
  transition:transform .22s var(--adv5-ease), box-shadow .22s var(--adv5-ease), opacity .4s;
  opacity:0; transform:translateY(10px);
}
.adv5-card.adv5-visible{opacity:1;transform:none}
.adv5-card:hover{transform:translateY(-6px);box-shadow:0 26px 44px rgba(6,8,10,0.08)}
.adv5-card h4{margin:0 0 6px 0;font-size:15px}
.adv5-card p{margin:0;color:var(--adv5-muted);font-size:13px}

/* responsive: stack right column below hero and bottom cards become 2x2 then 1x4 */
@media (max-width:1000px){
  .adv5-grid{grid-template-columns:1fr;grid-template-rows:auto auto auto; }
  .adv5-right{grid-column:1 / 2;grid-row:3 / 4;flex-direction:row;flex-wrap:wrap;gap:12px}
  .adv5-side-item{flex:0 0 calc(50% - 6px);} /* two per row on smaller screens */
  .adv5-bottom{grid-column:1 / -1;grid-row:2 / 3;grid-template-columns:repeat(2,1fr);    margin-top: 1px;}
}
@media (max-width:600px){
  .adv5-bottom{grid-template-columns:1fr}
  .adv5-side-item{flex:0 0 100%}
  .adv5-badge{min-width:64px;height:54px}
}

/* Utility: stagger transition using --delay custom property */
.adv5-side-item{transition-delay: var(--delay, 0ms)}
.adv5-card{transition-delay: var(--delay, 0ms)}
.adv6-stats{width:100%;padding:28px 0;background:#fff;font-family:Inter,Arial;}

.adv6-inner{width:100%;margin:0;}

.adv6-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:0 20px;
}

.adv6-card{
  background:#fff;
  border:1px solid #eee;
  padding:30px 20px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 6px 16px rgba(0,0,0,0.05);
  transition:0.3s;
}

.adv6-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,0.1);
}

.adv6-number{
  font-size:36px;
  font-weight:800;
}
.adv6-label{
  color:#555;
  font-size:15px;
}

.adv6-icon svg{
  width:50px;
}

@media(max-width:900px){
  .adv6-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:500px){
  .adv6-grid{grid-template-columns:1fr;}
}
.adv7-footer{
  position:relative;
  width:100%;
  box-sizing:border-box;
  color:#fff;
  background-image:  url('../images/bag.jfif') 
  background-size:cover;
  background-position:center;
  padding:56px 0;
  overflow:hidden;
}

/* dark overlay to dim background */
.adv7-overlay{
  position:absolute; inset:0;
  background:rgba(7,16,22,0.66);
  z-index:0;
}
/* Address main box */
.adv7-address-box {
    margin-top:15px;
     border-left: 4px solid #10C6FF;
    padding: 18px 20px;
    border-radius: 12px;
     max-width: 420px;
    transition: .25s ease;
}

/* Hover effect */
.adv7-address-box:hover {
    transform: translateY(-3px);
    
}
.adv5-title{
     font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #000;
    position: relative;
    padding-bottom: 6px;
}
.adv5-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #0A84FF, #10C6FF);
    border-radius: 2px;
    transition: .35s ease;
}
.adv5-title:hover::after {
    width: 80px;
}
.adv1-title{
     font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #000;
    position: relative;
    padding-bottom: 6px;
}
.adv1-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
 background: linear-gradient(135deg, #0A84FF, #10C6FF);
    border-radius: 2px;
    transition: .35s ease;
}
.adv1-title:hover::after {
    width: 80px;
}
/* Heading same as Mission */
.adv7-headline {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0f1720;
    position: relative;
    padding-bottom: 6px;
}

.adv7-headline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
   background: linear-gradient(135deg, #0A84FF, #10C6FF);
    border-radius: 2px;
    transition: .35s ease;
}
.adv7-headline:hover::after {
    width: 80px;
}

/* Address items */
.adv7-address-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adv7-loc-item {
    font-size: 14px;
    line-height: 1.45;
    color: #fff;
}

.adv7-loc-item strong {
    color: #10C6FF;
    font-weight: 700;
}

/* Wrapper */
.adv7-left {
    max-width: 420px;
    padding: 12px 0;
}

/* Headline with animated underline */
.adv7-headline {
    font-size: 28px;
    margin: 0 0 12px;
    font-weight: 700;
    color: #0f1720;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.adv7-headline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
   background: linear-gradient(135deg, #0A84FF, #10C6FF);
    border-radius: 2px;
    transition: width .35s ease;
}

/* On hover → underline expands */
.adv7-headline:hover::after {
    width: 80px;
}

/* Mission text box with soft highlight */
.adv7-meta {
    background: rgba(19, 203, 166, 0.06);
    border-left: 4px solid #10C6FF;
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.55;
    color: #47535b;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover effect */
.adv7-meta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width:480px){
    .adv7-headline { font-size: 24px; }
    .adv7-meta { font-size: 14px; padding: 12px 14px; }
}


/* container */
.adv7-inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:24px;
  align-items:flex-start;
  padding:0 24px;
}

/* left headline */
.adv7-left{flex:1 1 55%;}
.adv7-headline{
  font-size:22px;
  line-height:1.02;
  margin:0 0 8px 0;
  font-weight:800;
  color:#fff;
  letter-spacing:-0.4px;
  text-shadow:0 6px 28px rgba(0,0,0,0.35);
}
.adv7-meta{font-size:13px;color:rgba(255,255,255,0.7);margin-top:10px}

/* center address */
.adv7-center{flex:0 0 260px;padding:6px 20px;}
.adv7-small-title{font-size:16px;margin:0 0 10px 0;color:#fff;font-weight:700}
.adv7-address{font-style:normal;color:rgba(255,255,255,0.9);line-height:1.65;margin:0 0 10px 0}

/* social icons row */
.adv7-social{display:flex;gap:10px;margin-top:8px}
.adv7-social-link{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:6px;background:rgba(255,255,255,0.06);color:#fff;text-decoration:none;transition:transform .18s, background .18s}
.adv7-social-link:hover{transform:translateY(-4px);background:rgba(255,255,255,0.12)}

/* right contact */
.adv7-right{flex:0 0 300px;padding:6px 12px;display:flex;flex-direction:column;align-items:flex-end;gap:12px}
.adv7-email{
  display:inline-block;background: linear-gradient(135deg, #0A84FF, #0057D9);
color:#fff;padding:10px 14px;border-radius:6px;text-decoration:none;font-weight:700;
  box-shadow:0 10px 20px rgba(20,202,160,0.14);
}
.adv7-email:hover{transform:translateY(-3px);}

/* phone */
.adv7-phone{font-weight:800;font-size:20px;color:#fff;margin-top:6px;}

/* payments row */
.adv7-payments{display:flex;gap:8px;margin-top:16px;opacity:0.95}
.adv7-payments img{width:46px;height:auto;border-radius:6px;background:rgba(255,255,255,0.9);padding:4px}

/* responsive */
@media (max-width:1000px){
  .adv7-inner{flex-direction:column;align-items:flex-start;padding:0 20px}
  .adv7-right{align-items:flex-start;width:100%}
  .adv7-center{width:100%;padding:0}
  .adv7-left{width:100%}
  .adv7-headline{font-size:28px}
}
@media (max-width:520px){
  .adv7-headline{font-size:22px}
  .adv7-email{padding:8px 12px;font-size:14px}
  .adv7-phone{font-size:18px}
}
/* ---------- MOBILE RESPONSIVE (max-width: 768px) ---------- */
@media (max-width: 768px) {

    .hero-row {
        flex-direction: column;
        gap: 25px;
        padding: 20px 15px;
    }

    .hero-card-left {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 22px;
        padding: 0 10px;
    }

    .features-row {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 18px;
        align-items: center;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-text {
        font-size: 15px;
    }

     .packages-hero .hero-card-right {
    flex: 0px; 
     height: 0px; 
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.14) 1px, transparent 1px);
    background-size: 11px 11px;
    opacity: 0.12;
    align-self: flex-start;
    border-radius: 8px;
    margin-left: auto;
    margin-top: 0px;
}
}
/* ------------------ MOBILE ONLY (max-width: 768px) ------------------ */
@media (max-width: 768px) {

  /* Container */
  .custom-travel-hero {
    padding: 18px 14px 90px; /* bottom space for fixed login pill */
    position: relative;
    overflow: hidden;
  }

  .custom-travel-hero .elementor-background-overlay {
    /* keep overlay subtle on mobile */
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
  }

  .custom-travel-hero .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }

  /* LEFT (text) */
  .custom-travel-hero .hero-left {
    width: 100%;
    text-align: center;
    padding: 0 6px;
  }

  .custom-travel-hero .small-label {
    font-size: 11px;
    letter-spacing: 0.6px;
    margin: 0 0 6px;
    opacity: 0.95;
  }

  .custom-travel-hero .big-title {
    font-size: 20px;
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.4px;
  }

  /* underline_text_effect safe sizing */
  .custom-travel-hero .underline_text_effect {
    display: inline-block;
    padding-bottom: 2px;
    line-height: 1;
            margin-right: 9px;
  }

  /* CENTER (visuals) - stacked clipped ovals */
  .custom-travel-hero .hero-center {
    width: 100%;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 4px 0 8px;
    box-sizing: border-box;
  }
  .oval.oval-left {
    display: none !important;
}
  .oval.oval-right {
    display: none !important;
}
  .custom-travel-hero .oval {
    width: 44%;
    max-width: 180px;
    aspect-ratio: 1 / 1; /* keep circular-ish */
    border-radius: 999px;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    background: #eee;
  }
  
  /* If you prefer vertical stack on very small screens (<=360px) */
  @media (max-width: 360px) {
    .custom-travel-hero .hero-center {
      flex-direction: column;
      gap: 10px;
    }
    .custom-travel-hero .oval {
      width: 66%;
      max-width: 260px;
    }
  }

  /* Images inside ovals */
  .custom-travel-hero .oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* SEARCH / LOGIN PILL - fixed bottom, full-width friendly */
  .adv9-hero-search-wrap {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    pointer-events: auto;
  }

  .adv9-hero-search-wrap .row {
    margin: 0;
    padding: 0 8px;
  }

  .adv9-hero-search-wrap .adv5-title {
    font-size: 14px;
    margin: 0;
    text-align: left;
  }

  .adv9-login-pill {
    background: rgba(255,255,255,0.98); /* white pill */
    border-radius: 12px;
    padding: 10px;
            margin-top: 100px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: block;
  }

  /* Make the login partial responsive: inputs full width */
  .adv9-login-pill input,
  .adv9-login-pill button,
  .adv9-login-pill select,
  .adv9-login-pill .form-control {
    width: 100% !important;
    box-sizing: border-box;
    margin: 6px 0;
    font-size: 14px;
  }

  /* Small tweaks for accessibility and spacing */
  .custom-travel-hero h1,
  .custom-travel-hero h5,
  .custom-travel-hero p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .hero-left {
   margin-bottom: 0px; 
}
  .location-search {
 display: inline-grid;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-left: 14px;
}
  .adv9-hero-search-wrap {
       position: absolute;
        left: 188px;
        right: 0px;
               top: 37px;
  }
  .adv1-title {
      color: #000;
      font-size:14px;
   
}
  .big-title .underline_text_effect::after {
          left: -6px;
    right: -6px;
    bottom: -1px;
    height: 2px;
    background: #ffd200;
    border-radius: 0px;
  }
   .custom-travel-hero [aria-hidden="true"] {
     opacity: 0.9;
  }
  .custom-travel-hero {
    background: var(--bg);
    padding:0px ; 
  padding: 0px 0px 0px 0px;
  height:545px;
}
  .hero-inner {
      padding: 0px; 
    }
    .adv-hero-bg {
           height: 1100px;
    }
        .adv2-container {    
        padding-top: 0px;
        padding-bottom: 0px; 
    }
        .hero-center { 
    margin-left: 0px;
}
}

@media (max-width: 768px) {
    .adv7-center {
    flex: 0 0 0px; 
    padding: 6px 20px;
}
        .adv7-center {
        flex: 0 0 0px;
        padding: 0px 0px; 
    }
    .dvforgot {
        display: none !important;
    }

    .dvforgot.is-visible {
        display: block !important;
    }

    .adv9-login-pill.is-hidden {
        display: none !important;
    }
    .dvforgot {
        display: none;
        width: 100%;
        background: #fff;
        border-radius: 18px;
        padding: 24px;
                margin-top: 90px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        animation: slideUp 0.35s ease;
    }
    #frgPass {
    display:grid;
    
}
}
