/* General Styles */
:root {
    --dark-purple: #230f35;
    --brand-purple: #7928a7;
    --brand-pink: #E6007E; 
    --light-text: #f0e8f7; 
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Header Section Starts Here */
.navbar {
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
    color: #333333; 
    font-weight: 700;
    margin: 0 10px; 
    padding: 8px 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #7928a7; 
}

.navbar-nav .nav-link.active {
    color: #333333;
}

.btn-buy-now .btn-buy-link {
    background-color: #73299a;      
    color: #ffffff !important;      
    font-weight: 600;               
    padding: 8px 25px !important;    
    border-radius: 50px;            
    margin-left: 15px;            
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-buy-now .btn-buy-link:hover {
    background-color: #5f218e;
    color: #ffffff !important;
}
/* Header Section Ends Here */

.hero-section {
    position: relative;
    padding: 80px 0 100px;
    background-color: #fff;
    min-height: 85vh; /* Make it fill most of the screen */
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -78px;
    right: -28px;
    width: 80%; /* Covers right side */
    height: 115%;
    /* Complex gradient/curve simulation */
    /* background: #9c27b0; */
    /* This clip-path creates the wave shape */
    /* clip-path: path("M0,0 L1000,0 L1000,1000 L200,1000 C200,1000 500,800 200,500 C-50,250 300,100 0,0 Z");  */
    /* Fallback for clip-path if needed, visually similar shape */
    background-image: url(https://botmaster.co.in/wp-content/themes/appilo/img/saas-classic/banner/xb-shape1.png.pagespeed.ic.hI-Mz3jGeC.png);
    /* background-size: cover; */
    /* background-position: right center; */
    background-repeat: no-repeat;
    z-index: 0;
}

/* Badge Style */
.badge-purple-soft {
    background-color: #f3e5f5;
    color: #9c27b0;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Typography */
.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 450px;
}

/* Buttons */
.btn-hero {
    border: 1px solid #9c27b0;
    color: #333;
    background: transparent;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.btn-hero i {
    color: #fff;
    background-color: #9c27b0; /* Icon background circle */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.8rem;
}

.btn-hero:hover {
    background-color: #9c27b0;
    color: #fff;
}

.btn-hero:hover i {
    background-color: #fff;
    color: #9c27b0;
}

.small-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
    display: block;
}

/* Image Box Styling */
.hero-image-container {
    position: relative;
    z-index: 1; /* Above the background shape */
    display: flex;
    justify-content: center;
}

.hero-image-container img{
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.product-box {
    max-width: 80%;
    /* To make it look like a 3D box floating, we add drop shadow */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.product-box:hover {
    transform: translateY(-10px);
}

/* Latest Version Release Section Starts Here */
#download-section {
    background-color: #f7f5ff; 
    color: #495057;
}

.download-content h2.main-heading {
    font-weight: 800;
    color: #333;
    font-size: 2.8rem;
    line-height: 1.4;
}

.download-content h3.sub-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #666;
    margin-top: -10px;
}

.download-content .feature-list {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-top: 1.5rem;
}

.feature-list p {
    margin-bottom: 0.3rem;
}

.download-content .btn-download-app {
    background-color: #d41717;;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-content .btn-download-app:hover {
    background-color: #7c9cff;;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 83, 79, 0.4);

}

.download-content .btn-download-app svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.software-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

/* Latest Version Release Section Ends Here */

/* Whatsapp Demo Section Starts Here */
#whatapp-demo {
    background-color: #f7f5ff;
    color: #495057;
}

.demo-icon-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9e7ff;
    color: #6c5ce7;
    margin-bottom: 1.5rem;
}

.demo-icon-check svg {
    width: 30px;
    height: 30px;
    stroke-width: 3;
}

.demo-content h2 {
    font-weight: 700;
    color: #333;
    font-size: 2.2rem;
    line-height: 1.4;
}

.demo-content .feature-list {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.demo-content .btn-buy-link {
    color: #e12f29;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.demo-content .btn-buy-link:hover {
    color: #e31c15;
    text-decoration: underline;
}

.chat-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.chat-image-container img {
    /* display: block;
    margin-left: auto; */
    max-width: 50%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid #eee;
}

/* Whatsapp Demo Section Ends Here */

/* Feature 2 Section Starts Here */

#features {
    background-color: #ebedf2;
    background-image: url(https://botmaster.co.in/wp-content/uploads/2020/04/xashapemix.png.pagespeed.ic.qZCpIHsIIp.png);
    background-position: center right;
    background-repeat: no-repeat;

}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #6c2b95;
    border-radius: 50%;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.feature-icon-wrapper svg {
    height: 40px;
    fill: #fff;
}

.feature-heading {
    font-weight: 800;
    font-size: 2rem;
    color: #000;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.feature-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-link {
    color: #0d6efd;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.feature-link:hover {
    text-decoration: underline;
    color: #0a58ca;
}

.feature-img {
    max-width: 100%;
    height: auto;
}

.feature-row-spacer {
    margin-bottom: 6rem;
}

/* Feature 2 Section Ends Here */

/* Testimonial Section Starts Here */

#testimonials {
    background-color: #fcfcfc; 
}

.testimonial-card {
    background: #fff;
    border: none;
    border-radius: 4px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    text-align: left; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.star-rating {
    display: flex;
    color: #FFC107; 
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.user-info h5 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #000;
}

.user-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.profile-wrapper {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    background-color: #4ade80;
    border-radius: 50%;
    margin: 3rem auto 0;
    display: block;
}

.bi-star-fill {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}

/* Testimonial Section Ends Here */

/* --- Left Column Styling --- */
.feature-badge {
    display: inline-block;
    background-color: #e9daed;
    color: #a537ac;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.main-heading {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1.5rem;
}

.description-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #6c2b95;
    border-radius: 30px;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download i {
    font-size: 20px;
    color: #fff;
    background: linear-gradient(-45deg, #6b2c94 32%, #fc01fd 100%);
    padding: 5px;
    border-radius: 4px;
    margin-right: 8px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-download:hover {
    background-color: #6b2c94;
    color: #fff;
}

/* --- Right Column Styling (Feature List) --- */
.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.feature-item:hover:before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 5px;
    background-color: #00c853;
    border-radius: 0 4px 4px 0;
}

.icon-box {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 25px;
}

.icon-green {
    background-color: #e8f5e9;
    color: #00c853;
    border: 2px solid #c8e6c9;
}

.icon-purple {
    background-color: #ede7f6;
    color: #673ab7;
    border: 2px solid #d1c4e9;
}

.icon-pink {
    background-color: #fce4ec;
    color: #e91e63;
    border: 2px solid #f8bbd0;
}

.feature-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Section Starts Here */
#faq {
    background-image: url('https://botmaster.co.in/wp-content/uploads/2020/04/xmixpoint.png.pagespeed.ic.R_Fm9fRYLP.png');
    background-color: #eceef2;
    background-repeat: repeat;
    background-position: center;
    overflow: hidden;
}

.faq-badge {
    font-size: 18px;
    font-weight: 500;
    color: #951fb3;
    background-color: #ede0f4;
    padding: 10px 20px;
    border-radius: 8px;
}

.faq-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #010101;
    line-height: 48px;
}

.faq-item {
    max-width: 75%;
    /* margin-bottom: 2.5rem; */
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item-col:last-child .faq-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question {
    font-weight: 700;
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 0;
}

.faq-answer {
    font-size: 0.95rem;
    color: #555;
    margin-top: 1rem;
    line-height: 1.7;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background-color: #e9e7ff;
    color: #6c5ce7;
    font-size: 1.2rem;
    font-weight: 700;
}
/* FAQ Section Ends Here */


/* Pricing Section Starts Here */
#pricing {
    background-color: #f7f5ff; 
}

.pricing-card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.pricing-card .card-header {
    background-color: #6c757d; 
    color: white;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 2rem 1.5rem;
    border-bottom: 0;
    display: inline-flex;
    align-items: start;
    justify-content: center;
    /* gap: 10px; */
}

.pricing-card .card-header .pricing-icon {
    height: 65px;
    width: 60px;
    margin-right: 25px;
    border-radius: 8px;
    background-color: #fff;
    padding-top: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card .card-header svg {
    height: 40px;
    width: 40px;
    fill: #000;
}

.pricing-card .card-header img {
    filter: brightness(0) invert(1); 
}

.pricing-card .card-body {
    padding: 2.5rem 2rem;
}

.pricing-card .list-unstyled li i{
    width: 22px;
    height: 22px;
    margin-right: 10px;
    border-radius: 100%;
    line-height: 22px;
    position: relative;
    top: 2px;
    padding-left: 6px;
    color: #fff;
    font-size: 12px;
    background-image: linear-gradient(0deg, #00f500 1%, #00db00 53%, #00c000 100%);
}



.pricing-card .btn-buy-now {
    background-color: #ffffff;
    color: #6c5ce7; 
    border: 2px solid #e9e7ff;
    border-radius: 25px;
    padding: 10px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card .btn-buy-now:hover {
    background-color: #6c5ce7;
    color: #ffffff;
    border-color: #6c5ce7;
}

.btn-contact-us {
    background-color: #ffffff;
    color: #6c5ce7; 
    border: 2px solid #e9e7ff;
    border-radius: 25px;
    padding: 10px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact-us:hover {
    background-color: #6c5ce7;
    color: #ffffff;
    border-color: #6c5ce7;
}

/* Pricing Section Ends Here */


.newsletter-footer-wrapper {
  background-color: var(--dark-purple);
  color: #ffffff;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 10px 10px;

  border-top-left-radius: 50% 100px;
  border-top-right-radius: 50% 100px;
  margin-top: 100px;
  /* overflow: hidden; */
}

.newsletter-section {
  padding-bottom: 60px;
}

.newsletter-card {
  background-color: var(--brand-purple);
  border-radius: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  /* z-index: 100; */
}

.newsletter-image {
  flex: 0 0 35%;
}

.newsletter-image img {
   max-width: 100%;
   height: auto;
   display: block;
   transform: scale(1.0) translateX(100px) translateY(-26px);
}

.newsletter-content {
  flex: 1;
  padding: 40px 50px;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.newsletter-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1rem;
  color: #333;
}

.newsletter-form input[type="email"]::placeholder {
  color: #999;
}

.newsletter-form button {
  border: none;
  border-radius: 10px;
  background-color: var(--brand-pink);
  color: #ffffff;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #c7006e;
}


/* Footer Section Starts Here */
footer {
    background-color: #1a1a1a;
}

footer .footer-list .footer-link {
    text-decoration: none;
}


.social-icons a:hover {
    background-color: #007bff;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: background-color 0.3s;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #6c2b95;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.back-to-top:hover {
    background-color: #8e44ad;
    color: #ffffff;
    transform: translateY(-5px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Footer Section Ends Here */