

/* ===== HERO SECTION ===== */
.hero-banner-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.hero-banner {
  flex: 2;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
}

.demo-button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.demo-button,
.quote-button {
  width: 49%;
  height: 50px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
  font-size: 1.1rem;
  white-space: nowrap;
  padding: 0;
}

.active {
  background: linear-gradient(135deg, #fa4b4b, #3a5cf5);
  color: #fff;
}

.demo-button-color {
  background: linear-gradient(135deg, #fa4b4b, #3a5cf5);
  color: #fff;
}

.quote-button-color {
  background: #ffffff;
  color: #0e1b7b;
  border: 1px solid #0e1b7b;
}

.demo-button:hover,
.quote-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===== PRICING GRID ===== */
.features-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 2rem;
}

/* ===== CARD BASE ===== */
.feature-card {
  background: linear-gradient(135deg, #706ac0, #324491);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  flex: 1;
  box-shadow: 0 5px 5px rgb(166, 166, 218);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 20px rgb(175, 176, 219);
}

/* ===== FEATURED CARD ===== */
.feature-card.featured {
  transform: scale(1.12);
   background: linear-gradient(135deg, #2c0eb3, #0b155f);
  z-index: 2;
}

.feature-card.featured:hover {
  box-shadow: 0 10px 10px rgb(141, 142, 219);
  transform: translateY(-10px) scale(1.16);
}

.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff9800;
  color: white;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
}

/* ===== PREMIUM CARD ===== */
.premium {
   background: linear-gradient(135deg, #706ac0, #324491);
}

.premium:hover {
 box-shadow: 0 10px 20px rgb(175, 176, 219);
  transform: translateY(-12px) scale(1.05);
}

/* ===== PLAN TEXT DESIGN ===== */
.plan-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.plan-subtitle {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 18px;
}

.badge {
  background: #ffd166;
  color: #000;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 6px;
  font-weight: 600;
}

/* ===== PRICE BLOCK ===== */
.price-block {
  margin: 10px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.9;
}

.price-main {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.secondary .price-main {
  font-size: 1.3rem;
  font-weight: 700;
  opacity: 0.95;
}

.highlight .price-main {
  font-size: 1.5rem;
  color: #ffd166;
  font-weight: 800;
  margin-bottom: 0%;
 
}

.duration {
  font-size: 0.98rem;
  opacity: 0.9;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 1rem;
  margin: 8px 0;
}
.discount-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ef476f;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.discount-pill {
  background: rgba(255, 209, 102, 0.15);
  color: #f1ede3;
  margin-top:0%;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
}
.discount-label {
  margin-top: 0px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #dfe7e5;
 
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}
.main-block{
background: rgba(93, 203, 236, 0.322);
 padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}
/* ===== FEATURES LIST ===== */
.plan-features li {
  position: relative;
  padding-left: 22px;
}

.plan-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745; /* green tick */
}

.plan-features li.not-available {
  opacity: 0.6;
}
.mobileview-display li.not-available::before {
  content: "✖";
  color: #dc3545; /* red cross */
}
.plan-features li.not-available::before {
  content: "✖";
  color: #dc3545; /* red cross */
}
/* ===== SAVE TAG ===== */
.save {
  background: linear-gradient(135deg, #00e676, #00c853);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
}
.mobileview-display{
display: none;
}
/* ===== BUTTON ===== */
.plan-btn {
  margin-top: 18px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: #ffffff;
  color: #0e1b7b;
  transition: 0.3s ease;
}

.plan-btn:hover {
  background: #0e1b7b;
  color: #fff;
}

/* ===== ONE TIME GRID WIDTH ===== */
.onetime-grid {
  width: 40%;
}

@media (max-width: 992px) {
  .onetime-grid {
    width: 100%;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .feature-card {
    width: 80%;
    max-width: 450px;
  }

  .feature-card.featured {
    transform: scale(1);
  }

  .feature-card.featured:hover {
    transform: translateY(-10px) scale(1.03);
  }
}

@media (max-width: 768px) {
  .demo-button-container {
    flex-direction: column;
    gap: 0.8rem;
  }
.mobileview-display{
  display:block;
}
  .demo-button,
  .quote-button {
    width: 100%;
    font-size: 1rem;
    height: 48px;
  }

  .features-grid {
    padding: 0 1rem;
    margin: 2.5rem auto;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    padding: 2rem 1.5rem;
  }

  .feature-card:hover {
    transform: translateY(-6px);
  }

  .plan-title {
    font-size: 1.4rem;
  }

  .plan-subtitle {
    font-size: 0.85rem;
  }

  .price-main {
    font-size: 2rem;
  }

  .plan-features {
    font-size: 0.9rem;
  }

  .plan-btn {
    font-size: 0.95rem;
    padding: 11px;
  }

  .featured::before {
    font-size: 0.7rem;
    padding: 5px 14px;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 1.6rem 1.2rem;
  }

  .price-main {
    font-size: 1.8rem;
  }

  .old-price {
    font-size: 0.9rem;
  }

  .save {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .plan-features li {
    margin: 6px 0;
  }
}

.contact-wrapper {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-card {
  background: #324491;
  width: 100%;
  max-width: 700px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-subtext {
  text-align: center;
  color: #d0d5df;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  
  padding: 0 6px;
  color: #ffffff;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #4f46e5;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -8px;
  font-size: 12px;
  color: #ffffff;
}

.submit-btn {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background: white;
  color: #170a3a;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
}

.success-message {
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
  font-weight: 600;
}


  .iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}
/* ===============================
   intl-tel-input (Mobile dropdown)
================================ */

/* Selected country text */
.iti__selected-flag,
.iti__selected-dial-code {
  color: #ffffff !important;
}

/* Dropdown list background */
.iti__country-list {
  background-color: #111 !important;
  color: #ffffff !important;
}

/* Country name & dial code */
.iti__country-name,
.iti__dial-code {
  color: #ffffff !important;
}

/* Hover & active state */
.iti__country:hover,
.iti__country.iti__highlight {
  background-color: #333 !important;
}

/* Input text color */
#phone {
  color: #ffffff !important;
  background-color: transparent;
}

/* Placeholder color */
#phone::placeholder {
  color: #cccccc;
}

/* ===============================
   Product Select Dropdown
================================ */

.select {
  color: #ffffff !important;
  background-color: transparent;
}

/* Dropdown options */

/* When selected */
.select:focus {
  color: #ffffff;
}

/* Label color (optional) */
.form-group label {
  color: #ffffff;
}
.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ===== MOBILE CARD COLLAPSE ===== */
.mobile-toggle-btn {
  display: none;
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  background: #ffffff;
  color: #0e1b7b;
  cursor: pointer;
}

/* Hide details by default on mobile */
@media (max-width: 1024px) {
  .mobileview-display{
    display: block;
  }
  .card-details {
    display: none;
    margin-top: 15px;
    animation: slideDown 0.3s ease;
  }

  .mobile-toggle-btn {
    display: block;
  }

  /* Make cards compact */
  .feature-card {
    padding: 1.5rem;
  }

  .currency {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

.price-main {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.secondary .price-main {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.95;
}

.highlight .price-main {
  font-size: 1.3rem;
  color: #ffd166;
  font-weight: 600;
}

.duration {
  font-size: 0.89rem;
  opacity: 0.9;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 1rem;
  margin: 8px 0;
}

}

/* Slide animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.gst-note {
  display: block;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0px;
  font-size: 0.9rem;
  color: #666;
}

