:root {
    --primary-color: #00A884;
    --primary-dark: #008F74;
    --primary-light: #E6F5F1;
    --secondary-color: #1F2C34;
    --accent-color: #00C9A7;
    --dark-color: #0B141A;
    --light-color: #F0F2F5;
    --light-bg: #F8F9FA;
    --text-dark: #1F2C34;
    --text-light: #667781;
    --success: #00A884;
    --info: #53BDEB;
    --warning: #FFBA00;
    --danger: #F15E6C;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fff;
    position: relative;
}

.bg-pattern {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.bg-pattern-1 {
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, var(--primary-color), transparent 50%);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.bg-soft-primary {
    background-color: rgba(0, 168, 132, 0.05);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 800;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
}

.text-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

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

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

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 0.8rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-placeholder {
    transform: rotate(15deg) scale(1.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    opacity: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
    opacity: 1;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    margin-top: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 168, 132, 0.05);
    color: var(--primary-color);
    padding-left: 1.8rem;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.05);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease; 
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 132, 0.3);
}

.btn-primary {
    background: #fff;
    border: none;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 168, 132, 0.4);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: #fff !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 0.5rem 1.25rem;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar .btn-outline-light {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    margin-left: 1rem;
    transition: var(--transition);
}

.navbar .btn-outline-light:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 132, 0.3);
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--dark) !important;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar .btn-outline-light {
    color: var(--primary-color);
    border-color: var(--primary-color);
    margin-left: 0.5rem;
}

.navbar .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

body {
    padding-top: 80px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
    color: #333;
}

.hero-section {
    padding: 6rem 0;
    position: relative;
    background-color: #f8fafc;
    text-align: center;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-section .btn-primary {
    background-color: #00a884;
    border-color: #00a884;
}

#signInModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

#signInModal .modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0;
}

#signInModal .modal-title {
    font-weight: 600;
    color: #333;
    text-align: center;
    width: 100%;
}

#signInModal .modal-body {
    padding: 0 1.5rem 2rem;
}

#signInModal .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

#signInModal .form-control:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.15);
}

#signInModal textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

#signInModal .btn-primary {
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #25D366;
    border-color: #25D366;
}

#signInModal .btn-primary:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

#signInModal .card {
    border-radius: 10px;
    height: 100%;
}

#signInModal .text-primary {
    color: #25D366 !important;
}

#signInModal .fa-map-marker-alt,
#signInModal .fa-envelope,
#signInModal .fa-phone-alt {
    font-size: 1.25rem;
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    #signInModal .modal-dialog {
        max-width: 90%;
        margin: 1.75rem auto;
    }
    
    #signInModal .col-lg-5 {
        margin-top: 2rem;
    }
}


.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pricing-card .card-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
}

.pricing-card .card-body {
    padding: 1.5rem;
}

.pricing-card .btn {
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.partnership-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}




.plan-main-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.billing-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}





.partnership-icon {
    /* color: #25D366; */
    color: #128C7E;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
}

.partnership-card h4 {
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.partnership-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #25D366;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #25D366;
    color: white;
    transform: rotateY(180deg);
}

.service-card h6 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0 5px;
}

.form-control:invalid, .form-control:valid {
    box-shadow: none;
}

.form-control:invalid:required:not(:placeholder-shown) {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control:invalid:required:not(:placeholder-shown) + .invalid-feedback {
    display: block;
}

.form-control:valid:not(:placeholder-shown) {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid:focus ~ .invalid-feedback {
    display: block;
}

.form-control:invalid {
    box-shadow: none;
}

.form-control:invalid {
    box-shadow: none;
}

.form-control:invalid:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

footer {
    background-color: #1a1a1a;
    color: #adb5bd;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    background: #25D366;
    color: #fff !important;
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 39px;
}

.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; 
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.1);
    color: white;
}

.about-content {
    padding: 40px 30px;     /* space at beginning & ending */
}

@media (min-width: 992px) {
    .about-content {
        padding: 60px 80px; /* more space on desktop/iPad Pro */
    }
}

.about-text {
    max-width: 700px;      /* keeps text neat */
    margin: 0 auto;        /* centers text block */
}





