/* ---------- Universal Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navbar ---------- */
.navbar {
  width: 100%;
  background-color: rgb(100, 127, 188); /* navbar strip */
  box-shadow: 0 2px 5px #FAFDD6;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Logo */
.navbar .logo img {
  height: 40px;
  width: auto;
}

/* Nav links */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #FAFDD6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #AED6CF;
}

/* Email */
.navbar .email a {
  text-decoration: none;
  color: #FAFDD6;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar .email a:hover {
  color: #91ADC8;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #FAFDD6;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s;
}

/* Mobile Navbar */
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
  }

  .navbar ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar .email {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  width: 100%;
  background-color: #FFFAE4;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  align-items: center;
}

/* Hero Content */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #647FBC;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #647FBC;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #91ADC8;
  transform: translateY(-3px);
}

/* Hero Image Frame */
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  /* border: 6px solid #AED6CF; */
  /* border-radius: 20px; */
  overflow: hidden;
  /* background: #fff; */
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Images inside frame for slideshow */
.hero-image-frame img.slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Show current active image */
.hero-image-frame img.slide-img.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-frame {
    max-width: 90%;
    height: 250px;
    margin: 0 auto;
  }
}




/* for the content block section */
/* Features Section */
.features-section-1 {
  background-color: #AED6CF;
  padding-bottom: 1px;
  padding-top: 60px;
}
.features-section-2 {
  background-color: #647FBC;
  padding: 80px 0;
}


.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

/* Reverse row for alternating layout */
.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse .feature-text,
.feature-row.reverse .feature-image {
  direction: ltr;
}

/* Feature Image Frame */
/* .feature-image {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border: 6px solid #AED6CF;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
} */

 feature-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  /* border: 6px solid #AED6CF; */
  /* border-radius: 20px; */
  overflow: hidden;
  /* background: #fff; */
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* full image fits frame */
  border-radius: 14px;
  transition: transform 0.5s ease;
}

.feature-image img:hover {
  transform: scale(1.05);
}

/* Feature Text */
.feature-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1b3c88;
  margin-bottom: 20px;
}

.feature-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #333;
}

.feature-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Reveal animation class */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .feature-image {
    max-width: 90%;
    height: 250px;
    margin: 0 auto 20px;
  }
}
  /* section code for the product */
  /* Section */
.products-section {
  background: #91C8E4;
  padding: 22px 2px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #647FBC;
  margin-bottom: 40px;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  background: #91ADC8;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #647FBC;
  transform: translateY(-2px);
}

/* Panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Grid */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

.products-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* exactly 2 columns */
  gap: 3px; /* remove grid gap */
  width: 100%;
  max-width: 800px; /* keeps layout neat */
  margin: 0 auto;
  justify-items: center;

}
@media (max-width: 768px) {
  .products-grid-2 {
    grid-template-columns: 1fr; /* single column */
    gap: 16px; /* a bit more space between stacked cards */
  }
}


/* Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: relative;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* Badge */
.badge {
  display: inline-block;
  background: #28a745;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Product Text */
.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #647FBC;
  margin-bottom: 5px;
}

.product-desc {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 15px;
}

/* Price */
/* .product-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
} */

.product-price {

  font-size: 1.8rem;
  font-weight: bold;
  color: #3652a2;
  display: flex;
  align-items: center;
  gap: 6px; /* space between icon and number */
}


.currency-icon {
  width: 25px;   /* adjust size */
  height: auto;
  object-fit: contain;
}
.vat-text {
  font-size: 0.9rem; /* smaller than price */
  font-weight: normal;
  color: #555;
}

/* Buy Button */
.buy-btn {
  display: block;
  width: 100%;
  background: #f8b400;
  color: #000;
  text-align: center;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #e0a200;
}

/* Features */
.features-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.product-features li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.check {
  color: #28a745;
  margin-right: 8px;
  font-weight: bold;
}
 .cross {
  color: red;
  font-weight: bold;
  margin-right: 8px;
}

.info {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #647FBC;
  margin-left: 6px;
  cursor: pointer;
  border: 1px solid #647FBC;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
    gap: 15px;
  }
}
/* content section end */
/* Promo Strip */
.promo-strip {
  width: 100%;
  background: linear-gradient(90deg, #31326F, #31326F, #31326F);
  padding: 15px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 5px 15px rgba(227, 214, 250, 0.911);
}

/* Shimmer Effect */
.promo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: #494fa3e7;
  transform: skewX(-50deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.promo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-content h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #FCAF1B;
  font-weight: 800;
}

.promo-content h2 span {
  color: #FCAF1B;
  font-weight: 700;
}

.promo-btn {
  background: #FAFDD6;
  color: #647FBC;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.promo-btn:hover {
  background: #FCAF1B;
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .promo-content {
    flex-direction: column;
    gap: 10px;
  }

  .promo-content h3 {
    font-size: 1rem;
    text-align: center;
  }
}
/* promo complete */
/* section statics */
/* Basic container (use your site .container if exists) */
/* .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; } */

/* Stats Section */
.stats-section {
  background: #FFFBDE;
  padding: 60px 0;
  text-align: center;
}

.stats-heading {
  font-size: 1.9rem;
  color: #647FBC;
  margin-bottom: 36px;
  font-weight: 700;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
}

/* Stat block base */
.stat-block {
  background: #91C8E4;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  max-width: 320px;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 600ms cubic-bezier(.2,.9,.2,1), opacity 600ms ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Starting X offset for left/right slide */
.stat-block.left { transform: translateX(-80px) translateY(0); }
.stat-block.right { transform: translateX(80px) translateY(0); }

/* Show state */
.stat-block.show { opacity: 1; transform: translateX(0) translateY(0); }

/* Icon */
.stat-icon { margin: 0 auto 6px auto; display: inline-flex; }

/* Number */
.stat-block h3 { font-size: 2rem; color: #FFFBDE; margin: 6px 0; font-weight: 800; }
.stat-block p { margin: 0; color: #333; font-size: 0.98rem; }

/* Responsive: stack single column on small screens, and alternate animation origin */
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-block.left, .stat-block.right { transform: translateY(30px); } /* vertical entrance on mobile */
}
/* complete statics */
.testimonial-section {
  background: #91ADC8;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%;
  background: #FAFDD6;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.user {
  font-weight: bold;
  color: #647FBC;
  margin-bottom: 10px;
}

.review-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #647FBC;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.review-btn:hover {
  background: #3652a2;
}

/* Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #647ebc00;
  border: none;
  color: #789ff381;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.nav-arrow:hover {
  background: #3653a273;
}

.nav-arrow.prev {
  left: 1px;
}

.nav-arrow.next {
  right: 1px;
}

/* Dots */
.testimonial-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #647FBC;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .nav-arrow.prev {
    left: 5px;
  }

  .nav-arrow.next {
    right: 5px;
  }
}

/* testimonial complete */
.faq-section {
  background: #f8fbff;
  padding: 60px 20px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Side */
.faq-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* FAQ Content */
.faq-content {
  text-align: left;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #3652a2;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 15px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #444;
}

.faq-question:hover {
  color: #3652a2;
}

.faq-icon {
  font-size: 1.5rem;
  color: #3652a2;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-image img {
    margin: 0 auto 20px;
  }
}

/* faq section complete */
.site-footer {
  background: #647FBC;
  color: #ffe712;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid #AED6CF;
  padding-bottom: 5px;
}

.footer-col p,
.footer-col a,
.footer-col li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FAFDD6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #FAFDD6;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f5d41a;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #d6aeb3;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
