* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}
*{
    scroll-margin-top: 100px;
}
section {
    scroll-margin-top: 100px; 
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
html{
    scroll-behavior: smooth;
}

/* ===== HEADER STYLES ===== */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

/* Left side - Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Center - Navigation */
.nav-center {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover {
    color: #128C7E;
}

.nav-menu a.active {
    color: #128C7E;
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 2px;
}

/* Right side - Dashboard button */
.dashboard-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    flex: 0 0 auto;
    text-decoration: none;
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.dashboard-btn:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #4a5568;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.mobile-menu-btn:hover {
    background-color: #f7fafc;
}

.mobile-menu-btn:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

/* ===== HERO SECTION STYLES ===== */
.hero {
    background: linear-gradient(291deg, #f0fff4 0%, #f7fafc 100%);
    padding: 150px 20px 100px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    position: relative;
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    z-index: 1;
    overflow: hidden;
}

/* Animated border for badge */
.hero-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(90deg,
            transparent,
            #25D366,
            #128C7E,
            #25D366,
            transparent);
    background-size: 300% 100%;
    animation: borderMove 2.5s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.try-now-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    text-decoration: none;
}

.try-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.try-now-btn:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

/* Hero Image Styles */
.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
    animation: floatUpDown 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Floating elements around the image */
.floating-element {
    position: absolute;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    animation: floatRandom 6s ease-in-out infinite;
    z-index: -1;
}

.floating-1 {
    width: 60px;
    height: 60px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-2 {
    width: 40px;
    height: 40px;
    bottom: 30px;
    left: -15px;
    animation-delay: 1s;
}

.floating-3 {
    width: 30px;
    height: 30px;
    top: 50%;
    right: -10px;
    animation-delay: 2s;
}

@keyframes floatRandom {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* ===== TRUSTED BRANDS SECTION STYLES ===== */
.trusted-section {
    padding: 26px 20px 10px 20px;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-content {
    text-align: center;
}

.trusted-text {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 500;
}

.brands-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1 0px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #25D366 #f1f1f1;
}

.brands-row::-webkit-scrollbar {
    height: 6px;
}

.brands-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.brands-row::-webkit-scrollbar-thumb {
    background: #25D366;
    border-radius: 10px;
}

.brand-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: all 0.3s ease-in;
    padding: 15px;
}

.brand-logo:hover {
    /* filter: grayscale(0%); */
    /* opacity: 1; */
    transform: translateY(5px);
}

/* ===== WHATSAPP LINK SECTION STYLES ===== */
.whatsapp-link-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.whatsapp-link-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Left Side Image */
.whatsapp-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(37, 211, 102, 0.15);
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 8px;
}

.whatsapp-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    display: block;
    transition: transform 0.5s ease;
}

.whatsapp-img:hover {
    transform: scale(1.02);
}

/* Right Side Form */
.whatsapp-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    min-height: 100%;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}
.form-title span {
    color: #00BE5E;
}

.form-subtitle {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.form-note {
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
    line-height: 1.5;
    background: #f7fafc;
    padding: 18px 15px;
    border-radius: 8px;
    border-left: 4px solid #25D366;
}

.form-note strong {
    color: #2d3748;
}

.input-with-icon {
    position: relative;
    display: flex;
    gap: 10px;
}

.country-code-select {
    flex: 0 0 100px;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.country-code-select:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.phone-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.phone-input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.message-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.message-input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.optional-label {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.submit-button:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.button-icon {
    font-size: 20px;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #718096;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.security-note i {
    color: #25D366;
}

/* ===== FEATURES SECTION STYLES ===== */
.features-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Features Header */
.features-header {
    text-align: center;
    margin-bottom: 70px;
}

.features-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.features-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 auto;
}
.features-title span{
    color: #00BE5E;
}

/* Feature Item */
.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

/* Feature Image */
.feature-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(37, 211, 102, 0.15);
    /* height: 500px; */
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.feature-image:hover .feature-img {
    transform: scale(1.05);
}

.feature-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(18, 140, 126, 0.2));
    pointer-events: none;
}

/* Feature Content */
.feature-content {
    padding: 20px;
}

.feature-number {
    display: inline-block;
    font-size: 80px;
    font-weight: 800;
    color: rgba(37, 211, 102, 0.1);
    line-height: 1;
    margin-bottom: 10px;
    -webkit-text-stroke: 2px #25D366;
    -webkit-text-fill-color: transparent;
}

