* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
}
/* Header */
.header {
  background: white;
  color: #730884;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #730884;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-image {
  width: 185px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #730884;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #730884;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.cta-button {
  background: #730884;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Footer */
.footer .app-store-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
}
.footer .google-play-button {
  width: 140px;
}
.app-store-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer .app-store-logo {
  object-fit: cover;
}

.google-play-button {
  width: 160px;
  height: 61px;
}

/* Header App Store Buttons */
.header-app-store-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-app-store-button {
  display: inline-block;
  transition:
    transform 0.3s,
    opacity 0.3s;
  width: 100px;
  height: 32px;
  flex-shrink: 0;
}

.header-app-store-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.header-app-store-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.header-google-play-button {
  width: 121px;
  height: 46px;
}
/* App Store Buttons */
.app-store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.app-store-button {
  display: inline-block;
  transition:
    transform 0.3s,
    opacity 0.3s;
  width: 120px;
  height: 40px;
  flex-shrink: 0;
}

.app-store-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.footer .app-store-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
}

/* Features */
/* Features Section */
.features {
  padding: 80px 0px 80px 0;
  background: #f8fafc;
}
.benifits {
  padding: 80px 0;
}
.features-section {
  background: #730983;
}
.features-section .feature-card {
  background: #6459f0;
  color: #fff;
}
.features-section .feature-card h3 {
  color: #fff;
}
.features-section .feature-card p {
  color: #fff;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.features .section-title {
  color: #730884;
}
.features-section .section-title {
  color: #fff;
}
.how-works-section .section-title {
  color: #730884;
}

/* .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            justify-content:space-between;
        } */
.features-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 30%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a855f7 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  /* background:#f8fafc; */
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.cta-buttons.cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-button-primary {
  background: white;
  color: #8b5cf6;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s;
  border: none;
}

.cta-button-primary:hover {
  transform: translateY(-2px);
}

.cta-button-secondary {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.cta-button-secondary:hover {
  background: white;
  color: #8b5cf6;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #730884 0%, #8b5cf6 50%, #5a0668 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #fff;
  a {
    color: #fff !important;
  }
}
.footer .sublist {
  margin-left: 27px;
}

/******** mobile header *************/
.mobile-header {
  display: none;
}
.hamburger-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: none;
}
.links-panel {
  display: none;
  width: 100%;
  position: absolute;
  background: #fff;
  padding: 10px 24px;
  list-style-type: none;
  left: 0;
  top: 90px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.links-panel li {
  cursor: pointer;
}
.hide-close {
  display: none;
}
.links-panel li:not(:last-of-type) a {
  text-decoration: none;
  padding: 10px 0;
  display: inline-block;
  color: #730884;
}
.logo-mobile-image {
  display: none;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-icons img {
  width: 40px;
  height: 40px;
}
/* Content Sections */
.content-section {
  margin-bottom: 4rem;
}
.content-section.foundation-section {
  margin-bottom: 2rem;
}
.content-section h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
}

.content-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #730983;
  margin-bottom: 1.5rem;
  text-align: center;
}
.content-section .subheading {
  font-size: 1.5rem;
  color: #64748b;
}

.content-section p {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
}
.content-section p a {
  color: #7c3aed;
}

/******* Detailed Blog CSS ************/
.detailed-blog-wrapper .container{
    max-width:950px;
    margin:0 auto;
    padding:0 20px;
}
.detailed-blog-wrapper .page-title{
    padding:60px 0;
    border-bottom: 1px solid #e6e6e6;
}
.detailed-blog-wrapper h1{
    color:#8b24fc;
    text-align:center;
    font-size:3rem;
    font-weight:400;
    line-height:1.4;
    width:80%;
    margin:auto;
}
.detailed-blog-wrapper #themo_single_post_layout_content {
    padding: 40px 0;
}
.detailed-blog-wrapper .post img{
    width:100%;
    height:auto;
    margin-bottom:20px;
}
.detailed-blog-wrapper .post-inner {
    padding-bottom: 50px;
    border-bottom: 1px solid #dedede;
}
.detailed-blog-wrapper .post-meta, .date-meta, .entry-meta {
    font-size: 13px;
    color: #8b8b8b;
}
.detailed-blog-wrapper .post-meta a{
    color:#8b24fc;
    text-decoration: none;;
}
.detailed-blog-wrapper p a{
    color:#8b24fc;
    text-decoration: none;;
}
.detailed-blog-wrapper li a{
    color:#8b24fc;
    text-decoration: none;;
}
.detailed-blog-wrapper .entry-content {
    padding: 30px 0 20px;
}
.detailed-blog-wrapper p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #333333;
    margin: 0 0 10px;
}
.detailed-blog-wrapper h2{
    font-size:35px;
    font-weight:400;
    color:#515151;
    margin:15px 0;
}
.detailed-blog-wrapper h3{
    font-size:30px;
    color:#515151;
    margin:20px 0 10px 0;
    font-weight:400;
    line-height:1.1;
}
.detailed-blog-wrapper ul{
   margin-bottom: 10px;
   padding-left:22px;
}
.detailed-blog-wrapper ul li{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #333333;
}
.detailed-blog-wrapper .comments-closed {
    font-style: italic;
    margin: 50px 0 10px;
}

@media (max-width: 1200px) {
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .testimonial {
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0.5rem 0;
  }
  .app-store-button {
    width: 120px;
    height: 38px;
  }
  .google-play-button {
    width: 121px;
    height: 42px;
  }
  .header-app-store-buttons {
    display: none;
  }
  /* Header App Store Buttons */
  .mobile-header-app-store-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .mobile-header-app-store-button {
    display: inline-block;
    transition:
      transform 0.3s,
      opacity 0.3s;
    width: 100px;
    height: 32px;
    flex-shrink: 0;
  }

  .mobile-header-app-store-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }
  .header-app-store-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .section-title {
    font-size: 2rem;
  }
  .feature-card {
    width: 100%;
  }
  .logo .logo-mobile-image {
    display: block;
    width: 125px;
    height: 74px;
  }
  .logo .logo-desktop-image {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  .hamburger-btn {
    display: block;
  }
  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

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

  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    max-width: 300px;
  }

  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
  }
  .testimonial {
    min-height: 508px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /******* detailed blog responsive ***/
  .detailed-blog-wrapper h1 {
    font-size:2.2rem;
    width:100%;
  }
  .detailed-blog-wrapper .page-title {
    padding: 40px 0;
}
.detailed-blog-wrapper h2{
    font-size:30px;
}
.detailed-blog-wrapper h3 {
    font-size:25px;
}
}
@media (max-width:568px){
      .detailed-blog-wrapper h1 {
    font-size:1.8rem;
  }
  .detailed-blog-wrapper .page-title {
    padding: 40px 0;
}
.detailed-blog-wrapper h2{
    font-size:25px;
}
.detailed-blog-wrapper h3 {
    font-size:20px;
    line-height: 1.4;
}
}
/*  Scroll Margin for Sections  */
section[id] {
    scroll-margin-top: 100px;
}