
:root {
    --primary-color: #3b82f6;
    --text-color: #f3f4f6;
    --background-color: #111827;
    --secondary-bg: #1f2937;
    --accent-color: #60a5fa;
    --input-bg: #374151;
    --input-border: #4b5563;
    --gradient-start: #1e40af;
    --gradient-end: #1e3a8a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #f3f4f6;
    background: #000;
    min-height: 100vh;
    /* Subtle creative glow */
    box-shadow: 0 0 80px 0 rgba(59,130,246,0.08) inset;
}
section.testimonials {
    z-index: -1;
}
.cl-img img {
width: 90% !important;
height: 26px !important;
border-radius: 1% !important;
margin-right: 15px;
position: relative;
top: 50%;
bottom: 50%;
}
.flex_grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.us_flex {
margin-top: 30px;
justify-content: space-between;
display: flex;
align-items: center;
}
.descT {
    font-size: 12px !important;
}
ul.p-0.info_cad li.mb-2 a {
color: #fff;
margin-left: -7px;
font-weight: 600;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0a0a0a 60%, #111827 100%);
    position: relative;
    overflow: hidden;
}

/* .hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 30s linear infinite;
} */

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #a5b4fc;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.form-container {
    background: rgba(20, 20, 30, 0.85);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2),
    0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #18181b;
    border: 2px solid #22223b;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #23233a;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.otp-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.otp-input {
    width: 100%;
    height: 3.5rem;
    text-align: center;
    font-size: 1.5rem;
    background-color: rgba(55, 65, 81, 0.5);
    border: 2px solid rgba(75, 85, 99, 0.3);
    border-radius: 0.75rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(55, 65, 81, 0.7);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    box-shadow: 0 0 16px 0 #2563eb80;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 32px 0 #2563ebcc;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.cta-button:active {
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 30px;
    }
    .trust-item {
        margin-right: 0px !important;
    }
    .form-container {
        padding: 2rem;
    }
    .trust-item {
        margin-bottom: 20px;
    }
    .otp-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .otp-input {
        height: 3rem;
        font-size: 1.25rem;
    }
}

.value-proposition {
    padding: 6rem 2rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.value-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4rem;
    position: relative;
    text-shadow: 0 0 10px #2563eb80;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.benefit-card {
    background: #18181b;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #a5b4fc;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .value-proposition {
        padding: 4rem 1rem;
    }
    .flex_grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    .final-cta-container {
        padding: 0 0rem !important; 
    
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }
}

.features {
    padding: 8rem 2rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #2563eb80;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
}

.feature-item {
    position: relative;
    padding: 2rem;
    background: #18181b;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-item:hover::before {
    transform: translateX(100%);
}

.feature-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.1);
    position: absolute;
    top: -1rem;
    right: 1rem;
    line-height: 1;
}

.feature-icon {
font-size: 2rem;
/* margin-bottom: 1.5rem; */
display: inline-block;
background: rgba(59, 130, 246, 0.1);
padding: 2px;
border-radius: 1rem;
transition: transform 0.3s ease;
width: 90px;
text-align: center;
height: 90px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
/* position: absolute; */
top: -60px;
z-index: 9999999;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 8px #2563eb40;
}

.feature-item p {
    color: #a5b4fc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #3b82f6, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-line {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 1rem;
    }
    .price-bar .bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0A0A0A;
    padding: 8px;
    display: flex;
    justify-content: center !important;
    align-items: center;
    flex-direction: column;
}
        .percent_offer img {
    width: 60px !important;
}
    .testimonial_slider {
            padding: 5rem 0 !important;
           
        }
.price-bar .price .discounted-price {
    margin-left: 10px !important;
    font-size: 18px !important;
}
    .price-bar .btn-buy {
        font-size: 16px;
    }
    .price {
    font-size: 20px !important;
    margin-right: 0px !important;
    }
    .features-header h2 {
        font-size: 2rem;
    }

    .features-subtitle {
        font-size: 1.1rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-number {
        font-size: 3rem;
    }

    .feature-icon {
        font-size: 2rem;
        padding: 0.75rem;
    }

    .feature-item h3 {
        font-size: 1.25rem;
    }

    .feature-item p {
        font-size: 1rem;
    }
}

