/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #f4f7fc;
    color: #333;
    overflow-x: hidden;
}

/* === Header === */
header {
    background-color: #34495e;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}
nav {
    display: flex;
    gap: 30px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 18px;
}
nav a:hover {
    color: #3498db;
    transform: scale(1.05);
}
.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background-color: #34495e;
}
.mobile-nav a {
    color: #fff;
    text-decoration: none;
}
.mobile-nav.active {
    display: flex;
}

/* === Footer === */
footer {
    padding: 40px 30px;
    background-color: #34495e;
    color: #fff;
    text-align: center;
    position: relative;
}
footer p {
    font-size: 16px;
    margin: 10px 0;
}
.footer-links {
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 0 12px; 
    white-space: nowrap; 
}
.footer-links a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -2px;
    color: #fff;
}
.footer-links a:hover {
    color: #ecf0f1;
}
footer hr {
    border-top: 1px solid #fff;
    margin: 20px auto;
    width: 80%;
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.cookie-banner button {
    background-color: #1abc9c;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    margin-left: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.cookie-banner button:hover {
    background-color: #16a085;
}


/* === Form Container Styles (Login/Register) === */
.auth-section {
    padding: 80px 20px;
}
.auth-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.auth-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}
.auth-container input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-size: 16px;
}
.auth-container button {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}
.auth-container button:hover {
    background-color: #2980b9;
}
.auth-footer {
    margin-top: 15px;
}
.auth-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

/* === Notifications === */
.notification {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}
.success { background-color: #d4edda; color: #155724; }
.error { background-color: #f8d7da; color: #721c24; }


/* === About Page Styles === */
.about-header {
    text-align: center;
    padding: 100px 50px;
    background-color: #f4f7fc;
}

.about-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
}

.about-header p {
    font-size: 18px;
    color: #7f8c8d;
    margin: 20px 0;
}

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

.section-title {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin: 50px 0 40px;
    font-weight: 700;
}

.about-content {
    text-align: center;
    margin-bottom: 50px;
}

.about-content p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 40px;
}

.values-section-container {
    margin-top: 100px;
    text-align: center;
}

.values-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(25% - 30px);
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card h4 {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Team Section (currently unused, preserved for future) */
.team-section {
    text-align: center;
    margin: 50px 0;
}

.team-section p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.team-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(33% - 30px);
    background-color: #f4f7fc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
}

.team-member h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 16px;
    color: #7f8c8d;
}

/* === Contact Page Styles === */
.contact-header {
    text-align: center;
    padding: 60px 20px;
    margin: 0 auto;
}
.contact-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}
.contact-header p {
    font-size: 18px;
    color: #7f8c8d;
}


.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    gap: 30px;
    flex-wrap: wrap;
}
.contact-form, .contact-info {
    flex: 1 1 48%;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-form h3,
.contact-info h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
}
.contact-info h3 {
    text-align: left;
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #3498db;
    border-radius: 5px;
    font-size: 16px;
    color: #2c3e50;
}

.textarea-container {
    position: relative;
}
.textarea-container textarea {
    padding-top: 15px;
    padding-left: 40px;
    height: 150px;
    resize: none;
}
.upload-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #3498db;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}
.upload-icon:hover {
    color: #2c3e50;
}

.file-name {
    font-size: 14px;
    color: #2c3e50;
    margin-top: 10px;
    text-align: left;
}

.contact-form button {
    width: 100%;
    padding: 12px 25px;
    background-color: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #2980b9;
}

.contact-info p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}
.contact-info > p {
    text-align: center;
}
.cf-turnstile {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.info-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 10px 0;
    font-size: 16px;
    color: #2c3e50;
    border-bottom: 1px dashed #e0e0e0;
}
.info-item:last-child {
    border-bottom: none;
}
.info-item i {
    font-size: 22px;
    color: #3498db;
    margin-top: 2px;
}
.info-item p,
.info-item a {
    margin: 0;
    line-height: 1.5;
}

.social-media {
    margin-top: 30px;
    text-align: center;
}
.social-media a {
    color: #3498db;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}
.social-media a:hover {
    color: #2c3e50;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
}


/* === Static Policy Pages === */
.policy-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.policy-section h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.policy-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 500;
    border-left: 4px solid #3498db;
    padding-left: 10px;
}

