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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #2563eb, #7c3aed, #db2777) 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1f2937;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: white;
    text-shadow: 
        -2px -2px 0 rgba(0, 0, 0, 0.8),
        2px -2px 0 rgba(0, 0, 0, 0.8),
        -2px 2px 0 rgba(0, 0, 0, 0.8),
        2px 2px 0 rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    animation: fadeInUp 1s ease 0.2s both;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    border: 2px solid #2563eb;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-features .feature i {
    color: #f59e0b;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff, #fef3c7);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Certification Display */
.certification-display {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cert-badge i {
    font-size: 1rem;
}

.cert-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.cert-image-container {
    position: relative;
}

.cert-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.cert-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cert-details h4 {
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cert-info {
    margin-bottom: 1.5rem;
}

.cert-info p {
    margin: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cert-info strong {
    color: #1f2937;
    font-weight: 600;
}

.cert-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
}

.cert-feature i {
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 4px;
}

.feature-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6b7280;
    margin: 0;
}

.about-image {
    position: relative;
}

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

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

@keyframes slideInRight {
    from {
        transform: translateY(-50%) translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 1.8rem;
    color: #2563eb;
    font-weight: 700;
}

.stat p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc, #ecfdf5);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #cbd5e1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    border: 3px solid #2563eb;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.service-card.featured {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: 3px solid #1d4ed8;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1f2937;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff, #fef3c7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: #2563eb;
}

.service-card.featured .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card.featured h3 {
    color: white;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-card.featured .service-features li::before {
    color: #fbbf24;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef2f2, #f0f9ff, #f3e8ff);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials-grid {
    display: flex;
    min-width: 100%;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-card p {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author h4 {
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f0f9ff, #fef7cd);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #2563eb;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: #6b7280;
    text-decoration: none;
    line-height: 1.6;
}

.contact-details a:hover {
    color: #2563eb;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    color: #2563eb;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.footer-contact i {
    color: #2563eb;
    width: 16px;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: 100vh;
        padding-bottom: 3rem;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        justify-items: center;
    }
    
    .hero-features .feature {
        padding: 6px 12px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 180px;
        margin: 0;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
        justify-items: center;
    }
    
    .hero-features .feature {
        padding: 5px 10px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 160px;
        margin: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cert-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .cert-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .cert-features {
        justify-content: center;
    }

    .certification-display {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .about-stats {
        position: fixed;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 120px;
        padding: 1.2rem 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        animation: slideInRight 0.8s ease-out;
        transition: all 0.3s ease;
        min-height: fit-content;
    }
    
    .about-stats:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
    
    .about-stats .stat {
        text-align: center;
        padding: 0.8rem 0.5rem;
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }
    
    .about-stats .stat:last-child {
        border-bottom: none;
        padding-bottom: 0.5rem;
    }
    
    .about-stats .stat h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #2563eb;
        margin-bottom: 0.2rem;
    }
    
    .about-stats .stat p {
        font-size: 0.75rem;
        color: #6b7280;
        margin: 0;
        line-height: 1.2;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        border-width: 2px;
        padding: 2rem;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 15px;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
        min-height: 100vh;
        padding-bottom: 4rem;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .certification-display {
        padding: 1rem;
        margin: 1rem 0;
    }

    .cert-details h4 {
        font-size: 1.2rem;
    }

    .cert-info p {
        font-size: 0.9rem;
    }

    .cert-feature {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .about-stats {
        position: fixed;
        top: 40%;
        right: 5px;
        transform: translateY(-50%);
        width: 100px;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        animation: slideInRight 0.8s ease-out;
        transition: all 0.3s ease;
    }
    
    .about-stats:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    }
    
    .about-stats .stat {
        text-align: center;
        padding: 0.8rem 0.5rem;
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }
    
    .about-stats .stat:last-child {
        border-bottom: none;
        padding-bottom: 0.5rem;
    }
    
    .about-stats .stat h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #2563eb;
        margin-bottom: 0.2rem;
    }
    
    .about-stats .stat p {
        font-size: 0.75rem;
        color: #6b7280;
        margin: 0;
        line-height: 1.2;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Enhanced colorful elements */
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dbeafe, #fef3c7, #fce7f3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid #2563eb;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* Google Reviews Section */
.google-reviews-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    text-align: center;
}

.google-reviews-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.google-reviews-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #4285f4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.google-reviews-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    color: white;
}

.google-reviews-btn i {
    font-size: 1.3rem;
}

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.services-description {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.services-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

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

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #db2777);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

    .package-card.premium {
        border: 2px solid #7c3aed;
        background: linear-gradient(135deg, #fefefe, #f8fafc);
    }

    .package-card.payment-card {
        border: 2px solid #10b981;
    }

    .qr-code-image {
        width: 120px;
        height: 120px;
    }

    .payment-info {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .payment-methods {
        font-size: 0.75rem;
    }

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
}

.package-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    padding-right: 1rem;
    margin-top: 0.8rem;
}

.package-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.original-price {
    font-size: 1.2rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.package-tests {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.package-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.package-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    font-weight: 600;
}

.read-more-btn {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #4b5563, #374151);
    transform: translateY(-2px);
}

/* Payment Card Styling */
.package-card.payment-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 3px solid #10b981;
    position: relative;
    overflow: hidden;
}

.package-card.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
}

.package-card.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.qr-code-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qr-code-image:hover {
    transform: scale(1.05);
}

.payment-info {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
    margin: 0.5rem 0;
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.payment-methods {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0.5rem 0;
    text-align: center;
    font-style: italic;
}

/* Ensure payment card has no buttons */
.package-card.payment-card .package-buttons {
    display: none !important;
}

.package-card.payment-card {
    padding-bottom: 2rem;
}

.package-features h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.feature-grid .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-grid .feature-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.feature-grid .feature-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.feature-grid .feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.home-collection-badge {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.home-collection-badge i {
    font-size: 1.2rem;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
}

.offers .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.offers .section-subtitle {
    color: #bfdbfe;
}

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

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.offer-icon i {
    font-size: 2rem;
    color: white;
}

.offer-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.offer-card p {
    color: #bfdbfe;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .package-buttons .btn {
        width: 100%;
    }
    
    .about-stats {
        position: fixed;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 120px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-stats .stat {
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }
    
    .about-stats .stat:last-child {
        border-bottom: none;
    }
    
    .about-stats .stat h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #2563eb;
        margin-bottom: 0.2rem;
    }
    
    .about-stats .stat p {
        font-size: 0.75rem;
        color: #6b7280;
        margin: 0;
        line-height: 1.2;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 25px;
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .modal-header {
        padding: 1.8rem 1.5rem 1.2rem;
        border-radius: 25px 25px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
        animation: titlePulse 2s ease-in-out infinite;
    }
    
    .modal-close {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .modal-body {
        padding: 1.8rem;
    }
    
    .modal-price-section {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .modal-price .current-price {
        font-size: 2.8rem;
        animation: priceGlow 2s ease-in-out infinite;
    }
    
    .modal-price .original-price {
        font-size: 1.4rem;
    }
    
    .modal-tests {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
        animation: testsBounce 3s ease-in-out infinite;
    }
    
    .modal-features-section {
        padding: 1.8rem;
        border-radius: 18px;
    }
    
    .modal-features-section h4 {
        font-size: 1.4rem;
    }
    
    .modal-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .modal-feature-item {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .modal-feature-item i {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .modal-feature-list {
        grid-template-columns: 1fr;
    }
    
    .modal-home-collection {
        padding: 1.8rem;
        font-size: 1.2rem;
        border-radius: 20px;
    }
    
    .modal-book-btn {
        padding: 1.4rem 2.5rem;
        font-size: 1.2rem;
        border-radius: 25px;
    }
    
    .services-description {
        margin: 1.5rem auto 0;
    }
    
    .services-description p {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .offer-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .offers {
        padding: 80px 0;
        overflow: visible;
    }

    .google-reviews-section {
        margin-top: 3rem;
        padding: 2rem 1rem;
        border-radius: 15px;
    }

    .google-reviews-content h3 {
        font-size: 1.5rem;
    }

    .google-reviews-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .google-reviews-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-radius: 40px;
    }

    .google-reviews-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .packages {
        padding: 60px 0;
    }
    
    .offers {
        padding: 80px 0;
        overflow: visible;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .offer-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .offer-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .offer-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .google-reviews-section {
        margin-top: 2rem;
        padding: 1.5rem 0.8rem;
        border-radius: 12px;
    }

    .google-reviews-content h3 {
        font-size: 1.3rem;
    }

    .google-reviews-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .google-reviews-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 35px;
    }

    .google-reviews-btn i {
        font-size: 1rem;
    }
    
    .package-header {
        padding-top: 1.2rem;
    }
    
    .package-header h3 {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
    
    .current-price {
        font-size: 1.6rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid .feature-item {
        padding: 0.8rem;
    }
    
    .modal-content {
        width: 98%;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .modal-header {
        padding: 1.2rem;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
        animation: titlePulse 2s ease-in-out infinite;
    }
    
    .modal-close {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .modal-body {
        padding: 1.2rem;
    }
    
    .modal-price-section {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .modal-price .current-price {
        font-size: 2.2rem;
        animation: priceGlow 2s ease-in-out infinite;
    }
    
    .modal-price .original-price {
        font-size: 1.1rem;
    }
    
    .modal-tests {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        animation: testsBounce 3s ease-in-out infinite;
    }
    
    .modal-features-section {
        padding: 1.4rem;
        border-radius: 15px;
    }
    
    .modal-features-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .modal-feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-feature-item {
        padding: 1.2rem;
        border-radius: 10px;
    }
    
    .modal-feature-item i {
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
    }
    
    .modal-feature-item span {
        font-size: 1rem;
    }
    
    .modal-home-collection {
        padding: 1.2rem;
        font-size: 1.1rem;
        border-radius: 18px;
    }
    
    .modal-home-collection i {
        font-size: 1.5rem;
    }
    
    .modal-book-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-radius: 22px;
    }
    
    .services-description {
        margin: 1rem auto 0;
    }
    
    .services-description p {
        font-size: 0.95rem;
        padding: 1.2rem;
    }
    
    .container {
        padding: 0 10px;
        overflow: visible;
    }
}

/* Animation for mobile stats box */
@keyframes slideInRight {
    from {
        transform: translateY(-50%) translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* Enhanced Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
    background: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.modal-body {
    padding: 2rem;
    background: white;
    border-radius: 0 0 15px 15px;
}

.modal-package-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-price-section {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.modal-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-price .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.modal-price .original-price {
    font-size: 1.2rem;
    color: #6b7280;
    text-decoration: line-through;
}

.modal-tests {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.modal-features-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.modal-features-section h4 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 

.modal-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.modal-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.modal-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
}

.modal-feature-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-feature-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
}

.modal-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.modal-feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    color: #4b5563;
    display: flex;
    align-items: center;
}

.modal-feature-list li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.modal-feature-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 1rem;
}

.modal-home-collection {
    background: #10b981;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.modal-home-collection i {
    font-size: 1.5rem;
}

.modal-book-btn {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 2rem;
    width: 100%;
}

.modal-book-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}



 