* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */F
.navbar {
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #1A1A1A;
}

.logo i {
    color: #007aff;
    color: #0000eb;
    margin-right: 8px;
}

.logo span {
    color: #007aff;
    color: #0000eb;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: #007aff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1A1A1A;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007aff 0%, #4a90e2 100%);
    background: url(../images/xmbanner3.jpg);
    background-size: cover;
background-repeat: no-repeat;
object-fit: cover;    
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave svg path {
    fill: #FFFFFF;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #1A1A1A;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-light {
    background: white;
    color: #007aff;
}

.btn-light:hover {
    background: #f0f0f0;
}

.btn-outline {
    background: transparent;
    border: 2px solid #007aff;
    color: #007aff;
}

.btn-outline:hover {
    background: #007aff;
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: #E8F0FE;
    color: #007aff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.section-header p {
    color: #6B6B6B;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #F9F9FB;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007aff, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6B6B6B;
}

/* Originals Section */
.originals {
    background: #F9F9FB;
    padding: 80px 0;
}

.originals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.original-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.original-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.original-card i {
    font-size: 2rem;
    color: #007aff;
    margin-bottom: 16px;
}

.original-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.original-card p {
    color: #6B6B6B;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #007aff, #4a90e2);
    background: linear-gradient(135deg, #007aff 0%, #4a90e2 100%);
    background: url(../images/xmbanner6.png);
    background-size: cover;
background-repeat: no-repeat;
object-fit: cover;     
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-about p {
    margin: 16px 0;
    line-height: 1.6;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.footer-logo i {
    color: #007aff;
}

.footer-logo span {
    color: #007aff;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #007aff;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    width: 20px;
    color: #007aff;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    color: #CCCCCC;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #007aff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #007aff, #4a90e2);
    color: white;
    text-align: center;
    padding: 100px 0 60px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Page */
.about-story {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: #4A4A4A;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    background: #F9F9FB;
    padding: 30px 20px;
    border-radius: 16px;
}

.stat h3 {
    font-size: 2rem;
    color: #007aff;
    margin-bottom: 10px;
}

.mission-vision {
    padding: 0 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: #F9F9FB;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.mission-card h2, .vision-card h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #007aff;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse .service-content {
    direction: ltr;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007aff, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.service-content h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-content p {
    color: #4A4A4A;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content li i {
    color: #007aff;
}

/* Plans Page */
.plans-hero {
    padding-bottom: 40px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.toggle-label {
    font-weight: 500;
}

.toggle-label.active {
    color: white;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0 40px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
    transition: all 0.2s ease;
    position: relative;
}

.plan-card.featured {
    border: 2px solid #007aff;
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #007aff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.plan-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #007aff;
}

.plan-description {
    color: #666;
    margin-bottom: 24px;
    min-height: 60px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: #007aff;
    width: 20px;
}

.offer-details {
    background: #F9F9FB;
    padding: 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* Products Carousel */
.carousel-section {
    padding: 60px 0;
}

.carousel-container {
    position: relative;
    margin: 40px auto;
    max-width: 1000px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 24px;
}

.product-card {
    min-width: calc(33.333% - 16px);
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E5E5;
}

.product-card i {
    font-size: 48px;
    color: #007aff;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007aff;
    margin-bottom: 20px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #007aff;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2, .contact-form h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: #007aff;
    width: 40px;
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-item p {
    color: #666;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #007aff;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-box h2 {
    font-size: 1.4rem;
    margin: 30px 0 16px;
    color: #1A1A1A;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 16px;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal / Popup */ 

/* Registration Page Specific Styles */
.registration-section {
    padding: 60px 0 100px;
    background: #F9F9FB;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.registration-form-card, .registration-info-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.registration-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1A1A1A;
}

.required {
    color: #FF5A00;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.help-text {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #6B6B6B;
}

.password-strength {
    font-size: 0.75rem;
    margin-top: 6px;
}

.password-strength.weak { color: #ff4444; }
.password-strength.moderate { color: #ffaa00; }
.password-strength.strong { color: #28a745; }

.form-terms {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

.form-terms input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.registration-info-card {
    background: linear-gradient(135deg, #007aff, #4a90e2);
    color: white;
    position: relative;
    overflow: hidden;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.registration-info-card h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.registration-info-card ul {
    list-style: none;
    margin-bottom: 40px;
}

.registration-info-card li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.registration-info-card li i {
    font-size: 18px;
}

.info-help {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-help i {
    font-size: 28px;
}

.success-banner {
    text-align: center;
    padding: 20px 0;
}

.success-banner i {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.success-details {
    background: #F9F9FB;
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    text-align: left;
}

.success-details p {
    margin-bottom: 8px;
    color: #1A1A1A;
}

.error-banner {
    background: #FFEBEE;
    border-left: 4px solid #ff4444;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    color: #c62828;
}

.error-banner i {
    margin-right: 10px;
}

.error-banner ul {
    margin-left: 25px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .registration-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .registration-form-card, .registration-info-card {
        padding: 25px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .contact-grid, .service-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-block.reverse {
        direction: ltr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    margin-left: auto;    
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
        z-index:99;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid, .originals-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .product-card {
        min-width: 100%;
    }
    
    .carousel-prev, .carousel-next {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}


/* Orange Phone Button */
.phone-btn {
    background: #FF5A00;
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-left: 2px;
}

.phone-btn:hover {
    background: #E04E00;
    transform: scale(1.02);
}

/* Hero Slider */
.hero-slider {
    margin-top: 2px; /* Adjust based on navbar height */
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    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 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    max-width: 700px;
    padding: 20px;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-dots .dot.active {
    background: #FF5A00;
    transform: scale(1.2);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #F9F9FB;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.step {
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF5A00;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step i {
    font-size: 48px;
    color: #007aff;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 12px;
}

/* Trending Section */
.trending {
    padding: 80px 0;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.trending-card {
    background: #F9F9FB;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s;
}

.trending-card:hover {
    transform: translateY(-5px);
}

.trending-card i {
    font-size: 40px;
    color: #007aff;
    margin-bottom: 16px;
}

.trending-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.channel-number {
    display: inline-block;
    background: #E8F0FE;
    color: #007aff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 12px;
}

/* Testimonials */
.testimonials {
    background: #F9F9FB;
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-card i {
    color: #007aff;
    font-size: 28px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.customer {
    font-weight: 600;
    color: #007aff;
}

/* App Showcase */
.app-showcase {
padding: 80px 0;
    background: linear-gradient(135deg, #007aff66, #4a90e2), url(../images/srbanner1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    color: white;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.app-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.app-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.app-badges {
    display: flex;
    gap: 16px;
}

.app-badges img {
    height: 50px;
    width: auto;
}

.app-image {
    text-align: center;
}

.app-image i {
    font-size: 200px;
    color: white;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}


/* ==============================================
   DYNAMIC & CREATIVE SECTION STYLES (Homepage only)
   These styles are scoped inside #dynamic-index to avoid affecting other pages.
   ============================================== */
#dynamic-index {
    --primary-glow: #007aff;
    --accent-fire: #ff5e00;
    --grad-1: linear-gradient(135deg, #0a0e27, #001f3f);
    --card-radius: 28px;
    --transition-smooth: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* extra micro fixes to ensure slider transition works */
.hero-slider .slide { transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1); }
        
/* ----- Global dynamic header flair ----- */
#dynamic-index .creative-header .section-tag {
    background: linear-gradient(120deg, #007aff20, #ff5e0020);
    backdrop-filter: blur(2px);
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0,122,255,0.2);
    color: #007aff !important;
}

.gradient-tag {
    background: linear-gradient(135deg, #007aff, #ff5e00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    border: none !important;
    background-color: transparent !important;
    font-weight: 800;
}

/* ----- FEATURES (glassmorph + floating icons + shine) ----- */
#dynamic-index .creative-features {
    position: relative;
    background: radial-gradient(circle at 10% 30%, rgba(0,122,255,0.03), transparent);
}

#dynamic-index .dynamic-card {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(2px);
    border-radius: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,122,255,0.15);
}

#dynamic-index .dynamic-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 40px -12px rgba(0,122,255,0.25);
    border-color: rgba(0,122,255,0.5);
}

#dynamic-index .floating-icon {
    background: linear-gradient(145deg, #007aff, #4a90e2);
    box-shadow: 0 12px 20px -8px rgba(0,122,255,0.4);
    transition: transform 0.3s ease;
}

#dynamic-index .dynamic-card:hover .floating-icon {
    transform: scale(1.08) rotate(3deg);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
    pointer-events: none;
}

#dynamic-index .dynamic-card:hover .card-shine {
    left: 120%;
}

/* ----- Quote Hero (creative parallax & orbs) ----- */
#dynamic-index .creative-quote-hero {
    position: relative;
    background: linear-gradient(115deg, #0b1120 0%, #081c34 100%), url('../images/xmbanner3.jpg');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 110px 0 90px;
}

#dynamic-index .glow-text {
    text-shadow: 0 5px 25px rgba(0,122,255,0.5);
    animation: softGlow 3s infinite alternate;
}

@keyframes softGlow {
    0% { text-shadow: 0 2px 15px rgba(0,122,255,0.3); }
    100% { text-shadow: 0 8px 35px rgba(0,122,255,0.8); }
}

#dynamic-index .hero-orb, #dynamic-index .hero-orb2 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,122,255,0.25), transparent 70%);
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
    filter: blur(50px);
    animation: floatOrb 12s infinite alternate;
    z-index: 0;
}
#dynamic-index .hero-orb2 {
    top: -80px;
    right: -80px;
    left: auto;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,94,0,0.2), transparent);
    animation: floatOrb2 14s infinite alternate;
}
@keyframes floatOrb {
    0% { transform: translate(0,0) scale(1); opacity: 0.5;}
    100% { transform: translate(60px, 40px) scale(1.2); opacity: 0.8;}
}
@keyframes floatOrb2 {
    0% { transform: translate(0,0) scale(0.9);}
    100% { transform: translate(-40px, -60px) scale(1.3);}
}

.creative-buttons .btn-primary {
    background: linear-gradient(95deg, #007aff, #ff5e00);
    border: none;
    box-shadow: 0 8px 20px rgba(0,122,255,0.4);
}
.creative-buttons .btn-secondary {
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

/* ----- How it works (connector lines) ----- */
#dynamic-index .steps-creative {
    position: relative;
}
#dynamic-index .step-card {
    background: rgba(255,255,255,0.95);
    border-radius: 40px;
    transition: all 0.3s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
#dynamic-index .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0,122,255,0.12);
}
#dynamic-index .step-connector {
    display: none;
}
@media (min-width: 992px) {
    #dynamic-index .step-card:not(:last-child) .step-connector {
        display: block;
        position: absolute;
        right: -30px;
        top: 45%;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #007aff, #ff5e00);
        border-radius: 2px;
    }
}
#dynamic-index .step-icon-wrap i {
    font-size: 48px;
    background: linear-gradient(135deg, #007aff, #ff9000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pulse-step {
    animation: pulseRing 2s infinite;
    background: #ff5e00;
    box-shadow: 0 0 0 0 rgba(255,94,0,0.6);
}
@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(255,94,0,0.5);}
    70% { box-shadow: 0 0 0 12px rgba(255,94,0,0);}
    100% { box-shadow: 0 0 0 0 rgba(255,94,0,0);}
}

/* ----- Trending neon cards ----- */
#dynamic-index .trending-neon-grid .neon-card {
    background: #ffffff;
    border-radius: 28px;
    transition: 0.2s linear;
    border-left: 4px solid #007aff;
    position: relative;
    overflow: hidden;
}
#dynamic-index .trending-neon-grid .neon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,122,255,0.2);
    border-left-width: 8px;
}
#dynamic-index .trending-neon-grid .neon-card i {
    transition: transform 0.2s;
}
#dynamic-index .trending-neon-grid .neon-card:hover i {
    transform: scale(1.1);
    color: #ff5e00;
}
.channel-number {
    background: #f0f4fe;
    font-weight: 700;
}
.pulse-channel {
    animation: softPulse 1.8s infinite;
}
@keyframes softPulse {
    0% { background: #eef3ff;}
    50% { background: #d4e4ff;}
    100% { background: #eef3ff;}
}

/* ----- Testimonials 3D float ----- */
#dynamic-index .testimonial-float {
    transition: var(--transition-smooth);
    border-radius: 30px;
    position: relative;
    background: white;
    transform-style: preserve-3d;
}
#dynamic-index .testimonial-float:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 0 35px 40px -20px rgba(0,0,0,0.2);
}
.testimonial-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #007aff, #ff5e00);
    border-radius: 0 0 30px 30px;
    opacity: 0;
    transition: 0.3s;
}
#dynamic-index .testimonial-float:hover .testimonial-glow {
    opacity: 1;
}

/* ----- App showcase dynamic + phone pulse ring----- */
#dynamic-index .creative-app-showcase {
    background: linear-gradient(125deg, #001d3d, #000814), url('../images/srbanner1.jpg');
background: linear-gradient(135deg, #007aff66, #001d3d), url(../images/srbanner1.jpg);
    background-repeat: no-repeat;
    object-fit: cover;    
    background-size: cover;
}
#dynamic-index .dynamic-app-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}
#dynamic-index .floating-app-content h2 .gradient-text {
    background: linear-gradient(120deg, #FFD166, #FF8C42);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
#dynamic-index .creative-phone-mockup {
    position: relative;
}
.phone-pulse-ring i {
    font-size: 150px;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.3));
    animation: phoneFloat 3s infinite alternate;
}
@keyframes phoneFloat {
    0% { transform: translateY(0px);}
    100% { transform: translateY(-12px);}
}
.floating-wave {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    bottom: -30px;
    right: -20px;
    animation: rippleWave 2s infinite;
}
@keyframes rippleWave {
    0% { transform: scale(0.8); opacity: 0.6;}
    100% { transform: scale(1.4); opacity: 0;}
}

/* ----- Originals 3D tilt style ----- */
#dynamic-index .tilt-card {
    transition: transform 0.25s ease, box-shadow 0.3s;
    border-radius: 28px;
    will-change: transform;
}
#dynamic-index .tilt-card:hover {
    transform: rotate(1deg) scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(0,122,255,0.2);
}

/* ----- CTA cosmic effect ----- */
#dynamic-index .creative-cta {
    background: linear-gradient(135deg, #0a112894, #030b1a), url(../images/xmbanner6.png);
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    position: relative;
    isolation: isolate;
}
.cta-glow-container {
    position: relative;
    z-index: 2;
}
.pulse-cta-btn {
    animation: ctaPulse 1.8s infinite;
    background: linear-gradient(95deg, #007aff, #ff5e00);
    color: white;
    border: none;
}
@keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(0,122,255,0.5);}
    70% { box-shadow: 0 0 0 15px rgba(0,122,255,0);}
    100% { box-shadow: 0 0 0 0 rgba(0,122,255,0);}
}
.cta-particle-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 40%, rgba(255,94,0,0.1) 2px, transparent 2px);
    background-size: 35px 35px;
    opacity: 0.4;
    pointer-events: none;
}

/* Responsive adjustments for new creative elements */
@media (max-width: 768px) {
    #dynamic-index .dynamic-app-grid {
        flex-direction: column;
        text-align: center;
    }
    #dynamic-index .step-connector {
        display: none;
    }
    #dynamic-index .hero-orb, #dynamic-index .hero-orb2 {
        width: 200px;
        height: 200px;
        filter: blur(40px);
    }
    #dynamic-index .trending-neon-grid .neon-card {
        margin-bottom: 10px;
    }

    .phone-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .hero-slider {
         margin-top: 0px;
        height: 60vh;
        min-height: 400px;
    }
    .slide-content h2 {
        font-size: 1.8rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .app-badges {
        justify-content: center;
    }
    .steps-grid, .trending-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


