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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #0F252D;
    
}

/* Header Styles */ 
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3% 0.5rem;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-right: 2rem;
    z-index: 1001;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: white;
    opacity: 0.8;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff8f8;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    
}

.mobile-menu-btn:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.541), rgba(0, 0, 0, 0.007)), url('/images/hero/desctopx.webp');
    background-size: cover;
    background-position: center -11%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 0 8%;
    overflow: hidden;
    z-index: 0;
    background-attachment: fixed;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-content {
    max-width: 600px;
    text-align: left;
    padding-top: 8rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    z-index: -1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 0.5rem 2.4rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #0adf98 0%, #159ecf 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color:black;
}

.cta-button:hover {
    background: #686868;
}

/* Curved Divider */
.curved-divider-wrapper {
    position: absolute;
    width: 100%;
    height: 100px;
    overflow: hidden;
    bottom: -1px;
    left: 0;
}

.curve-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.curve {
    position: absolute;
    height: 50%;
    bottom: 0;
    margin: auto;
    display: flex; 
    align-items: center;
    border: solid 0.25rem transparent;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    border-bottom: none;
    background: radial-gradient(
        50% 500% at 50% -420%,
        rgba(59, 206, 91, 0.4) 80%,
        #0F252D 100%
    ), black;
    background-clip: padding-box;
    width: 200%;
    left: -50%;
    transition: transform 0.3s ease-out;
}

.curve::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin-top: -0.25rem;
    border-radius: inherit;
    background: linear-gradient(
        to right,
        #0adf98 16%,
        #159ecf,
        #4fc78b,
        #159ecf,
        #0adf98 84%
    );
}

/* Responsive breakpoints */
@media (min-width: 600px) {
    .curve {
        width: 180%;
        left: -40%;
    }
}

@media (min-width: 960px) {
    .curve {
        width: 150%;
        left: -25%;
    }
}

@media (min-width: 1280px) {
    .curve {
        width: 130%;
        left: -15%;
    }
}

@media (min-width: 1920px) {
    .curve {
        width: 120%;
        left: -10%;
    }
} 

/* Channels Carousel Section */
.channels-carousel {
    background: transparent;
    margin: 0 5%;
}

.channel-slide {
    text-align: center;
    padding: 0.5rem;
    
    transition: transform 0.3s ease;
}

.channel-slide:hover {
    transform: translateY(-5px);
}

.channel-slide img {
    width: 60px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.channel-slide:hover img {
    transform: scale(1.1);
}

/* Section 2 & 3 Styles */
.section-2, .section-3 {
    padding: 2rem 1rem;
}

.swiper-container {
    max-width: 1200px;
    overflow: hidden;
}

.swiper-slide {
    height: 60px;
}

.swiper-slide img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 8px;
}

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

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-content p {
    font-size: 1.1rem;
    color: #666;
}

/* How to Order Section */
.how-to-order {
    padding: 4rem 2rem;
    overflow: hidden;
}

.how-to-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.how-to-order h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.how-to-order h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0adf98, #159ecf);
    border-radius: 2px;
}

.order-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.order-step {
    background: #D9D9D9;
    padding: 0.7rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.step-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #0adf98 0%, #159ecf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(10, 223, 152, 0.12);
}

