/* ### 1. Base Styles and Variables */
:root {
  --primary: #3a86ff;
  --secondary: #8338ec;
  --accent: #ff006e;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #38b000;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  padding-top: 80px;
}

.flex {
  display: flex;
  gap: 10px;
  align-items: center;
}

.rotate-90 {
  transform: rotate(90deg);

}

/* ### 2. Header & Navigation */
header {
  background: var(--light);
  color: var(--dark);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.logo i {
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link i {
  font-size: 0.9rem;
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.auth-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1rem;
}

.auth-buttons .btn:hover {
  background-color: var(--primary);
  color: white;
}

.auth-buttons .btn a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-buttons .btn a:hover {

  color: white;

}

.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-filled {
  background: var(--gradient);
  color: white;
  border: none;
}

.btn-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 5px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

  .nav-links,
  .auth-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-nav-links {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
  }

  .mobile-nav-links .nav-link {
    padding: 0.8rem 0;
  }

  .mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .mobile-auth-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ### 3. Global Components Styles */
button {
  cursor: pointer;
  transition: all 0.3s ease;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ### 4. Hero Section */
.hero {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  min-height: 80vh;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-10px);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
  line-height: 2;
}

.hero p i {
  color: var(--success);
  margin-right: 0.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  width: 80px;
  height: 80px;
  background: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: rotateY(180deg);
}

/* ### 5. Features Section */
.features {
  background-color: #f5f7ff;
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

/* ### 6. How It Works Section */
.how-it-works {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

/* Testimonials Section */
.testimonials {
  background: white;
  padding: 5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}


.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.testimonial-card::before {
  content: " ";
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(37, 99, 235, 0.05);
  line-height: 1;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  z-index: 2;
  position: relative;
}

.testimonial-rating i {
  color: #FFC107;
  font-size: 1.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.95rem;
}

.testimonial-company {
  display: inline-block;
  margin-top: 0.3rem;
  font-weight: 500;
  color: var(--primary);
}

/* Navigation Arrows */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.nav-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 1.5rem;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

.author-info h4 {
  color: var(--dark);
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.author-info p {
  color: #666;
  font-size: 0.9rem;
}

.pricing {
  margin-top: 40px;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.pricing-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.pricing-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.pricing-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  max-width: 350px;
  margin: 30px auto;
}

.toggle-option {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-option.active {
  background: var(--primary);
  color: white;
}

#plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 35px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
  transition: all .5s;
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--secondary);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  margin-bottom: 15px;
}

.description {
  text-align: center;
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.setup-price {
  text-align: center;
  background: #fef2f2;
  color: #ef4444;
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.scheme-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f9ff;
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 25px;
  border: 1px solid #dbeafe;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.arrow-btn:hover {

  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.scheme-price {
  text-align: center;
  flex: 1;
}

.scheme-price .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.scheme-price .details {
  font-size: 0.95rem;
  color: var(--gray);
}

.scheme-price .discount {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 5px;
}

.features,
.addons {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
}

.features h3,
.addons h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features h3 i,
.addons h4 i {
  color: var(--primary);
}

.features ul,
.addons ul {
  list-style: none;
  padding-left: 0;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.features li i {
  color: var(--secondary);
  margin-top: 4px;
}

.addons ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
}

.addon-title {
  font-weight: 600;
}

.addon-price {
  background: #e0f2fe;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.subscribe-btn {
  margin-top: auto;
  padding-top: 25px;
}

.btn i {
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 2.3rem;
  }

  #plans-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ### 9. Download Section */
.download {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

.download-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  background: var(--dark);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.app-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: var(--primary);
}

.badge-icon {
  font-size: 2rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.app-badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.badge-small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.badge-large {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.download-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--dark);
}

.download-feature i {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(58, 134, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.download-feature:hover i {
  background: var(--primary);
  color: white;
  transform: rotateY(180deg);
}

.download-feature span {
  font-weight: 500;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .app-badges {
    flex-direction: column;
    align-items: center;
  }

  .app-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .download-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ### 10. Contact Section */
.contact {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-info-card p {
  color: #666;
  line-height: 1.6;
  margin: 0.5rem 0;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
  outline: none;
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.country-code {
  background: #f5f5f5;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #666;
  font-weight: 500;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.btn-large {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Form message styles */
.form-messages {
  display: none;
  margin-bottom: 1.5rem;
}

.success-message,
.error-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  animation: slideIn 0.3s ease;
}

.success-message {
  background-color: rgba(56, 176, 0, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.error-message {
  background-color: rgba(255, 0, 110, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* Button loading state */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .auth-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group:nth-child(5),
  .form-group:nth-child(6),
  .form-group.checkbox-group,
  .contact-form .btn {
    grid-column: span 1;
  }

  .app-badges {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features,
  .how-it-works,
  .testimonials,
  .pricing,
  .contact,
  .download {
    padding: 3rem 1rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 250px;
  }
}

/* ### 11. Footer Section */
footer {
  background-color: var(--dark);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #adb5bd;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--primary);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #adb5bd;
}

/* About Us Page Styles */
.about-card {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s ease;
}

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/about-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 150px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.about-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.mission-vision {
  padding: 100px 20px;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.05) 0%, rgba(58, 134, 255, 0) 100%);
  pointer-events: none;
}

.mission-vision .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card,
.vision-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(58, 134, 255, 0.15);
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mission-card h2,
.vision-card h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.mission-card h2 i,
.vision-card h2 i {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-card p,
.vision-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.core-values {
  padding: 100px 20px;
  background: white;
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.values-section,
.story-section {
  max-width: 800px;
  margin: auto;
}

.team-section {
  max-width: 1000px;
  margin: auto;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.05) 0%, rgba(58, 134, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(58, 134, 255, 0.1);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.value-card:hover i {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
}

.our-story {
  padding: 100px 20px;
  background-color: #f8f9fa;
  position: relative;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
  position: relative;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.story-content p {
  margin-bottom: 25px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.team {
  padding: 100px 20px;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.team-member {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(58, 134, 255, 0.1);
}

.member-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(58, 134, 255, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.member-image::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0.3;
  transition: all 0.4s ease;
}

.team-member:hover .member-image::after {
  transform: scale(1.1);
  opacity: 0;
}

.member-image i {
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.team-member h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.member-title {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 10px 0;
  font-weight: 600;
}

.member-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 15px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ### 12. Privacy Policy and Terms Page Styles */
.policy-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/policy-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.policy-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content {
  padding: 60px 20px;
}

.policy-content .container {
  max-width: 1000px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.policy-section h3 {
  color: var(--secondary-color);
  margin: 20px 0 15px;
  font-size: 1.4rem;
}

.policy-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-section ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Section Title */
.section-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .about-hero h1,
  .policy-hero h1 {
    font-size: 2rem;
  }

  .mission-vision .container,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .policy-content {
    padding: 40px 20px;
  }

  .policy-section h2 {
    font-size: 1.6rem;
  }

  .policy-section h3 {
    font-size: 1.3rem;
  }
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: skyblue;
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-contact i {
  font-size: 24px;
  color: white;
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .floating-contact i {
    font-size: 20px;
  }
}


.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: white;
  max-width: 500px;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.modal-content input {
  display: block;
  width: 100%;
  margin: 0.75rem 0;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}



.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
}

.message {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.message.success {
  color: green;
}

.message.error {
  color: red;
}

.modal-content textarea {
  display: block;
  width: 100%;
  margin: 0.75rem 0;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}