/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: #e74c3c;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: #d35440;
        }
        
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #d35440;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: #2c3e50;
            position: relative;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #e74c3c;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
        }
        .logo img {
            height: 70px;
        }
        .logo span {
            color: #e74c3c;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #2c3e50;
            font-weight: 600;
            font-size: 1rem;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #e74c3c;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fff8f0 0%, #fff0e6 100%);
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
        }
        
        .hero-image img {
            max-width: 400px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: rotate(5deg);
            border: 10px solid white;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .hero .btn {
            margin-top: 15px;
        }
        
        /* Products Section */
        .products {
            background-color: white;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background-color: #f9f9f9;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .product-image {
            height: 220px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-info h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .product-info p {
            color: #666;
            margin-bottom: 15px;
        }
        
        /* About Section */
        .about {
            background-color: #f9f9f9;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .about-text p {
            color: #555;
            margin-bottom: 15px;
        }
        
        .about-stats {
            display: flex;
            margin-top: 30px;
        }
        
        .stat-item {
            flex: 1;
            text-align: center;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            margin: 0 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #e74c3c;
            display: block;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #555;
            font-weight: 600;
        }
        
        /* Quality Section */
        .quality {
            background-color: white;
        }
        
        .quality-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .quality-card {
            background: linear-gradient(135deg, #fff8f0 0%, #fff0e6 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .quality-card:hover {
            transform: translateY(-5px);
        }
        
        .quality-icon {
            font-size: 3rem;
            color: #e74c3c;
            margin-bottom: 20px;
        }
        
        .quality-card h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .quality-card p {
            color: #555;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: #f9f9f9;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slide {
            text-align: center;
            padding: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 20px;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #2c3e50;
        }
        
        .testimonial-role {
            color: #777;
            font-size: 0.9rem;
        }
        
        .testimonial-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 15px;
            border: 5px solid #fff8f0;
        }
        
        /* Contact Section */
        .contact {
            background-color: #2c3e50;
            color: white;
        }
        
        .contact .section-title {
            color: white;
        }
        
        .contact .section-title:after {
            background-color: #e74c3c;
        }
        
        .contact-content {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            color: #ddd;
        }
        
        .contact-info a {
            color: #e74c3c;
            font-weight: 600;
        }
        
        .contact-info a:hover {
            color: #f0a56d;
        }
        
        .map-container {
            flex: 1;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background-image: url('https://placehold.co/600x400/2c3e50/white?text=Qatar+Location');
            background-size: cover;
            background-position: center;
        }
        
        /* Footer */
        footer {
            background-color: #1a252f;
            color: #ddd;
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }
        
        .footer-logo span {
            color: #e74c3c;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: #ddd;
            margin: 0 15px;
            font-weight: 500;
        }
        
        .footer-links a:hover {
            color: #e74c3c;
        }
        
        .copyright {
            margin-top: 20px;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.show {
                display: block;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid #eee;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        .order-btn{
            margin: 20px 0;
            background: #e74c3c;
            padding: 15px 30px;
            color: #ffffff;
            font-size: 1.2rem;
            line-height: 1.5;
            border-radius: 40px;
            max-width: 300px;
            display: flex;
            border: 1px solid #e74c3c;
            justify-content: space-between;
            text-transform: uppercase;
            width: 100%;
            font-weight: 600;
        }
        .order-btn:hover{
            background: #ffffff;
            color: #e74c3c;
        }
        .viewproduct-btn{
            margin: 20px 0;
            background: #e74c3c;
            padding: 15px 30px;
            color: #ffffff;
            font-size: 1.1rem;
            line-height: 1.5;
            border-radius: 40px;
            max-width: 300px;
            display: flex;
            border: 1px solid #e74c3c;
            justify-content: space-between;
            text-transform: uppercase;
            width: 100%;
            letter-spacing: 1px;
        }
        .viewproduct-btn:hover{
            background: #ffffff;
            color: #e74c3c;
        }
        ul{
            margin-left: 15px;
        }
        
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        
        .products-page .about-content.products-sec {
            align-items: start;
        }
        
        
        /* Header */
        .page-header { text-align: center; margin-bottom: 40px; }
        .page-header h1 { font-size: 2.5rem; margin-bottom: 10px; color: #111; }
        .page-header p { color: #666; font-size: 1.1rem; }

        

        /* Product Card */
        .product-card { 
            background: #fff; 
            border-radius: 12px; 
            overflow: hidden; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
            transition: transform 0.2s, box-shadow 0.2s; 
            display: flex;
            flex-direction: column;
        }
        .product-card:hover { 
            transform: translateY(-8px); 
            box-shadow: 0 12px 24px rgba(0,0,0,0.1); 
        }
        
        .product-card a { 
            text-decoration: none; 
            color: inherit; 
            display: flex; 
            flex-direction: column; 
            height: 100%; 
        }
        
        .product-card img { 
            width: 100%; 
            height: 250px; 
            object-fit: cover; 
            background: #eee; 
        }
        
        .card-info { 
            padding: 20px; 
            text-align: center; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
            justify-content: space-between; 
            align-items: center;
        }
        
        .card-info h3 { margin: 0 0 10px; font-size: 1.2rem; color: #222; }
        .card-info .meta { font-size: 0.9rem; color: #666; margin-bottom: 15px; }
        .card-info .price { font-size: 1.4rem; font-weight: bold; color: #e63946; margin-bottom: 20px; }
        .price{font-size: 1.5rem;}
        @media(max-width: 480px){
            .add-2-cart-btn {
              position: fixed;
              bottom: 0;
              left: 0;
              width: 100%;
              text-align: center;
              background: #fff;
              z-index: 1;
              display: flex;
              justify-content: center;
              box-shadow: 0px 0px 6px #e74c3c;
            }
            .header-container{
                padding: 10px 0 !important;
            }
            nav ul {
                top: 102px;
                margin-left: 0;
            }
              nav ul li {
                padding: 15px 30px;
                text-align: left;
            }
            .product-page .about .section-title{
            margin-bottom: 0;
            }
            
        }
        .mb-0{
            margin-bottom: 20px;
        }
        .nav-tabs-btn.active{
            background: #e74c3c !important;
            border: 1px solid #e74c3c !important;
        }
        .btn.home{
            height: auto;
            color:#fff;
        }
/* Base: 1 column on mobile */
.product-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 30px; 
}

/* 2 columns on tablets (min-width 600px) */
@media (min-width: 600px) {
    .product-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* 3 columns on desktops (min-width 900px) */
@media (min-width: 900px) {
    .product-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
}

/* 4 columns on large screens (min-width 1200px) */
@media (min-width: 1200px) {
    .product-grid { 
        grid-template-columns: repeat(4, 1fr); 
    }
}