.step-icon i {
    font-size: 1.2rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.order-step:hover .step-icon i {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.1rem;
    color: #162D35;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive Design for How to Order Section */
@media (max-width: 992px) {
    .order-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-to-order {
        padding: 3rem 1.5rem;
    }

    .how-to-order h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

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

    .order-step {
        padding: 1rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }

    .step-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .how-to-order h2 {
        font-size: 1.5rem;
    }

    .order-step {
        padding: 1rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

}

/* Devices Section */
.devices-section {
    padding: 4rem 1rem;
    background: #f8f9fa;
}

.devices-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.devices-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.devices-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.devices-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex: 0 0 200px;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.device-item:hover {
    transform: translateY(-5px);
}

.device-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.device-item:hover img {
    transform: scale(1.1);
}

.device-item i {
    font-size: 2.5rem;
    color: #007bff;
}

.device-item span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.devices-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.devices-cta:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Design for Devices Section */
@media (max-width: 1400px) {
    .device-item {
        flex: 0 0 calc(20% - 1.5rem);
        min-width: 150px;
    }
}

@media (max-width: 1200px) {
    .device-item {
        flex: 0 0 calc(25% - 1.5rem);
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .device-item {
        flex: 0 0 180px;
        padding: 1.2rem;
    }

    .device-item img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .devices-section {
        padding: 3rem 1rem;
    }

    .devices-section h2 {
        font-size: 2rem;
    }

    .device-item {
        flex: 0 0 150px;
        padding: 1rem;
    }

    .device-item img {
        height: 45px;
    }

    .device-item i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .devices-section h2 {
        font-size: 1.8rem;
    }

    .device-item {
        flex: 0 0 120px;
        padding: 0.8rem;
    }

    .device-item img {
        height: 40px;
    }

    .device-item i {
        font-size: 1.8rem;
    }
}

/* Pricing Section */
.pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-btn {
    padding: 0.8rem 0.9rem;
    border: none;
    border-radius: 25px;
    background-color: #565656;
    color:#ededed;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-btn:hover {
    background-color:  #8be5c7;
    color:#161616;
    transform: translateY(-2px);
}

.pricing-btn.active {
    background:linear-gradient(135deg, #0adf98 0%, #159ecf 100%);
    color: #161616;;
    transform: translateY(-2px);
}
.pricings-section.active {
    display: block;
}


.pricings-section.active {
    animation: fadeIn 0.5s ease-out;
}
.pricings-section {
    display: none;
}

.pricings-section.active {
    display: block;
}
/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pricing-section {
    padding: 2rem 1rem;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: bold;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0adf98, #159ecf);
    border-radius: 2px;
}

.pricing-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.pricing-card {
    background: #D9D9D9;
    padding: 1.2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00ff88);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card-header {
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.card-header h3 {
    font-size: 1.4rem;
    margin: 0;
    line-height: 0.5;
    color: #333;
}

.plan-period {
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
    color: #0c0c0c;
    font-size: 1.5rem;
}

.plan-name {
    font-weight: 500;
    color: #666;
    font-size: 1rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;

    padding: 1rem;
    border-radius: 10px;
}

.discount-price {
    font-size: 2rem;
    color: #162D35;
    font-weight: 700;
    line-height: 1;
}

.actual-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
    padding: 0 0.5rem;
}

.features-list li {
    margin-bottom: 0.5rem;
    color: #444;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list li i {
    color: #28a745;
    font-size: 0.9rem;
    flex-shrink: 0;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
}

.card-footer {
    margin-top: auto;
    position: relative;
}

.pricing-card button {
    padding: 0.8rem 1.5rem;
    background: #162D35;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card button:hover {
    background: #777777;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Add responsive styles */
@media (max-width: 768px) {
    .pricing-card {
        padding: 1.2rem 1rem;
    }

    .plan-period {
        font-size: 1.3rem;
    }

    .plan-name {
        font-size: 0.9rem;
    }

    .discount-price {
        font-size: 1.8rem;
    }

    .features-list li {
        font-size: 0.85rem;
    }

    .pricing-card button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

.popular-tag, .best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    
}

.popular-tag {
    background: linear-gradient(45deg, #ff4757, #ff6b81);
}

.best-value {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
}

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

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile and Tablet Responsive */
@media (max-width: 900px) {
    .header {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -300px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.85);
        padding: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        visibility: visible;
        backdrop-filter: blur(8px);
    }

    .nav-menu.active {
        right: 20px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        height: 100%;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 1rem;
        text-align: left;
        color: #333;
        opacity: 1;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }

    .logo {
        margin-right: auto;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        color: #007bff;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .swiper-slide {
        height: 100px;
        width: 100px;
        margin: 0 auto;
    }

    .card-header i {
        font-size: 2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .pricing-card li {
        font-size: 0.85rem;
    }
    
    .pricing-card button {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .popular-tag, .best-value {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        top: -12px;
    }
}

/* Trends Section */
.trends-section {
    padding: 2rem 1rem;
    background: #f8f9fa;
}

.trends-carousel {
    margin: 0 auto;
    padding: 1rem;
}

.trend-slide {
    text-align: center;
    padding: 0.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trend-slide:hover {
    transform: translateY(-5px);
}

.trend-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Swiper Navigation (defined above, keep single source) */

/* Responsive Design */
@media (max-width: 768px) {
    .trend-slide img {
        height: 200px;
    }
}

/* Benefits Section */
.benefits-section {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
}

.benefits-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #007bff;
    margin: 1rem auto;
}

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

.benefit-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    margin-bottom: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item li i {
    color: #007bff;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        margin-bottom: 1rem;
    }
}

/* Nassr TV Section */
.nassr-section {
    padding: 6rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)), url('/images/hero/desk2880___1240.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}
.nassr-section2 {
    padding: 6rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)), url('/images/hero/film.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}
.nassr-section2 .section-content {
    text-align: left;
    max-width: 600px;
    margin: 0 0 8rem 5%;
    position: relative;
    
    width: 50%;
}

.nassr-section .section-content {
    text-align: left;
    max-width: 800px;
    margin: 0 0 8rem 5%;
    position: relative;
    
    width: 50%;
}

.nassr-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.nassr-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
}
.nassr-section2 h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.nassr-section2 p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.nassr-swiper {
    max-width: 1200px;
    margin: 4rem 5% 0 5%;
    padding: 1rem;
    position: relative;
    
    width: 100%;
}

.nassr-slide {
    padding: 0.5rem;
    margin: 0;
}

.nassr-content {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nassr-content:hover {
    transform: translateY(-5px);
}

.nassr-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive Design for Nassr Section */
@media (max-width: 1200px) {
    .nassr-content {
        max-width: 220px;
    }
}

@media (max-width: 992px) {
    .nassr-content {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .nassr-section {
        padding: 3rem 1rem;
        background-attachment: scroll;
    }
    .nassr-section2 {
        padding: 3rem 1rem;
        background-attachment: scroll;
    }

    .nassr-section .section-content {
        margin: 0 0 4rem 3%;
        width: 100%;
    }
    .nassr-section2 .section-content {
        margin: 0 0 4rem 3%;
        width: 100%;
    }

    .nassr-swiper {
        margin: 3rem 0 0 0;
        width: 100%;
    }

    .nassr-section h2 {
        font-size: 2rem;
    }
    .nassr-section2 h2 {
        font-size: 2rem;
    }

    .nassr-slide {
        padding: 0;
        margin: 0;
    }

    .nassr-content {
        max-width: 260px;
    }
}

@media (max-width: 576px) {
    .nassr-content {
        max-width: 240px;
    }
}

/* Add media query for tablet */
@media (max-width: 1024px) {
    .nassr-section {
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),url('/images/hero/mobilesport.webp');
        background-size: cover;
        background-position: center;
    }
    .nassr-section2 {
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),url('/images/hero/mobile2880___1240.webp');
        background-size: cover;
        background-position: center;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

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

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0adf98, #159ecf);
    border-radius: 2px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-block {
    background: #D9D9D9;
    padding: 0.7rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #0adf98 0%, #159ecf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(10, 223, 152, 0.12);
}

.feature-icon i {
    font-size: 1.2rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.feature-block:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-block h3 {
    font-size: 1.1rem;
    color: #162D35;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
}

.feature-block p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive Design for Features Section */
@media (max-width: 1200px) {
    .features-container {
        max-width: 90%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 1.5rem;
    }

    .features-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

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

    .feature-block {
        padding: 0.9rem;
    }

    .feature-block h3 {
        font-size: 1.3rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }

    .feature-icon i {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .pricing-section h2{
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .features-section h2 {
        font-size: 2rem;
    }

    .feature-block {
        padding: 0.9rem;
    }

    .feature-block h3 {
        font-size: 1.2rem;
    }
}
@media (max-width: 576px) {
    .pricing-section h2{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

}

/* FAQ Section */

.faq-section {
    padding: 4rem 1rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fffefe;
    font-weight: bold;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0adf98, #159ecf);
    border-radius: 2px;
}

.faq-container {
    max-width: 90%;
    margin: 0 auto;
}

.faq-item {
    background: #242d33;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    color: white;
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    color: white;
}

.faq-question:hover {
    background-color: #5b6974;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fffdfd;
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ebeef1;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 1.5rem;
    padding-top:  1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }
}

@media (max-width: 576px) {
    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* CSS Variables */
:root {
    --color-smoke: #1F2427;
    --color-chalk: #F9FAFA;
    --color-tarmac-light-60: #9EA2A4;
    --color-link: #006FE8;
}

.supported-devices {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    position: relative;
    padding-block: 60px;
}

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

.devices-title {
    color: var(--color-chalk);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
    max-width: 680px;
}

.gold-color {
    color: rgb(0, 225, 255);
}

.devices-description {
    color: var(--color-tarmac-light-60);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 680px;
}

.device-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.device-header {
    color: var(--color-chalk);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.line {
    height: 1px;
    background: #3D4549;
    max-width: 393px;
    width: 100%;
}

.logo-container {
    margin: 48px auto 0 auto;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 48px;
    column-gap: 28px;
    max-width: 1073px;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.device-logo {
    max-height: 26px;
    max-width: 100%;
    object-fit: contain;
}

/* Media Queries */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .supported-devices {
        padding-top: 40px;
        padding-bottom: 0;
    }
    
    .content-container {
        padding-block: 60px;
    }
    
    .line {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .supported-devices {
        width: 100%;
        align-items: start;
        box-sizing: border-box;
        flex-direction: column;
        height: auto;
        padding: 20px;
        display: block;
    }
    
    .logo-container {
        width: 100%;
        max-width: 100%;
    }
    
    .device-logo {
        max-height: 20px;
    }
    
    .line {
        display: none;
    }
}

/* RTL Support */
[dir='rtl'] .logo-container {
    direction: rtl;
}

/* Duplicate variables block removed */

.supported-devices {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    position: relative;
    padding-block: 60px;
    
}

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

.devices-title {
    color: var(--color-chalk);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
    max-width: 680px;
}

.gold-color {
    color:  rgb(0, 225, 255);
}

.devices-description {
    color: var(--color-tarmac-light-60);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 680px;
}

.device-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.device-header {
    color: var(--color-chalk);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.line {
    height: 1px;
    background: #3D4549;
    max-width: 393px;
    width: 100%;
}

.logo-container {
    margin: 48px auto 0 auto;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 48px;
    column-gap: 28px;
    max-width: 1073px;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.device-logo {
    max-height: 26px;
    max-width: 100%;
    object-fit: contain;
}

/* Media Queries */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .supported-devices {
        padding-top: 40px;
        padding-bottom: 0;
    }
    
    .content-container {
        padding-block: 60px;
    }
    
    .line {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .supported-devices {
        width: 100%;
        align-items: start;
        box-sizing: border-box;
        flex-direction: column;
        height: auto;
        padding: 20px;
        display: block;
    }
    
    .logo-container {
        width: 100%;
        max-width: 100%;
    }
    
    .device-logo {
        max-height: 20px;
    }
    
    .line {
        display: none;
    }
}

/* RTL Support */
/* Duplicate RTL rule removed */ 

/* For mobile devices, make it even shorter if needed */
@media (max-width: 768px) {
    .hero {
        height: 70vh; /* Even shorter on mobile */
    }
} 

/* Add media queries for responsive behavior */
@media screen and (max-width: 1024px) {
    .hero {
        /* Change background image for tablet */
        background: linear-gradient(rgba(0, 0, 0, 0.164), rgba(0, 0, 0, 0.5)), url('/images/hero/tablette.webp');
        background-size: cover;
        background-position: center;
        height: 100vh; /* Will adjust with viewport height */
    }

    .hero-content {
        padding-top: 10rem; /* Adjust padding for tablet */
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 0 5%;
        background: linear-gradient(rgba(0, 0, 0, 0.164), rgba(0, 0, 0, 0.5)), url('/images/hero/mobile.webp');
        background-size: cover;
        background-position: center;
        height: 100vh; /* Will adjust with viewport height */
    }

    .hero-content {
        padding-top: 13rem;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Add this to ensure smooth transitions */
@media screen and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
}



.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    padding: 6px 15px;
    background-color: #25D366;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-button span {
    font-family: Arial, sans-serif;
    font-size: 16px;
}

/* Add these styles to fix the hero section */
.hero {
    position: relative;
    background-attachment: fixed; /* Remove this if you have it - it can cause issues on mobile */
    overflow: hidden;
    will-change: transform; /* Optimize performance */
    -webkit-transform: translateZ(0); /* Prevent mobile safari flickering */
    transform: translateZ(0);
}

/* Smooth curve animation */
.curve-container {
    position: relative;
    overflow: hidden;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Optional: Add a smooth scroll behavior to the entire page */
html {
    scroll-behavior: smooth;
}

/* If you want to add a fade-in animation for the hero content */
.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add smooth transition for the curve */
.curve {
    transition: transform 0.3s ease-out;
}

/* Disable any parallax effects on mobile */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important; /* Force scroll on mobile */
    }
} 

/* Pricing Notice */
.pricing-notice {
    background: rgba(15, 37, 45, 0.95);
    border: 1px solid #159ecf;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 800px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-notice p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-notice strong {
    color: #0adf98;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.payment-warning {
    background: rgba(255, 69, 58, 0.1);
    border-left: 4px solid #ff453a;
    padding: 1rem;
    margin-top: 1rem;
    text-align: left;
    border-radius: 4px;
}

.payment-warning strong {
    color: #ff453a !important;
    display: inline !important;
    margin-right: 0.5rem;
}

.payment-warning span {
    color: #e0e0e0;
    font-size: 0.9rem;
}