:root {
    --brand-navy: #001A72;
    --brand-teal: #00AF66;

    /* supporting colors */
    --sky-blue: #3B82F6;
    --white: #ffffff;
    --nav-height: 80px;
    --text-muted: #64748b;
    --text-main: #1A1A1B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, sans-serif;
}

body {
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    scroll-behavior: smooth;
}
html {
    scroll-padding-top: var(--nav-height);
      scroll-behavior: smooth;
}

/* Prevent background scrolling when mobile menu is open */
.menu-open {
    overflow: hidden;
}

/* Background Gradient & Sky Effect */
.hero-container {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    background: url('../Assets/hero-background.webp'), radial-gradient(circle at 75% 35%, #60A5FA 0%, var(--sky-blue) 100%);
    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.85);
    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(--brand-navy);
}

nav.scrolled .hamburger span {
    background: var(--brand-navy);
}

nav.scrolled .btn-app {
    background: var(--brand-navy);
    color: var(--white);
}

nav.scrolled .nav-links a::after {
    background: var(--brand-navy);
}


.logo {
    height: 90px;
    width: 160px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 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-navy);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Content Grid */
.hero-content {
    margin-top: 70px;
    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-navy);
    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: #001250;
    transform: scale(1.02);
}

.search-features {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-navy);
    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: 130px;
    background: linear-gradient(to bottom, transparent, #ffffff 80%);
    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-navy);
        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-navy);
    }

    .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-navy);
   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-teal);
    opacity: 0.1;
}
.how-card h3 {
    color: var(--brand-navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0 10px;
}
.how-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    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);
  }
    
}




.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: #f1f3f5;
    /* 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(--brand-navy);
    /* color: var(--text-main); */
    /* color: var(--brand-teal); */
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}
.connected-card p{
    color: var(--white);
    color: var(--text-muted);
    font-size: 0.89rem;
    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;
}
/* .connect-mockup img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: fill;
} */
 .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-teal);
    display: block;
}
.step-text{
    background-color: var(--brand-navy);
    color: var(--white);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1rem;
}














.destination-container{
    background:
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url('../Assets/OJO4YQ0.jpg');
    background-size: contain;
    background-position: center;

    padding: 80px 6%;
}
.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 p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
} 
@media (max-width: 600px) {
   
    .section-title-center p {
        font-size: 0.89rem;
    } }
.destination-filter {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 20px;
}
.filter-btn {
    background: transparent;
    background: white;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--brand-navy);
    color: var(--white);
}

.destination-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* animation helpers for card transitions */
.destination-cards-container {
    padding-top: 1rem;
    transition: opacity 220ms ease;
}

.esim-card {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 320ms cubic-bezier(.2,.9,.2,1), transform 320ms cubic-bezier(.2,.9,.2,1);
}
.esim-card.show {
    opacity: 1;
    transform: translateY(0);
}




:root {
    --brand-navy: #001A72;
    --brand-teal: #00AF66;
    --text-muted: #64748b;
    --card-shadow: rgba(0, 26, 114, 0.06);
    --hover-shadow: rgba(0, 175, 102, 0.15);
}

.flx-dest-section {
    background-color: #FFFFFF;
    padding: 100px 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{
    /* color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6; */
    /* max-width: 450px; */
   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-navy);
    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: #FFFFFF;
    border: 1px solid #F1F5F9;
    padding: 15px;
    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);
    border-color: var(--brand-teal);
    box-shadow: 0 20px 40px var(--hover-shadow);
}

.flx-dest-left { display: flex; align-items: center; gap: 16px; }

.flx-flag-wrap {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    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: 700; font-size: 1rem; color: var(--brand-navy); display: block; }
.flx-dest-price { color: var(--brand-teal); font-size: 0.875rem; font-weight: 600; }

.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;

    }
}












