    /* Global Styles */
    :root {
        --primary-color: #008080;
        --primary-dark: #006666;
        --primary-light: #00a3a3;
        --secondary-color: #FF7A00;
        --secondary-dark: #E56D00;
        --secondary-light: #FF9A33;
        --white: #fff;
        --secondary-bg: #e4e4e4;
        --black: #000;
        --light-text: #777;
        --dark-text: #333;
        --teal-gradient: linear-gradient(135deg, #008080 0%, #00a3a3 100%);
        --orange-gradient: linear-gradient(135deg, #FF7A00 0%, #FFA133 100%);
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        color: var(--dark-text);
        line-height: 1.6;
        direction: rtl;
        background-color: #f9f9f9;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    h1,
    h2,
    h3,
    h4 {
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: var(--dark-text);
    }

    ul {
        list-style: none;
    }

    .btn {
        display: inline-block;
        background: var(--primary-color);
        color: var(--white);
        padding: 12px 25px;
        /* border-radius: 10px; */
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        position: relative;
        overflow: hidden;
    }

    .btn-secondary {
        background: var(--secondary-color);


    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
    }

    .btn-secondary:hover {
        box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);

    }

    .btn:active {
        transform: translateY(1px);
    }

    .btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%); */
        transition: all 0.3s;
    }

    /* .btn:hover::after {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
        } */

    section {
        padding: 100px 0;
        position: relative;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 80px;
        height: 3px;
        background: var(--teal-gradient);
        border-radius: 3px;
    }

    /* Header Styles */
    header {
        background-color: var(--primary-color);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        padding: 10px 0;
        transition: all 0.3s ease;
    }

    header.scrolled {
        padding: 3px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    header .container {
        display: flex;
        flex-direction: row-reverse;
        /* This will reverse the order */
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        height: 50px;
        /* Fixed height for logo container */
    }

    .logo img {
        height: 100%;
        /* Maintain aspect ratio */
        width: auto;
        /* Prevent stretching */
        max-height: 50px;
        /* Maximum logo height */
        object-fit: contain;
        /* Ensure image fits properly */
    }

    .logo p {
        color: var(--light-text);
        margin-right: 10px;
        font-size: 1rem;
    }

    nav {
        background-color: #008080;
        /* Teal background */
        padding: 0 20px;
        /* Add some padding */
        border-radius: 5px;
        /* Optional rounded corners */
    }

    nav ul {
        display: flex;
    }

    nav ul li {
        margin-right: 25px;
        position: relative;
    }

    nav ul li a {
        color: white !important;
        /* White text */
        font-weight: 600;
        transition: color 0.3s ease;
        padding: 5px 0;
    }

    nav ul li a:hover {
        /* color: var(--primary-color); */
        color: var(--secondary-color) !important;
        /* Orange on hover */
    }

    nav ul li::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--orange-gradient);
        /* Orange underline on hover */
        transition: width 0.3s ease;
    }

    nav ul li:hover::after {
        width: 100%;
        left: 0;
    }

    .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(rgb(29, 136, 125), rgba(29, 136, 125, 0.367)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        color: var(--white);
        padding: 180px 0 120px;
        text-align: right;
        position: relative;
        overflow: hidden;
        transition: background-image 1s ease-in-out;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0.234) 100%);
    }

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

    .hero-content {
        flex: 1;
        padding-left: 50px;
        animation: fadeInUp 1s ease;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.3;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 600px;
    }

    .hero-image {
        flex: 1;
        text-align: left;
        position: relative;
        animation: fadeInRight 1s ease;
    }

    .hero-image img {
        max-width: 100%;
        height: 500px;
        animation: float 6s ease-in-out infinite;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Ensure stats display properly on mobile */
    @media (max-width: 768px) {
        nav {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 80%;
            height: calc(100vh - 80px);
            background: var(--primary-color);
            flex-direction: column;
            padding: 30px;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        nav.active {
            left: 0;
            background: var(--primary-color);
        }

        nav ul li {
            margin: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav ul li a {
            display: block;
            padding: 10px 0;
        }

        .mobile-menu {
            color: white;
            /* White menu icon */
        }
    }

    .logo img {
        max-width: 150px;
        /* Slightly smaller on mobile */
    }

    nav.active {
        left: 0;
        /* Changed from right to left */
    }


    /* Warranty Section */
    .warranty {
        background: var(--secondary-dark);
        color: var(--white);
        text-align: center;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .warranty::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .warranty::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -30px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .warranty-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        animation: pulse 2s infinite;
    }

    .warranty-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

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

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Features Section */
    .features {
        background-color: #f5f5f5;
        text-align: center;
    }

    .features h2 {
        color: var(--primary-color);
        margin-bottom: 50px;
        font-size: 2.5rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: var(--white);
        padding: 40px 25px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.318);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

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

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: var(--teal-gradient);
        transition: all 0.3s ease;
    }

    .feature-card:nth-child(even)::before {
        background: var(--orange-gradient);
    }

    .feature-card:hover::before {
        height: 10px;
    }

    .feature-card i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

    .feature-card:nth-child(even) i {
        color: var(--secondary-color);
    }

    .feature-card:hover i {
        transform: scale(1.2);
    }

    .feature-card h3 {
        margin-bottom: 15px;
        font-size: 1.4rem;
        color: var(--primary-dark);
    }

    .feature-card:nth-child(even) h3 {
        color: var(--secondary-dark);
    }

    .feature-card p {
        color: var(--light-text);
        font-size: 1rem;
    }

    /* Special Features Section */
    .special-features {
        text-align: center;
        background: var(--secondary-bg);
    }

    .special-features h2 {
        color: var(--primary-color);
        margin-bottom: 50px;
        font-size: 2.5rem;
    }

    .features-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns */
        gap: 20px;
        margin-top: 30px;

    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .features-list {
            grid-template-columns: repeat(2, 1fr);
            /* 2 columns on tablet */
        }
    }

    @media (max-width: 576px) {
        .features-list {
            grid-template-columns: 1fr;
            /* 1 column on mobile */
        }
    }

    .feature-item {
        background: var(--white);
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.226);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 1px solid #eee;
        min-height: 80px;
        /* Added for consistent height */
    }

    .feature-item:nth-child(odd) {
        border-top: 3px solid var(--primary-color);
    }

    .feature-item:nth-child(even) {
        border-top: 3px solid var(--secondary-color);
    }

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

    .feature-item:nth-child(odd):hover {
        background: var(--primary-color);
        color: var(--white);
    }

    .feature-item:nth-child(even):hover {
        background: var(--secondary-color);
        color: var(--white);
    }

    .feature-item i {
        margin-left: 10px;
        font-size: 1.3rem;
        transition: all 0.3s ease;
    }

    .feature-item:hover i {
        transform: rotate(360deg);
    }

    .section-title h2::after {
        display: none;
    }

    /* Products Section */
    .products {
        background-color: #f5f5f5;
        text-align: center;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .product-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.4s ease;
        position: relative;
        padding: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

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

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: var(--teal-gradient);
        transition: all 0.3s ease;
        z-index: 1;
    }

    .product-card:nth-child(even)::before {
        background: var(--orange-gradient);
    }

    .product-card:hover::before {
        height: 10px;
    }

    .product-image {
        height: 380px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
        padding: 20px;
        margin: -15px -15px 15px -15px;
        border-radius: 10px 10px 0 0;
    }

    .product-image img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        transition: all 0.5s ease;
    }

    .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    .product-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--secondary-color);
        color: var(--white);
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        z-index: 2;
    }

    .product-content {
        padding: 0 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-content h3 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .product-card:nth-child(even) .product-content h3 {
        color: var(--secondary-color);
    }

    .product-specs {
        margin: 20px 0;
    }

    .product-specs li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: var(--light-text);
    }

    .product-specs li i {
        margin-left: 10px;
        color: var(--primary-color);
    }

    .product-card:nth-child(even) .product-specs li i {
        color: var(--secondary-color);
    }

    .product-price {
        margin-top: auto;
    }

    .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
        display: block;
    }

    .product-card:nth-child(even) .price {
        color: var(--secondary-color);
    }

    .old-price {
        text-decoration: line-through;
        color: var(--light-text);
        font-size: 1rem;
        margin-right: 5px;
    }

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


    /* About Section */
    .about {
        background: var(--secondary-bg);
    }

    .about .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    .about-image {
        flex: 1;
        position: relative;
        /* border-radius: 15px; */
        overflow: hidden;
        /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    }

    .about-image img {
        width: 100%;
        transition: all 0.5s ease;
    }

    /* .about-image:hover img {
            transform: scale(1.05);
        } */

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(0, 128, 128, 0.1); */
        z-index: 1;
        /* transition: all 0.3s ease; */
    }

    /* .about-image:hover::before {
            background: rgba(0, 128, 128, 0);
        } */

    .about-content {
        flex: 1;
    }

    .about-content h2 {
        color: var(--primary-color);
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .about-content p {
        margin-bottom: 20px;
        color: var(--light-text);
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .stats {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        text-align: center;
        flex: 1;
        min-width: 120px;
        padding: 20px;
        background: rgba(0, 128, 128, 0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .stat:nth-child(even) {
        background: rgba(255, 123, 0, 0.1);
    }

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

    .stat::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    .stat:nth-child(even)::before {
        background: var(--secondary-color);
    }

    .stat:hover::before {
        height: 8px;
    }

    .counter {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .stat:nth-child(even) .counter {
        color: var(--secondary-color);
    }

    .stat p {
        color: var(--light-text);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    /* Contact Section */
    .contact {
        background: #f5f5f5;
    }

    .contact h2 {
        text-align: center;
        color: var(--primary-color);
        margin-bottom: 50px;
        font-size: 2.5rem;
    }

    .contact-container {
        display: flex;
        gap: 50px;
    }

    .contact-info {
        flex: 1;
        background: var(--white);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .info-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-left: 15px;
        width: 50px;
        height: 50px;
        background: rgba(0, 128, 128, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .info-item:nth-child(even) i {
        color: var(--secondary-color);
        background: rgba(255, 122, 0, 0.1);
    }

    .info-item:hover i {
        background: var(--primary-color);
        color: var(--white);
        transform: rotate(15deg);
    }

    .info-item:nth-child(even):hover i {
        background: var(--secondary-color);
    }

    .social-links {
        display: flex;
        margin-top: 40px;
        gap: 15px;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(0, 128, 128, 0.1);
        color: var(--primary-color);
        border-radius: 50%;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }

    .social-links a:nth-child(even) {
        background: rgba(255, 122, 0, 0.1);
        color: var(--secondary-color);
    }

    .social-links a:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-5px);
    }

    .social-links a:nth-child(even):hover {
        background: var(--secondary-color);
    }

    .contact-form {
        flex: 1;
        background: var(--white);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #ddd;
        border-radius: 50px;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .form-group textarea {
        height: 150px;
        resize: vertical;
        border-radius: 20px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.2);
        outline: none;
    }

    /* Footer */
    footer {
        background: #222;
        color: var(--white);
        padding: 70px 0 0;
        position: relative;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: var(--teal-gradient);
    }

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

    .contact-section {
        padding-right: 20px;
        /* Extra space for RTL */
    }

    .contact-link {
        display: flex;
        align-items: center;
        gap: 12px;
        /* Space between icon and text */
        color: #bbb;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-icon {
        font-size: 1.1rem;
        min-width: 20px;
        /* Ensures consistent spacing */
    }

    .contact-text {
        text-align: right;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .contact-link {
            justify-content: center;
            gap: 10px;
        }

        .contact-text {
            text-align: center;
        }
    }

    .footer-section h3 {
        color: var(--primary-color);
        margin-bottom: 25px;
        font-size: 1.5rem;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-section:nth-child(even) h3 {
        color: var(--secondary-color);
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 2px;
        background: var(--teal-gradient);
    }

    .footer-section:nth-child(even) h3::after {
        background: var(--orange-gradient);
    }

    .footer-section p,
    .footer-section a {
        color: #bbb;
        margin-bottom: 15px;
        display: block;
        transition: all 0.3s ease;
    }

    .footer-section a:hover {
        color: var(--primary-color);
        padding-right: 10px;
    }

    .footer-section:nth-child(even) a:hover {
        color: var(--secondary-color);
    }

    /* Add this CSS to your existing styles */
    .logo-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-logo {
        max-height: 120px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-section {
            margin-bottom: 30px;
        }

        .logo-section {
            order: 3;
            /* Moves logo to bottom on mobile */
            margin-top: 20px;
        }

        .footer-logo {
            max-height: 100px;
            margin: 0 auto;
        }
    }

    .copyright {
        text-align: center;
        padding: 25px 0;
        border-top: 1px solid #444;
        color: #bbb;
        font-size: 14px;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--teal-gradient);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 5px 20px rgba(0, 128, 128, 0.3);
        cursor: pointer;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 992px) {

        .hero .container,
        .about .container {
            flex-direction: column;
        }

        .hero-content,
        .about-content {
            padding-left: 0;
            margin-bottom: 50px;
            text-align: center;
        }

        .hero-image {
            margin-top: 50px;
            text-align: center;
        }

        .contact-container {
            flex-direction: column;
        }

        .contact-info {
            margin-bottom: 40px;
        }
    }

    @media (max-width: 768px) {
        nav {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 80%;
            height: calc(100vh - 80px);
            background: var(--white);
            flex-direction: column;
            padding: 30px;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        nav.active {
            right: 0;
        }

        nav ul {
            flex-direction: column;
        }

        nav ul li {
            margin: 15px 0;
        }

        .mobile-menu {
            display: block;
        }

        section {
            padding: 80px 0;
        }

        .hero {
            padding: 150px 0 80px;
        }

        .hero-content h1 {
            font-size: 2.2rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

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

    @media (max-width: 576px) {
        .stats {
            flex-direction: column;
        }

        .stat {
            width: 100%;
        }

        .feature-item {
            justify-content: right;
            padding: 20px 15px;
        }

        .hero-content h1 {
            font-size: 2rem;
        }

        .warranty-content h2 {
            font-size: 2rem;
        }

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

        .footer-section h3::after {
            right: 50%;
            transform: translateX(50%);
        }
    }

    /* ####################################### */
    :root {
        --primary-color: #008080;
        --primary-dark: #006666;
        --primary-light: #00a3a3;
        --secondary-color: #FF7A00;
        --secondary-dark: #E56D00;
        --secondary-light: #FF9A33;
        --white: #fff;
        --secondary-bg: #e4e4e4;
        --black: #000;
        --light-text: #777;
        --dark-text: #333;
        --teal-gradient: linear-gradient(135deg, #008080 0%, #00a3a3 100%);
        --orange-gradient: linear-gradient(135deg, #FF7A00 0%, #FFA133 100%);
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        color: var(--dark-text);
        line-height: 1.6;
        direction: rtl;
        background-color: #f9f9f9;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    h1,
    h2,
    h3,
    h4 {
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: var(--dark-text);
    }

    ul {
        list-style: none;
    }

    .btn {
        display: inline-block;
        background: var(--primary-color);
        color: var(--white);
        padding: 12px 25px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        position: relative;
        overflow: hidden;
    }

    .btn-secondary {
        background: var(--secondary-color);
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
    }

    .btn-secondary:hover {
        box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    }

    .btn:active {
        transform: translateY(1px);
    }

    section {
        padding: 100px 0;
        position: relative;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 80px;
        height: 3px;
        background: var(--teal-gradient);
        border-radius: 3px;
    }

    /* Header Styles */
    header {
        background-color: var(--primary-color);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        padding: 10px 0;
        transition: all 0.3s ease;
    }

    header.scrolled {
        padding: 3px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    header .container {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

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

    .logo img {
        height: 100%;
        width: auto;
        max-height: 50px;
        object-fit: contain;
    }

    .logo p {
        color: var(--light-text);
        margin-right: 10px;
        font-size: 1rem;
    }

    .logo img {
        max-width: 150px;
    }

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

    .logo-section {
        order: 3;
        /* Moves logo to bottom on mobile */
        margin-top: 20px;
    }

    nav {
        background-color: #008080;
        padding: 0 20px;
        border-radius: 5px;
    }

    nav ul {
        display: flex;
    }

    nav ul li {
        margin-right: 25px;
        position: relative;
    }

    nav ul li a {
        color: white !important;
        /* White text */
        font-weight: 600;
        transition: color 0.3s ease;
        padding: 5px 0;
    }

    nav ul li a:hover {
        /* color: var(--primary-color); */
        color: var(--secondary-color) !important;
        /* Orange on hover */
    }

    nav ul li::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--orange-gradient);
        /* Orange underline on hover */
        transition: width 0.3s ease;
    }

    nav ul li:hover::after {
        width: 100%;
        left: 0;
    }

    .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
    }


    /* Product Hero Section */
    .product-hero {
        background: linear-gradient(rgb(29, 136, 125), rgba(29, 136, 125, 0.367)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        color: var(--white);
        padding: 180px 0 100px;
        text-align: right;
        position: relative;
        overflow: hidden;
        transition: background-image 1s ease-in-out;
    }

    .product-hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0.234) 100%);
    }

    .product-hero .container {
        position: relative;
        z-index: 1;
    }

    .product-hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.3;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .product-hero p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 800px;
    }

    /* Product Categories */
    .product-categories {
        padding: 80px 0;
        background-color: #f5f5f5;
    }

    .category-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .category-tab {
        padding: 12px 25px;
        background: var(--white);
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        border: 2px solid transparent;
    }

    .category-tab.active,
    .category-tab:hover {
        background: var(--primary-color);
        color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
    }

    .category-tab:nth-child(even).active,
    .category-tab:nth-child(even):hover {
        background: var(--secondary-color);
        box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    }

    /* Product Grid */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .product-card {
        background: var(--white);
        border-radius: 15px;
        /* Rounded corners */
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        /* Stronger shadow */
        transition: all 0.4s ease;
        position: relative;
        padding: 15px;
        /* Space around edges */
        border: 1px solid rgba(0, 0, 0, 0.05);
        /* Subtle border */
        display: flex;
        flex-direction: column;
        height: 100%;
    }

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

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: var(--teal-gradient);
        transition: all 0.3s ease;
        z-index: 1;
    }

    .product-card:nth-child(even)::before {
        background: var(--orange-gradient);
    }

    .product-card:hover::before {
        height: 10px;
    }

    .product-image {
        height: 380px;
        /* Increased from 220px */
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
        padding: 20px;
        margin: -15px -15px 15px -15px;
        /* Align with card edges */
        border-radius: 10px 10px 0 0;
        /* Rounded top corners */
    }

    .product-image img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        transition: all 0.5s ease;
    }

    .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    .product-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--secondary-color);
        color: var(--white);
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        z-index: 2;
    }

    .product-content {
        padding: 0 10px;
        /* Space from edges */
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-content h3 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .product-card:nth-child(even) .product-content h3 {
        color: var(--secondary-color);
    }

    .product-specs {
        margin: 20px 0;
    }

    .product-specs li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: var(--light-text);
    }

    .product-specs li i {
        margin-left: 10px;
        color: var(--primary-color);
    }

    .product-card:nth-child(even) .product-specs li i {
        color: var(--secondary-color);
    }

    .product-price {
        margin-top: auto;
    }

    .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
        /* Add this line to create space below the price */
        display: block;
        /* Ensures the margin works properly */
    }

    .product-card:nth-child(even) .price {
        color: var(--secondary-color);
    }

    .old-price {
        text-decoration: line-through;
        color: var(--light-text);
        font-size: 1rem;
        margin-right: 5px;
    }

    /* Product Comparison */
    .product-comparison {
        background: var(--secondary-bg);
        padding: 80px 0;
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--white);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 20px;
        text-align: right;
        border-bottom: 1px solid #eee;
    }

    .comparison-table th {
        background: var(--primary-color);
        color: var(--white);
        font-weight: 600;
    }

    .comparison-table tr:nth-child(even) {
        background: rgba(0, 0, 0, 0.02);
    }

    .comparison-table tr:hover {
        background: rgba(0, 128, 128, 0.05);
    }

    .comparison-table .feature-name {
        font-weight: 600;
        color: var(--primary-dark);
    }

    .check-mark {
        color: #4CAF50;
        font-size: 1.2rem;
    }

    .cross-mark {
        color: #F44336;
        font-size: 1.2rem;
    }

    /* Product Details */
    .product-details {
        padding: 80px 0;
    }

    .details-container {
        display: flex;
        gap: 50px;
    }

    .product-gallery {
        flex: 1;
    }

    .main-image {
        width: 100%;
        height: 400px;
        object-fit: contain;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        background: var(--white);
        padding: 20px;
    }

    .thumbnail-container {
        display: flex;
        gap: 15px;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        background: var(--white);
        padding: 5px;
    }

    .thumbnail:hover,
    .thumbnail.active {
        border-color: var(--primary-color);
        transform: translateY(-5px);
    }

    .product-info {
        flex: 1;
    }

    .product-info h2 {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .product-meta {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        gap: 20px;
    }

    .rating {
        color: #FFC107;
    }

    .availability {
        color: #4CAF50;
        font-weight: 600;
    }

    .product-price-lg {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-color);
        margin: 20px 0;
    }

    .product-description {
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .specs-list li {
        margin-bottom: 10px;
        display: flex;
    }

    .spec-name {
        font-weight: 600;
        min-width: 150px;
        color: var(--primary-dark);
    }

    .product-actions {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .quantity-selector {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 50px;
        overflow: hidden;
    }

    .quantity-btn {
        width: 40px;
        height: 40px;
        background: #f5f5f5;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .quantity-input {
        width: 50px;
        height: 40px;
        text-align: center;
        border: none;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    /* FAQ Section */
    .product-faq {
        background: #f5f5f5;
        padding: 80px 0;
    }

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

    .faq-item {
        margin-bottom: 15px;
        background: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        color: var(--primary-color);
    }

    .faq-question i {
        transition: all 0.3s ease;
    }

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

    .faq-item.active .faq-question {
        background: rgba(0, 128, 128, 0.1);
    }

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

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

    /* Warranty Section */
    .warranty {
        background: var(--secondary-dark);
        color: var(--white);
        text-align: center;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .warranty::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .warranty::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -30px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .warranty-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        animation: pulse 2s infinite;
    }

    .warranty-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

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

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Footer */
    footer {
        background: #222;
        color: var(--white);
        padding: 70px 0 0;
        position: relative;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: var(--teal-gradient);
    }

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

    .contact-section {
        padding-right: 20px;
    }

    .contact-link {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #bbb;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-icon {
        font-size: 1.1rem;
        min-width: 20px;
    }

    .contact-text {
        text-align: right;
    }

    .footer-section h3 {
        color: var(--primary-color);
        margin-bottom: 25px;
        font-size: 1.5rem;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-section:nth-child(even) h3 {
        color: var(--secondary-color);
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 2px;
        background: var(--teal-gradient);
    }

    .footer-section:nth-child(even) h3::after {
        background: var(--orange-gradient);
    }

    .footer-section p,
    .footer-section a {
        color: #bbb;
        margin-bottom: 15px;
        display: block;
        transition: all 0.3s ease;
    }

    .footer-section a:hover {
        color: var(--primary-color);
        padding-right: 10px;
    }

    .footer-section:nth-child(even) a:hover {
        color: var(--secondary-color);
    }



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

    .footer-logo {
        max-height: 120px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .copyright {
        text-align: center;
        padding: 25px 0;
        border-top: 1px solid #444;
        color: #bbb;
        font-size: 14px;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--teal-gradient);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 5px 20px rgba(0, 128, 128, 0.3);
        cursor: pointer;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .product-hero h1 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 992px) {
        .details-container {
            flex-direction: column;
        }

        .product-gallery,
        .product-info {
            flex: none;
            width: 100%;
        }

        .main-image {
            height: 300px;
        }

        .comparison-table {
            display: block;
            overflow-x: auto;
        }
    }

    @media (max-width: 768px) {
        nav {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 80%;
            height: calc(100vh - 80px);
            background: var(--primary-color);
            flex-direction: column;
            padding: 30px;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .logo img {
            max-width: 150px;
        }

        nav.active {
            right: 0;
        }

        nav ul {
            flex-direction: column;
        }

        nav ul li {
            margin: 15px 0;
        }

        .mobile-menu {
            display: block;
            color: white;
        }

        section {
            padding: 60px 0;
        }

        .product-hero {
            padding: 150px 0 80px;
        }

        .product-hero h1 {
            font-size: 2.2rem;
        }

        .product-hero p {
            font-size: 1.1rem;
        }

        .product-actions {
            flex-direction: column;
        }

        .quantity-selector {
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .product-hero h1 {
            font-size: 2rem;
        }

        .category-tabs {
            flex-direction: column;
            align-items: center;
        }

        .product-grid {
            grid-template-columns: 1fr;
        }

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

        .footer-section h3::after {
            right: 50%;
            transform: translateX(50%);
        }

        .contact-text {
            text-align: center;
        }
    }

    /* Add this CSS to your existing styles */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animated-text {
        animation: fadeIn 1s ease-out forwards;
    }

    /* ######################## installition services################################ */

    /* Installation Hero Section */
    .installation-hero {
        background: linear-gradient(rgba(0, 128, 128, 0.8), rgba(0, 128, 128, 0.6)),
            url('assets/img/hero (1).png');
        background-size: cover;
        background-position: center;
        color: var(--white);
        padding: 180px 0 100px;
        text-align: center;
        position: relative;
        transition: background-image 1.5s ease-in-out;
    }

    .installation-hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .installation-hero p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .installation-hero {
            padding: 150px 0 80px;
        }

        .installation-hero h1 {
            font-size: 2.2rem;
        }

        .installation-hero p {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 576px) {
        .installation-hero h1 {
            font-size: 2rem;
        }
    }

    /* Benefits Section */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .benefit-card {
        background: var(--white);
        padding: 30px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        text-align: center;
    }

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

    .benefit-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .benefit-card h3 {
        color: var(--primary-dark);
        margin-bottom: 15px;
    }

    /* Process Steps */
    .process-steps {
        margin-top: 50px;
        position: relative;
    }

    .process-step {
        display: flex;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin-left: 30px;
        flex-shrink: 0;
    }

    .step-content {
        background: var(--white);
        padding: 25px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        flex-grow: 1;
    }

    .step-content h3 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    /* Gallery Section */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 50px;
    }

    .gallery-item {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        height: 250px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

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

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: var(--white);
        transform: translateY(100%);
        transition: all 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    /* Why Choose Us */
    .reasons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .reason-card {
        background: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
    }

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

    .reason-card i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .reason-card h3 {
        color: var(--primary-dark);
        margin-bottom: 15px;
    }

    /* CTA Section */
    .installation-cta {
        background: var(--primary-color);
        color: var(--white);
        text-align: center;
        padding: 80px 0;
    }

    .installation-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .installation-cta p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .cta-buttons .btn {
        margin: 10px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .process-steps::before {
            display: none;
        }

        .process-step {
            flex-direction: column;
        }

        .step-number {
            margin-left: 0;
            margin-bottom: 20px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    /* ##################### Contacts ########################### */

    /* Contact Cards Section - Matching Installation Process Style */
    .contact-cards-section {
        padding: 80px 0 40px;
    }

    .contact-cards-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .contact-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        position: relative;
        padding: 25px 20px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        cursor: pointer;
    }

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

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: var(--teal-gradient);
        transition: all 0.3s ease;
    }

    .contact-card:nth-child(even)::before {
        background: var(--orange-gradient);
    }

    .contact-card:hover::before {
        height: 8px;
    }

    .contact-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .contact-card:nth-child(even) .contact-icon {
        color: var(--secondary-color);
    }

    .contact-card h3 {
        color: var(--primary-dark);
        margin-bottom: 15px;
        text-align: center;
        font-size: 1.3rem;
    }

    .contact-card:nth-child(even) h3 {
        color: var(--secondary-dark);
    }

    .contact-card p {
        color: var(--light-text);
        text-align: center;
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    /* Form and Map Section */
    .form-map-section {
        padding: 40px 0 80px;
    }

    .form-map-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    /* Map on Left */
    .map-container {
        height: 100%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Form on Right */
    .contact-form {
        background: var(--white);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-title {
        color: var(--primary-color);
        margin-bottom: 25px;
        text-align: center;
        font-size: 1.8rem;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--primary-dark);
        font-weight: 600;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #eee;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
        outline: none;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 1.1rem;
        margin-top: 10px;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .contact-cards-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .contact-cards-container {
            grid-template-columns: 1fr;
        }

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

        .map-container {
            height: 300px;
        }
    }

    /* ##################### warranty ############################################################################################### */
    /* Animation Keyframes */
    @keyframes pulse {
        0% {
            transform: scale(0.95);
            opacity: 0.8;
        }

        50% {
            transform: scale(1.05);
            opacity: 1;
        }

        100% {
            transform: scale(0.95);
            opacity: 0.8;
        }
    }

    @keyframes laser {
        0% {
            top: 20%;
        }

        50% {
            top: 80%;
        }

        100% {
            top: 20%;
        }
    }

    /* Section Styling */
    .qr-section {
        padding: 4rem 1rem;
        text-align: center;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .subtitle {
        color: var(--light-text);
        margin-top: 1rem;
    }

    /* Scanner Elements */
    .scanner-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .scanner-init {
        position: relative;
    }

    .scan-trigger {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: white;
        border: 3px solid var(--primary-light);
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .scan-trigger:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 128, 128, 0.1);
    }

    .pulse-circle {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    .scan-icon {
        font-size: 3rem;
        color: var(--primary-color);
        position: relative;
        z-index: 2;
    }

    .scan-label {
        display: block;
        margin-top: 1rem;
        font-weight: 600;
        color: var(--primary-dark);
    }

    /* Active Scanner */
    .scanner-active {
        position: relative;
        width: 100%;
        padding-top: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 128, 128, 0.1);
    }

    .scanner-frame {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .scan-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .laser-line {
        position: absolute;
        left: 10%;
        right: 10%;
        height: 2px;
        background: rgba(255, 0, 0, 0.4);
        animation: laser 2s infinite;
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }

    /* Results Styling */
    .scan-results {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        margin-top: 2rem;
        box-shadow: 0 8px 30px rgba(0, 128, 128, 0.1);
        border: 2px dashed teal;
    }

    .results-header {
        margin-bottom: 1.5rem;
    }

    .success-icon {
        font-size: 3rem;
        color: #4CAF50;
        margin-bottom: 1rem;
    }

    .results-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    @media (min-width: 768px) {
        .results-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .result-item {
        padding: 1rem;
        background: rgba(0, 128, 128, 0.03);
        border-radius: 10px;
    }

    .result-label {
        color: var(--primary-dark);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .result-value {
        color: var(--dark-text);
    }

    .btn-rescan {
        margin-top: 2rem;
        padding: 0.8rem 2rem;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-rescan:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .section-title h2 {
            font-size: 1.8rem;
        }

        .scan-trigger {
            width: 150px;
            height: 150px;
        }

        .scan-icon {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .section-title h2 {
            flex-direction: column;
            gap: 0.5rem;
        }

        .icon-circle {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }
    }

    /* //##################################### 6kva,8kva,10kva ###################################### */

    :root {
        --primary2: #008080;
        --primary-light2: #00a3a3;
        --dark2: #333;
        --light2: #f9f9f9;
        --gray2: #eee;
        --transition2: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background-color: var(--light2);
        color: var(--dark2);
        line-height: 1.6;
    }

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

    /* Product Card - Compact Version */
    .product-card2 {
        display: flex;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin: 30px auto;
        max-width: 1000px;
        transform: translateY(30px);
        opacity: 0;
        animation: fadeUp2 0.6s ease forwards;
    }

    .product-image2 {
        flex: 1;
        min-width: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background-color: var(--primary-light2);
    }

    .product-image2 img {
        max-width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
    }

    .product-info2 {
        flex: 1;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .product-info2 h1 {
        color: var(--primary2);
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .product-info2 p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 15px;
    }

    .product-price2 {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary2);
        margin-bottom: 15px;
    }

    .whatsapp-btn2 {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-light2);
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition2);
        width: fit-content;
    }

    .whatsapp-btn2 i {
        margin-left: 8px;
        font-size: 1.2rem;
    }

    .whatsapp-btn2:hover {
        transform: translateY(-2px);
    }

    /* Technical Specifications */
    .specifications2 {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        margin: 30px auto;
        max-width: 1000px;
    }

    .specifications2 h2 {
        color: var(--primary2);
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .spec-grid2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .spec-group2 {
        margin-bottom: 15px;
    }

    .spec-group2 h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 1.1rem;
        color: var(--primary-light2);
        border-bottom: 2px solid var(--gray2);
        padding-bottom: 5px;
    }

    .spec-item2 {
        display: flex;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .spec-item2 strong {
        flex: 0 0 140px;
        font-weight: 600;
    }

    .spec-item2 span {
        flex: 1;
    }

    /* Animations */
    @keyframes fadeUp2 {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .product-card2 {
            flex-direction: column;
        }

        .product-image2 {
            min-height: 200px;
            padding: 15px;
        }

        .product-info2 {
            padding: 20px 15px;
        }

        .spec-item2 {
            flex-direction: column;
            gap: 3px;
        }

        .spec-item2 strong {
            flex: 1;
        }
    }