.package-overview {
    padding: 8rem 2rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.package-overview::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.package-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.package-header {
    text-align: center;
    margin-bottom: 4rem;
}

.package-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #2563eb80;
}

.package-header p {
    color: #94a3b8;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-item {
    background: #18181b;
    border-radius: 1.5rem;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.package-item:hover::before {
    transform: translateX(100%);
}

.package-icon {
    font-size: 2.5rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.package-item:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
}

.package-content {
    flex: 1;
}

.package-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 8px #2563eb40;
}

.package-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.package-examples {
    color: #60a5fa;
    font-weight: 500;
}

.package-highlight {
    color: #a5b4fc;
    font-size: 1rem;
    line-height: 1.5;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid #3b82f6;
    border-radius: 1rem;
    color: #3b82f6;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.view-all-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.view-all-btn:hover::after {
    transform: translateX(100%);
}

.view-all-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.view-all-btn:active {
    transform: translateY(0);
}

.view-all-btn.expanded {
    background: rgba(59, 130, 246, 0.2);
}

.view-all-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.view-all-btn .btn-text {
    transition: all 0.3s ease;
}

.view-all-btn .arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-all-btn.expanded .arrow-icon {
    transform: rotate(180deg);
}

.view-all-btn.expanded .btn-text {
    transform: translateY(-2px);
}

.additional-categories {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    visibility: hidden;
}

.additional-categories.active {
    right: 0;
    visibility: visible;
}