.policy-section p,
.policy-section ul,
.policy-section ol {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-section ul,
.policy-section ol {
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 10px;
}

.policy-section a {
    color: #3498db;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #2c3e50;
}


/* === Payment Result Styles === */
 .payment-result-section {
     max-width: 800px;
     margin: 100px auto;
     padding: 40px;
     background-color: #ffffff;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     text-align: center;
 }
 .payment-result-section .status-icon {
     font-size: 50px;
     margin-bottom: 20px;
 }
 .payment-result-section h1 {
     font-size: 36px;
     margin-bottom: 20px;
 }
 .payment-result-section p {
     font-size: 18px;
     color: #666;
     margin-bottom: 30px;
     line-height: 1.6;
 }
 .payment-result-section a {
     display: inline-block;
     padding: 12px 25px;
     border-radius: 6px;
     font-size: 16px;
     text-decoration: none;
     transition: all 0.3s ease;
 }
 .payment-result-section a[href*="receipt"] {
     background-color: #3498db;
     color: #fff;
     margin-top: 15px;
 }
 .payment-result-section a[href*="receipt"]:hover {
    background-color: #2980b9;
 }
 .payment-success .status-icon { color: #2ecc71; }
 .payment-success h1 { color: #2ecc71; }
 .payment-success a {
     background-color: #2ecc71;
     color: #fff;
 }
 .payment-success a:hover { background-color: #27ae60; }
 .payment-failure .status-icon { color: #e74c3c; }
 .payment-failure h1 { color: #e74c3c; }
 .payment-failure a {
     background-color: #e74c3c;
     color: #fff;
 }
 .payment-failure a:hover { background-color: #c0392b; }



/* === Payment Form === */
.payment-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin: 50px auto;
}
.payment-container h2 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
    font-weight: 600;
}
.payment-container p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 25px;
}
.payment-container .form-group {
    margin-bottom: 20px;
    text-align: left;
}
.payment-container label {
    font-size: 14px;
    color: #34495e;
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
}
.payment-container .form-control,
#card-element {
    width: 100%;
    padding: 12px;
    border: 2px solid #dcdfe3;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.payment-container .form-control:focus,
#card-element:focus {
    border-color: #3498db;
}
.payment-container button {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}
.payment-container button:hover {
    background-color: #2980b9;
}
.payment-container button:disabled {
    background-color: #95a5a6; /* A neutral grayish tone */
    cursor: not-allowed;
    opacity: 0.7;
}

.payment-container .error-message {
    color: #d9534f;
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
}
.iti {
    width: 100%;
    display: block;
    position: relative;
}

.iti input {
    padding-left: 58px !important; /* space for flag & dial code */
    box-sizing: border-box;
    width: 100% !important; /* prevent resizing */
    transition: none !important;
}

.iti--separate-dial-code input {
    padding-left: 70px !important;
}

.iti__flag-container {
    z-index: 1;
}

#phone.form-control {
    padding-left: 58px !important;
}


/* === Service Page Styles === */
.services-section {
    padding: 80px 50px;
    text-align: center;
    background-color: #ffffff;
}
.services-section h1,
.services-section h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}
.services-section h1::after,
.services-section h3::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #3498db;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}
.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.service-card i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 15px;
}
.service-card:hover i {
    color: #2980b9;
}
.service-card h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 10px;
    font-weight: bold;
}
.service-card p {
    margin-top: 10px;
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.4;
}
.service-form {
    display: none;
    margin-top: 40px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.service-form.active {
    display: block;
}
.service-form h4 {
    font-size: 26px;
    color: #3498db;
    margin-bottom: 30px;
    font-weight: 600;
}
.service-form label {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
}
.service-form input,
.service-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #3498db;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}
.service-form input:focus,
.service-form select:focus {
    border-color: #2980b9;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}
.service-form input[type="file"] {
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
}
.service-form button {
    padding: 15px 30px;
    background-color: #3498db;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
.service-form button:hover {
    background-color: #2980b9;
}
.services-section p.description-text {
    font-size: 17px;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}



/* === Pricing Card Container === */
.pricing-card-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: nowrap; /* NO wrapping, so all 4 stay in one row */
}

/* === Individual Pricing Card === */
.pricing-card {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #3498db;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 0;
}

/* === Typography === */
.pricing-card h3,
.pricing-card h4 {
    font-size: 20px;
    color: #3498db;
    margin-bottom: 8px;
}

.pricing-card p {
    font-size: 15px;
    color: #444;
    margin: 6px 0;
}

.pricing-card.selected {
    border-color: #2980b9;
    background-color: #e3f2fd;
    box-shadow: 0 8px 15px rgba(41, 128, 185, 0.2);
}

/* === Disabled card === */
.pricing-card[style*="opacity: 0.5"] {
    cursor: not-allowed;
    box-shadow: none;
}


.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}


#wordCountDisplay {
    color: #3498db;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
}
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 300px;
}
.notification {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out, fadeOut 0.5s ease-in-out 9.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}
.notification.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}
.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* === Index Page Styles === */
.hero-section {
    display: flex;
    align-items: center;
    padding: 80px 50px;
    background-color: #f4f7fc;
    height: calc(100vh - 100px); /* Take full height minus header */
}

