/* Basic starter styles — minimal, accessible, and light */
:root {
  --brand: #0d6efd;
  --brand-ink: #0b5ed7;
}

#contact ul li span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#contact i {
  flex-shrink: 0;
}

#contact .btn {
  white-space: normal; /* allow text wrap */
}



html {
  scroll-behavior: smooth;
}

@media (min-width: 992px) {

  html {
    scroll-padding-top: var(--navbar-height, 0px);
  }
}

.text-left {
  text-align: left;
}

body {
  font-feature-settings: "liga", "kern";
}

img {
  max-width: 100%;
  height: auto;
}

/* Improve focus styles for a11y */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

/* Cards */
.card {
  border-radius: 1rem;
}

.rounded-4 {
  border-radius: 1rem !important;
}


/* font sizing */
.text-xxs {
  font-size: xx-small;
}

@media (min-width: 768px) {
  .sticky-desktop {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    /* subtle shadow */
  }
}

/*------------------------*/
/* Contact Section */
/*------------------------*/
.form-border {
  border: 0.0625rem solid rgba(0, 0, 0, 0.81) !important;

}

/*------------------------*/
/* Packages Section */
/*------------------------*/

.for-hide {
  visibility: hidden;
}


/*------------------------*/
/* headings style */
/*------------------------*/
.etisalat-desc {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Ubuntu', sans-serif;
}


/*----------------------*/
/*    Popup form        */
/*----------------------*/

/* Overlay */
#offerPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  font-family: "Arial", sans-serif;
}

