/* ======================================================
   প্রবাসী ইন্টারনেট কার্ড
   Base Style
   Version: 1.0
====================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

@import url("variables.css");

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}


body{
    font-family:'Hind Siliguri',sans-serif;
    background:#fffaf4;
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
}
/* Selection */

::selection{

    background:var(--primary);
    color:#fff;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/* Links */

a{

    text-decoration:none;
    color:inherit;

}

/* Image */

img{

    max-width:100%;
    display:block;

}

/* Container */

.container{

    width:min(92%,1180px);
    margin:auto;

}

/* Section */

section{

    padding:80px 0;

}

/* Title */

.section-title{

    font-size:34px;
    font-weight:700;
    text-align:center;
    color:var(--dark);

}

.section-subtitle{

    text-align:center;
    color:var(--muted);
    margin-top:12px;
    font-size:17px;

}

/* Button */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:15px 30px;

    border:none;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    font-size:17px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    background:#fff;

    color:var(--primary);

    border:2px solid var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* Card */

.card{

    background:#fff;

    border-radius:22px;

    box-shadow:var(--shadow-sm);

    transition:.30s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

/* Badge */

.badge{

    display:inline-flex;

    align-items:center;

    gap:7px;

    background:#eefaf3;

    color:var(--primary);

    padding:8px 16px;

    border-radius:999px;

    font-weight:700;

    font-size:14px;

}

/* Utility */

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}


/* ======================================================
   Loader
====================================================== */

.loader{
    position:fixed;
    inset:0;
    background:linear-gradient(135deg,#eafff3,#ffffff);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
}

.loader-box{
    text-align:center;
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:var(--shadow-md);
}

.loader-box img{
    width:85px;
    height:85px;
    object-fit:contain;
    margin:0 auto 12px;
}

.loader-box h3{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    font-size:22px;
    color:var(--dark);
}

.loader-box p{
    color:var(--muted);
    margin-top:6px;
}

/* ======================================================
   Header
====================================================== */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border);
}

.header-container{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-logo{
    width:52px;
    height:52px;
    object-fit:contain;
}

.brand-name{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:24px;
    font-weight:800;
    color:var(--dark);
    white-space:nowrap;
}

.verified-badge,
.title-badge{
    width:18px;
    height:18px;
    object-fit:contain;
    display:inline-block;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:26px;
}

.nav-menu a{
    font-weight:700;
    color:var(--text);
    transition:.25s;
}

.nav-menu a:hover{
    color:var(--primary);
}

.nav-btn{
    background:var(--primary);
    color:#fff!important;
    padding:11px 22px;
    border-radius:999px;
    box-shadow:var(--shadow-sm);
}

.menu-btn{
    display:none;
    border:none;
    background:var(--primary);
    color:#fff;
    width:45px;
    height:45px;
    border-radius:12px;
    font-size:24px;
}

/* ======================================================
   Hero
====================================================== */

.hero{
    padding:95px 0;
    background:
      radial-gradient(circle at top left, rgba(15,143,79,.16), transparent 35%),
      radial-gradient(circle at bottom right, rgba(24,119,242,.13), transparent 32%),
      linear-gradient(180deg,#ffffff,#f4fff8);
}

.hero-container{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:55px;
    align-items:center;
}

.hero-content h1{
    font-size:54px;
    line-height:1.22;
    margin-top:20px;
    color:var(--dark);
    font-weight:800;
}

.hero-content h1 .title-badge{
    width:24px;
    height:24px;
    vertical-align:middle;
}

.hero-content p{
    margin-top:22px;
    font-size:19px;
    color:var(--muted);
    max-width:650px;
}

.hero-checks{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:28px;
}

.hero-checks span{
    background:#fff;
    padding:13px 15px;
    border-radius:14px;
    box-shadow:var(--shadow-sm);
    font-weight:700;
    color:var(--dark);
}

.hero-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:32px;
}

.hero-image{
    padding:18px;
    position:relative;
    overflow:hidden;
}

.hero-image img{
    width:100%;
    height:440px;
    object-fit:cover;
    border-radius:20px;
}

.hero-image-info{
    margin-top:14px;
    background:linear-gradient(135deg,var(--primary),var(--blue));
    color:#fff;
    padding:18px;
    border-radius:18px;
}

.hero-image-info strong{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:20px;
}

.hero-image-info span{
    display:block;
    margin-top:5px;
    opacity:.92;
}

/* ======================================================
   WHY US
====================================================== */

.why-us{

    background:#ffffff;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:50px;

}

.trust-card{

    padding:35px 28px;

    text-align:center;

}

.trust-icon{

    width:72px;

    height:72px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary-light);

    font-size:34px;

    margin-bottom:20px;

}