.feature-item-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}
.feature-item-title span{
    color: #18a177;
}

.feature-item-desc {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.feature-list-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: #25D366;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-list-item span {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.6;
    flex: 1;
}

/* Feature Button */
.feature-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.feature-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.feature-button:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

/* CTA Banner */
.features-cta {
    text-align: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-button {
    background: white;
    color: #128C7E;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

.cta-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Optional decorative background pattern */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 1;
}

.cta-content {
    color: white;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: white;
    color: #128C7E;
    border: none;
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

.cta-button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

/* testimoniall */


/* ===== TESTIMONIALS SECTION VERSION 2 (CLEAN) ===== */
.testimonials-section.v2 {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0fff4 0%, #f7fafc 100%);
    position: relative;
}

.testimonials-section.v2 .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Testimonials Header */
.testimonials-section.v2 .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section.v2 .testimonials-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.15);
    color: #128C7E;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 25px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.testimonials-section.v2 .testimonials-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-section.v2 .testimonials-title span {
    color: #25D366;
}

/* Testimonials Grid */
.testimonials-grid {
    position: relative;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.slider-controls .slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #25D366;
    color: #25D366;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.15);
}

.slider-controls .slider-btn:hover {
    background: #25D366;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.slider-controls .slider-btn:active {
    transform: scale(0.95);
}

.slider-controls .slider-btn:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.slide-counter {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    background: white;
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.current-slide {
    color: #25D366;
    font-weight: 700;
}

.total-slides {
    color: #718096;
}

/* Testimonials Wrapper */
.testimonials-section.v2 .testimonials-wrapper {
    position: relative;
    height: 380px;
}

/* Testimonial Card */
.testimonials-section.v2 .testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    pointer-events: none;
}

.testimonials-section.v2 .testimonial-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonials-section.v2 .testimonial-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonials-section.v2 .avatar-letter {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.testimonial-author-info {
    flex: 1;
}

.testimonials-section.v2 .testimonial-author {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonials-section.v2 .testimonial-position {
    font-size: 15px;
    color: #718096;
    font-weight: 500;
}
.testimonial-position a{
    color: #22c76a;
    text-decoration: none;
}

/* Rating */
.testimonials-section.v2 .testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #FFD700;
    font-size: 20px;
}

.rating-text {
    font-size: 15px;
    color: #718096;
    font-weight: 500;
    margin-left: 5px;
}

/* Testimonial Text */
.testimonials-section.v2 .testimonial-text {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    padding-left: 15px;
    border-left: 3px solid #25D366;
    position: relative;
}

.testimonials-section.v2 .testimonial-text::before {
    content: '"';
    font-size: 40px;
    color: #25D366;
    opacity: 0.2;
    font-family: Georgia, serif;
    position: absolute;
    left: 0;
    top: -10px;
}

/* pricing css */

/* ===== PRICE SECTION STYLES ===== */
.price-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.price-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

/* Price Header */
.price-header {
    margin-bottom: 70px;
}
.n-faq-header{
    margin-bottom: 70px;
}

.price-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.price-subtitle {
    font-size: 20px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Price Cards Container */
.price-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Price Card Base Styles */
.price-card {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Popular Plan Styling */
.price-card.price-popular {
    border: 2px solid #25D366;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.15);
    transform: translateY(-5px);
}

.price-card.price-popular:hover {
    box-shadow: 0 30px 70px rgba(37, 211, 102, 0.2);
    transform: translateY(-15px);
}

/* Plan Badges */
.price-plan-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.price-free-badge {
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
}

.price-popular-badge {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    align-self: center;
}

/* Plan Name & Description */
.price-plan-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.price-plan-description {
    font-size: 15px;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 45px;
}

/* Price Styling */
.price-plan-price {
    margin: 20px 0 10px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    align-self: flex-start;
}

.price-enterprise-price .price-currency {
    font-size: 32px;
    font-weight: 700;
    color: #25D366;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 60px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.price-old {
    font-size: 24px;
    color: #a0aec0;
    text-decoration: line-through;
    margin-left: 12px;
    font-weight: 500;
}

.price-plan-duration {
    font-size: 16px;
    color: #718096;
    margin-bottom: 25px;
    min-height: 24px;
}

/* Divider */
.price-plan-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 25px 0;
}

/* Features Section */
.price-features-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.price-plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.price-feature-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 12px;
}

.price-feature-item:last-child {
    border-bottom: none;
}

.price-feature-check {
    color: #25D366;
    font-size: 16px;
    min-width: 20px;
}

.price-feature-name {
    font-size: 16px;
    color: #4a5568;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.price-feature-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 80px;
    text-align: right;
}

/* Buttons */
.price-plan-button {
    padding: 18px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: block;
    width: 100%;
    margin-top: auto;
}

.price-free-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.price-free-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.price-platinum-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.price-platinum-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.price-enterprise-button {
    background: white;
    color: #25D366;
    border: 2px solid #25D366;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.price-enterprise-button:hover {
    background: #25D366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

/* Price Note */
.price-note {
    font-size: 15px;
    color: #718096;
    background: #f7fafc;
    padding: 20px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-note i {
    color: #25D366;
    font-size: 18px;
}

/* Advantages of Agryak WaCRM Cloud Section CSS */
.advantages-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    overflow: hidden;
}

.advantages-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Advantage Card */
.advantage-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: #10b981;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

/* Card Image Container */
.card-image {
    height: 240px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(16, 185, 129, 0.03) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Card Image Styling */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.advantage-card:hover .card-img {
    transform: scale(1.05);
}

/* Card Content */
.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.advantage-card:hover .card-title {
    color: #059669;
}

.card-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Read More Button */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #10b981;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
}

.read-more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s ease;
}

.read-more-btn:hover {
    color: #059669;
    gap: 12px;
}

.read-more-btn:hover::after {
    width: 100%;
}

.read-more-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* CTA Button */
.advantages-cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.cta-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #0da271, #047857);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button .arrow-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(6px);
}