.hero-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    margin-right: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.hero-benefits li {
    font-size: 16px;
    color: #3498db;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.hero-benefits li i {
    color: #3498db;
    margin-right: 10px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #3498db;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
}





    /* Why Choose Us Section */
    .why-us-section {
        background-color: #ffffff;
        padding: 80px 50px;
    }

    .why-us-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .why-us-content h2,
    .why-us-content h3 {
        font-size: 32px;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    .why-us-content p {
        font-size: 18px;
        color: #7f8c8d;
        margin-bottom: 40px;
    }

    .why-us-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px 0;
    }

    .why-us-item {
        flex: 0 0 30%;
        margin-bottom: 20px;
        background-color: #ecf0f1;
        border-left: 5px solid #3498db;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .why-us-item h3,
    .why-us-item h4 {
        font-size: 22px;
        color: #2c3e50;
        margin-top: 15px;
    }

    .why-us-item p {
        font-size: 16px;
        color: #7f8c8d;
        margin-top: 10px;
    }
    .scroll-container {
        position: relative;
    }

    .scroll-wrapper {
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .scroll-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }

    .scroll-inner > .why-us-item,
    .scroll-inner > .case-study {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        min-width: 280px;
    }

    /* Hide scroll arrows by default */
    .scroll-arrow {
        display: none;
    }


       /* How It Works Section */
    .how-it-works-section {
        background-color: #3498db;
        padding: 80px 50px;
        color: #fff;
    }

    .how-it-works-section h2,
    .how-it-works-section h3 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 50px; /* Increased margin for better spacing */
        color: #fff;
        font-weight: 700;
    }

    .how-it-works-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        text-align: center; /* Ensure the steps are centered */
    }

    .how-it-works-container .how-it-works-step {
        flex: 1;
        background-color: #ffffff;
        color: #3498db;
        border-radius: 10px;
        padding: 40px;
        transition: transform 0.3s ease;
        text-align: center;
    }

    .how-it-works-step:hover {
        transform: translateY(-10px);
    }

    .how-it-works-step span {
        font-size: 50px;
        color: #3498db;
        margin-bottom: 20px;
        display: block;
    }

    .how-it-works-step h3,
    .how-it-works-step h4 {
        font-size: 22px;
        color: #2c3e50;
        margin-top: 15px;
    }

    .how-it-works-step p {
        font-size: 16px;
        color: #7f8c8d;
        margin-top: 15px;
    }
       
       
   /* Case Studies Section */    
.case-studies-section {
    background-color: #ffffff;
    padding: 80px 50px;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 50px;
}

.case-studies-header h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.case-studies-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.case-studies-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.case-study {
    flex: 1 1 calc(33% - 30px); /* 3 case studies per row */
    background-color: #f4f7fc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-10px); /* Slight hover effect */
}

.case-study h4 {
    font-size: 20px;
    color: #3498db;
    margin-bottom: 15px;
}

.case-study p {
    font-size: 16px;
    color: #7f8c8d;
}

  
       
/* Pricing Section */
.pricing-section {
    background-color: #f0f4f8;
    padding: 60px 30px;
    text-align: center;
}

.pricing-section h2,
.pricing-section h3 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-section p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 40px;
}

input[type="number"] {
    padding: 12px;
    font-size: 18px;
    width: 280px;
    border: 2px solid #0984e3;
    border-radius: 6px;
    margin-bottom: 20px;
}

.pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    text-align: left;
    margin-top: 30px;
}

.pricing-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid #f0f4f8;
}

.pricing-card h3,
.pricing-card h4 {
    font-size: 28px;
    color: #0984e3;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    position: relative;
}

