
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, sans-serif;
}



:root {
    /* ── Brand Core ─────────────────────────────────────────── */
    --brand-primary: #F2A65A;
    /* Sunset Orange — CTAs, highlights */
    --brand-primary-soft: rgba(242, 166, 90, 0.12);
    --brand-primary-mid: rgba(242, 166, 90, 0.25);
    --brand-primary-deep: #D4854A;
    /* Pressed / hover state */

    --brand-secondary: #1A1A2E;
    /* Charcoal Obsidian — hero surfaces */
    --brand-secondary-soft: #F0F0F8;
    /* Very light tint for active states */
    --brand-secondary-light: #2E2E4A;
    /* Lighter obsidian for gradients */

    /* ── Functional Palette ─────────────────────────────────── */
    --brand-teal: #10B981;
    /* Success / connected */
    --brand-teal-soft: rgba(16, 185, 129, 0.10);
    --sky-blue: #3B82F6;
    /* Info / links */

    /* ── Neutrals ──────────────────────────────────────────── */
    --white: #ffffff;
    --chalk: #F7F8FC;
    --bg-main: #F9FAFB;
    --text-main: #1A1A2E;
    --text-muted: #64748B;
    --border: #E8EBF4;
    --border-light: #EEF0F9;
    --border-subtle: #F1F4FB;

      --nav-height: 80px;
}

a{
    text-decoration: none;
}

body {
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    scroll-behavior: smooth;
}

/* Prevent background scrolling when mobile menu is open */
.menu-open {
    overflow: hidden;
}

/* Background Gradient & Sky Effect */
.hero-container {
    height: 110vh;
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    background: url('../Assets/hero-img1.png'), radial-gradient(circle at 75% 35%, #e4eaf4 0%, #9fcff2 100%);
    /* background: url('../Assets/hero-img1.png'); */
    background-position: center;
    background-size: cover;
    overflow: hidden;

}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    z-index: 1000;
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    background: transparent;
}

/* Glassmorphism Navbar - Active when scrolled past hero */
nav.scrolled {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

nav.scrolled .nav-links a,
nav.scrolled .nav-right {
    color: var(--text-main);
}

nav.scrolled .hamburger span {
    background: var(--brand-primary);
}

nav.scrolled .btn-app {
    background: var(--brand-primary);
    color: var(--white);
}

nav.scrolled .nav-links a::after {
    background: var(--brand-primary);
}


.logo {
    height: 90px;
    width: 160px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Desktop Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-bottom: 6px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-links a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.12);
    outline-offset: 6px;
    border-radius: 4px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}
.nav-right span{
    font-size: 14px;
    cursor: pointer;
}