/* Image Loading State */
.card-img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Card Hover Effects Enhancement */
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

/* Grid Animation on Load */
.advantages-grid {
    opacity: 0;
    transform: translateY(20px);
    animation: gridFadeIn 0.6s ease forwards;
    animation-delay: 0.2s;
}

@keyframes gridFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Aspect Ratio for Different Screen Sizes */
@media (min-width: 1400px) {
    .card-image {
        height: 260px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .card-image {
        height: 180px;
    }
}

/* Print Styles */
@media print {
    .advantages-section {
        padding: 40px 20px;
    }
    
    .advantage-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .read-more-btn,
    .cta-button {
        display: none;
    }
    
    .card-image {
        height: 150px;
    }
}

/* footer */
.footer-section {
    background-color: #111827;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 80px 0 30px;
    position: relative;
}

.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Main Footer Content */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* margin-bottom: 60px; */
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Section */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 25px;
}

.logo-img {
    height: 110px;
    border-radius: 20px;
    width: auto;
}

.logo-img:hover {
    opacity: 0.9;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 25px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 400px;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.column-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 1.5;
    display: inline-block;
    position: relative;
}

.footer-link:hover {
    color: #10b981;
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #10b981;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Copyright */
.copyright {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
    text-align: center;
}

.copyright p {
    margin: 0;
}

.current-year {
    font-weight: 600;
    color: #fff;
}

/* Hover Effects Enhancement */
.footer-link {
    padding: 2px 0;
}

.column-links li {
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.column-links li:hover {
    padding-left: 5px;
}

/* Smooth Animations */
.footer-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .footer-section {
        padding: 40px 0 20px;
        background: #fff;
        color: #000;
        border-top: 2px solid #ddd;
    }
    
    .footer-main {
        border-bottom: 1px solid #ddd;
    }
    
    .logo-img {
        filter: none;
    }
    
    .social-links {
        display: none;
    }
    
    .footer-link {
        color: #333;
    }
    
    .footer-link:hover {
        color: #333;
        transform: none;
    }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
    .footer-section {
        background-color: #111827;
    }
}

/* Focus States for Accessibility */
.footer-link:focus,
.social-link:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-main {
        gap: 30px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section {
        padding: 60px 0 20px;
    }
}

/* faq section css */
.n-faq-section{
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}
.n-faq-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}
.n-faq-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.n-faq-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.n-faq-subtitle {
    font-size: 20px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Search Box Styles */
.n-faq-search {
    position: relative;
    max-width: 500px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.n-faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 18px;
    z-index: 1;
}

.n-faq-search-input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.n-faq-search-input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

.n-faq-search-input::placeholder {
    color: #a0aec0;
}

.n-faq-search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    display: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.n-faq-search-clear:hover {
    background: #f7fafc;
    color: #718096;
}

.n-faq-search-input:not(:placeholder-shown) + .n-faq-search-clear {
    display: block;
}

/* Tabs Navigation */
.n-faq-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.n-faq-tab {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 130px;
    justify-content: center;
    font-family: inherit;
}

.n-faq-tab:hover {
    border-color: #25D366;
    color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.1);
}

