:root {
    --primary-color: #8cc63f;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --background-color: #f8f9fa;
    --white: #ffffff;
     --faq-hover: #f3ffe4;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero-section {
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e8f3ff+0,fff9e8+38,e3d5ea+100 */
background: linear-gradient(135deg, #e8f3ff 0%,#fff9e8 38%,#e3d5ea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    padding: 100px 0;
}

.bh-white{
    background-color: var(--white);
}

.feature-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.cta-button {
    transition: all 0.3s ease;
    padding: 12px 30px;
    border-radius: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-card {
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(140, 198, 63, 0.25);
}

.footer {
    background-color: #212529;
    color: #fff;
    padding: 50px 0 20px;
}

/* Override Bootstrap primary colors */
.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    --bs-btn-color: #fff;
    
    --bs-btn-hover-color: #fff;
   
    --bs-btn-focus-shadow-rgb: 140, 198, 63; /* RGB for #8cc63f */
    --bs-btn-active-color: #fff;
   
    --bs-btn-disabled-color: #fff;
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0071b7+0,20c14b+100 */
background: linear-gradient(135deg, #0071b7 0%,#20c14b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-white{
    background-color: var(--white);
}

/* Adjusting specific elements */
.fa-headset.text-red-500,
.fa-people-arrows.text-red-500,
.fa-clock-rotate-left.text-red-500 {
    color: var(--primary-color) !important; /* Change icons in Problem section */
}

.bg-primary.position-absolute.h-100 {
    background-color: var(--primary-color) !important; /* Vertical line in How It Works */
}

.testimonial-card {
    border-left-color: var(--primary-color) !important; /* Border color for testimonial cards */
}

.fa-circle-check.text-green-500 {
    color: var(--primary-color) !important; /* Change check icons in final CTA */
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: var(--faq-hover);
}

.wa-btn{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    height: 52px;
}

.list-count{
    width: 60px;
    height: 60px;
    z-index: 1;
}

.gradiant-bg{
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f7fbff+0,fffdf7+38,eae3ed+100 */
background: linear-gradient(135deg, #f7fbff 0%,#fffdf7 38%,#eae3ed 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.gradiant-bg-2{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#428bb5+0,bc89dd+48,59bf74+100 */
background: linear-gradient(135deg, #428bb5 0%,#bc89dd 48%,#59bf74 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

h1{
    background: -webkit-linear-gradient(#0071b7, #20c14b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fixed-right-form {
  width: 340px;
  padding: 12px;
  background-color: var(--white);
  position: fixed;
  bottom: -100%;
  right: 0px;
  font-size: 12px;
  border-radius: 12px 12px 0px 0px;
  box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.06);
  transition: all ease-in-out 0.3s;
}

.fixed-right-form.slide-up-form{
    bottom: 0%;
    transition: all ease-in-out 0.3s;
}

.fixed-right-form h2{
    font-size: 18px;
    text-align: left;
}

.fixed-right-form #message{
    height: 60px;
}

.fixed-right-form .form-control{
    font-size: 12px;
}

.fixed-right-form  .g-3 {
  --bs-gutter-y: .5rem;
}

.modal .custom-row .col-lg-6{ 
    width: 100% !important;  
}

.modal .custom-row .col-lg-6 .btn{ 
    width: 100% !important;  
}

.modal-body h2{
    display: none;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .fixed-right-form {
        display: none;
    }
}