:root {
  --primary-color: #0027b3;
  --secondary-color: #dadbf5;
  --background-color: #f9f9f9;
  /* Dark blue */
  --accent-color: #e74c3c;
  /* Red for CTAs */
  --light-color: #ecf0f1;
  /* Light gray */
  --dark-color: #2c3e50;
  /* Dark text */
  --success-color: #2ecc71;
  /* Green */
  --whatsapp-color: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.rotate-180{
  transform: rotate(90deg);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo img {
  height: 40px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  margin-left: 10px;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
  margin-bottom: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.nav-cta {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 20px;
  border-radius: 5px;
}

.nav-cta:hover {
  background-color: #2980b9;
  color: white !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.1) 0%,
    rgba(236, 240, 241, 0.3) 100%
  );
  padding: 50px 0 80px;
}

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

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-whatsapp {
  background-color: var(--whatsapp-color) !important;
  color: white !important;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.trust-badge i {
  color: var(--primary-color);
  font-size: 20px;
}

.hero-image {
  min-width: 300px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--background-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: #f5f7fa;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-tab {
  padding: 10px 25px;
  background-color: white;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-tab:first-child {
  border-radius: 5px 0 0 5px;
  border-right: none;
}

.pricing-tab:last-child {
  border-radius: 0 5px 5px 0;
  border-left: none;
}

.pricing-tab.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-left: 5px;
}

.price-duration {
  color: #666;
  font-size: 14px;
}

.pricing-features {
  padding: 30px;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.pricing-features li:before {
  content: "✓";
  color: var(--success-color);
  margin-right: 10px;
  font-weight: bold;
}

.pricing-cta {
  padding: 0 30px 30px;
  text-align: center;
}

/* How It Works Section */
.process {
  padding: 80px 0;
  background-color: white;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 40px;
  right: -50px;
  width: 100px;
  height: 2px;
  background-color: var(--primary-color);
  opacity: 0.3;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 auto 20px;
}

.process-step h3 {
  margin-bottom: 15px;
}

.process-step p {
  color: #666;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background-color: var(--background-color);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  color: #333;
}

.section-title p {
  color: #666;
  font-size: 16px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.testimonial-content {
  font-size: 16px;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-info h4 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.author-info p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #777;
}

.splide__pagination__page.is-active {
  background: #000 !important;
}

.splide__list {
  gap: 1rem;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background-color: #f9f9f9;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question:after {
  content: "+";
  font-size: 20px;
  color: var(--primary-color);
}

.faq-question.active:after {
  content: "-";
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.show {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  color: var(--light-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #0E101C;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
  color: white;
}

.footer-about p {
  color: #bbb;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--light-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact a {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #FFF;
}
.footer-contact a:hover{
  transform: scale(1.01);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--light-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .process-step:not(:last-child):after {
    display: none;
  }

  .process-step {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .logo {
    margin-bottom: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .pricing-tabs {
    flex-wrap: wrap;
  }

  .pricing-tab {
    flex: 1;
    min-width: 120px;
    margin-bottom: 10px;
  }

  .pricing-tab:first-child,
  .pricing-tab:last-child {
    border-radius: 5px;
    border: 1px solid #ddd;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  .splide__list {
    gap: 0;
  }
}