.n-faq-tab.active {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.2);
}

.n-faq-tab.active:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.2);
}

.n-faq-tab-name {
    font-weight: 600;
}

.n-faq-tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.n-faq-tab:not(.active) .n-faq-tab-count {
    background: #edf2f7;
    color: #718096;
}

/* FAQ Items Container */
.n-faq-items-container {
    margin: 60px 0;
}

.n-faq-category {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.n-faq-category.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.n-faq-category-group {
    margin-bottom: 50px;
}

.n-faq-category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    text-align: left;
}

.n-faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Item - FIXED: Now answer will open below */
.n-faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.n-faq-item:hover {
    border-color: #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.08);
}

.n-faq-question {
    width: 100%;
    padding: 24px 30px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #004d39;
    transition: all 0.3s ease;
}

.n-faq-question:hover {
    background-color: #f8fafc;
}

.n-faq-question-text {
    flex: 1;
    text-align: left;
    padding-right: 30px;
}

.n-faq-icon {
    color: #23cd69;
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.n-faq-item.active .n-faq-icon {
    transform: rotate(180deg);
}

.n-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8fafc;
    border-top: 1px solid transparent;
}

.n-faq-item.active .n-faq-answer {
    padding: 25px 30px;
    max-height: 1000px;
    border-top-color: #e2e8f0;
}

.n-faq-answer p {
    font-size: 16px;
    color: #383c42;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Help CTA */
.n-faq-help {
    text-align: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

.n-faq-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 80px 80px;
    opacity: 0.4;
}

.n-faq-help-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.n-faq-help-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.n-faq-help-button {
    background: white;
    color: #128C7E;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.n-faq-help-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

/* Highlight styles for search */
.n-faq-highlight {
    background-color: rgba(37, 211, 102, 0.2);
    color: #128C7E;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

/* ===== RESPONSIVE STYLES ===== */

/* Large screens (1100px and below) */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 30px;
    }
    
    .brand-item {
        min-width: 130px;
    }
    
    .brand-logo {
        max-height: 70px;
        padding: 12px;
    }
}

/* Medium screens (992px and below) */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .nav-menu {
        gap: 25px;
    }

    .hero-img {
        max-width: 100%;
    }
    
    .trusted-section {
        padding: 60px 20px;
    }
    
    .brands-row {
        gap: 20px;
    }
    
    .brand-item {
        min-width: 120px;
    }
    
    .brand-logo {
        max-height: 60px;
        padding: 10px;
    }
    
    .whatsapp-link-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-title {
        font-size: 28px;
    }
}