/* Popup Box */
.popup-box {
  background: linear-gradient(135deg, #ffffff, #f4f4f4, #eaeaea);
  border-radius: 0px;
  max-width: 340px;
  width: 90%;
  /* padding: 22px; */
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.5s ease;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid #E60000; /* red outline */
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: #444;
  transition: 0.3s;
}
.close-btn:hover {
  color: #e60000;
}

/* Logo */
.popup-logo {
  margin-bottom: 8px;
}
.popup-logo img {
  height: 180px;
}

/* Heading */
.popup-heading {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: left;
}

/* Offers Section */
.offers {
  list-style: none;
  padding: 0;
  margin: 0 0 0px;
  text-align: left;
}
.offers li {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

/* Divider */
.divider {
  border: none;
  height: 2px;
  background: #eee;
  margin: 10px 0 14px;
}

/* Inputs */
.popup-box input,
.popup-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* Main Button */
.popup-box button {
  width: 100%;
  padding: 14px;
  background: #e60000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.popup-box button:hover {
  background: #cc0000;
}

/* WhatsApp Button */
.whatsapp-box {
  margin-top: 12px;
  margin-bottom: 12px;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}
.whatsapp-btn img {
  margin-right: 8px;
}
.whatsapp-btn:hover {
  background: #1ebe5c;
}


/* Disclaimer */
.disclaimer {
  font-size: 11px;
  margin-top: 5px;
  color: #777;
  line-height: 1.4;
  align-items: left;
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* accordion styling */

.accordion-button::after {
  filter: invert(1) brightness(2);
  /* makes arrow white */
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #000;
  /* red */
}

.contact-link {
  color: inherit;        /* keeps the text the same as surrounding text */
  text-decoration: none; /* removes underline */
}

.contact-link:hover {
  color: #e30613;        /* optional hover effect, Etisalat red for example */
}
/* Call Now Floating button */

/* Wrapper fixed at bottom left */
.call-now-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

/* Flexbox container */
.call-now {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

/* Bubble text */
.call-text {
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

/* Call icon circle */
.call-icon {
  width: 50px;
  height: 50px;
  background: #e30613; /* Red */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover Effects */
.call-now:hover .call-icon {
  transform: scale(1.1);
  background: #b3000f; /* Darker red */
}

.call-now:hover .call-text {
  background: #f8f8f8;
  color: #e30613;
}

/* Whatsapp floating button */

/* Floating Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
}

/* Bubble Tooltip */
.msg-bubble {
  position: absolute;
  right: 65px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Bubble Arrow */
.msg-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

/* Show Bubble on Hover */
.whatsapp-float:hover .msg-bubble {
  opacity: 1;
  visibility: visible;
}

/* Show separator only in horizontal (row) view */
@media (max-width: 575.98px) {
  .useful-links li:not(:last-child)::after {
    content: "|";
    margin: 0 6px;
    color: #dc3545; /* same red shade */
    font-weight: bold;
  }
}


/*-----------blogs-----------*/

.blog-card .blog-img {
  width: 100%;
  height: 200px;       /* You can change to 220px or 250px */
  object-fit: cover;   /* Prevents stretching, crops image nicely */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}


/* Overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* background fade */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Hide initially */
.hidden {
  display: none;
}

/* Loader box */
.loader-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Spinner */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e60000; /* red */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}


/* Preloader Overlay */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff; /* background color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* Loader Animation (spinner) */
.loaders {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #e60000; /* red spinner */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* NAV BACKGROUND */
.simple-nav{
  background:#e9e7de;
  border-bottom:1px solid rgba(0,0,0,.08);
}

/* LOGO */
.nav-logo{
  height:72px;
}

/* NAV LINKS */
.nav-links .nav-link{
  font-size:20px;
  font-weight:600;
  color:#222;
  padding:6px 18px;
}
@media (max-width: 991.98px){
  .nav-links .nav-link{
    font-size: 17px;
    font-weight: 600;
    color: #222;
    padding: 2px 7px;
  }
}

/* PHONE */
.nav-phone{
  color:#e00000;
  font-weight:700;
  font-size:20px;
  text-decoration:none;
}

/* PHONE + QR */
.nav-contact{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:10px;
}

/* QR */
.wa-qr{
  height:32px;
  width:32px;
  border-radius:4px;
}
@media (max-width: 991.98px){
  .nav-logo{
    margin-left: 12px;   /* adjust as you like */
  }
}

/* Dropdown look matching your nav */
.simple-nav .dropdown-menu{
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  padding: 8px;
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

.simple-nav .dropdown-item{
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  padding: 10px 12px;
}

.simple-nav .dropdown-item:hover{
  background: rgba(224,0,0,.10);
  color: #222;
}

/* Make dropdown arrow align nicely */
.nav-links .dropdown-toggle::after{
  margin-left: 6px;
  vertical-align: middle;
}

/* Mobile dropdown sizing */
@media (max-width: 991.98px){
  .simple-nav .dropdown-item{
    font-size: 14px;
    padding: 8px 10px;
  }
}
/* ================================
   Mobile nav links box styling
   ================================ */
@media (max-width: 991.98px){

  /* Wrapper look */
  .simple-nav .nav-links{
    background: #ffffff;
    border-radius: 14px;
    padding: 8px 6px;
    margin: 8px auto 4px;
    width: fit-content;

    /* soft floating card effect */
    box-shadow:
      0 8px 22px rgba(0,0,0,0.12),
      0 2px 6px rgba(0,0,0,0.08);
  }

  /* Each link spacing */
  .simple-nav .nav-links .nav-link{
    padding: 6px 8px;
    font-size: 17px;
    border-radius: 10px;
  }

  /* Active / hover feedback */
  .simple-nav .nav-links .nav-link:hover,
  .simple-nav .nav-links .nav-link:focus{
    background: rgba(224,0,0,0.08);
  }

}
@media (max-width: 991.98px){

 
}




/* Slider base */
.hero-slider .carousel {
  position: relative;
  overflow: hidden;
}

/* Image height */
.hero-img {
  height: 380px;
  object-fit: cover;
}

/* Pills overlay */
.slider-pills-wrap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  z-index: 5;

  display: flex;
  justify-content: center;
  gap: 18px;

  padding: 12px;
  border-radius: 9px;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-pill {
  flex: 1;
  text-align: center;

  padding: 10px 18px;
  border-radius: 9px;

  font-size: 18px;
  font-weight: 600;
  text-decoration: none;

  color: #111;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.slider-pill.active-pill { box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.slider-pill:hover { background: rgba(255, 255, 255, 0.75); }

/* PROMO overlay (night only) */
.promo-overlay{
  position: absolute;
  inset: 0;
  display: none;                 
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  z-index: 4;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.05) 60%, rgba(0,0,0,0));
}
.promo-overlay::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
  z-index: -1;
}

/* .promo-box{
  max-width: 520px;
  color: #ffffff;
  padding: 28px 30px;
  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45)
  );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.08);
} */


/* .promo-box{
  max-width: 520px;
  color: #fff;
} */

.promo-box{
  max-width: 520px;
  color: #ffffff;
}
/* ✅ Fix spotlight coverage on mobile so background matches text width */
@media (max-width: 991.98px){
  .promo-overlay{
    padding: 16px;
    justify-content: flex-start;   /* optional: centers text on mobile */
  }

  /* Make spotlight cover full banner on mobile */
  .promo-overlay::before{
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.70),
      rgba(0,0,0,0.35),
      rgba(0,0,0,0)
    );
  }

  /* Prevent text box from stretching too wide */
  .promo-box{
    max-width: 92%;
  }
}


.promo-badge{
  display:inline-flex;
  background: #e10000;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.promo-title{
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 10px;
}

.promo-sub{
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  opacity: .95;
}

.promo-btn{
  display:inline-block;
  background: #ffffff;
  color: #e10000;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 991.98px) {
  .hero-img { height: 260px; }
  .slider-pills-wrap { left: 10px; right: 10px; bottom: 6px; }
  .slider-pill { font-size: 16px; padding: 9px 12px; }

  .promo-overlay{ padding: 16px; }
  .promo-title{ font-size: 28px; }
  .promo-sub{ font-size: 14px; }
}



/* Heading container */
.section-heading-wrap{
  border: 1.5px solid #bdbdbd;   /* soft grey border */
  border-radius: 16px;
  padding: 8px 2px;
  text-align: center;
  margin: 20px;
  background: #fff;
}

/* Heading text */
.section-heading{
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #e53935;               /* clean red like your image */
  line-height: 1.2;
}

/* Tablet */
@media (max-width: 991.98px){
  .section-heading{
    font-size: 32px;
  }
  .section-heading-wrap{
    padding: 22px 16px;
  }
}

/* Mobile */
@media (max-width: 575.98px){
  .section-heading{
    font-size: 26px;
  }
  .section-heading-wrap{
    padding: 18px 14px;
    border-radius: 14px;
  }
}

/* ================= GLOBAL ================= */
html, body{
  overflow-x: hidden;
}

/* ================= LEFT TEXT ================= */
.plans-title{
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  margin: 0 0 12px;
}

.plans-sub{
  font-size: 17px;
  line-height: 1.55;
  color: #222;
  max-width: 520px;
}

/* ================= CARD COLUMN ================= */
.plan-col{
  display: flex;
  justify-content: center; /* center on mobile */
}

/* ================= CARD ================= */
.plan-card{
  width: 100%;
  max-width: 420px;        /* mobile center width */
  min-height: 660px;       /* fixed height */
  border: 1.5px solid #bdbdbd;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;

  display: flex;           /* for button bottom */
  flex-direction: column;
  padding: 18px;
}

/* Desktop width */
@media (min-width: 992px){
  .plan-card{
    max-width: 100%;
    min-height: 550px;
  }
}

/* ================= TOP ================= */
.plan-card-top{
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding-bottom: 14px;
}

.plan-name{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.plan-meta{
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.plan-price{
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-currency{ font-size: 26px; font-weight: 900; }
.plan-amount{ font-size: 30px; font-weight: 900; }
.plan-suffix{ font-size: 22px; font-weight: 700; }

.plan-vat{
  font-size: 13px;
  color: #444;
  margin-top: 2px;
}

/* ================= STRIP ================= */
.plan-strip{
  margin: 14px -18px 0;
  padding: 10px;
  background: rgba(240,228,230,.7);
  text-align: center;
  font-weight: 800;
}

/* ================= FEATURES ================= */
.plan-features{
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  flex: 1;                 /* grows to push button down */
}

.plan-features li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 4px 0;
}

.fi{
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,.04);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.fi i{
  font-size: 22px;
  color: #111;
}

.fi-img img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* text */
.ft{
  font-size: 15px;
  font-weight: 700;
}
.fd{
  font-size: 16px;
  font-weight: 900;
  margin-top: 3px;
}

/* ================= BOTTOM ================= */
.plan-bottom{
  margin-top: auto;        /* sticks to bottom */
  padding-top: 12px;
}

.plan-note{
  color: #e00000;
  font-weight: 800;
  margin-bottom: 12px;
}

.plan-note.best{
  color: #e00000;
}

/* ================= BUTTON ================= */
.plan-btn{
  display: block;
  margin: 0 auto;
  width: min(260px, 90%);
  padding: 12px 16px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
}

.plan-btn:hover{
  color: #fff;
  opacity: .9;
}

/* ============ Card Layout ============ */
.elife-card{
  width: 100%;
  max-width: 330px;
  min-height: 640px;           /* fixed height */
  border: 1.5px solid #bdbdbd;
  border-radius: 14px;
  background: #fff;
  padding: 12px 12px 10px;

  display: flex;               /* button stays bottom */
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Badge (Best Seller) */
.elife-badge{
  position: absolute;
  top: 0.1px;
  left: 0px;
  background: #d40000;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 0px;
}

/* Title */
.elife-title{
  margin: 18px 0 2px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

/* Blocks */
.elife-block{ margin-bottom: 1px; }
.elife-label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
}
.elife-value{
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

/* Bar */
.elife-bar{
  height: 8px;
  background: #e9e9e9;
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden;
}
.elife-bar span{
  display:block;
  height: 100%;
  background: #000;
  border-radius: 999px;
}

/* promo text under bar */
.elife-promo-text{
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #d40000;
}

/* Logos row */
.elife-logos{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.elife-logos img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

/* Additional benefits header */
.elife-additional{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
}
.info-dot{
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #444;
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
}

/* Promotions (red gradient block) */
.elife-promotions{
  background: linear-gradient(90deg, #ff3b3b, #d40000);
  color: #fff;
  padding: 14px 16px;
  border-radius: 0;
  margin: 6px -18px 1px; /* full width inside card */
}
.promo-title{
  font-weight: 900;
  margin-bottom: 8px;
}
.elife-promotions .promo-title
{
    font-size: 16px;
}
.elife-promotions ul{
  margin: 0;
  padding-left: 18px;
}
.elife-promotions li{
  font-weight: 700;
  font-size: 13px;
}

/* Price area */
.elife-price-area{
  margin-top: auto;           /* pushes to bottom */
  padding-top: 6px;
}
.elife-commit{
  font-size: 13px;
  color: #444;
  margin-bottom: 4px;
}
.elife-price{
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}
.price-num{ font-size: 28px; }
.price-suffix{ font-size: 20px; font-weight: 900; }

.elife-discount-row{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.disc-pill{
  background: #d40000;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
}
.old-price{
  color: #111;
  text-decoration: line-through;
  font-weight: 800;
  font-size: 13px;
}

.elife-vat{
  font-size: 12px;
  color: #444;
  margin-top: 6px;
}

/* CTA */
.elife-cta{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}
.elife-btn{
  display: inline-block;
  width: 80%;
  background: #000;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 900;
}
.elife-btn:hover{ color:#fff; opacity:.92; }

/* Responsiv tweaks */
@media (max-width: 575.98px){
  .elife-card{
    max-width: 420px;
    min-height: 640px;
  }
  .elife-title{ font-size: 20px; }
}

/* ===== Footer (New) ===== */
.footer-new{
  background: #E5E5DA;   /* same bg */
  color: #1f2937;
  padding: 46px 0 22px;
  font-family: inherit;
}

.footer-logo{
  width: min(260px, 100%);
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-title{
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 12px;
  color: #111;
}

.footer-text{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #1f2937;
  max-width: 34ch;
}

/* verify link */
.footer-verify{
  font-size: 13px;
  line-height: 1.55;
  margin: 10px 0 10px;
  color: #374151;
  max-width: 40ch;
}

.footer-verify-link{
  color: #d10000;
  font-weight: 800;
  text-decoration: none;
}
.footer-verify-link:hover{
  text-decoration: underline;
}

/* small badges */
.footer-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.footer-badge{
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  color: #111;
}

/* phone button */
.footer-phone{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  color: #d10000;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-phone i{
  font-size: 18px;
}
.footer-phone:hover{
  opacity: .9;
}

/* list */
.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #1f2937;
}
.footer-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-list i{
  margin-top: 2px;
  color: rgba(0,0,0,0.55);
  font-size: 16px;
  min-width: 18px;
}
.footer-list a{
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
}
.footer-list a:hover{
  text-decoration: underline;
}

/* divider + bottom */
.footer-divider{
  margin: 26px 0 14px;
  border: 0;
  height: 1px;
  background: rgba(0,0,0,0.12);
}

.footer-bottom{
  text-align: center;
  font-size: 12.5px;
  color: #374151;
}

/* responsive */
@media (max-width: 767.98px){
  .footer-new{
    padding: 36px 0 18px;
  }
  .footer-text,
  .footer-verify{
    max-width: 100%;
  }
  .footer-phone{
    font-size: 18px;
  }
}
.b-pad{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

@media (max-width: 991.98px){
.b-pad{
     padding-left: 0rem !important;
    padding-right: 0rem !important;
}
}

/* About box styling */
.about-box{
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;

  /* soft premium shadow */
  box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    0 4px 10px rgba(0,0,0,0.04);

  transition: transform .25s ease, box-shadow .25s ease;
}

/* Optional hover effect (desktop only) */
@media (hover:hover){
  .about-box:hover{
    transform: translateY(-3px);
    box-shadow:
      0 16px 40px rgba(0,0,0,0.12),
      0 6px 14px rgba(0,0,0,0.06);
  }
}

/* Text inside */
.about-text{
  font-size: 14.5px;
  line-height: 1.65;
  color: #1f2937;
}


@media (max-width: 991.98px){
  .plans-section{
    padding-left: 42px;
    padding-right: 42px;
  }

  /* Also add inner spacing for extra safety */
  .elife-section .container{
    padding-left: 42px !important;
    padding-right: 42px !important;
  }
}