@media (max-width: 991.98px)
 {


   about-content h2 {
    margin-top: 0 !important;
  }

  /* Reduce gap from the top section */
  .text-center.mb-5 {
    margin-bottom: 1rem !important;
  }

  /* Optional: tighten paragraph spacing */
  .about-content p {
    margin-top: 0.2rem;
  
  }


    footer {
        text-align: center;
    }
    
    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;

        
    }
    
}


/* 📱 TABLET (iPad) FIX */
@media (min-width: 768px) and (max-width: 1024px) {
    h5.footer-heading.mb-3::after {
        display: none;
        content: none;
    }
    footer .row {
        row-gap: 30px;
    }

    footer .col-lg-2,
    footer .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
        margin: 0 !important;
        text-align: left;
    }

    footer h5.footer-heading {
        margin-bottom: 12px;
        font-size: 16px;
    }

    footer ul li {
        margin-bottom: 8px;
    }

    footer .social-icons {
        margin-top: 12px;
    }
}



@media (min-width: 1024px) and (max-width: 1366px) {

    footer .row {
        row-gap: 32px;
    }

    footer .col-lg-2,
    footer .col-md-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        margin: 0 !important;
        text-align: left;
    }

    footer h5.footer-heading {
        font-size: 15px;
        margin-bottom: 10px;
    }

    footer h5.footer-heading::after {
        width: 28px;
    }

    footer ul li {
        margin-bottom: 6px;
    }
}


@media (max-width: 767.98px)
 {
    .about-text {
    text-align: left;     
    line-height: 1.7;
    max-width: 100%;
} 


     

        h5.footer-heading.mb-3::after {
        display: none;
        content: none;
    }
       .footer .col-lg-2.col-md-4.mx-auto {
        margin-left: 0 !important; 
        text-align: left;
       }

     

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 35px;
        height: 35px;
        bottom: 80px;
        right: 20px;
    }
}

.hero-section .btn-outline-primary:hover {
    background-color: #00a884;
    color: #fff;
}

.features-section {
    padding: 5rem 0;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.whatsapp-features {
    background-color: #f8f9fa;
    padding: 80px 0;
}

#whatsapp-panel-features,
#whatsapp-panel-features p,
#whatsapp-panel-features h2,
#whatsapp-panel-features h3 {
    color: #000000 !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    overflow: hidden;
    color: #000000;
}

.pricing-cards {
    padding: 3rem 0;
}

.pricing-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pricing-card .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    line-height: 1.2;
}

.pricing-card .price-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: block;
}

.pricing-card .price-per-message {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.pricing-features li i.fa-check {
    display: none;
}

.billing-toggle {
    margin: 2rem 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #f0f2f5;
    border-radius: 10px;
    padding: 4px;
    position: relative;
}

.billing-toggle .btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    min-width: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    color: #4a5568;
    background: transparent;
    position: relative;
    z-index: 1;
    margin: 0;
}

.billing-toggle .btn.active {
    color: white;
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 168, 132, 0.3);
}

.billing-toggle .btn:not(.active):hover {
    color: var(--primary-color);
    background: rgba(0, 168, 132, 0.1);
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    background: #25D366;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.billing-toggle .btn:nth-child(2) .discount-badge {
    content: '8% OFF';
}

.billing-toggle .btn:nth-child(4) .discount-badge {
    content: '20% OFF';
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-cards {
    padding: 40px 0 80px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-card .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
    line-height: 1.2;
}

.pricing-card .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
}

.price-per-message {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.btn-pricing.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-pricing.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-card {
    padding-bottom: 2.5rem;
    margin-bottom: 0;
}

.pricing-card .card-header {
    background-color: #f8f9fa;
    border-bottom: none;
    padding: 2rem 1.5rem;
}

.pricing-card .pricing-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0 0;
}

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

.pricing-card ul li {
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    transform: scale(1.3);
}

#testimonials {
    padding: 80px 0;
    position: relative;
    background-color: #f8fafc;
}

#testimonials .card {
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#testimonials .card-body {
    padding: 2rem;
}

