/**
Theme Name: Astra-Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/
/* --- Global Layout & Sticky Footer Fix --- */
/* --- MORE TARGETED Sticky Footer Fix --- */

.ast-container{
  display: block !important;
  padding-left: 0px !important; 
  padding-right: 0px !important;
}
.site-title a {
  color: #ff6600; /* Your desired color */
  font-weight: bold; /* Optional: make it bold */
  font-size: 44px;    /* Optional: change size */
}

.ast-custom-button {
  background-color: #A5C420 !important; 
  color: #ffffff;            /* Text color */
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

.ast-custom-button:hover {
  background-color: #ebf7ff; 
  color: #ffffff;
}

body {
  margin: 0;
  padding: 0;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content:  space-between;;
  align-items: center;
  padding: 100px 60px;
  background: linear-gradient(to bottom right, #ffffff, #ebf7ff);
  box-sizing: border-box;
  gap: 40px;
}

.hero-left {
  flex: 1.5;
  display: flex;           /* make flex container */
  flex-direction: column;  /* stack children vertically */
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
}

.hero-right {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-right img {
  width: 975px;        /* or whatever size you want */
  max-width: 100%;
  height: auto;
}
.hero-left h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  width: 74%;
}

.hero-left p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #333;
  width: 74%;

}

.hero-buttons-wrapper {
  width: 74%;
  display: flex;
  gap: 15px;
  justify-content: flex-start; /* aligns buttons to left side */
  margin: 0 auto; /* center the wrapper horizontally */
}

.hero-buttons-wrapper a {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  margin-right: 15px;
  transition: all 0.3s ease;

}

.primary-cta {
   background: linear-gradient(45deg, #A5C420, #38B6FF);
  color: white;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.primary-cta:hover {
   background: linear-gradient(45deg, #38B6FF, #A5C420);
}

.secondary-cta {
  background-color: transparent;
  border: 2px solid #A5C420;
  color: #A5C420;
}

.secondary-cta:hover {
  background-color: #A5C420;
  color: white;
}



/* How it Works Section */

.how-it-works {
  padding: 60px 20px;
  background: #f9fafb; /* light background */
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.how-it-works .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.how-it-works .section-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cards-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;  /* spacing between cards */
  padding: 60px 0;
}


.cards-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;             
  left: calc(50% - 237px); /* adjusted */
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #38b6ff, #a5c420);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}

.cards-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 237px); /* adjusted */
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #38b6ff, #a5c420);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}

.card {
  position: relative;
  background: white;
  padding: 30px 25px;
  width: 434px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  border-radius: 15px;
  z-index: 1;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
}



.icon-circle img {
  max-width: 105px;
  max-height: 234px;
 
}

.card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


/* Power*/
.app-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  background: linear-gradient(to bottom right, #ffffff, #ebf7ff); /* Blue gradient */
  box-sizing: border-box;
  gap: 40px;
  flex-wrap: wrap;
}

.app-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-left img {
  max-width: 75%;
  height: auto;

}

.app-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.app-right h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  max-width: 600px;
}

.app-right p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.6;
}

.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.appstore-btn,
.playstore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: black;
  border-radius: 8px;
  padding: 16px 24px;
  text-decoration: none;
   height: 64px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.appstore-btn img,
.playstore-btn img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.appstore-btn:hover,
.playstore-btn:hover {
  transform: translateY(-3px);
}
.acf-custom-success {
  background-color: #e6ffed;
  border-left: 5px solid #27ae60;
  padding: 12px 16px;
  color: #2c662d;
  font-weight: bold;
  margin-top: 20px;
  border-radius: 4px;
}
/* Why choose section */

.why-choose {
  padding: 60px 20px;
  background: #f9fafb; /* same light background */
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-choose .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.why-choose .section-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose .cards-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;  /* spacing between cards */
  padding: 60px 0;
}

.why-choose .cards-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;             
  left: calc(50% - 237px);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #38b6ff, #a5c420);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}

.why-choose .cards-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 237px);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #38b6ff, #a5c420);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}

.why-choose .card {
  position: relative;
  background: white;
  padding: 30px 25px;

  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  border-radius: 15px;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
}

.why-choose .icon-circle img {
  max-width: 105px;
  max-height: 234px;
}

.why-choose .card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
}

