/* CSS Variables */
:root {
    --primary: #2c3e50;
    --bg: #f8f9fa;
    --muted: #666;
    --card-bg: #ffffff;
    --accent: #FFD700;
    --accent-dark: #B8860B;
    --text-dark: #333;
    --text-light: #666;
    --border-light: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-image: url('images/gold.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    position: relative;
    min-height: 100vh;
}

/* Background Stack Layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/gold.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(182, 184, 140, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar {
    padding: 3px 0;
    
}

.nav-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100px;
    width:150px;
    margin-right: 100px; 
}

.nav-menu {
    display:flex ;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600 ;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2c3e50;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 45px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #969070 0%,  100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(121, 123, 0, 0.95);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/download.jpeg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 300;
}

.hero-description-ar {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    direction: rtl;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Intro Section */
.intro {
    position: relative;
    background: url("images/gold.jpg") no-repeat center center/cover;
    color: #333;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.intro .overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 15px;
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.side-img {
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.text .title-en,
.text .title-ar {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text .para-en,
.text .para-ar {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.text .title-ar,
.text .para-ar {
    direction: rtl;
    text-align: right;
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2c3e50;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
    color: white;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gold.jpg') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
}

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

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

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.service-text h3 {
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-text .ar {
    color: #FFD700;
    font-family: 'Amiri', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-text .ar {
    direction: rtl;
    text-align: right;
}

/* Stone Types Section */
.stone-types {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    color: white;
}

.stone-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gold.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

.stone-category {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category-title {
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.star {
    color: #FFD700;
    font-size: 2rem;
}

.category-description {
    text-align: center;
    margin-bottom: 40px;
}

.category-description p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.category-description .ar {
    direction: rtl;
    text-align: center;
    font-family: 'Amiri', serif;
}

.stone-samples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.sample-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sample-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.sample-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Travertine and Onyx Section */
.travertine-onyx {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    color: white;
}

.travertine-onyx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gold.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

.travertine-grid {
    grid-template-columns: repeat(4, 1fr);
}

.onyx-applications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.application-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.application-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.application-item h3 {
    color: #FFD700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

/* Quartz and Slab Section */
.quartz-slab {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    color: white;
}

.quartz-slab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gold.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

.quartz-grid {
    grid-template-columns: repeat(4, 1fr);
}

.slab-showcase {
    margin-top: 30px;
    text-align: center;
}

.slab-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Halls and Stairs Section */
.halls-stairs {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    color: white;
}

.halls-stairs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gold.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

.application-category {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.application-showcase {
    margin-top: 30px;
    text-align: center;
}

.application-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Entrances and Walls Section */
.entrances-walls {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    color: white;
}

.entrances-walls::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gold.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

/* Washbasins Section */
.washbasins {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    color: white;
}

.washbasins::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gold.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

/* Materials Showcase Section */
.materials-showcase {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.material-section {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.material-section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    margin: 0 auto;
    border-radius: 2px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.material-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-light);
}

.material-card:hover,
.material-card:focus {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.material-card:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.card-image {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.material-card:hover .card-overlay {
    opacity: 1;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.card-content {
    padding: 25px;
}

.material-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.material-meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.color-swatches {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--card-bg);
    box-shadow: 0 2px 4px var(--shadow-light);
    transition: var(--transition);
}

.swatch:hover {
    transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px var(--shadow-dark);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-close:focus {
    background: rgba(0, 0, 0, 0.8);
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

#lightbox-image {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
}

.lightbox-info {
    padding: 30px;
}

#lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

#lightbox-meta {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

#lightbox-description {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .material-card {
        margin: 0 10px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .material-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .materials-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-info {
        padding: 20px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(248, 249, 250, 0.8);
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.product-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.product-item .en {
    color: #333;
    font-size: 1rem;
}

.product-item .ar {
    color: #666;
    font-size: 0.95rem;
    direction: rtl;
    text-align: right;
    font-family: 'Amiri', serif;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: rgba(248, 249, 250, 0.8);
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.contact-info .en {
    color: #333;
    font-size: 1.2rem;
}

.contact-info .ar {
    color: #666;
    font-size: 1.1rem;
    direction: rtl;
    text-align: right;
    font-family: 'Amiri', serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    font-size: 1.1rem;
    color: #333;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.contact-form button {
    padding: 15px 30px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #34495e;
}

/* Bilingual Text Styles */
.text-bilingual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-en, .text-ar {
    flex: 1;
}

.text-ar {
    direction: rtl;
    text-align: right;
}

.text-ar h3 {
    font-family: 'Amiri', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.text-ar p {
    font-family: 'Amiri', serif;
    line-height: 1.8;
    color: #666;
}

/* Marble Types Section */
.marble-types {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.marble-material-section {
    margin-bottom: 80px;
    padding: 60px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.marble-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.marble-text {
    flex: 1;
    min-width: 300px;
}

.marble-image {
    flex: 1;
    min-width: 300px;
}

.marble-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-section {
    margin-bottom: 80px;
    padding: 60px;
    background: #2c3e50;
    color: white;
    border-radius: 20px;
    text-align: center;
}

.strategy-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.strategy-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.marble-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.marble-type-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marble-type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.marble-type-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.marble-type-content {
    padding: 30px;
}

.marble-type-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.marble-type-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.marble-type-content .en {
    color: #333;
    font-size: 1rem;
}

.marble-type-content .ar {
    color: #666;
    font-size: 0.95rem;
    direction: rtl;
    text-align: right;
    font-family: 'Amiri', serif;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-text p {
    margin: 5px 0;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .side-img {
        max-width: 200px;
    }

    .text .title-en,
    .text .title-ar {
        font-size: 2.2rem;
    }

    .text .para-en,
    .text .para-ar {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .intro .overlay {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-content,
.about-content,
.products-grid,
.gallery-grid,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}