#testimonials .fa-quote-right {
    color: #00a884;
    opacity: 0.2;
    margin-bottom: 1rem;
    font-size: 2rem;
}

#testimonials p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

#testimonials .d-flex img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#testimonials h6 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

#testimonials small {
    color: #718096;
    font-size: 0.85rem;
}

.trusted-by {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {

  

    #contactForm {
        background: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    #contactForm .btn-primary {
        display: block;
        width: 200px;
        margin: 1.5rem auto 0;
        padding: 12px 24px;
        background-color: #25D366;
        border-color: #25D366;
        color: white;
        font-weight: 500;
        width: 100%;
        margin-top: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        
    }
   
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-form .form-control {
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    border: 1px solid #E8E8E8;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
    background-color: var(--light-bg);
    height: auto;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 132, 0.15);
    background-color: #fff;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 132, 0.3);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.input-group .form-control {
    padding-left: 3rem;
}

.contact-info {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
}

.contact-info h4 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.contact-info i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 5rem 0 0;
}

footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 15px;
}

.float-whatsapp i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.float-whatsapp span {
    position: absolute;
    right: 100%;
    opacity: 0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
    z-index: 1;
}

.float-whatsapp:hover {
    width: 200px;
    border-radius: 50px;
    background-color: #128C7E;
}

.float-whatsapp:hover i {
    transform: translateX(-40px);
}

.float-whatsapp:hover span {
    opacity: 1;
    right: 20px;
}

@media (max-width: 768px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .float-whatsapp:hover {
        width: 50px;
    }
    
    .float-whatsapp:hover i {
        transform: none;
    }
    
    .float-whatsapp span {
        display: none;
    }
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.bg-section-light {
    background-color: #f8f9fa;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.whatsapp-float-icon {
    margin-top: 5px;
}

.cta-section {
    padding: 4rem 0;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.footer-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-icon {
    min-width: 16px;
}

footer p {
    color: #adb5bd;
    margin-bottom: 1.5rem;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: #adb5bd;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

#contactForm .btn-primary {
    display: block;
    width: 200px;
    margin: 1.5rem auto 0;
    padding: 12px 24px;
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

#contactForm .btn-primary:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 5rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    footer {
        text-align: center;
    }
    
    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.pricing-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.product-toggle-container {
    margin: 2rem 0 1rem;
}

.product-toggle {
    display: inline-flex;
    background: #e9ecef;
    border-radius: 12px;
    padding: 5px;
    margin: 0 auto;
}

.product-toggle .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-toggle .btn-check:checked + .btn {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-toggle .btn i {
    margin-right: 8px;
}

.billing-toggle-container {
    margin: 1rem 0 2rem;
}

.billing-toggle {
    display: inline-flex;
    background: #e9ecef;
    border-radius: 30px;
    padding: 5px;
    margin: 0 auto;
}

.billing-toggle .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
    min-width: 120px;
}

.billing-toggle .btn-check:checked + .btn {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.discount-badge {
    position: absolute;
    top: -8px;
    right: 8px;
    background: var(--primary-color);
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    line-height: 1;
    font-weight: 600;
}

.pricing-cards {
    padding: 40px 0 80px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-card .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
    line-height: 1.2;
}

.pricing-card .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
}

.pricing-card .price-per-message {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 42px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-dark);
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

@media ((min-width:768px) and (max-width: 991.98px)) {
    .pricing-header {
        padding: 100px 0 50px;
    }
    
    .pricing-header h1 {
        font-size: 2.2rem;
    }
    
    .pricing-header p {
        font-size: 1.1rem;
    }

  .footer{
    margin: 0;
    padding-left: 5px;
    padding-right: 5px;
}




}

/* @media (max-width: 767.98px) {
    .pricing-header {
        padding: 80px 0 40px;
    }
    
    .pricing-header h1 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .product-toggle, .billing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .product-toggle .btn, .billing-toggle .btn {
        width: 100%;
        margin: 2px 0;
    }


} */

@media (max-width: 767.98px) {

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

    .navbar-brand {
        max-width: 75%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-text {
        font-size: 1.05rem;
        line-height: 1.2;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}