.btn-app {
    background: var(--white);
    color: var(--brand-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-app:hover {
    background: var(--brand-primary);
    color: var(--white);
    transform: scale(1.05);
    transition: all 0.2s ease;
}

/* Hero Content Grid */
.hero-content {
    margin-top: 170px;
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 0 0 0 7%;
    gap: 4rem;
    z-index: 10;
}

.hero-left {
    padding-bottom: 60px;
    color: var(--white);
    max-width: 750px;
}

.badge-trusted {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 540px;
    line-height: 1.6;
}

/* Search Component */
.search-container {
    width: 100%;
    max-width: 600px;
}

.search-wrapper {
    background: #ffffff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.search-input-box {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15px 0 20px;
}

.search-icon {
    color: #94a3b8;
    font-size: 20px;
    margin-right: 12px;
}

.search-input-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1e293b;
    background: transparent;
}

.search-submit {
    background: var(--brand-primary);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.search-submit:hover {
    background: var(--brand-primary-deep);
    transform: scale(1.02);
}

.search-features {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
}

/* Mockup Style */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-right img {
    max-width: 520px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
}

/* CLOUD FLOOR */
.cloud-floor {
    position: absolute;
    bottom: -2px;
    /* Fix for tiny sub-pixel gaps */
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #ffffff 140%);
    z-index: 20;
    pointer-events: none;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.nav-menu {
    transition: all 0.3s ease;
}

/* RESPONSIVE DESIGN (The Fixes) */
@media (max-width: 768px) {

    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Mobile Navigation Panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--brand-secondary);
        color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 30px;
        overflow-y: scroll;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    /* Navigation Links - Stacked */
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    nav.scrolled .nav-links a,
    nav.scrolled .nav-right {
        color: var(--white);
    }

    nav.scrolled .hamburger span {
        background: var(--brand-primary);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a::after {
        display: none;
    }

    /* Navigation Right Section */
    .nav-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-app {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Mobile Menu Overlay Background */
    .nav-menu.open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .hero-content {
        margin-top: 7rem;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 5%;
        gap: 2rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-right img {
        max-width: unset;

    }

    h1 {
        font-size: 3.7rem;
    }

    .hero-subtext {
        font-size: 1.2rem;
        max-width: unset;
    }

    .search-container {
        text-align: center;
        max-width: unset;
    }

    .search-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-item {
        color: var(--white);
    }
}


@media (max-width: 600px) {
    nav {
        padding: 0 5%;
    }

    .logo {
        height: 80px;
        width: 140px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 0.9rem;
    }

    .hero-left {
        padding-bottom: 0px;
    }
}




.how-it-works {
    padding: 90px 7%;
    /* background: radial-gradient(circle at top right, #f0f7ff, #ffffff); */
    overflow: hidden;
}

.how-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;

}
.how-left{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.how-left h2 {
    color: var(--brand-secondary);
   font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 600;
    padding-bottom: 10px;
}

.how-left p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 450px;

}
.how-cards-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.how-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}
.how-card .card-icon i{
    font-size: 4rem;
    color: var(--brand-primary);
    opacity: 0.5;
}
.how-card h3 {
    color: var(--brand-primary-deep);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 15px 0 10px;
}
.how-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 789px) {
     .how-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
    .how-left{
    flex-direction: column;
    text-align: center;
}
.how-cards-container{
    flex-wrap: wrap;
}
    
}
@media (max-width: 600px) {
         .how-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
    
}


/* Container styling */
.carousel-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--brand-teal); /* The yellow from your image */
  padding: 20px 0;
  display: flex;
  align-items: center;
}

/* The moving track */
.carousel-track {
  display: flex;
  white-space: nowrap;
  /* Adjust '30s' to change the speed (higher = slower) */
  animation: scroll 30s linear infinite;
}

/* Individual items */
.carousel-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 40px; /* Space between phrases */
  font-size: 1.2rem;
  color: var(--text-main);
  text-transform: uppercase;
}
.carousel-item span {
  font-weight: 700;

}

/* Remix Icon styling */
.carousel-item i {
  color: var(--white); /* The purple from your image */
  font-size: 1.5rem;
}

/* The Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional: Pause on hover */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}



.stay-connected{
    padding: 60px 6%;
     background: radial-gradient(circle at top right, #f0f7ff, #ffffff);
}
.connected-grid{
        display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.connected-card{
    background: #eef1f6;
    /* background: var(--brand-navy); */
        align-items: center;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 26px;
    justify-content: center;
   max-width: 363px;
    overflow: hidden;
    padding: 32px 24px 24px;
    width: 100%;
}

.connected-card .connect-ttile{
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}
.connected-card p{
    color: var(--white);
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: center;
}

.connect-mockup{
    background-color: white;
     border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 1rem;
    height: 300px;
    overflow: hidden;
    position: relative;
}

 .phone-content{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 90%;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    /* background-color: red; */
    padding: 1rem;

 }
 .phone-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
 }
 .content-list{
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
 }
 .content-list i{
    font-size: 23px;
    color: var(--brand-teal);
 }

 .plan-options {
  display: flex;
  flex-direction: column;
  gap: 1px;
  /* width: 300px; */
  /* margin: 20px; */
  /* font-family: 'Inter', sans-serif; */
}

.plan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
  font-size: 0.7rem;
}
.plan-card:last-child {
  margin-top: -9px;
}

