/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #797979;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

/* Header Styles */
.header {
    background: #fff;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Menu Item Hover Effect */
.menu-item > a {
    padding: 8px 15px !important;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

.menu-item > a:hover {
    background-color: #b3e0f2 !important;
    color: #0080b7 !important;
}

/* Active Menu Item */
.menu a.active,
.mobile-menu a.active {
    background-color: #25bcea !important;
    color: #fff !important;
}

.menu-item.menu-item-has-children > a:hover {
    background-color: #b3e0f2 !important;
    color: #0080b7 !important;
}

/* Submenu items hover */
.sub-menu li a:hover {
    background-color: #b3e0f2 !important;
    color: #0080b7 !important;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    max-height: 60px;
    display: none; /* Hidden until image is provided */
}

.logo-text {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #25bcea;
    white-space: nowrap;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav .menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-nav .menu a {
    font-size: 14px;
    font-weight: 500;
    color: #727272;
    padding: 8px 10px;
    line-height: 1.5;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav .menu a:hover {
    color: #25bcea;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-icon {
    font-size: 26px;
    cursor: pointer;
    color: #727272;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 32px;
    height: 3px;
    background: #393939;
    transition: all 0.3s ease;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    min-height: auto;
    overflow: visible;
    padding: 40px 0;
    background: #fff;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10376B 0%, #25bcea 100%);
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 55, 107, 0.55);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.slide-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 20;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(37, 188, 234, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 50px;
    line-height: 20px;
}

.btn-primary {
    background: #25bcea;
    color: #fff;
}

.btn-primary:hover {
    background: #1da5cf;
    box-shadow: 0 5px 15px rgba(37, 188, 234, 0.4);
}

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

.btn-secondary:hover {
    background: #fff;
    color: #25bcea;
}

.btn-outline {
    background: transparent;
    color: #25bcea;
    border: 2px solid #25bcea;
}

.btn-outline:hover {
    background: #25bcea;
    color: #fff;
}

.btn-large {
    padding: 16px 30px;
    font-size: 18px;
    height: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #202020;
    margin-bottom: 10px;
    line-height: 1.284em;
}

.section-header p {
    font-size: 18px;
    color: #797979;
    font-weight: 500;
    line-height: 1.508em;
}

/* Counters Section */
.counters-section {
    padding: 60px 0;
    background: #f4f4f4;
    margin-top: 0;
    clear: both;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 3px #999;
    transition: all 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 4px 6px 11px #666;
}

.counter-icon {
    font-size: 55px;
    margin-bottom: 15px;
}

.counter-number {
    font-size: 43px;
    font-weight: 700;
    color: #25bcea;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.counter-label {
    font-size: 18px;
    color: #202020;
    font-weight: 600;
}

/* Features Section with Flip Cards */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-flip-card {
    perspective: 1000px;
    height: 250px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.feature-flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
    background: linear-gradient(135deg, #bedce8 0%, #dcf0ff 100%);
}

.flip-card-back {
    background: linear-gradient(135deg, #10376B 0%, #25bcea 100%);
    color: #fff;
    transform: rotateY(180deg);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.flip-card-front h3 {
    font-size: 22px;
    color: #10376B;
    font-weight: 600;
}

.flip-card-back p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #ededed;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 10px solid transparent;
}

.pricing-card:hover,
.pricing-card.featured {
    border-color: #10376B;
    transform: scale(1.05);
    box-shadow: 4px 6px 11px #666;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #b2dd4c;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.pricing-header h3 {
    font-size: 25px;
    color: #25bcea;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: #202020;
    vertical-align: super;
}

.amount {
    font-size: 43px;
    font-weight: 700;
    color: #202020;
}

.period {
    font-size: 16px;
    color: #797979;
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e7e7e7;
    color: #202020;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #fff;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    background: #f4f4f4;
    border: 3px dashed #25bcea;
    border-radius: 10px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: #25bcea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: #10376B;
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 18px;
    color: #797979;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #dcf0ff;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #202020;
}

.faq-icon {
    font-size: 24px;
    color: #25bcea;
    font-weight: 600;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #797979;
    line-height: 1.6;
}

/* New FAQ Accordion Styles */
.faq-item-new {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question-new {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question-new:hover {
    background: #dcf0ff;
}

.faq-title-new {
    font-size: 16px;
    font-weight: 600;
    color: #202020;
    flex: 1;
}

.faq-toggle-new {
    font-size: 24px;
    color: #25bcea;
    font-weight: 600;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-item-new.active .faq-toggle-new {
    transform: rotate(45deg);
}

.faq-answer-new {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
}

.faq-item-new.active .faq-answer-new {
    padding: 20px 25px;
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
}

.faq-answer-new p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 15px;
}

.faq-answer-new::after {
    content: "";
    display: table;
    clear: both;
}

/* Blog Section */
.blog-item .blog-image img:hover {
    transform: scale(1.05);
}

.blog-item .blog-content h5 a:hover {
    color: #0080b7 !important;
}

/* Call to Action Section */
.call-to-action-section a:hover {
    color: #25bcea !important;
    text-decoration: underline !important;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #bedce8 !important;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 40px 0;
    background: linear-gradient(rgba(37, 188, 234, 0.3), rgba(47, 102, 159, 0.3)), url('images/contact2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cta-banner-section a:hover {
    background-color: #fff !important;
    color: #2f669f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Tally Services Section */
.tally-services-section a:hover {
    background-color: #10376B !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact CTA Section */
.contact-cta-section a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Demo CTA Banner Section */
.demo-cta-banner a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 4px 6px 11px #666;
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 15px;
    color: #b2dd4c;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #202020;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #202020;
    font-size: 16px;
}

.testimonial-author span {
    color: #797979;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(rgba(16, 55, 107, 0.5), rgba(16, 55, 107, 0.5)), url('images/faq-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input:not(.phone-input-group input),
.form-group textarea,
.form-group select:not(.phone-input-group select) {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

/* Phone input group gets its own styling from phone-input.css */
.form-group .phone-input-group {
    width: 100%;
}

.form-group .phone-input-group input,
.form-group .phone-input-group select {
    /* Reset form-group styles - let phone-input.css handle it */
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.form-group select option {
    background: #10376B;
    color: #fff;
    padding: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25bcea;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    color: #25bcea;
}

.contact-details h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #25bcea;
}

.contact-details p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #393939;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer .container {
    max-width: 1200px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #25bcea;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Social Icon Hover Effects */
.social-icon:hover {
    background-color: #25bcea !important;
    border-color: #25bcea !important;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-link {
    color: #25bcea;
    font-size: 13px;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border: 1px solid #25bcea;
    border-radius: 3px;
}

.social-link:hover {
    background: #25bcea;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links a:hover {
    color: #25bcea;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 2;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 30px;
    color: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25bcea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(37, 188, 234, 0.4);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #10376B;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav .menu {
        gap: 15px;
    }

    .main-nav .menu a {
        font-size: 14px;
        padding: 8px 8px;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    .logo-text {
        font-size: 22px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-slider .col-lg-6 {
        padding-left: 15px !important;
    }

    .hero-slider .display-5 {
        font-size: 2.5rem !important;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .counters-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: left;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        z-index: 9999;
    }

    .whatsapp-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }

    .slide-title {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .counter-icon {
        font-size: 40px;
    }

    .counter-number {
        font-size: 30px;
    }

    .btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Hero Section Custom Styling */
.hero-slider {
    margin-bottom: 0 !important;
}

.hero-slider .display-5 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
}

.hero-slider .col-lg-6 {
    padding-left: 40px !important;
}

.hero-slider .container {
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
}

/* Hero Features List */
.hero-features-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.hero-features-list li {
    padding: 10px 0;
    font-size: 18px;
    line-height: 1.8;
}

.hero-features-list li i {
    color: #25bcea;
    margin-right: 12px;
    font-size: 20px;
}

/* Selection Color */
::selection {
    background: #25bcea;
    color: #fff;
}

/* WhatsApp Modal Styles */
.whatsapp-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.whatsapp-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.whatsapp-modal-close:hover {
    color: #000;
}

.whatsapp-modal-content h3 {
    margin-bottom: 20px;
    color: #25D366;
    font-size: 24px;
    text-align: center;
}

.whatsapp-modal-content select,
.whatsapp-modal-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.whatsapp-modal-content button {
    width: 100%;
    padding: 12px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.whatsapp-modal-content button:hover {
    background-color: #1da851;
}

.whatsapp-modal-content button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
