/* 🌍 GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f7f9fc;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  margin-bottom: 15px;
}

/* 🌐 HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 🧭 NAVIGATION */
.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.main-nav ul li a {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #007bff;
}

.nav-login {
  padding: 8px 18px;
  border-radius: 20px;
}

/* 🍔 MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* 📱 Responsive nav */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px 20px;
    z-index: 999;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .main-nav ul li {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.active {
    display: block;
  }
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #007bff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-links {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-demo {
  background-color: #324da2; /* Green or any custom color */
  color: #fff;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-demo:hover {
  background-color: #31a9d6 ;
  transform: scale(1.03);
  color: #223238;
}

.btn.large {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 25px;
  font-weight: 600;
}

/* 🚀 HERO SECTION */
.hero {
  background: linear-gradient(135deg, #007bff, #00b8d4);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  animation: fadeInUp 1s ease-in-out;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 15px auto 30px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero .btn.large {
  padding: 14px 30px;
  font-size: 16px;
}

/* 💡 FEATURES */
.features {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.features h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

/* Grid Wrapper */
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Each row contains 3 columns */
.feature-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Individual feature box */
.feature-item {
  background: #f9fbff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  text-align: center;
  box-sizing: border-box;
}

.feature-item i {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 12px;
  display: block;
}

/* Optional icon stack group styling */
.icon-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 26px;
  color: #007bff;
  margin-bottom: 12px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .feature-row {
    flex-direction: column;
    gap: 20px;
  }

  .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* 💳 PLANS */
.plans {
  background: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}

.plans h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* Rows that contain 3 plan cards per row */
.plan-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

/* Each individual card */
.plan-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  flex: 1 1 280px;
  max-width: 300px;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #007bff;
  margin: 10px 0 20px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-card ul li {
  padding: 6px 0;
  font-size: 14px;
}

/* Featured border */
.plan-card.featured {
  border: 2px solid #007bff;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .plan-row {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    max-width: 100%;
    width: 100%;
  }
}


/* 🚀 CTA Section */
.cta {
  background: #007bff;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* 📚 FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #fff;
}

.faq-section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  font-size: 17px;
  background-color: #f8f9fa;
  border: none;
  text-align: left;
  outline: none;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  font-size: 20px;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
}

/* 📜 FOOTER */
.footer {
  background: #fff;
  padding: 20px;
  padding-bottom: 45px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 14px;
  color: #666;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

/* 🎬 Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .plan-card {
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
  }
}
/* 🌟 Reviews */
.reviews {
  padding: 60px 20px 80px;
  background: #fff;
  text-align: center;
}

.reviews h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.review-summary {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.review-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  margin-bottom: 30px;
}

.review-item {
  min-width: 300px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.review-item p {
  font-style: italic;
  margin-bottom: 12px;
  color: #333;
}

.review-item .stars {
  color: #f1c40f;
  margin-bottom: 8px;
}

.review-item span {
  font-weight: bold;
  color: #555;
  display: block;
  margin-top: 8px;
}

.review-carousel::-webkit-scrollbar {
  height: 6px;
}
.review-carousel::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* Review button animation */
.review-btn {
  padding: 10px 22px;
  font-size: 15px;
  border: 2px solid #007bff;
  transition: all 0.3s ease;
}

.review-btn:hover {
  background: #007bff;
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 15px rgba(0,123,255,0.2);
}
/* Handle button layout on mobile */
.hero .hero-content .btn {
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .hero .hero-content a.btn {
    display: block;
    width: 100%;
    margin: 8px 0;
    text-align: center;
  }
}
.feature-item .icon-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-item .icon-group i {
  font-size: 32px;
  color: #007bff;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.logo-icon {
  width: 50px;
  height: 40px;
  margin-right: 5px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left; /* Left align the features */
}

.features-list li {
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-list li i.fa-check-circle {
  color: #28a745; /* Green tick */
  font-size: 18px;
}

.features-list li i.fa-times-circle {
  color: #dc3545; /* Red cross */
  font-size: 18px;
}

/* Modern News Ticker Styles */
.news-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111b47;
  color: white;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  z-index: 9999;
  font-size: 14px;
  height: 40px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  overflow: hidden;
}

.news-ticker .ticker-label {
  background: #dc3545;
  padding: 4px 10px;
  border-radius: 3px;
  margin-right: 15px;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.news-ticker .ticker-container {
  flex: 1;
  overflow: hidden;
}

.news-ticker .ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 10s linear infinite;
}

.news-ticker:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  margin-right: 30px;
}

.news-ticker a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.news-ticker a:hover {
  color: #4fc3f7;
  text-decoration: underline;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 📱 Mobile Fix */
@media (max-width: 576px) {
  .news-ticker {
    font-size: 12px;
    padding: 6px 10px;
  }

  .news-ticker .ticker-label {
    font-size: 11px;
    padding: 3px 8px;
  }
}

/* Dropdown Styling */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav li {
  position: relative;
  margin: 0 10px;
}

.main-nav .dropdown:hover .submenu {
  display: block;
}

.main-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.main-nav .submenu li {
  width: 100%;
}

.main-nav .submenu li a {
  display: block;
  padding: 10px 15px;
  text-align: left;
  white-space: nowrap;
  color: #333;
  text-decoration: none;
}

.main-nav .submenu li a:hover {
  background-color: #f0f0f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav .submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .main-nav .submenu li a {
    padding: 12px 20px;
  }
}

.btn.btn-primary.large {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  background: linear-gradient(to right, #0066cc, #007bff);
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
  display: inline-block;
}

.btn.btn-primary.large:hover {
  background: linear-gradient(to right, #0056b3, #0066cc);
  transform: translateY(-1px);
}

.btn.btn-primary.large:active {
  transform: scale(0.98);
}

/* 🌍 Country Notice for Pricing */
.country-notice {
  background: #e7f3ff;
  border: 1px solid #007bff;
  border-radius: 8px;
  padding: 12px 20px;
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
  color: #0056b3;
  font-weight: 500;
  font-size: 14px;
}

.country-notice i {
  margin-right: 8px;
  color: #007bff;
}

/* 📱 Mobile responsive for country notice */
@media (max-width: 768px) {
  .country-notice {
    margin: 20px 15px;
    padding: 10px 15px;
    font-size: 13px;
  }
}