.plan-card input[type="radio"] {
  accent-color: #28a745; /* green radio */
  margin-right: 12px;
}

/* Middle card 3D pop effect */
.plan-card.selected {
  border-color: #28a745;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2),
              0 6px 16px rgba(0,0,0,0.15);
  transform: translateY(-3px);
  z-index: 6;
}

/* Optional: hover effect for all cards */
.plan-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Info layout */
.plan-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 500;
}

.price {
  font-weight: 700;
}

.activation-steps{
    text-align: center;
}
.step-icon i{
    font-size: 7rem;
     color: var(--brand-primary-mid);
    display: block;
}
.step-text{
    background-color: var(--brand-primary);
    color: var(--white);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1rem;
}

.section-title-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}
.section-title-center h2 {
    color: var(--text-main);
    font-size: clamp(1.96rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 600;
    padding-bottom: 10px;
}
.section-title-center h2 span{
    color: var(--brand-primary);
}
.section-title-center p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
} 



.connectivity-section {
    background-color: var(--white);
    padding: 70px 20px;
}
.section-title-center .badge{
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 1rem;
}



/* --- Stacking Logic --- */
.stack-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* Cards overlap via sticky top */
    padding-bottom: 10vh;
}

.stack-card-item {
    position: sticky;
    top: 120px; /* Adjust based on your nav height */
    width: 100%;
    max-width: 1200px;
    height: 550px; /* Fixed height for the card */
    margin-bottom: 10vh; /* Creates the scroll gap between "pops" */
    transition: transform 0.3s ease-out;
}

.stack-card-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(26, 26, 46, 0.15);
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--border-light);
}

.overlay {
    width: 100%;
    padding: 60px;
    /* Soft dark bottom overlay */
    background: linear-gradient(to top, 
        rgba(26, 26, 46, 0.75) 0%, 
        rgba(26, 26, 46, 0.6) 50%, 
        transparent 100%);
}

.stack-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.stack-card-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    max-width: 600px;
}

.stack-card-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 550px;
}
.stack-card-item {
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
  transform: scale(0.95);
  filter: brightness(0.8);
  opacity: 0.7;
}

.stack-card-item.is-active {
  transform: scale(1);
  filter: brightness(1);
  opacity: 1;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .stack-card-item { height: 370px; top: 100px; }
    .overlay { padding: 20px; }
    .stack-card-text h3 { font-size: 1.25rem; }
    .stack-card-text p { font-size: 0.8rem;}
}






.why-esim {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust based on your image aspect ratio */
    background: url('../Assets/travellers-2.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

.why-esim-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin-top: 0.5rem;
}

.why-header {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.why-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-secondary);
}

.text-navy { color: var(--brand-navy); }

/* Floating Cards Styling */
.feature-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 5;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .card-icon {
    font-size: 2rem;
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.feature-card .card-text h4 {
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-card .card-text p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* --- EXACT MOCKUP POSITIONS --- */
.card-1 { top: 40%; left: 5%; }
.card-2 { top: 15%; left: 45%; }
.card-3 { top: 60%; left: 35%; }
.card-4 { top: 25%; right: 5%; }
.card-5 { bottom: 10%; right: 15%; }

/* Mobile Adaptability */
@media (max-width: 900px) {
    .why-esim {
        height: auto;
        background: #f8fafc; /* Switch to solid color for better text reading on small screens */
    }
    .why-esim-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }
    .feature-card {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100%;
        max-width: 400px;
    }
}



.section-buttom{
    margin: 20px auto;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.section-buttom span{
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--brand-teal);
    cursor: pointer;
}




.flx-dest-section {
    background-color: #FFFFFF;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

/* Outstanding Background Detail */
.flx-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: repeating-radial-gradient(
        circle,
        transparent,
        transparent 80px,
        rgba(0, 175, 102, 0.08) 81px,
        transparent 82px
    );
    z-index: 0;
}

.flx-dest-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.flx-dest-header { text-align: center; margin-bottom: 10px; }
.flx-text-teal { color: var(--brand-teal); }
.flx-p-muted{
   margin-top: -10px;
}

/* Tab Styling */
.flx-tab-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.flx-tab-nav {
    background: #F1F5F9;
    padding: 6px;
    border-radius: 100px;
    display: flex;
    gap: 5px;
}

.flx-tab-btn {
    border: none;
    background: transparent;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.flx-tab-btn.active {
    background: var(--brand-primary-deep);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 26, 114, 0.2);
}

/* Card Design */
.flx-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.flx-dest-card {
    background: #f3f6f3;
    padding: 10px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px var(--card-shadow);
}

.flx-dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--hover-shadow);
}