/* Tablet screens (768px and below) */
@media (max-width: 768px) {
    .nav-center {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        z-index: 999;
    }

    .nav-center.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .dashboard-btn {
        display: none;
    }

    .hero {
        padding: 130px 20px 80px;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .trusted-text {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .brands-row {
        gap: 15px;
        justify-content: flex-start;
        padding: 10px 0;
    }
    
    .brand-item {
        min-width: 110px;
        flex: 0 0 auto;
    }
    
    .brand-logo {
        max-height: 50px;
        padding: 8px;
    }
    
    .whatsapp-link-section {
        padding: 80px 20px;
    }
    
    .whatsapp-form {
        padding: 30px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .input-with-icon {
        flex-direction: column;
    }
    
    .country-code-select {
        width: 100%;
    }

    /* Reduce floating element size on mobile */
    .floating-1,
    .floating-2,
    .floating-3 {
        display: none;
    }
    
    .logo img {
        height: 50px;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .try-now-btn {
        width: 100%;
    }
    
    .trusted-section {
        padding: 50px 20px;
    }
    
    .brands-row {
        gap: 10px;
    }
    
    .brand-item {
        min-width: 100px;
    }
    
    .brand-logo {
        max-height: 45px;
        padding: 5px;
    }
    
    .whatsapp-link-section {
        padding: 60px 20px;
    }
    
    .whatsapp-form {
        padding: 25px;
    }
    
    .form-title {
        font-size: 24px;
    }

    .logo img {
        height: 36px;
    }
}

/* Extra small screens (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 28px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .brand-item {
        min-width: 90px;
    }
    
    .logo img {
        height: 34px;
    }
}

/* ===== RESPONSIVE STYLES FOR FEATURES ===== */

/* Large screens (1100px and below) */
@media (max-width: 1100px) {
    .feature-item {
        gap: 60px;
    }
    
    .feature-image {
        height: 450px;
    }
    
    .feature-item-title {
        font-size: 32px;
    }
}

/* Medium screens (992px and below) */
@media (max-width: 992px) {
    .features-section {
        padding: 80px 20px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    .feature-image {
        height: 400px;
        order: 1;
    }
    
    .feature-content {
        order: 2;
        padding: 0;
    }
    
    .feature-item-title {
        font-size: 30px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

/* Tablet screens (768px and below) */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .feature-item {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .feature-image {
        height: 350px;
    }
    
    .feature-number {
        font-size: 60px;
    }
    
    .feature-item-title {
        font-size: 28px;
    }
    
    .feature-item-desc {
        font-size: 17px;
    }
    
    .features-cta {
        padding: 50px 30px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 17px;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .features-section {
        padding: 50px 20px;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .feature-item {
        margin-bottom: 50px;
    }
    
    .feature-image {
        height: 300px;
    }
    
    .feature-number {
        font-size: 50px;
    }
    
    .feature-item-title {
        font-size: 26px;
    }
    
    .feature-item-desc {
        font-size: 16px;
    }
    
    .feature-list-item span {
        font-size: 15px;
    }
    
    .feature-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .features-cta {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Extra small screens (360px and below) */
@media (max-width: 360px) {
    .features-title {
        font-size: 24px;
    }
    
    .feature-item-title {
        font-size: 24px;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .feature-number {
        font-size: 40px;
    }
    
    .cta-title {
        font-size: 24px;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 20px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 17px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 70px 20px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }
}

/* ===== RESPONSIVE STYLES VERSION 2 (CLEAN) ===== */

/* Large screens (1100px and below) */
@media (max-width: 1100px) {
    .testimonials-section.v2 .testimonials-wrapper {
        height: 350px;
    }
}

/* Medium screens (992px and below) */
@media (max-width: 992px) {
    .testimonials-section.v2 {
        padding: 80px 20px;
    }
    
    .testimonials-section.v2 .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-section.v2 .testimonials-wrapper {
        height: 320px;
    }
    
    .testimonials-section.v2 .testimonial-card {
        padding: 35px;
    }
}

/* Tablet screens (768px and below) */
@media (max-width: 768px) {
    .testimonials-section.v2 {
        padding: 70px 20px;
    }
    
    .testimonials-section.v2 .testimonials-title {
        font-size: 32px;
    }
    
    .slider-controls {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .slider-controls .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .slide-counter {
        font-size: 16px;
        padding: 6px 15px;
        min-width: 70px;
    }
    
    .testimonials-section.v2 .testimonials-wrapper {
        height: 350px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonials-section.v2 .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonials-section.v2 .avatar-letter {
        font-size: 24px;
    }
    
    .testimonials-section.v2 .testimonial-author {
        font-size: 22px;
    }
    
    .testimonials-section.v2 .testimonial-text {
        font-size: 17px;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .testimonials-section.v2 {
        padding: 60px 20px;
    }
    
    .testimonials-section.v2 .testimonials-title {
        font-size: 28px;
    }
    
    .testimonials-section.v2 .testimonials-badge {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .slider-controls {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .slider-controls .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonials-section.v2 .testimonials-wrapper {
        height: 380px;
    }
    
    .testimonials-section.v2 .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonials-section.v2 .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .rating-text {
        font-size: 14px;
    }
}

/* Extra small screens (360px and below) */
@media (max-width: 360px) {
    .testimonials-section.v2 .testimonials-title {
        font-size: 24px;
    }
    
    .testimonials-section.v2 .testimonials-wrapper {
        height: 400px;
    }
    
    .slider-controls .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slide-counter {
        font-size: 14px;
        padding: 5px 12px;
        min-width: 60px;
    }
    
    .testimonials-section.v2 .testimonial-card {
        padding: 25px 20px;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .price-cards {
        gap: 25px;
    }
    
    .price-card {
        min-width: 280px;
        max-width: 350px;
    }
}

@media (max-width: 1100px) {
    .price-cards {
        gap: 20px;
    }
    
    .price-card {
        min-width: 260px;
        padding: 35px 30px;
    }
}

@media (max-width: 992px) {
    .price-section {
        padding: 80px 20px;
    }
    
    .price-title {
        font-size: 42px;
    }
    .n-faq-title{
        font-size: 42px;
    }
    
    .price-subtitle {
        font-size: 18px;
    }
    .n-faq-subtitle{
        font-size: 18px;
    }
    
    .price-cards {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .price-card {
        max-width: 500px;
        width: 100%;
        min-width: auto;
    }
    
    .price-card.price-popular {
        transform: translateY(0);
    }
    
    .price-card.price-popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .price-section {
        padding: 70px 20px;
    }
    
    .price-header {
        margin-bottom: 50px;
    }
    .n-faq-header{
        margin-bottom: 50px; 
    }
    
    .price-title {
        font-size: 36px;
    }
    .n-faq-title{
        font-size: 36px;
    }
    
    .price-cards {
        gap: 35px;
    }
    
    .price-card {
        padding: 35px 30px;
    }
    
    .price-amount {
        font-size: 54px;
    }
    
    .price-plan-name {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .price-section {
        padding: 60px 20px;
    }
    
    .price-title {
        font-size: 32px;
    }
    .n-faq-title{
        font-size: 32px;
    }
    
    
    .price-subtitle {
        font-size: 17px;
    }
    .n-faq-subtitle{
        font-size: 17px;
    }
    
    
    .price-cards {
        gap: 30px;
    }
    
    .price-card {
        padding: 30px 25px;
    }
    
    .price-plan-name {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 48px;
    }
    
    .price-enterprise-price .price-currency {
        font-size: 28px;
    }
    
    .price-plan-button {
        padding: 16px;
        font-size: 16px;
    }
    
    .price-note {
        font-size: 14px;
        padding: 18px 15px;
        text-align: left;
        flex-direction: column;
        gap: 8px;
    }
    
    .price-feature-name {
        font-size: 15px;
    }
    
    .price-feature-value {
        font-size: 15px;
        min-width: 70px;
    }
}

@media (max-width: 360px) {
    .price-title {
        font-size: 28px;
    }
    .n-faq-title{
        font-size: 28px;
    }

    
    .price-card {
        padding: 25px 20px;
    }
    
    .price-amount {
        font-size: 42px;
    }
    
    .price-plan-button {
        padding: 14px;
        font-size: 15px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .card-image {
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .advantages-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 70px 20px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .section-subtitle {
        font-size: 17px;
        padding: 0 10px;
    }
    
    .section-header {
        margin-bottom: 50px;
        padding: 0 10px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
    
    .card-image {
        height: 220px;
    }
    
    .advantage-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .advantages-section {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 22px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .card-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .read-more-btn {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .advantages-grid {
        gap: 16px;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 28px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 19px;
    }
    
    .card-description {
        font-size: 13.5px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 25px;
    }
    
    .footer-main {
        gap: 30px;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .locale-selector {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 50px 0 20px;
    }
    
    .footer-section .container {
        padding: 0 16px;
    }
    
    .footer-main {
        gap: 25px;
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .column-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .column-links li {
        margin-bottom: 10px;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .locale-selector {
        gap: 15px;
    }
    
    .country-selector,
    .language-selector {
        padding: 6px 10px;
    }
    
    .country-select,
    .language-select {
        font-size: 13px;
        min-width: 100px;
    }
}













/* cutosm scrollbar */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(17, 24, 39, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 5px;
    border: 2px solid rgba(17, 24, 39, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

::-webkit-scrollbar-corner {
    background: rgba(17, 24, 39, 0.1);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #10b981 rgba(17, 24, 39, 0.1);
}

/* Optional: Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for specific elements (if needed) */
.scrollable-element {
    scrollbar-width: thin;
    scrollbar-color: #10b981 rgba(17, 24, 39, 0.1);
}

.scrollable-element::-webkit-scrollbar {
    width: 8px;
}

.scrollable-element::-webkit-scrollbar-track {
    background: rgba(17, 24, 39, 0.05);
    border-radius: 4px;
}

.scrollable-element::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 4px;
}

.scrollable-element::-webkit-scrollbar-thumb:hover {
    background: #059669;
}