* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
        }

        .navbar {
            background: white;
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
                direction: ltr;
        }

        .logo {
            font-size: 22px;
            font-weight: bold;
            color: #667eea;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .login-btn {
            background: #4285f4;
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }

        .login-btn:hover {
            background: #3367d6;
        }

        .hero {
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.4;
        }

        .search-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

        .search-box {
            width: 100%;
            padding: 18px 60px 18px 20px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            outline: none;
        }

        .search-btn {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #4caf50;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .search-btn:hover {
            background: #45a049;
        }

        .search-btn::before {
            content: "🔍";
            font-size: 20px;
        }

        /* قسم المنتجات */
        .services-section {
            padding: 80px 20px;
            background: white;
            position: relative;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            position: relative;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s, box-shadow 0.3s;
        }
      .services-features {
display:flex;
justify-content: space-around;
margin: 10px 0;
      }

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

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
            z-index: 1;
        }

        .service-card h3 {
            position: absolute;
            /* bottom: 30px; */
            right: 30px;
            left: 30px;
            color: white;
            font-size: 32px;
            text-align: center;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .service-card p {
            position: absolute;
            bottom: 30px;
            right: 30px;
            left: 30px;
            color: white;
            font-size: 16px;
            text-align: center;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .service-card.tiles {
            background: linear-gradient(135deg, #e85d04 0%, #dc2f02 100%);
        }

        .service-card.shades {
            background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
        }

        .service-card.sessions {
            background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
        }

        .service-card.pergolas {
            background: linear-gradient(135deg, #06d6a0 0%, #118ab2 100%);
        }

        .service-card.tents {
            background: linear-gradient(135deg, #457b9d 0%, #1d3557 100%);
        }

        .service-card.fences {
            background: linear-gradient(135deg, #8338ec 0%, #3a0ca3 100%);
        }
        .feature-item{
           height: 162px;
    background: #23726c;
        width: 30%;
        }
        .feature-item h3,p{
            color:white;
        }
        .intro-text{
            color:black;
            font-size:20px;
            margin:0 25px;
        }
        .about-description{
               color:black;
            font-size:20px;
            margin:0 25px;
        }
        /* قسم المقالات */
        .blog-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            color: #333;
            margin-bottom: 60px;
            font-weight: bold;
        }

        .blog-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

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

        .blog-image {
            height: 250px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
        }

        .blog-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            color: #667eea;
            z-index: 1;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-content h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.6;
            min-height: 80px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 14px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .blog-excerpt {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }

        /* الأزرار العائمة - تظهر فقط في قسم المنتجات وما بعده */
        .floating-buttons {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .floating-buttons.visible {
            opacity: 1;
            pointer-events: all;
        }

        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }

        .float-btn:hover {
            transform: scale(1.1);
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .phone-btn {
            background: #4285f4;
        }

        .menu-btn {
            display: none;
            background: #333;
            color: white;
            font-size: 24px;
            padding: 10px 15px;
            border: none;
            cursor: pointer;
        }
        .about-content{
               display: flex;
    flex-direction: row-reverse;
    margin:0 40px;
        }
.about-image img{
  width:100%;
  height:400px;
}
        .container{
display: flex;
    width: 100%;
    flex-direction: column;
        }
        .container form{
display: flex;
    width: 50%;
    flex-direction: column;
    margin: auto;
        }
                .container form input{
padding: 15px;
        }
                        .container form button{
padding: 15px;
color: white;
background-color: #264653;
        }
        @media (max-width: 968px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .about-content {
                                 
                grid-template-columns: 1fr;
                gap: 40px;

            }

            .about-title {
                font-size: 36px;
            }

            .about-description {
                font-size: 18px;
            }

            .services-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .services-detail-content {
                padding: 30px 20px;
            }

            .intro-text {
                font-size: 16px;
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                right: 0;
                background: white;
                width: 100%;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 28px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }

            .section-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .blog-content h3 {
                font-size: 16px;
                min-height: auto;
            }

            .about-content {
    display: flex;
    flex-direction: column;
}            

            .about-image {
                height: 300px;
                display: flex;
             flex-direction: column;
             width: 100%;
               }

            .about-title {
                font-size: 32px;
            }

            .about-description {
                font-size: 16px;
            }

            .services-features {
                    display: flex;
    flex-direction: column;
            }
.feature-item {
    height: 162px;
    background: #23726c;
    width: 100%;
}
            .service-card {
                height: 250px;
            }

            .service-card h3 {
                font-size: 28px;
            }

            .floating-buttons {
                left: 10px;
            }

            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }
    