:root {
  --primary-color: #3968b2;
  --primary-light: #4a7bc7;
  --secondary-color: #293857;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(57, 104, 178, 0.3);
}

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

.btn-secondary:hover {
  background-color: #f0f4f8;
  transform: translateY(-2px);
}

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

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

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

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.logo img {
  height: 40px;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

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

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* Hero Image Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

/* Section Transitions */
.step-card, .feature-item, .pricing-card, .screenshot-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}
.about {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.about-feature-item:hover {
  transform: translateX(10px);
  background-color: #eef2f7;
}

.about-feature-item i {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
}

.about-feature-item span {
  font-weight: 600;
  color: var(--secondary-color);
}

/* How It Works */
.how-it-works {
  background-color: var(--bg-light);
}

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

.step-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.step-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(57, 104, 178, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.step-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-card p {
  color: var(--text-light);
  font-weight: 500;
}

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

.feature-item {
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-item:hover {
  border-color: var(--primary-color);
  background-color: rgba(57, 104, 178, 0.02);
}

.feature-item i {
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Screenshots */
.screenshots {
  background-color: var(--bg-light);
}

.screenshots-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.screenshot-card {
  width: 280px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid var(--secondary-color);
  transition: var(--transition);
  background-color: var(--secondary-color); /* Add a background color for when images don't fill */
}

.screenshot-card:hover {
  transform: scale(1.05);
}

.screenshot-card img {
  width: 100%;
  max-height: 500px;
  object-fit: cover; /* This makes sure the image doesn't shrink awkwardly and covers the area well */
  object-position: top center; /* Focus on the top part of the app screen */
}

/* Swiper Slider Styles */
.screenshots-slider,
.pricing-slider {
  padding: 20px 10px 60px !important; /* Add padding for shadows and pagination */
}

.pricing-slider .swiper-wrapper {
  align-items: stretch;
}

.pricing-slider .swiper-slide {
  display: flex;
  justify-content: center;
}

.pricing-slider .pricing-card {
  max-width: 380px;
  width: 100%;
}

.swiper-pagination-bullet {
  background-color: rgba(57, 104, 178, 0.5) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px !important;
  font-weight: bold;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--white);
  padding: 40px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid #eee;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-card ul {
  margin-bottom: 30px;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.contact-form .wpforms-container .wpforms-field {
  margin-bottom: 20px;
}

.wpforms-field input,
.wpforms-field textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.wpforms-field textarea {

  height: 120px;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(57, 104, 178, 0.1);
}

.wpforms-error {
  color: red;
}

.wpforms-confirmation-container p {
  font-size: 20px;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item i {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  margin-top: 5px;
}

.info-item h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-light);
}

/* CTA Section */
.cta {
  padding: 0;
  margin-bottom: -100px;
  position: relative;
  z-index: 10;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-card p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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


.text-content {
  max-width: 850px;
  margin: 0 auto;
}

.text-content h1 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.text-content h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 40px 0 20px;
  font-weight: 700;
  line-height: 1.3;
}

.text-content h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin: 30px 0 15px;
  font-weight: 600;
  line-height: 1.4;
}

.text-content h4, 
.text-content h5, 
.text-content h6 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin: 25px 0 10px;
  font-weight: 600;
  line-height: 1.5;
}

.text-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.text-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}

.text-content a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

.text-content ul, 
.text-content ol {
  margin-bottom: 30px;
  padding-left: 25px;
  list-style: disc;
}

.text-content li {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
}

.text-content ul li::marker {
  color: var(--primary-color);
}

.text-content strong {
  color: var(--secondary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .text-content {
    padding: 120px 20px 60px;
  }
  .text-content h1 {
    font-size: 2.2rem;
  }
  .text-content h2 {
    font-size: 1.5rem;
  }
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 180px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-desc {
  margin: 20px 0 25px;
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-logo img {
  max-width: 250px;
}

.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;
  transition: var(--transition);
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  opacity: 0.7;
  font-size: 0.95rem;
}

.contact-list i {
  color: var(--primary-color);
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .cta-card h2 {
    font-size: 2rem;
  }

  .hero-btns, .cta-btns {
    justify-content: center;
  }

  .about-features {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 140px 0 70px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links, .contact-list li {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
  }

  .cta-btns {
    flex-direction: column;
  }
}