.flx-dest-left { display: flex; align-items: center; gap: 16px; }

.flx-flag-wrap {
    width: 38px;
    height: 38px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #F8FAFC;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.flx-flag-wrap img { width: 100%; height: 100%; object-fit: cover; }

.flx-dest-name { font-weight: 500; font-size: 0.9rem; color: var(--brand-navy); display: block; }
.flx-dest-price { color: var(--brand-teal); font-size: 0.8rem; font-weight: 400; }

.flx-arrow-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    transition: 0.3s;
}

.flx-dest-card:hover .flx-arrow-circle {
    background: var(--brand-teal);
    color: #FFFFFF;
}

@media (max-width: 900px) {
  .flx-tab-btn:nth-child(4), .flx-tab-btn:nth-child(5), .flx-tab-btn:nth-child(6) {
        display: none !important;
    }
}
@media (max-width: 600px) {
    .flx-tab-nav {
         flex-wrap: wrap;
         justify-content: center;

    }
}






/* =========================
   SECTION BASE
========================= */
.faq-section,
.refer-and-earn {
    padding: 100px 6%;
    background: radial-gradient(circle at top right, #f0f7ff, #ffffff);
    background-blend-mode: overlay;
    color: var(--brand-secondary);
}

/* =========================
   LAYOUT
========================= */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
}

/* =========================
   LEFT SIDE (STICKY)
========================= */
.faq-info {
    position: sticky;
    top: 120px; /* adjust based on navbar */
    align-self: start;
}

.faq-info h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
}

.text-teal {
    color: var(--brand-teal);
}

.faq-info p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* CTA BOX */
.faq-cta-box {
    background: var(--brand-primary);
    padding: 20px;
    border-radius: 26px;
    backdrop-filter: blur(10px);
}

.faq-cta-box h3 {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--white);
}

.faq-cta-box p {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--bg-main);
}

.btn-primary-teal {
    background: var(--brand-secondary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   RIGHT SIDE (FAQ LIST)
========================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 1.5rem;
}

/* FAQ ITEM */
.faq-item {
    border: 1px solid var(--text-muted);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    font-size: 22px;
    transition: transform 0.3s ease;
    color: var(--brand-teal);
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ACTIVE STATE */
.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-teal);
}

.faq-item.active i {
    transform: rotate(90deg);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* safer for longer content */
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-info {
        position: relative;
        top: 0;
    }

    .faq-info h2 {
        font-size: 2.4rem;
    }
}

/* =========================
   LARGE SCREENS (ENHANCED UX)
========================= */
@media (min-width: 1024px) {

    .faq-container {
        align-items: start;
    }

    .faq-list {
        /* max-height: 80vh; */
        overflow-y: auto;
        padding-right: 10px;

        /* Premium fade effect */
        mask-image: linear-gradient(
            to bottom,
            transparent,
            black 8%,
            black 92%,
            transparent
        );
    }

    /* SCROLLBAR */
    .faq-list::-webkit-scrollbar {
        width: 6px;
    }

    .faq-list::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 10px;
    }
}




.download-app-section{
    padding: 50px 7%;
     background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    url('../Assets/OJO4YQ0.jpg');
  background-size: contain;
  background-position: top;
}