/* For the heading-level info icon */
.pricing-card h3 .info-icon,
.pricing-card h4 .info-icon {
    font-size: 18px;                /* Bigger and visible */
    color: #1e90ff;                 /* Vibrant blue (DodgerBlue) */
    position: relative;
    top: -6px;                      /* Superscript style but not too high */
    right: -4px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.pricing-card h3 .info-icon:hover,
.pricing-card h4 .info-icon:hover {
    color: #0b66c3;
    transform: scale(1.2);         /* Slight zoom on hover for feedback */
}

.pricing-card p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 25px;
    text-align: center;
}

.pricing-card .price-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    padding: 20px 10px;
    background-color: #f8fafc;
    border-radius: 10px;
    border: 2px solid #dfe6e9;
    position: relative;
}

/* For the price-area info icon */
.pricing-card .price-container .info-icon-price {
    font-size: 17px;
    color: #1e90ff;
    position: absolute;
    top: 4px;
    right: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.pricing-card .price-container .info-icon-price:hover {
    color: #0b66c3;
    transform: scale(1.2);
}

.pricing-card .bundled-price,
.pricing-card .payg-price {
    font-size: 26px;
    color: #2d3436;
    font-weight: 700;
}

.pricing-card .bundled-price span,
.pricing-card .payg-price span {
    display: block;
    font-size: 16px;
    color: #636e72;
    font-weight: 400;
}

.pricing-card .bundled-price {
    color: #27ae60; /* Green for bundled price */
}

.pricing-card .payg-price {
    color: #3498db; /* Blue for pay-as-you-go pricing */
}

.pricing-card button {
    padding: 15px 35px;
    background-color: #0984e3;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 30px auto 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card button:hover {
    background-color: #074a8d;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid #0984e3;
}

.pricing-card.active {
    border: 3px solid #0984e3;
}

/* Feature list styles */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card ul li {
    font-size: 16px;
    color: #2d3436;
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    min-height: 48px; /* Ensure equal row height across cards */
    line-height: 1.4;
    text-align: left;
}

.pricing-card ul li::before {
    content: '✔';
    color: #0984e3;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px; /* Aligns tick mark vertically */
}

.pricing-card:hover ul li::before {
    color: #2ecc71;
}

.bundled-price-label,
.payg-price-label {
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    color: #2d3436;
    text-align: center;
}

.price-block {
    margin-bottom: 20px;
    text-align: center;
}

     
.strikethrough-rate {
    color: red !important;
    text-decoration: line-through !important;
    font-size: 26px !important;
    font-weight: bold !important;
    margin-right: 5px !important;
}

.bundled-price span, .payg-price span {
    font-size: 12px;
    color: #888; /* Gray color for "per word" */
}

.info-icon-price {
    font-size: 18px;
    color: #3498db;
    cursor: pointer;
    margin-left: 10px;
}

.cta-button {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #2980b9;
}


 
       
.pricing-plan-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* Adjust gap between columns */
}

.plan-details {
    flex: 1;
}

.plan-details h3 {
    font-size: 24px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.plan-details ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #636e72;
}

.plan-details p {
    font-size: 18px;
    font-weight: bold;
    color: #2d3436;
    margin-top: 20px;
}

.modal-section {
    padding: 20px;
    border-top: 1px solid #dfe6e9;
}   
/* Feature modal responsive layout */
.feature-columns {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}


       

       
       
/*Badges section*/
.trust-badges-section {
    background-color: #3498db;
    padding: 80px 0; /* Increased padding for more space */
    text-align: center;
}

.trust-badges-section h2,
.trust-badges-section h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.trust-badges-container {
    display: flex;
    justify-content: center;
    gap: 40px; /* More spacing between badges */
    flex-wrap: wrap;
}

.trust-badge {
    flex: 0 0 150px;
    transition: transform 0.3s ease;
}

.trust-badge img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    margin-bottom: 10px;
    border: 2px solid #e0e0e0; /* Added border for better focus */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for better visual appeal */
    background-color: white;
}

.trust-badge:hover {
    transform: scale(1.1);
}

.trust-badge img:hover {
    opacity: 0.9; /* Slightly less opacity change on hover */
}





/*-- Free Trial Section --*/  
       
  .free-trial-section {
    background-color: #3498db;
    color: #fff;
    padding: 80px 50px;
    text-align: center;
}

