/* ================= Reset & Base ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  background: #f9f9f9;
  color: #333;
  padding-top: 80px;
}

html {
  scroll-behavior: smooth;
}

/* ================= Header ================= */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 0;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.container {
  max-width: 100%;
  margin: auto;
  padding: 0 10px;
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  width: 60px;
  object-fit: contain;
  margin-right: 30px;
}

/* ================= Nav links ================= */
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: rgb(8, 70, 83);
  text-decoration: none;
  font-weight: 900;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #00bcd4;
}

.nav-links li a.active {
  color: #00bcd4;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 4px;
}

/* ================= CTA (Login Button) ================= */
.header-cta {
  display: flex;
  margin-left: auto;
}

.header-cta a {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.header-cta .btn-primary {
  background: #02558a;
  color: #fff;
  font-weight: 700;
}

.header-cta .btn-primary:hover {
  background: #0097a7;
}

/* ================= Hero ================= */
.hero {
  background: linear-gradient(-45deg, #02558a, #094570, #0fa3d5, #0339a5);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  padding: 60px 20px;
  flex: 1;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.text {
  flex: 1;
  padding: 20px;
}

.text h1 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #7dcef6;
}

.highlight { color: #f7ff01; }

.text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background:#C6FF00;
  color: #032b3e;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  transition: background 0.3s;
}

.btn:hover { background: #cae847; }

.image {
  flex: 1;
  text-align: center;
}

.image img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.tagline {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* ================= Footer ================= */
.site-footer {
  background: #1a1a1a;
  color: #f9f9f9;
  padding: 40px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-logo { width: 120px; margin-bottom: 10px; }

.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin: 8px 0; }
.footer-links ul li a { color: #f9f9f9; text-decoration: none; transition: color 0.3s; }
.footer-links ul li a:hover { color: #00bcd4; }

.footer-contact p { margin: 5px 0; }

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
  color: #f9f9f9;
  transition: color 0.3s;
}
.social-icons a:hover { color: #00bcd4; }

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
}

/* ================= Sections ================= */
.section { padding: 60px 20px; text-align: center; }
.alt-bg { background: #f4f4f4; }

/* ================= Animations ================= */
@keyframes fadein { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes slideup { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoom { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}
.animate-fadein { animation: fadein 1s ease forwards; }
.animate-slideup { animation: slideup 1s ease forwards; }
.animate-slideup-delay { animation: slideup 1s ease forwards; animation-delay: 0.5s; }
.animate-zoom { animation: zoom 1s ease forwards; }
.animate-zoom-delay { animation: zoom 1s ease forwards; animation-delay: 0.3s; }
.animate-zoom-delay2 { animation: zoom 1s ease forwards; animation-delay: 0.6s; }
.animate-bounce:hover { animation: bounce 0.8s; }

/* ================= Services ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card-main {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-main img {
  width: 100px; height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}
.service-card-main h3 { margin-bottom: 10px; color: #02558a; }
.service-card-main p { font-size: 15px; color: #555; }
.service-card-main:hover { transform: translateY(-8px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ================= Pricing ================= */
.toggle-wrapper {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; margin: 20px 0 30px; font-size: 15px; color: #444;
}

.switch { position: relative; display: inline-block; width: 50px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc; transition: .4s; border-radius: 24px;
}
.slider:before {
  position: absolute; content: "";
  height: 18px; width: 18px; left: 3px; bottom: 3px;
  background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: #02558a; }
input:checked + .slider:before { transform: translateX(26px); }

.pricing-grid { display: grid; gap: 25px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.pricing-card.featured { border-width: 3px !important; }

.badge { background: gold; color: #000; padding: 4px 10px; font-size: 12px; border-radius: 15px; margin-left: 8px; }

.price { margin: 15px 0; }
.price .old { text-decoration: line-through; color: #081f47; margin-right: 6px; }
.price .current { color: #d32f2f; font-weight: bold; font-size: 20px; }

ul { list-style: none; margin: 15px 0; text-align: left; }
ul li { margin: 6px 0; font-size: 14px; }
ul li.yes { color: #2e7d32; }
ul li.no { color: #c62828; }

.pricing-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.pricing-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.pricing-btn:active { transform: translateY(0); box-shadow: 0 3px 6px rgba(0,0,0,0.2); }

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .text h1 { font-size: 30px; }
  .image img { max-height: 400px; }
}

@media (max-width: 768px) {
  /* Hide nav links */
  .nav-links { display: none; }

  /* Show only login button */
  .header-cta {
    display: flex;
    margin-left: auto;
  }

  .header-cta a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .hero { padding: 40px 15px; }
  .text h1 { font-size: 26px; }
  .image img { max-height: 350px; }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .text h1 { font-size: 22px; line-height: 1.3; }
  .text p { font-size: 14px; }
  .btn, .pricing-btn { padding: 10px 20px; font-size: 0.9rem; }
  .image img { max-height: 280px; }
  .logo { height: 40px; width: 40px; margin-right: 15px; }
  .header-cta a { padding: 6px 12px; font-size: 0.85rem; }
  .footer-container { font-size: 14px; }
}

/* overlay background */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; justify-content: center; align-items: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
}

/* modal card */
.modal-card {
  background: #fff;
  width: 90%; max-width: 480px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeUp 0.35s ease;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* close button */
.modal-close {
  position: absolute; top: 15px; right: 15px;
  border: none; background: none;
  font-size: 1.8rem; cursor: pointer;
  color: #777;
}
.modal-close:hover { color: #000; }

/* heading */
.modal-title {
  margin: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  color: #222;
}

/* form layout */
.modal-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.modal-form label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
}

.modal-form input,
.modal-form textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  transition: border-color .2s;
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: #3498db;
  outline: none;
}

/* button */
.btn-primary1 {
  background: #3498db;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary1:hover {
  background: #2980b9;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px);}
  to   { opacity: 1; transform: translateY(0);}
}

.modal-alert {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  display: none;
}
.modal-alert.info    { display:block; background:#e3f2fd; color:#1976d2; }
.modal-alert.success { display:block; background:#e8f5e9; color:#2e7d32; }
.modal-alert.error   { display:block; background:#ffebee; color:#c62828; }


.feature-icon {
  color: #3b82f6;        /* Tailwind's blue-500 style; adjust as needed */
  margin-bottom: 15px;
  display: block;
}

.hero {
  padding: 2rem 1rem;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero .text {
  flex: 1;
}

.hero .image {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;   /* stack text & image */
    text-align: center;
  }

  .easy-business-badge {
    font-size: clamp(1rem, 4vw, 1.4rem);  /* scale with screen */
    padding: 0.1em 0.5em;
    border-radius: 20px;
    margin: 0.5rem auto;   /* center badge */
    display: inline-block;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6em 1.2em;
    font-size: 1rem;
  }
}

.easy-business {
  background: linear-gradient(45deg, #ff5722, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.easy-business-badge {
  font-family: 'Hind Siliguri', sans-serif; /* or 'Noto Sans Bengali', sans-serif */
  display: inline-block;
  background: #f00808;
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 30px;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 600;
  margin: 1rem 0;
}