/* Card */
.esim-card {
    position: relative;
    height: 300px;
    /* width: 340px; */
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.esim-card:hover {
    transform: translateY(-8px);
}

/* Image */
.esim-image {
    width: 100%;
    height: 420px;
    object-fit: fill;
    display: block;
    transition: all 0.4s ease;
}
.esim-card:hover .esim-image {
    scale: 1.1 ;
}

/* Soft Bottom Fade */
.esim-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;

   background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.15) 90%,
    transparent 100%
);

backdrop-filter: blur(10px);
    border-radius: 13px;
}

/* Text */
.esim-content h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 2px;
    font-weight: 600;
}

.esim-content p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin-bottom: 7px;
}

/* Meta Pills */
.esim-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.esim-meta span {
    font-size: 10px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    color: white;
}

/* White Button */
.esim-btn {
    width: 100%;
    padding:  10px 12px;
    border-radius: 50px;
    border: none;
    background: white;
    color: var(--brand-navy);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.esim-btn:hover {
    transform: scale(0.98);
}

.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: 500;
    color: var(--brand-teal);
    cursor: pointer;
}

.connectivity{
    padding: 60px 7%;
     background: radial-gradient(circle at top right, #f0f7ff, #ffffff);
}
.connectivity-title h2{
    color: var(--brand-navy);
}
.simplicity-card-container{
    display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.simplicity-card{
     position: relative;
     height: 420px; /* fixed height for consistent overlays */
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}
.simplicity-image{
     width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* CONTENT OVERLAY */
.simplicity-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 28px;
    border-radius: 26px;
    height: 250px;
background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.60),
    rgba(0, 0, 0, 0.30),
    transparent
);

    backdrop-filter: blur(10px);
    transform: translateY(110px);
    /* opacity: 0; */
    transition: transform 360ms cubic-bezier(.2,.9,.2,1), opacity 280ms ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Reveal overlay cleanly when card is hovered */
.simplicity-card:hover .simplicity-content {
    transform: translateY(0);
    opacity: 1;
}

/* LABEL */
.simplicity-label {
    /* display: inline-block; */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    margin-bottom: 12px;
    width: fit-content;
}

/* TITLE */
.simplicity-title {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.simplicity-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 6px;
    font-family: 500;
}




.faq-section, .refer-and-earn {
    padding: 100px 6%;
     background:
        linear-gradient(135deg, #0a1f44, #071633),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    color: var(--white);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
}

/* --- Left Side Styling --- */

.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: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-size: 0.89rem;
    margin-bottom: 20px;
}

.faq-cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 26px;
    backdrop-filter: blur(10px);
}

.faq-cta-box h3 { margin-bottom: 10px; font-weight: 600; }

.faq-cta-box p{
    font-size: 0.85rem;
    font-weight: 400 !important;
}

.btn-primary-teal {
    background: var(--brand-teal);
    color: var(--brand-navy);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: px;
}

/* --- Right Side Accordion --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: var(--brand-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    font-size: 0.85rem;
}

/* 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: 300px; }

/* Responsive */
@media (max-width: 1024px) {
    .faq-container { grid-template-columns: 1fr; }
    .faq-info h2 { font-size: 2.5rem; }
}




.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: 35px;
}
.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;
    }
}

.refer-and-earn{
    padding: 40px 7%;
}
.refer-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.refer-text-block h2{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
}
.refer-text-block p{
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.04em;
    max-width: 490px;
    margin-bottom: 20px;
}
.btn-primary-white {
    background: var(--white);
    color: var(--brand-navy);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
.refer-image{
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: block;
}
.refer-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 768px) {
    .refer-container {
        flex-direction: column;
        text-align: left;
    }
    .refer-text-block h2 {
        font-size: 1.8rem;
    }
    .refer-text-block p {
        font-size: 0.95rem;
        max-width: unset;
    }
}


.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: #333;
}

.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;
    }
}



.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-navy); /* 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: #001250; /* 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-navy);
    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-navy);
    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: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--brand-navy);
}

.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-navy);
    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; }
}