.download-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* flex-wrap: wrap; */
}
.mobile-txt h2{
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
}
.mobile-txt p{
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    max-width: 470px;
    margin-bottom: 30px;
}
.store-buttons {
    display: flex;
    gap: 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: black;
    color: white;
    padding: 11px 15px;
    border: none;
    cursor: pointer;
    border-radius: 15px;
}
.store-btn .store-icon i {
    font-size: 24px;
}

.store-btn .store-text {
    font-size: 10px;
    font-weight: 500;
    text-align: left;
}

.mobile-app-img img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-left: auto;
}

@media (max-width: 768px) {
    .download-container {
        flex-direction: column;
        text-align: center;
    }
    .mobile-txt h2 {
        font-size: 2.5rem;
    }
    .mobile-txt p {
        font-size: 0.95rem;
        max-width: unset;
    }
    .store-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}



/* Container & Layout */
.referral-banner {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.referral-container {
    display: flex;
    flex-direction: row;
    background-color: #EBF2FF; /* Soft blue-ish background from image */
    background: url('../Assets/referrrr.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
    overflow: hidden;
    min-height: 500px;
    align-items: stretch;
}

/* Left Side: Content */
.referral-content {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.referral-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--brand-secondary); /* Your brand Charcoal */
    line-height: 1.2;
    max-width: 480px;
}

.referral-description {
    font-size: 1.1rem;
    color: #64748B; /* Muted text */
    line-height: 1.6;
    max-width: 400px;
}

.btn-learn-more {
    display: inline-block;
    width: fit-content;
    padding: 12px 32px;
    border: 1.5px solid #1A1A2E;
    border-radius: 100px;
    text-decoration: none;
    color: #1A1A2E;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #1A1A2E;
    color: #ffffff;
}

/* Right Side: Image Wrapper */
.referral-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end; /* Keeps people at the bottom */
}

.referral-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Floating Gift Bubble */
.gift-icon {
    position: absolute;
    top: 15%;
    left: 10%;
    background-color: #000;
    color: #FAFF00; /* Neon yellow from Saily icon */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Tooltip tail for the gift icon */
.gift-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #000;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .referral-container {
        flex-direction: column;
        text-align: center;
    }
    
    .referral-content {
        align-items: center;
        padding: 40px 20px;
    }
    
    .referral-image-wrapper {
        height: 300px;
    }
    
    .referral-title {
        font-size: 1.8rem;
    }
    
    .gift-icon {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
}






.support-orbit {
    padding: 100px 7%;
    background-color: #FAFAFA;
    background:
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url('../Assets/OJO4YQ0.jpg');
    text-align: center;
    overflow: hidden;
}

.orbit-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.orbit-header h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
}

.orbit-header p {
    font-size: 0.95rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Visual Layout */
.orbit-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Rings */
.ring {
    position: absolute;
    border: 1px solid rgba(0, 175, 102, 0.15); /* Brand Teal low opacity */
    border-radius: 50%;
    z-index: 1;
}
.ring-1 { width: 350px; height: 350px; }
.ring-2 { width: 550px; height: 550px; }
.ring-3 { width: 750px; height: 750px; }

/* The Speech Bubble (Main Change: Brand Teal) */
.speech-bubble {
    background: var(--brand-teal);
    color: white;
    padding: 40px;
    border-radius: 30px;
    width: 450px;
    text-align: left;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 175, 102, 0.2);
}

.bubble-greeting { font-weight: 600; margin-bottom: 15px; }
.bubble-body { font-size: 0.9rem; opacity: 0.9; margin-bottom: 15px; line-height: 1.5; }
.bubble-footer { font-size: 0.85rem; font-weight: 400; ;}

.bubble-phone {
    position: absolute;
    bottom: -10px;
    right: -20px;
    width: 60px;
}

/* Agent Avatars */
.agent {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 5;
}
.agent img { width: 100%; height: 100%; object-fit: cover; }

/* Positions to match the Alosim reference */
.agent-1 { top: 10%; left: 30%; }
.agent-2 { top: 45%; left: 10%; }
.agent-3 { bottom: 5%; left: 35%; }
.agent-4 { top: 15%; right: 25%; }
.agent-5 { top: 50%; right: 5%; }
.agent-6 { bottom: 15%; right: 20%; }

