@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ancizar Serif", serif;
}



.common-btn-bg{
  background: linear-gradient(135deg, #D64C4C  10%, #e75b5b 100%) !important;
}



nav ul{
    display: flex;
    list-style: none;
    vertical-align: middle;
    padding: 0 10px;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none !important;;
}

nav ul li{
    margin-right: 20px;
    margin-top: 20px;
    gap: 10px;
    text-decoration: none !important;
}
nav ul li a{
  color: #fff;
  font-size: 15px;
    text-decoration: none !important;;
}
.nav-btn{
    background: linear-gradient(45deg, #ff6ba7 0%, #ff8765 100%);
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.nav-btn:hover{
    background: linear-gradient(45deg, #ff758a 0%, #ff9675 100%);
}

/* Hero Section */

.hero-section {
    background-image: radial-gradient(at top left, transparent 67%, #fff 67.5%),
        linear-gradient(135deg, #FEB692 0%, #EA5455 100%);
    background-size: 110% 100%,cover;
    background-repeat: no-repeat;
    margin: 0;
    height: 100vh;
}

.hero-content {
    max-width: 600px;
    color: white;
    padding-left: 50px;
    margin-top: 3rem;
}
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.hero-content p {
    margin-top: 15px;
    font-size: 1.2rem;
}
.btn-custom {
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #D64C4C  10%, #e75b5b 100%);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
}
.hero-image {
      position: absolute;
    right: 0;
    bottom: 15px;
    max-width: 836px;
    /* scale: 1.18; */
    scale: 1;
    z-index: 1;
}
.hero-image img {
    width:90%;
}


/* About Section */
.about-section {
    text-align: center;
    padding: 60px 0;
}
.about-section h2 {
    font-weight: bold;
    color: #6c5ce7;
}
.about-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.about-card {
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.about-card img {
    width: 50px;
    margin-bottom: 15px;
    margin-left: 5rem;
}
.about-card h4 {
    font-weight: bold;
}


.experience-video {
    position: relative;
    
}
.down-btn{
    background: linear-gradient( 135deg, #FEB692 10%, #EA5455 100%);
    color: #fff;
    font-size: 14px;
    border-radius: 2px;
    line-height: 40px;
    font-weight: 700;
    display: inline-block;
    padding: 0 25px;
    letter-spacing: -0.02em;
    text-decoration: none !important;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #7b4397;
    background: linear-gradient( 135deg, #FEB692 10%, #EA5455 100%);
    color: #fff;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
}


/* ==========================================================================
   Promo Section
   ========================================================================== */
   .promo_section{
       padding: 80px 0;
   }
   .promo_content{
       padding: 40px;
       border-radius: 5px;
       text-align: center;
       transition: all 0.2s ease-in-out;
   }
   .promo_content:hover{
       box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.1);
       transition: all 0.2s ease-in-out;
   }
   .promo_content img{
       margin-bottom: 10px;
   }
   .promo_content h3{
       margin-bottom: 5px;
   }


   /* Feature Section */
   
.feature_section{
    background-image: url(/assets/feature-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    -webkit-background-size: cover;
    background-size: cover;
    align-items: center;
    position: relative;
    left: 0;
    top: 0;
    z-index: 1;
}
.feature_section:before{
    background: linear-gradient( 135deg, #FEB692 10%, #EA5455 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
    z-index: -1;
}
.feature_content h5 {
  font-size: 20px;
}
.happy-h2 {
  font-size: 40px;
}
/* Pricing Section */

.pricing-section {
    text-align: center;
    padding: 80px 0;
}
.pricing-title {
    font-size: 2rem;
    font-weight: bold;
    color: #6b4eff;
}
.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.pricing-header {
    padding: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
.pricing-basic {
    background: linear-gradient(to bottom, #7cc5fc, #007bff);
}
.pricing-business {
    background: linear-gradient(to bottom, #ff9a9e, #ff6f61);
}
.pricing-ultimate {
    background: linear-gradient(to bottom, #a1ffce, #00c853);
}
.pricing-body {
    padding: 20px;
    font-size: 1.1rem;
}
.pricing-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}
.pricing-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    background: white;
    color: #6b4eff;
    border: none;
}


/* Screnshots Slider Section */

.screenshot-slider {
  perspective: 1000px;
}

.screenshot {
  transition: all 0.5s ease;
  position: absolute;
  width: 300px;
  transform-origin: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.screenshot.active {
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
}

.screenshot.prev {
  z-index: 2;
  transform: translateX(-50%) scale(0.9) rotateY(10deg);
  opacity: 0.7;
}

.screenshot.next {
  z-index: 2;
  transform: translateX(50%) scale(0.9) rotateY(-10deg);
  opacity: 0.7;
}

.screenshot.hidden {
  opacity: 0;
  pointer-events: none;
}

.dot {
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #6366f1;
  width: 24px;
}

/* .slider-container {
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 100%;
}
.indicators {
  margin-top: 15px;
}
.indicators span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}
.active {
  background: #007bff;
} */

/* Blog Section Styling */
.blog-container {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-image img {
    transform: scale(1.1);
  }
  
  .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4CAF50;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .blog-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .blog-meta {
    display: flex;
    gap: 15px;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  
  .blog-read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .blog-read-more:hover {
    transform: translateX(5px);
  }
  
  .blog-cta {
    text-align: center;
    margin-top: 50px;
  }
  
  .view-all-button {
    display: inline-block;
    padding: 12px 30px;
    background: #4CAF50;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .view-all-button:hover {
    background: #388E3C;
    transform: scale(1.05);
  }
  
  /* Animation Classes */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .blog-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }
  
  .blog-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .blog-card:nth-child(3) {
    animation-delay: 0.4s;
  }




  
  /* Contact Section */

  /* Contact Section Styles */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    animation: fadeIn 1s ease-out;
  }
  
  .contact-info {
    padding: 40px;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff8765;
  }
  
  .contact-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .contact-item:hover {
    transform: translateX(10px);
  }
  
  .contact-item img {
    width: 24px;
    height: 24px;
  }
  
  .contact-form-container {
    width: calc(100%-40px);
   /* width: 70%; */
    height: 480px;
    background: white;
    padding: 40px;
    padding-right: 40px !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.8s ease-out;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .form-group {
    position: relative;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    background: transparent;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  }
  
  .form-group input:focus + label,
  .form-group textarea:focus + label,
  .form-group input:valid + label,
  .form-group textarea:valid + label {
    transform: translateY(-25px);
    font-size: 12px;
    color: #4CAF50;
    background: white;
    padding: 0 5px;
  }
  
  .form-group textarea {
    min-height: 70px;
    resize: vertical;
  }
  
  .submit-btn {
    padding: 15px 30px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .submit-btn:hover {
    background: #388E3C;
    transform: translateY(-2px);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    
    .contact-info {
      padding: 20px;
    }
    
    .contact-form-container {
      padding: 20px;
    }
  }
  


/* Footer Section */


.widget-section{
    padding: 80px 0;
    position: relative;
    background: linear-gradient( 135deg, #FEB692 10%, #EA5455 100%);
}

.widget-section:before{
    background-image: url(/assets/bg-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.social-icon{
  display: inline-block;
  text-decoration: none;
  
}

.social-icon li a{
    background: #7b4397;
    background: -webkit-linear-gradient(to right, #dc2430, #7b4397);  
    background: linear-gradient(to right, #dc2430, #7b4397); 
    display: flex;
    width: 40px;
    height: 40px;
    text-decoration: none;
}
.social-icon li{
   line-height: 40px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}
.social-icon li a:hover{
    box-shadow: 0px 0px 24px 5px rgba(0, 0, 0, 0.3);
}


.widget-content{
    
    
    
}
.widget-content img{
    margin-bottom: 15px;
}
.widget-content p{
    margin-bottom: 20px;
}
.widget-content .widget-list li{
    line-height: 30px;
    
}
.widget-content .widget-list li a{
    color: #555;
    text-decoration: none;
}
.widget-content .widget-list li a:hover{
    color: #dc2430;
}


.footer-section{
    background-color: #fff;
    display: block;
    text-align: center;
    padding: 25px 0;
}
.footer-section p{
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
}  

.downloadapp{
  font-size: 5rem;
}


.download-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-logo{
  width: 100px;
}

/* here button code  */
/* Download Button Hover Effects */
.download-btn {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn img {
    transition: transform 0.3s ease;
}

/* Hover Effect */
.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image Scaling on Hover */
.download-btn:hover img {
    transform: scale(1.1);
}

/* Background Overlay Effect */
.download-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.download-btn:hover::before {
    opacity: 1;
}

@media (max-width: 575.98px) {
  .hero-content { padding-left: 0px;}
  .experience-content {
    margin-top: 60px;
}
.contact-section {padding: 50px 20px;}
.leading-relaxed {
  margin-bottom: 84px;
}

.screenshot-slider { overflow-x: hidden;}

}