/* Base Font Settings - Anek Bangla Only */
:root {
    --font-primary: "Anek Bangla", sans-serif;
}

/* Apply Anek Bangla to all elements */
* {
    font-family: "Anek Bangla", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* Ensure proper text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'calt' 1, 'liga' 1;
}

/* Layout and Alignment Fixes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section Base Styles */
.section-header {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 100%;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.25rem;
    color: #1e293b;
    margin: 0 auto 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonials .section-title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.testimonials .section-subtitle {
    color: #64748b;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-box {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-box:hover .customer-img {
    border-color: #4f46e5;
    transform: scale(1.05);
}

.customer-details {
    margin-left: 1rem;
    text-align: left;
}

.customer-details h4 {
    margin: 0 0 0.25rem 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.stars {
    display: flex;
    margin-top: 0.25rem;
}

.stars i {
    color: #e2e8f0;
    font-size: 1rem;
    margin-right: 0.25rem;
    transition: all 0.3s ease;
}

.stars .fa-star,
.stars .fa-star-half-alt {
    color: #f59e0b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.stars i:nth-child(1) { animation-delay: 0.1s; }
.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.3s; }
.stars i:nth-child(4) { animation-delay: 0.4s; }
.stars i:nth-child(5) { animation-delay: 0.5s; }

.testimonial-text {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: #e2e8f0;
    font-family: "Anek Bangla", sans-serif;
    line-height: 1;
    z-index: 0;
}

/* Section Layout */
section {
    padding: 5rem 0;
    position: relative;
}

section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1e40af;
    margin-bottom: 20px;
}

.hero .lead {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Text Alignment */
.text-left {
    text-align: right;
    direction: rtl;
}

.text-left .section-title,
.text-left .section-subtitle {
    text-align: right;
}

/* Our Features Section */
.our-features {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.our-features .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.our-features .section-header {
    margin-bottom: 3.5rem;
    max-width: 800px;
    padding: 0 1rem;
    text-align: center;
}

.our-features .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: #1e293b;
}

.our-features .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    border-radius: 2px;
}

.our-features .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.our-features .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

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

.feature-box:hover::before {
    opacity: 1;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(99, 102, 241, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-box:hover i {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.feature-box h3 {
    font-size: 1.375rem;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    z-index: 1;
    position: relative;
    display: inline-block;
}

.feature-box h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.feature-box:hover h3::after {
    width: 60px;
}

.feature-box p {
    color: #64748b;
    line-height: 1.7;
    margin: 1rem 0 0;
    font-size: 1.05rem;
    max-width: 300px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-box:hover h3,
.feature-box:hover p {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1399.98px) {
    .our-features .features-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}

@media (max-width: 1199.98px) {
    .our-features .features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 991.98px) {
    .our-features {
        padding: 5rem 0;
    }
    
    .our-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .feature-box {
        padding: 1.75rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .our-features {
        padding: 4rem 0;
    }
    
    .our-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 600px;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-box {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-box i {
        font-size: 2rem;
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 575.98px) {
    .our-features .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .our-features {
        padding: 3.5rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-box {
        padding: 1.75rem 1.5rem;
    }
    
    .feature-box i {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
    }
    
    .feature-box p {
        font-size: 0.95rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1400px;
}

.feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.875rem;
    color: #4f46e5;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #4f46e5;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* ==================== */
/* Special Services Section */
/* ==================== */
.special-services {
    padding: 6rem 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
}

.special-services .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.special-services .section-tag {
    display: inline-block;
    background: linear-gradient(90deg, #818cf8, #c4b5fd);
    color: #1e1b4b;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
}

.special-services .section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.special-services .section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 0;
    max-width: 1400px;
    padding: 0 1rem;
}

.service-box {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(100, 116, 139, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #818cf8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover .service-icon {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
}

.service-box:hover .service-icon::before {
    opacity: 1;
}

.service-box h3 {
    font-size: 1.375rem;
    color: #f8fafc;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.service-box h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #818cf8, #c4b5fd);
    opacity: 0.7;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.service-box:hover h3::after {
    width: 60px;
    opacity: 1;
}

.service-description {
    color: #cbd5e1;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-box:hover .service-description {
    opacity: 1;
}

.feature-list {
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
    text-align: right;
    direction: rtl;
}

.feature-list li {
    position: relative;
    padding: 0.5rem 1.5rem 0.5rem 0;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-box:hover .feature-list li {
    opacity: 1;
}

.feature-list li i {
    position: absolute;
    right: 0;
    top: 0.6rem;
    color: #818cf8;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-box:hover .feature-list li i {
    color: #c4b5fd;
    transform: scale(1.2);
}

.service-box .btn {
    margin-top: auto;
    align-self: center;
    padding: 0.7rem 1.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    transition: all 0.3s ease;
    z-index: -1;
}

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

.service-box .btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-box .btn:hover i {
    transform: translateX(-3px);
}

/* Responsive Design */
@media (max-width: 1399px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        padding: 0 1.5rem;
    }
    
    .service-box {
        padding: 2rem 1.25rem;
    }
}

@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
    }
    
    .special-services .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .service-box {
        padding: 2rem 1.5rem;
    }
    
    .special-services .section-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 767px) {
    .special-services {
        padding: 4.5rem 0;
    }
    
    .special-services .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .special-services .section-title {
        font-size: 1.9rem;
    }
    
    .special-services .section-subtitle {
        font-size: 1.05rem;
    }
    
    .services-grid {
        gap: 1.25rem;
        padding: 0 1.25rem;
    }
    
    .service-box {
        padding: 1.75rem 1.25rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .service-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-list {
        margin-bottom: 1.5rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .service-box .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 1.25rem;
        gap: 1.5rem;
    }
    
    .service-box {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }
    
    .special-services .section-title {
        font-size: 1.75rem;
    }
    
    .special-services .section-subtitle {
        font-size: 1rem;
    }
    
    .service-box h3 {
        font-size: 1.4rem;
    }
}

/* Fix for RTL text in feature list */
[dir="rtl"] .feature-list {
    text-align: left;
    padding-right: 0;
    padding-left: 1.5rem;
}

[dir="rtl"] .feature-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
}

[dir="rtl"] .feature-list li i {
    right: auto;
    left: 0;
}

/* ==================== */
/* Features Section */
.features {
    padding: 6rem 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
}

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

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

.features .section-tag {
    display: inline-block;
    background: linear-gradient(90deg, #818cf8, #c4b5fd);
    color: #1e1b4b;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
}

.features .section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.features .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #818cf8, #c4b5fd);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.features:hover .section-title::after {
    width: 120px;
}

.features .section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(100, 116, 139, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.feature-card.highlight {
    position: relative;
    border: 1px solid rgba(129, 140, 248, 0.4);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.feature-card.highlight::after {
    content: 'বিশেষ';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(90deg, #818cf8, #c4b5fd);
    color: #1e1b4b;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #818cf8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #818cf8, #c4b5fd);
    opacity: 0.7;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.feature-card:hover h3::after {
    width: 60px;
    opacity: 1;
}

.feature-card p {
    color: #cbd5e1;
    margin: 0.5rem 0 0;
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1399px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
    
    .features .section-title {
        font-size: 2.25rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .features {
        padding: 4.5rem 0;
    }
    
    .features .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .features .section-title {
        font-size: 2rem;
    }
    
    .features .section-subtitle {
        font-size: 1.05rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .features .section-title {
        font-size: 1.75rem;
    }
    
    .features .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon i {
    -webkit-text-fill-color: white;
    color: white;
}

.area-card i {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 1.25rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.area-card:hover i {
    background: #4f46e5;
    color: #fff;
    transform: rotateY(180deg);
}

.area-card h3 {
    font-size: 1.375rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.area-link {
    color: #4f46e5;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    transition: all 0.3s ease;
}

.area-link:hover {
    color: #4338ca;
    text-decoration: underline;
}

.area-link i {
    margin-right: 0.5rem;
    font-size: 1rem;
    width: auto;
    height: auto;
    background: none;
    color: inherit;
    margin-bottom: 0;
    transform: none;
}

/* Speed Test Section */
.speed-test {
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

.speed-test .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.speed-test-container {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.speed-test-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.speed-meter {
    width: 220px;
    height: 220px;
    margin: 0 auto 3rem;
    position: relative;
}

.speed-dial {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 16px solid #e2e8f0;
    border-top-color: #4f46e5;
    transform: rotate(-45deg);
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.speed-meter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px dashed #e2e8f0;
    padding: 10px;
    box-sizing: border-box;
}

.speed-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    transition: all 0.3s ease;
}

.speed-unit {
    font-size: 1.25rem;
    color: #64748b;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

.speed-test-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.speed-test-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.speed-test-btn:active {
    transform: translateY(0);
}

.speed-test-btn i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.speed-test-btn:hover i {
    transform: translateX(4px);
}

.speed-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.speed-result-item {
    text-align: center;
    background: #f8fafc;
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.speed-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.speed-result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.speed-result-value span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.speed-result-label {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
}

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

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #c7d2fe;
}

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

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

.faq-question i {
    color: #4f46e5;
    transition: transform 0.3s ease;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item.active .faq-question {
    background: #f8fafc;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

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

/* Coverage Area Section */
.coverage-area {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.coverage-area .section-title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.coverage-area .section-subtitle {
    color: #64748b;
    margin-bottom: 2.5rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.coverage-box {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(2px);
}

.coverage-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f0f4f8;
    background-image: 
        linear-gradient(rgba(79, 70, 229, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(79, 70, 229, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.05) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 10px 10px, 10px 10px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    opacity: 0.8;
    z-index: -1;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.coverage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    border-color: #4f46e5;
    background: rgba(255, 255, 255, 0.9);
}

.coverage-box:hover::before {
    opacity: 0.3;
    transform: scale(1.05);
}

.coverage-box i {
    font-size: 1.5rem;
    color: #4f46e5;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.coverage-box:hover i {
    background: #4f46e5;
    color: white;
}

.coverage-box span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    display: block;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.coverage-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(5px);
}

.coverage-note p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .coverage-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .why-choose-us .features-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-box {
        min-height: 100px;
        padding: 1.25rem 0.75rem;
    }
    
    .coverage-box span {
        font-size: 1rem;
    }
    
    .why-choose-us .features-grid,
    .features-grid,
    .package-grid,
    .coverage-areas {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .speed-results {
        grid-template-columns: 1fr 1fr;
    }
    
    .speed-meter {
        width: 200px;
        height: 200px;
    }
    
    .speed-value {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .coverage-box {
        min-height: auto;
        padding: 1.25rem 0.5rem;
    }
    
    .coverage-box i {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .coverage-note {
        padding: 1.5rem 1rem;
    }
    
    .coverage-note p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-box {
        padding: 1.5rem;
    }
    
    .customer-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-box {
        padding: 1.5rem;
    }
    
    .customer-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-grid,
    .package-grid,
    .coverage-areas,
    .speed-results {
        grid-template-columns: 1fr;
    }
    
    .speed-meter {
        width: 180px;
        height: 180px;
    }
    
    .speed-value {
        font-size: 2rem;
    }
    
    .speed-test-btn {
        width: 100%;
        justify-content: center;
    }
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.quick-support {
    padding: 80px 0;
    background: var(--light-bg);
    color: var(--text);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.support-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.support-link {
    background: #fff;
    color: var(--text);
    padding: 12px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.support-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff;
}
.hero {
    background: var(--bg);
    color: var(--text);
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text);
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: none;
    box-shadow: var(--shadow);
}
.btn-outline {
    background: #fff;
    color: var(--text);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.blog-updates {
    padding: 100px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.package-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.blog-card h3 {
    font-size: 1.1rem;
    padding: 15px 20px 0;
}
.blog-card p {
    padding: 0 20px 15px;
    color: var(--text-light);
}
.blog-card .read-more {
    display: block;
    padding: 10px 20px 20px;
    color: var(--primary);
    font-weight: 600;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .coverage-search input {
        flex: 1 1 100%;
    }
    .coverage-search button {
        width: 100%;
    }
}