.free-trial-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.free-trial-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.free-trial-section button {
    padding: 15px 30px;
    background-color: #fff;
    color: #3498db;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.free-trial-section button:hover {
    background-color: #ecf0f1;
}
     
       
  
    /* Testimonials Section */
    .testimonials-section {
        padding: 80px 50px;
        background-color: #f4f7fc;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .testimonials-header h3 {
        font-size: 32px;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    .testimonials-header p {
        font-size: 18px;
        color: #7f8c8d;
    }

    .testimonial-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        text-align: left;
    }

    .testimonial {
        flex: 1;
        background-color: #fff;
        border-radius: 5px;
        padding: 30px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

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

    .testimonial p {
        font-size: 16px;
        color: #7f8c8d;
    }

    .testimonial h4 {
        font-size: 20px;
        color: #2c3e50;
        margin-top: 15px;
    }
       
       
       

    /* FAQ Section */
    .faq-section {
        background-color: #f7f9fc;
        padding: 60px 20px;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    }

    .faq-container h2,
    .faq-container h3 {
        font-size: 28px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 30px;
        color: #2c3e50;
    }

    .faq {
        margin-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
        padding: 10px 0;
    }

    .faq h3,
    .faq h4 {
        font-size: 20px;
        font-weight: 500;
        color: #3498db;
        cursor: pointer;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        border-radius: 5px;
        background-color: #f4f7fc;
    }

    .faq h3:hover,
    .faq h4:hover {
        background-color: #eaf2fb;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .faq .icon {
        font-size: 18px;
        font-weight: bold;
        color: #3498db;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        display: none;
        padding: 15px;
        background-color: #fff;
        margin-top: 10px;
        border-left: 3px solid #3498db;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .faq-active .faq-answer {
        display: block;
        opacity: 1;
    }

    .faq-active h3 .icon,
    .faq-active h4 .icon {
        transform: rotate(45deg); /* Change the "+" to "x" */
    }

       
       
    /* Call to Action Section */
    .cta-section {
        background-color: #34495e;
        padding: 60px 50px;
        color: #fff;
        text-align: center;
    }

    .cta-section h2,
    .cta-section h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .cta-section button {
        padding: 15px 30px;
        background-color: #fff;
        color: #34495e;
        border: none;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .cta-section button:hover {
        background-color: #ecf0f1;
    }



    /* Testimonials Carousel */
    .testimonial-carousel {
        overflow: hidden;
        position: relative;
        width: 100%; /* Full width of the container */
        padding: 20px 0;
    }

    .testimonial-track {
        display: flex;
        justify-content: space-between;
        animation: slide-left 40s linear infinite; /* Slowed down to 40s */
    }

    .testimonial {
        flex: 0 0 300px; /* Width of each testimonial */
        margin-right: 30px;
        background-color: #fff;
        border-radius: 5px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    /* Remove gap between first and last testimonials */
    .testimonial-track::after {
        content: '';
        display: block;
        flex: 0 0 300px; /* Same width as testimonial */
    }

    @keyframes slide-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% - 30px)); /* Adjust for no gaps */
        }
    }

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

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Box shadow */
    width: 80%;
    max-height: 80vh; /* Limit the height of the modal */
    overflow-y: scroll; /* Allow scrolling */
    overflow-x: hidden; /* Hide horizontal scroll */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar in Webkit browsers (Chrome, Safari) */
.modal-content::-webkit-scrollbar {
    display: none;
}

.close {
    color: #bbb;
    position: fixed;
    top: 10px; /* Keep it fixed at the top */
    right: 30px; /* Right-aligned */
    font-size: 30px;
    font-weight: bold;
    z-index: 1001; /* Ensure it stays on top */
}

.close:hover,
.close:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    max-height: 60vh; /* Limit the content height */
    overflow-y: scroll; /* Allow scrolling of content if it exceeds modal height */
    padding-right: 15px; /* Prevent content from hiding under the close button */
}

/* Feature list styling */
.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-content li {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.modal-content li span {
    margin-right: 10px;
}

.modal-content li span.checkmark {
    color: #2ecc71; /* Green for checkmark */
}

.modal-content li span.cross {
    color: #e74c3c; /* Red for cross */
}

/* Title styling */
.modal-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: bold;
    text-align: left;
}