.why-choose .card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 60px 20px;
  background: #ebf7ff;
  text-align: center;
}

.testimonial_section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.testimonial_section-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Swiper container */
.testimonials-wrapper.swiper {
  padding-bottom: 40px;
}

/* Flex container for slides */
.testimonials-wrapper.swiper .swiper-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Slide width fixed */
.testimonials-wrapper.swiper .swiper-slide {
  width: 337px !important;
  flex-shrink: 0;
  height: 260px !important; 
  display: flex; 
}

/* Adjustments for less than 4 slides */
.testimonials-wrapper.swiper.less-than-4 .swiper-wrapper {
  justify-content: center;
}

.testimonials-wrapper.swiper.less-than-4 .swiper-slide {
  width: 300px !important;
  margin: 0 10px;
}

.testimonial-card {
  background: #f9fafb;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.user-initials {
  background-color: #38b6ff;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.user-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.user-info span {
  font-size: 0.95rem;
  color: #666;
}

.swiper-button-prev,
.swiper-button-next {
  color: #38b6ff;
  top: 40%;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(56, 182, 255, 0.15);
  transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(56, 182, 255, 0.4);
}

.swiper-pagination-bullet {
  background: #a5c420;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* INTEGRATIONS */
.integrations {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.section-title {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.integration-icon {
  background-color: #ffffff;
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-icon img {
  width: 32px;
  height: 32px;
}

.integration-title {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.cta-section {
  background: linear-gradient(90deg, #39B6FE, #A5C420);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.cta-content {
  width: 50%;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #ffff
}

.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f9ff;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #fff;
  color: #39B6FE;
}

.btn-primary:hover {
  background-color: #e6f4ff;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.getstarted-btn{
font-weight:bold;	
	
}

.custom-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

/* Each footer column */
.footer-column {
  flex: 1 1 200px; /* grow, shrink, basis */
  min-width: 200px;
  box-sizing: border-box;
}

/* Responsive - Hero Section */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 60px 30px;
    text-align: center;
  }

  .hero-left, .hero-right {
    width: 100%;
    align-items: center;
  }

  .hero-left h1,
  .hero-left p,
  .hero-buttons-wrapper {
    width: 90%;
  }

  .hero-buttons-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-buttons-wrapper a {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  /* Stack cards in a single column */
  .cards-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  /* Each card takes full width with max constraint */
  .card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Remove the connecting lines */
  .cards-wrapper::before,
  .cards-wrapper::after {
    display: none;
  }
.testimonials-wrapper.swiper .swiper-slide {
    width: 80% !important;
  }
 .testimonials-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
    max-width: 400px;
  }
  .custom-footer {
    flex-direction: column;
    padding: 15px;
  }
  
  .footer-column {
    min-width: 100%;
    margin-bottom: 25px;
  }

}

/* Mobile Optimization */
@media (max-width: 576px) {
  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .how-it-works .section-title {
    font-size: 2rem;
  }

  .how-it-works .section-desc {
    font-size: 1rem;
  }

  .card {
    padding: 20px 15px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.95rem;
  }
  .why-choose .section-title {
    font-size: 2rem;
  }

  .why-choose .section-desc {
    font-size: 1rem;
  }

  .why-choose .card {
    padding: 20px 15px;
  }

  .why-choose .card h3 {
    font-size: 1.1rem;
  }

  .why-choose .card p {
    font-size: 0.95rem;
  }

   .testimonials .section-title {
    font-size: 2rem;
  }

  .testimonials .section-desc {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 20px 15px;
  }

  .testimonial-user h4 {
    font-size: 1rem;
  }

  .testimonial-user span {
    font-size: 0.85rem;
  }
 .testimonials-wrapper.swiper .swiper-slide {
    width: 100% !important;
  }
  .cards-wrapper .card{
	  min-width:238px;
  }
  .app-section{
	 display: block;
  }
  .app-left img {
	  max-width: 100%;
	  height: auto;
  }
	.app-right{
	  margin-top:40px;
   }
   .app-right h2 {
    font-size: 1.8rem;
   }
    .app-right p{
		font-size:1.0rem;
	}
	.cta-content{
		width:90%;
	}.cta-title{
		font-size:1.8rem;
	}
	.cta-desc {
		width:95%;
	}
} 
