
  h1 {text-align:center;margin-bottom:25px;}

  /* 🌟 Corporate Tabs */
  .plan-tabs {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    background:linear-gradient(145deg,#ffffff,#f2f5f8);
    box-shadow:inset 0 2px 5px rgba(255,255,255,0.6),
               0 4px 15px rgba(0,0,0,0.08);
    border-radius:50px;
    padding:6px;
    position:relative;
    margin:0 auto 35px auto;
    transition:all 0.3s ease-in-out;
  }
  .plan-tabs .tab-btn {
    border:none;outline:none;cursor:pointer;
    background:transparent;color:#333;
    font-size:15px;font-weight:600;
    border-radius:40px;
    padding:10px 22px;
    display:flex;align-items:center;gap:8px;
    transition:all 0.35s ease;z-index:2;
  }
  .plan-tabs .tab-btn span {
    font-size:18px;opacity:0.8;transition:transform 0.3s ease;
  }
  .plan-tabs .tab-btn:hover span {
    transform:scale(1.1) rotate(8deg);
  }
  .plan-tabs .tab-btn.active {
    background:linear-gradient(135deg,#7EBB42,#7EBB42);
    color:#fff;box-shadow:0 4px 15px #7EBB42;
    transform:translateY(-2px);
  }
  .plan-tabs::before {
    content:"";position:absolute;bottom:4px;left:0;
    height:6px;width:33%;
    background:linear-gradient(90deg,#014909,#003d0c);
    border-radius:10px;
    transition:all 0.4s ease-in-out;z-index:1;
  }
  .plan-tabs[data-active="daily"]::before {transform:translateX(0%);}
  .plan-tabs[data-active="monthly"]::before {transform:translateX(100%);}
  .plan-tabs[data-active="yearly"]::before {transform:translateX(200%);}
  @media(max-width:600px){
    .plan-tabs {font-size:14px;padding:4px;}
    .plan-tabs .tab-btn {padding:8px 16px;}
  }

  /* 💳 Slider + Cards */
  .slider-container {
    max-width:1000px;margin:0 auto;
    overflow-x:auto;scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    display:flex;gap:20px;padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }
  .slider-container::-webkit-scrollbar {height:8px;}
  .slider-container::-webkit-scrollbar-thumb {
    background:#7EBB42;border-radius:6px;
  }
  .pricing-card {
    flex:0 0 300px;scroll-snap-align:start;
    background:white;border-radius:15px;
    padding:25px;text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    transition:all .4s ease;opacity:0;
    transform:translateY(20px);
  }
  .pricing-card.show {
    opacity:1;transform:translateY(0);
    transition:opacity 0.5s ease,transform 0.5s ease;
  }
  .pricing-card:hover {
    transform:translateY(-6px) scale(1.03);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    box-shadow: 0 4px 10px #7EBB42;
  }
  .pricing-card img {
    width:180px;height: 180px;margin-bottom:15px;transition:transform .3s ease;
  }
  .pricing-card:hover img {transform:rotate(5deg) scale(1.1);}
  .pricing-card h3 {margin-bottom:8px;}
  .pricing-card p {color:#666;font-size:14px;margin-bottom:10px;}
  .price {font-size:24px;color:#7EBB42;font-weight:700;margin-bottom:10px;}
  ul {list-style:none;text-align:left;padding-left:20px;}
  ul li {margin-bottom:8px;position:relative;padding-left:20px;}
  ul li::before {content:"";position:absolute;left:0;color:#7EBB42;}
  .btn {
    display:inline-block;margin-top:12px;padding:10px 20px;
    background:#7EBB42;color:#fff;border-radius:6px;
    text-decoration:none;transition:.3s;
  }
  .btn:hover {background:#cc3600;box-shadow:0 0 12px rgb(255, 255, 255);}
  @media(max-width:600px){.pricing-card{flex:0 0 80%;}}

  


  /* global slider */
/* global slider */

.country-slider-section {
  background: #f8f9fa;
}

.countrySwiper {
  padding: 40px 0;
}

.country-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* 🔥 Black & White default */
.country-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.3s;
  
  filter: grayscale(100%);       /* B/W */
  opacity: 0.8;                  /* slight fade */
}

/* Title Style */
.country-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* Hover Effects */
.country-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* 🔥 Colorful on hover */
.country-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);         /* Color */
  opacity: 1;
}

/* Responsive */
@media (max-width: 576px) {
  .country-card img {
    width: 90px;
    height: 90px;
  }
}




/* -------------------------
   INDIA CITY SLIDER (B/W → Color)
-------------------------- */

.city-slider-section {
  background: #f8f9fa;
}

.citySwiper {
  padding: 40px 0;
}

/* Slide Card */
.city-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* Default → Black & White */
.city-card img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.35s ease;
}

/* Title */
.city-card h5 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

/* Hover → Color + Zoom */
.city-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.city-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive */
@media(max-width: 576px) {
  .city-card img {
    width: 90px;
    height: 90px;
  }
}


/* =========================
   MOBILE RESPONSIVE ( <576px )
========================= */
@media (max-width: 575px) {

  /* SECTION PADDING */
  .countrySwiper,
  .citySwiper {
    padding: 20px 0;
  }

  /* CARD STYLE */
  .country-card,
  .city-card {
    padding: 15px;
    border-radius: 16px;
  }

  /* IMAGES */
  .country-card img,
  .city-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  /* TITLES */
  .country-card h5,
  .city-card h5 {
    font-size: 15px;
  }

  /* MOBILE TOUCH FIX (hover remove) */
  .country-card:hover,
  .city-card:hover {
    transform: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }

  .country-card:hover img,
  .city-card:hover img {
    transform: none;
  }
}



@media (max-width: 400px) {
  .country-card img,
  .city-card img {
    width: 70px;
    height: 70px;
  }

  .country-card h5,
  .city-card h5 {
    font-size: 14px;
  }
}




 /* Blog/News Cards CSS */
    section.blog-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }

    section.blog-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      text-align: center;
    }

    .blog-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .blog-card {
      width: 300px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #fff;
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-card h3 {
      font-size: 1.2rem;
      margin: 10px;
    }

    .blog-card p {
      margin: 10px;
      font-size: 0.95rem;
      color: #555;
    }

    .blog-card a {
      display: block;
      margin: 10px;
      color: #0E7EC0;
      text-decoration: none;
      font-weight: bold;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