.categories-header {
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.categories-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.close-categories {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.close-categories:hover {
    color: #fff;
    background: rgba(59, 130, 246, 0.1);
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    opacity: 1;
    transform: none;
    transition: none;
}

.category-item {
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    transform: none;
    background: rgba(59, 130, 246, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: rgba(59, 130, 246, 0.1);
}

.category-icon {
font-size: 1.5rem;
background: rgba(59, 130, 246, 0.1);
padding: 0.5rem;
border-radius: 0.5rem;
transition: all 0.3s ease;
color: #fbb606;
}

.category-item:hover .category-icon {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.2);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
}

.category-content {
    display: none;
    padding: 0 2rem 1.5rem 4.5rem;
    background: rgba(15, 23, 42, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.category-item.active .category-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.category-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.05);
}

.category-feature:last-child {
    border-bottom: none;
}

.category-feature:hover {
    color: #fff;
    transform: translateX(5px);
}

        .feature-icon {
    color: #3b82f6;
    opacity: 1;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.category-feature:hover .feature-icon {
    opacity: 1;
    transform: translateX(0);
}

.category-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.category-item.active .category-arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .category-header {
        padding: 1.25rem;
    }

    .category-content {
        padding: 0 1.25rem 1.25rem 3.75rem;
    }

    .category-title {
        font-size: 1.1rem;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}



@media (max-width: 768px) {
    .additional-categories {
        max-width: 100%;
    }

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

    .categories-header {
        padding: 1.5rem;
    }

    .categories-title {
        font-size: 1.5rem;
    }
}

/* Updated Testimonials Section with Contained Slider */
.testimonial_slider {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.testimonial_slider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #2563eb80;
}

.testimonials-swiper {
    width: 100%;
    margin: 0;
    padding: 2rem 0;
    overflow: hidden;
}

.swiper-slide {
    width: 350px;
    opacity: 0.4;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background: #18181b;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    height: 100%;
    margin: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}
.swiper-container.mySwiper_testimonial.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    position: relative;
    top: 20%;
}
.swiper-button-next,
.swiper-button-prev {
    color: #3b82f6;
    background: rgba(30, 41, 59, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(59, 130, 246, 0.1);
}

.swiper-pagination-bullet {
    background: #3b82f6;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
    }

    .swiper-slide {
        width: 300px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Trust Section */
.trust {
    padding: 8rem 2rem;
    background: #000;
    position: relative;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #2563eb80;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.trust-item {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 2rem;
background: #18181b;
border-radius: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
flex: 1 1 280px;
max-width: 300px;
border: 1px solid rgba(59, 130, 246, 0.2);
flex-direction: column;
margin-right: 20px;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: #23233a;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.trust-icon {
    font-size: 2rem;
    background: #23233a;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    color: cyan;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
    background: #2563eb;
    color: #fff;
    box-shadow: 0 0 16px #2563eb80;
}

.trust-content h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.trust-content p {
    color: #94a3b8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .trust {
        padding: 4rem 1rem;
    }
    .hero {
        padding: 60px 20px !important;
        min-height: 100% !important;
    }
    .trust-header h2 {
        font-size: 2rem !important;
    }

    .trust-item {
        flex: 1 1 100%;
        max-width: 90%;
    }
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    background: #000000;
    position: relative;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #2563eb80;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #18181b;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.1);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

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

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Pricing Section */
.pricing {
    padding: 8rem 2rem;
    background: #0a0a0a;
    position: relative;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-header {
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #2563eb80;
}

.pricing-card {
    background: #18181b;
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 2rem;
    margin-right: 1rem;
}

.pricing-features {
    margin: 2rem 0;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-feature::before {
    content: '✓';
    color: #3b82f6;
    font-weight: bold;
}

.pricing-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .testimonials,
    .trust,
    .faq,
    .pricing {
        padding: 4rem 1rem;
    }

    .testimonials-header h2,
    .trust-header h2,
    .faq-header h2,
    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-amount {
        font-size: 3rem;
    }

    .pricing-original {
        font-size: 1.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.final-cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.final-cta-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-header p {
font-size: 1.25rem;
color: #94a3b8;
max-width: 736px;
margin: 0 auto;
line-height: 1.6;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.final-cta-card {
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.final-cta-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.bonus-badge {
position: absolute;
top: 1.5rem;
right: 3.5rem;
background: linear-gradient(135deg, #10b981, #059669);
color: #fff;
padding: 8px 10px;
border-radius: 2rem;
font-size: 1rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.75rem;
box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
animation: pulse 2s infinite;
width: 80%;
/* margin: 0 auto; */
text-align: center;
/* margin-bottom: 80px; */
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.final-cta-price {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 55px 0 37px 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.final-cta-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 2rem;
    position: relative;
}

.final-cta-original::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ef4444;
    top: 50%;
    left: 0;
    transform: rotate(-10deg);
}

.final-cta-features {
    margin: 2.5rem 0;
    display: grid;
    gap: 1rem;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e5e7eb;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.final-cta-feature:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.final-cta-feature::before {
    content: '✓';
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.final-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4);
}

.final-cta-button:hover::before {
    transform: translateX(100%);
}

.final-cta-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 1024px) {
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .final-cta-image {
        display: block;
    }
}

@media (max-width: 768px) {
    .final-cta {
        padding: 4rem 0;
    }

    .final-cta-header h2 {
        font-size: 2.5rem;
    }

    .final-cta-header p {
        font-size: 1.1rem;
    }

    .final-cta-card {
        padding: 1rem !important;
    }

    .final-cta-price {
        font-size: 3.5rem;
    }

    .final-cta-original {
        font-size: 1.75rem;
    }

    .bonus-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Mobile Sticky Footer */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1000;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-cta-info {
    flex: 1;
}

.mobile-cta-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.mobile-cta-price {
    color: #94a3b8;
    font-size: 0.9rem;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .final-cta {
    padding: 4rem 1rem;
    z-index: -9 !important;
}

    .final-cta-header h2 {
        font-size: 2.5rem;
    }

    .final-cta-header p {
        font-size: 1.1rem;
    }

    .final-cta-card {
        padding: 2rem;
    }

    .final-cta-price {
        font-size: 3rem;
    }
    .final-cta-price {
    margin: 80px 0 31px 0 !important;
    gap: 1rem;
    justify-content: center !important;
}
    .final-cta-button {
    padding: 14px 14px !important;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: 18px !important;
}
    .cta-button {
        padding: 14px 14px !important;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: #fff;
        font-size: 18px !important;
    }
    .package-header h2 {
    font-size: 2rem !important;
}
        .bottom_offer img {
        width: 180px !important;
        margin-right: 12px !important;
    }
    .package-overview {
        padding: 2rem 1rem !important;
        
    }
    .final-cta-original {
        font-size: 1.5rem;
    }

    .mobile-cta {
        display: block;
    }

    /* Add padding to body to account for sticky footer */
    body {
        padding-bottom: 80px;
    }
}

/* Updated Creative Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #111827 100%);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0fr;
    gap: 4rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #2563eb80;
}

.footer-description {
    color: #a5b4fc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #94a3b8;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px #2563eb40;
}

.footer-link {
    color: #a5b4fc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #60a5fa;
    transform: translateX(5px) scale(1.05);
    text-shadow: 0 0 8px #2563eb80;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #23233a;
    text-align: center;
    color: #a5b4fc;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px #2563eb80;
}

.footer-bottom a:hover {
    color: #fff;
    text-shadow: 0 0 12px #2563ebcc;
}
@media (min-width: 1200px){
.container {
    max-width: 1400px;
}
}
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 1rem;
    }
    .footer-bottom {
    margin-top: 0rem;
    padding-top: 1rem;
    border-top: 1px solid #23233a;
    text-align: center;
    color: #a5b4fc;
    font-size: 0.9rem;
    margin-bottom: 100px;
}
.features-grid {
    display: grid;
    grid-template-columns: none;
    gap: 2rem;
    position: relative;
}
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-description {
    margin-bottom: 0rem;
}
    .footer-brand {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-link:hover {
        transform: none;
    }
}
nav.navbar.cad-bg {
background-color: #1c4e5e !important;
height: 90px;
display: flex;
justify-content: center;
align-items: center;
/* border-bottom: 2px solid #ffffff; */
}
a.navbar-brand img {
width: 240px;
}
.cd-flex {
display: flex !important;
justify-content: center !important;
}
.stars {
color: #FFD700;
margin-top: 10px;
}
.testimonial-card img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 15px;
position: relative;
left: 44%;
right: 50%;
top: 50%;
bottom: 50%;
}

.cl-text h3 {
font-size: 14px;
font-weight: 600;
margin-bottom: 0;
}
.stars {
color: #FFD700;
margin-top: 10px;
text-align: center;
}
.client-name {
font-weight: bold;
margin-top: 14px;
font-size: 14px;
text-align: center;
}
.hero {
position: relative;
background-image: url('./images/banner-1.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 80px 20px;
color: white;
overflow: hidden;
}

.overlay_h {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6); /* Dark overlay */
z-index: 1;
}
.hero-container {
position: relative;
z-index: 2; /* Brings content above the overlay */
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.testi_img img {
width: 560px;
margin-left: 84px;
position: relative;
bottom: 40px;
}
.price-bar .bottom-fixed {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #14223a;
padding: 18px;
display: flex;
justify-content: center;
align-items: center;
color: white;
z-index: 1000;
border-top: 2px solid #2867ec;
gap: 8px;
}
.price-bar .price {
font-size: 30px;
margin-right: 60px;
display: flex;
justify-content: center;
align-items: center;
}
.price-bar .price .discounted-price {
color: #fff;
font-weight: bold;
margin-left: 30px;
font-size: 40px;
}
.price-bar .price-wrapper {
display: flex;
align-items: center;
}
.price-bar .btn-buy {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 1rem;
width: 138px;
padding: 14px 2px;
background: linear-gradient(135deg, #3b82f6, #2563eb);
color: #fff;
font-size: 1.25rem;
font-weight: 600;
border-radius: 1rem;
text-decoration: none;
transition: all 0.3s ease;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
}
.btn-buy::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transform: translateX(-100%);
transition: transform 0.6s ease;
}
.btn-buy:hover {
transform: translateY(-2px);
box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4);
}

.price-bar .price .original-price {
text-decoration: line-through;
color: #ff4d4d;
}
.percent_offer img {
width: 80px;
}
.bottom_offer img {
width: 240px;
margin-right: 12px;
}
ul.p-0.info_cad li {
color: #a5b4fc;
text-decoration: none;
transition: all 0.3s ease;
font-size: 0.95rem;
list-style: none;
}
.image-container img {
width: 100%;
}
@media (min-width: 992px) {
.image-container {
display: none !important;
}
}