.trust-card h3{

    font-size:23px;

    margin-bottom:12px;

    color:var(--dark);

}

.trust-card p{

    color:var(--muted);

    font-size:16px;

}


/* ======================================================
   OWNER SECTION
====================================================== */

.owner-section{
  background:linear-gradient(180deg,#f7fbf9,#ffffff);
   
}

.owner-container{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:center;
}

.owner-photo{
  padding:18px;
  position:relative;
}

.owner-photo img{
  width:100%;
  height:470px;
  object-fit:cover;
  border-radius:20px;
}

.owner-label{
  margin-top:14px;
  padding:15px;
  border-radius:16px;
  background:var(--dark);
  color:#fff;
  text-align:center;
  font-weight:700;
}

.owner-content h2{
  margin-top:18px;
  font-size:42px;
  color:var(--dark);
  display:flex;
  align-items:center;
  gap:8px;
}

.owner-content p{
  margin-top:18px;
  font-size:18px;
  color:var(--muted);
}

.owner-points{
  margin-top:25px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.owner-points span{
  background:#fff;
  padding:14px 16px;
  border-radius:14px;
  box-shadow:var(--shadow-sm);
  font-weight:700;
}


/* ======================================================
   PROOF SECTION - PREMIUM FLOW
====================================================== */

.proof-section{
   background:linear-gradient(180deg,#f8f6f1,#efede7);
}

.proof-flow{
  margin-top:55px;
  display:flex;
  flex-direction:column;
  gap:38px;
}

.proof-item{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
  padding:26px;
}

.proof-item:nth-child(even) .proof-img{
  order:2;
}

.proof-img img{
  width:100%;
  height:430px;
  object-fit:cover;
  border-radius:20px;
  border:1px solid var(--border);
}

.proof-text h3{
  font-size:36px;
  margin:18px 0 12px;
  color:var(--dark);
}

.proof-text p{
  font-size:18px;
  color:var(--muted);
  margin-bottom:24px;
}

/* ======================================================
   REVIEWS SECTION
====================================================== */

.reviews-section{
  background:#fff;
}

.review-wrap{
  margin-top:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
}

.phone-frame{
  width:360px;
  max-width:92vw;
  background:#101010;
  border-radius:38px;
  padding:16px;
  box-shadow:var(--shadow-lg);
  border:6px solid #222;
}

.phone-top{
  width:90px;
  height:8px;
  background:#333;
  border-radius:50px;
  margin:0 auto 13px;
}

.phone-frame img{
  width:100%;
  height:570px;
  object-fit:cover;
  border-radius:24px;
  background:#fff;
}

.phone-bottom{
  width:55px;
  height:5px;
  background:#333;
  border-radius:50px;
  margin:13px auto 0;
}

.review-arrow{
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  font-size:38px;
  cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:.25s;
}

.review-arrow:hover{
  background:var(--primary-dark);
  transform:scale(1.06);
}

.review-dots{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.review-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#cfd8d3;
  cursor:pointer;
}

.review-dot.active{
  background:var(--primary);
  transform:scale(1.25);
}

/* ======================================================
   PACKAGES SECTION
====================================================== */

.packages-section{
  background:linear-gradient(180deg,#f7fbf9,#ffffff);
}

.country-tabs{
  margin-top:38px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.country-tab{
  border:none;
  padding:13px 24px;
  border-radius:999px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  font-size:17px;
  font-weight:800;
  cursor:pointer;
  color:var(--dark);
}

.country-tab.active{
  background:var(--primary);
  color:#fff;
}

.package-grid{
  margin-top:45px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.package-card{
  background:#fff;
  border-radius:24px;
  padding:28px 22px;
  box-shadow:var(--shadow-sm);
  text-align:center;
  border:2px solid transparent;
  transition:.25s;
  position:relative;
  overflow:hidden;
}

.package-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
  border-color:var(--primary);
}

.package-card.popular::before{
  content:"জনপ্রিয়";
  position:absolute;
  top:14px;
  right:-34px;
  background:var(--gold);
  color:#111;
  padding:6px 42px;
  font-weight:900;
  transform:rotate(35deg);
  font-size:13px;
}

.package-card h3{
  font-size:32px;
  color:var(--primary);
}

.package-card .minutes{
  margin-top:8px;
  font-size:21px;
  font-weight:800;
  color:var(--dark);
}

.package-card .validity{
  margin:14px 0;
  color:var(--muted);
}

.package-card .price{
  font-size:34px;
  font-weight:900;
  color:var(--dark);
  margin-bottom:18px;
}

.package-card .price span{
  font-size:18px;
}

/* ======================================================
   ORDER PAGE
====================================================== */

.order-page{
  min-height:100vh;
  background:linear-gradient(180deg,#f7fbf9,#ffffff);
}

.order-box{
  max-width:650px;
  margin:45px auto 0;
  padding:30px;
}

.order-box label{
  display:block;
  font-weight:800;
  margin:18px 0 8px;
  color:var(--dark);
}

.order-box input,
.order-box select,
.order-box textarea{
  width:100%;
  padding:15px 16px;
  border:1px solid var(--border);
  border-radius:14px;
  font-size:17px;
  font-family:inherit;
  outline:none;
}

.order-box textarea{
  min-height:100px;
  resize:vertical;
}

.price-box{
  margin-top:18px;
  padding:18px;
  border-radius:16px;
  background:var(--primary-light);
  font-size:22px;
  font-weight:800;
  color:var(--dark);
}

.copy-row{
  display:flex;
  gap:10px;
}

.copy-row button{
  border:none;
  padding:0 20px;
  border-radius:14px;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.payment-note{
  margin-top:12px;
  color:var(--muted);
  font-size:15px;
}

.order-submit{
  width:100%;
  margin-top:25px;
}

/* ======================================================
   FLOATING BUTTONS
====================================================== */

.float-whatsapp{
  position:fixed;
  right:22px;
  bottom:24px;
  z-index:998;
  background:#25D366;
  color:#fff;
  padding:15px 22px;
  border-radius:999px;
  font-weight:900;
  box-shadow:var(--shadow-md);
}

.mobile-bottom-bar{
  display:none;
}


.hero-small-title{
    margin:18px 0 10px;
    color:var(--primary);
    font-size:20px;
    font-weight:700;
    line-height:1.5;
}

.owner-label{
    background:#0d2518;
    color:#fff;
    text-align:center;
    padding:16px;
    font-weight:700;
    border-radius:0 0 18px 18px;
}


.site-footer{
  background:#0d2518;
  color:#fff;
  text-align:center;
  padding:35px 15px;
  margin-top:60px;
}

.site-footer p{
  margin:5px 0;
  font-weight:600;
}

.developer-btn{
  display:inline-block;
  margin-top:15px;
  background:#25D366;
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  border:none;
}


/* ===================================
   Premium Soft Background
=================================== */

.hero,
.about-section,
.owner-section,
.proof-section,
.reviews-section,
.packages-section,
.faq-section{
    background:transparent;
}

.card,
.package-card,
.review-card,
.proof-card,
.owner-card{
    background:rgba(255,255,255,.93);
    backdrop-filter:blur(10px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    border:1px solid rgba(255,255,255,.7);
}

.hero,
.why-us,
.owner-section,
.proof-section,
.reviews-section,
.packages-section{

    background:transparent;

}


/* ======================================================
   THEME 3: EMIRATES LUXURY UPGRADE
====================================================== */

.hero{
    background:
    radial-gradient(circle at top left, rgba(246,181,0,.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15,143,79,.18), transparent 30%),
    linear-gradient(135deg,#07140d 0%, #102018 45%, #1a1206 100%);
}

.hero-content h1,
.hero-content p,
.hero-small-title{
    color:#fff;
}

.hero-content .badge{
    background:rgba(246,181,0,.18);
    color:#ffe7a3;
    border:1px solid rgba(246,181,0,.35);
}

.hero-checks span{
    background:rgba(255,255,255,.10);
    color:#fff;
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(10px);
}

.hero-image{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(246,181,0,.25);
    box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.owner-label{
    background:linear-gradient(135deg,#0d2518,#1a1206);
    color:#ffe7a3;
}

.reviews-section,
.packages-section{
    background:
    radial-gradient(circle at top right, rgba(246,181,0,.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(15,143,79,.16), transparent 30%),
    linear-gradient(135deg,#07140d 0%, #102018 55%, #1a1206 100%);
}

.reviews-section .section-title,
.reviews-section .section-subtitle,
.packages-section .section-title,
.packages-section .section-subtitle{
    color:#fff;
}

.reviews-section .badge,
.packages-section .badge{
    background:rgba(246,181,0,.18);
    color:#ffe7a3;
    border:1px solid rgba(246,181,0,.35);
}

.package-card{
    background:rgba(255,255,255,.96);
    border:1px solid rgba(246,181,0,.25);
}

.country-tab{
    border:1px solid rgba(246,181,0,.25);
}

.country-tab.active{
    background:linear-gradient(135deg,#f6b500,#ff8c00);
    color:#111;
}

.btn{
    background:linear-gradient(135deg,#0f8f4f,#066b39);
}

.btn-outline{
    background:#fff;
    color:#0f8f4f;
}

.btn-outline:hover{
    background:linear-gradient(135deg,#f6b500,#ff8c00);
    color:#111;
}

.float-whatsapp{
    background:linear-gradient(135deg,#25D366,#0f8f4f);
}