/* CTA Button (Brand Navy) */
.orbit-cta { margin-top: 50px; }
.btn-contact {
    background: var(--brand-navy);
    color: white;
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 700;
    border: none;
    cursor: pointer !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: 0.3s;
    z-index: 50;
}
.btn-contact:hover { transform: scale(1.05); }
a{
    text-decoration: none;
    
}
/* Mobile Adaptability */
@media (max-width: 768px) {
    .orbit-visual { height: auto; padding: 40px 0; }
    /* .ring { display: none; } */
    .speech-bubble { width: 100%; padding: 20px; }
    .agent { display: none; } /* Hide agents on small mobile for cleaner UX */
}




.latest-posts {
    padding: 100px 7%;
    background: #ffffff;
   
}

.posts-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.posts-header h2 {
    font-size: 2.2rem;
    color: var(--text-main);
    font-weight: 600;
}

.btn-see-all {
    background-color: var(--brand-primary); /* Exact salmon-orange from your mockup */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-see-all:hover {
    background-color: var(--brand-primary-deep); /* Darker shade for hover effect */
}

/* Main Grid Layout */
.posts-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr; /* Two large, one smaller feed */
    gap: 30px;
}

/* Featured Large Cards */
.large-card {
    background: transparent;
    border-radius: 20px;
    padding: 10px;
}

.post-img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.post-info h3 a{
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #111;
}

.post-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Side Feed Styling */
.side-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E7EB;
}

.side-item:last-child { border-bottom: none; }

.side-img {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-info h4 a {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #111;
    font-weight: 600;
}
.explore-btn{
    background-color: var(--brand-navy) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    margin-top: 1rem;
    font-size: 0.85rem !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .posts-main-grid { grid-template-columns: 1fr 1fr; }
    .side-feed { grid-column: span 2; margin-top: 30px; }
}

@media (max-width: 600px) {
    .posts-main-grid { grid-template-columns: 1fr; }
    .side-feed { grid-column: span 1; }
    .posts-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}







:root {
    --off-white: #FFFFFF;
    --pattern-color: rgba(0, 26, 114, 0.1); /* Very faint navy dots */
}

.main-footer {
    position: relative;
    background-color: var(--off-white);
    padding: 50px 7% 40px;
    color: var(--brand-secondary);
    border-top: 1px solid #EEF2F6;
    overflow: hidden;
}

/* The Pattern: Subtle SVG Dots */
.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(var(--pattern-color) 1px, transparent 1px);
    background-size: 14px 24px; /* Space between dots */
    opacity: 0.95;
}

.footer-container {
    position: relative; /* Sits above pattern */
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    z-index: 2;
}

/* Brand & Logo */
.footer-logo {
    width: 150px;
    margin-bottom: 5px;
    display: block;
}

.footer-brand p {
    color: #5E6D82;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

/* Social Icons (Navy to Teal Hover) */
.footer-socials { display: flex; gap: 12px; margin-top: 13px; }
.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1.5px solid #E5EAF0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: all 0.3s ease;
    background: #fff;
}

.footer-socials a:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    transform: translateY(-3px);
}

/* Links */
.footer-links h4, .footer-newsletter h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--brand-primary-deep);
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #5E6D82;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}

.footer-links ul li a:hover { color: var(--brand-teal); }

/* Premium Newsletter Input */
.newsletter-form {
    margin-top: 10px;
    display: flex;
    background: #F4F7FA;
    border-radius: 12px;
    padding: 6px;
    border: 1px solid #E5EAF0;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    flex: 1;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: var(--brand-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--brand-teal); }

.footer-bottom {
    position: relative;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #EEF2F6;
    text-align: center;
    color: #9BA6B5;
    font-size: 0.85rem;
    z-index: 2;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-brand, .footer-newsletter { grid-column: span 2; text-align: center; }
    .footer-socials, .newsletter-form { justify-content: center; max-width: 350px; margin: 20px auto; }
}

