.pricing-card.selected {
    border: 2px solid #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}



/* === Responsive === */
/* Media queries for tablets and smaller screens */
@media screen and (max-width: 1024px) {
    .hero-section {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-image img {
        transition: transform 0.3s ease;
      }

    .hero-image img:hover {
        transform: scale(1.03);
      }
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
      }

      .pricing-card {
        width: 90%;
        padding: 35px;
      }

      .pricing-card .price-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .pricing-card .bundled-price,
      .pricing-card .payg-price {
        display: block;
        margin: 10px 0;
        font-size: 24px;
        font-weight: bold;
        line-height: 1.3;
      }

      .pricing-card .bundled-price span,
      .pricing-card .payg-price span {
        font-size: 14px;
        color: #888;
      }

      .pricing-card .price-container .info-icon-price {
        top: 10px;
        right: 10px;
      }
    .scroll-container {
        position: static;
      }

      .scroll-wrapper {
        overflow-x: visible;
        margin: 0;
        padding: 0;
      }

      .scroll-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
      }

      .scroll-inner > .why-us-item,
      .scroll-inner > .case-study {
        flex: 0 0 calc(33.333% - 20px); /* 3 per row */
        max-width: calc(33.333% - 20px);
      }

      .scroll-arrow {
        display: none; /* Hide arrows on desktop */
      }
}


@media screen and (max-width: 768px) {
.desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 30px;
        background-color: #34495e;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 1001;
    }

    .mobile-nav.active {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-nav a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        padding: 5px 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
        padding: 0 20px;
        text-align: center;
    }

    .footer-links a {
        margin: 5px 0;
        font-size: 14px;
        white-space: nowrap;
    }

    .footer-links a::after {
        content: "|";
        margin-left: 10px;
        color: #fff;
    }

    .footer-links a:last-child::after {
        content: "";
        margin-left: 0;
    }
    
    .auth-container {
        padding: 20px;
    }
    .values-section,
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .value-card,
    .team-member {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    .contact-form, .contact-info {
        flex: 1 1 100%;
    }
        .policy-section {
        padding: 20px;
    }

    .policy-section h1 {
        font-size: 32px;
    }

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

    .policy-section p,
    .policy-section ul,
    .policy-section ol {
        font-size: 15px;
    }
    .payment-result-section {
        width: 90%;
        margin: 80px auto 40px;
        padding: 25px 20px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .payment-result-section .status-icon {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .payment-result-section h1 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .payment-result-section p {
        font-size: 15px;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.5;
        max-width: 100%;
    }

    .payment-result-section a {
        padding: 10px 22px;
        font-size: 15px;
        border-radius: 5px;
        width: auto;
        max-width: 100%;
    }
    .payment-container {
        padding: 30px 20px;
        margin: 30px 20px;
        width: 90%;
    }
    .payment-container h2 {
        font-size: 20px;
    }
    .payment-container p {
        font-size: 15px;
    }
    .payment-container button {
        font-size: 15px;
    }
    .payment-container label,
    .payment-container .form-control {
        font-size: 15px;
    }
      .credits-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
      }

      .account-actions.left-actions,
      .credits-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .account-actions.left-actions a,
      .subscribe-bundle-button,
      .purchase-words-button {
        width: 100%;
        text-align: center;
      }

      /* Document & Payment Tables as Cards */
      .history-table {
        border: 0;
      }

      .history-table thead {
        display: none;
      }
      .history-table tr {
        padding: 15px;
        border: 1px solid #ddd;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        border-radius: 10px;
        background-color: #fff;
      }

      .history-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border: none;
        border-bottom: 1px solid #eee;
        font-size: 15px;
      }

      .history-table td:last-child {
        border-bottom: none;
      }

      .history-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #2c3e50;
        flex: 0 0 120px;
      }

      .history-table td a {
        text-decoration: none;
        color: #3498db;
      }

      .history-table td a:hover {
        text-decoration: underline;
      }

     .history-table td[data-label="Document Name"] {
          white-space: normal;
          word-break: break-word;
          max-width: 100%;
          line-height: 1.5;
        }

        .history-table td[data-label="Document Name"]::before {
          content: "Document Name";
          font-weight: 600;
          flex: 0 0 120px;
          margin-right: 10px;
        }

      /* Pagination Styling */
      .pagination {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 10px 0;
        justify-content: center;
      }

      .pagination a {
        flex: 0 0 auto;
        padding: 6px 12px;
        border-radius: 5px;
        background: #ecf0f1;
        color: #2c3e50;
        text-decoration: none;
        font-size: 14px;
        white-space: nowrap;
      }
       .pricing-card-container {
            flex-wrap: wrap;
            justify-content: center;
        }

        .pricing-card {
            flex: 0 0 48%;
            margin-bottom: 15px;
        }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px; /* More breathing room */
        height: auto; /* Let it grow naturally */
      }

      .hero-container {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
      }

      .hero-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
      }

      .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
      }

      .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.6;
        color: #555;
      }

      .hero-benefits {
    list-style: none;
    margin: 0 auto 25px;
    padding: 0;
    max-width: 90%;
}

    .hero-benefits li {
        font-size: 14px;
        color: #3498db;
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
        text-align: left;
        line-height: 1.5;
    }

    .hero-benefits li i {
        margin-right: 10px;
        margin-top: 2px;
        font-size: 14px;
        flex-shrink: 0;
    }

      .cta-button {
        font-size: 16px;
        padding: 14px 24px;
        margin-bottom: 10px;
        display: inline-block;
      }
        .hero-image img {
           display: none;
        }
    
     .why-us-item {
            flex: 1 1 100%; /* Full width on mobile */
        }

        .why-us-container,
        .testimonial-container,
        .how-it-works-container {
            flex-direction: column;
            align-items: center;
        }
    
      .scroll-container {
        position: relative;
      }

      .scroll-arrow {
        display: inline-block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: #3498db;
        background: rgba(255, 255, 255, 0.9);
        padding: 6px 12px;
        border-radius: 50%;
        z-index: 5;
        pointer-events: none; /* purely visual */
      }

      .scroll-arrow.left {
        left: 5px;
      }

      .scroll-arrow.right {
        right: 5px;
      }

      .scroll-wrapper {
        overflow-x: auto !important;
        margin: 0 -15px;
        padding: 10px 15px;
        scroll-behavior: smooth;
      }

      .scroll-inner {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
      }

      .scroll-inner > .why-us-item,
      .scroll-inner > .case-study {
        flex: 0 0 80%;
        max-width: 80%;
        min-width: 280px;
      }

      .why-us-container,
      .case-studies-container {
        display: none !important;
      }

    .faq-container {
            padding: 10px;
        }
     .trust-badges-container {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        margin-bottom: 20px;
    }
    .pricing-container {
        flex-direction: column;
        gap: 40px;
    }

    .pricing-card {
        padding: 30px;
    }

    .pricing-card h3,
    .pricing-card h4 {
        font-size: 24px;
    }

    .pricing-card p {
        font-size: 16px;
    }

    .pricing-card .price-container {
        flex-direction: column;
    }

    .pricing-card .bundled-price,
    .pricing-card .payg-price {
        font-size: 22px;
    }

    .pricing-card button {
        padding: 12px 28px;
        font-size: 16px;
    }
    .pricing-card ul li {
        min-height: auto;
        margin-bottom: 12px;
    }
    .pricing-plan-wrapper {
        flex-direction: column; /* Stack columns on smaller screens */
    }

    .plan-details {
        margin-bottom: 30px;
    }
    .case-study {
        flex: 1 1 100%; /* 1 case study per row */
        margin-bottom: 30px;
    }
    .how-it-works-container {
            flex-direction: column;
        }
    .trust-badges-container {
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 15px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .trust-badge {
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

    .trust-badge img {
        width: 60px;
        height: 60px;
    }
    #featureContent {
        display: block !important;
      }

      #featureContent > div {
        margin-bottom: 30px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background-color: #fff;
      }

      #featureContent h4 {
        margin-top: 0;
      }
      .feature-columns {
        display: block !important;
      }

      .feature-columns > div {
        margin-bottom: 25px;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 6px;
        background-color: #fff;
      }


}





@media screen and (min-width: 769px) {
  .why-us-section .scroll-arrow,
  .case-studies-section .scroll-arrow {
    display: none !important;
  }

  .scroll-wrapper {
    overflow-x: visible !important;
  }

  .scroll-inner {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }

  .scroll-inner > .why-us-item,
  .scroll-inner > .case-study {
    flex: 0 0 calc(33.333% - 20px) !important;
    max-width: calc(33.333% - 20px) !important;
  }

  .why-us-container,
  .case-studies-container {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
}




@media screen and (max-width: 480px) {
    .pricing-card {
        flex: 0 0 100%;
    }
}

