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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 1rem 5%;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.7rem 5%;
    box-shadow: 0 2px 25px rgba(0,0,0,0.12);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    width: 50px; height: 50px;
    
    background: linear-gradient(135deg, #c9a961, #d4b877);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(45deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    padding-bottom: 8px;
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a961, #d4b877);
    transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c9a961;
}

.lang-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #c9a961;
    background: transparent;
    color: #c9a961;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    flex-shrink: 0;
}

.lang-btn:hover {
    background: #c9a961;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

/* Hero Section with Video */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5% 8rem;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -2;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(201, 169, 97, 0.25) 50%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeInUp 1s ease backwards;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(201, 169, 97, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInDown 1s ease 0.2s backwards;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
    animation: fadeInScale 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}

.hero-title .title-line {
    display: block;
    text-shadow: 2px 4px 25px rgba(0,0,0,0.5);
}

.hero-title .title-line.highlight {
    background: linear-gradient(135deg, #ffffff 0%, #d4b877 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.8vw, 1.6rem);
    font-weight: 300;
    margin-bottom: 3.5rem;
    letter-spacing: 0.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 2px 15px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease 0.5s backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.7s backwards;
}
.cta-btn {
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, #c9a961, #d4b877);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease 0.6s backwards;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}


.cta-btn-primary {
    padding: 1.25rem 2.8rem;
    background: linear-gradient(135deg, #c9a961 0%, #d4b877 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 45px rgba(201, 169, 97, 0.55);
}

.cta-btn-primary svg {
    transition: transform 0.4s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(4px);
}

.cta-btn-secondary {
    padding: 1.25rem 2.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    z-index: 10;
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.8rem 1.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(201, 169, 97, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 1s ease backwards;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c9a961, #d4b877, #c9a961);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:nth-child(1) { animation-delay: 0.9s; }
.feature-card:nth-child(2) { animation-delay: 1.1s; }
.feature-card:nth-child(3) { animation-delay: 1.3s; }

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(201, 169, 97, 0.25), 0 0 0 1px rgba(201, 169, 97, 0.15);
}

.feature-card:hover .feature-icon {
    transform: scale(1.12) rotateY(360deg);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5);
}

.feature-card:hover .feature-icon-bg {
    transform: scale(1.2);
    background: rgba(201, 169, 97, 0.15);
}

.feature-card h3 {
    color: #2c2c2c;
    margin-bottom: 0.9rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.feature-card p {
    color: #555;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    line-height: 1.7;
    font-weight: 400;
}

/* About Section - Fixed Image Issue */
.about-section {
padding: 5.5rem 4%;
background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.about-container {
max-width: 1650px;        
margin: 0 auto;
display: grid;
grid-template-columns: 55% 45%;  
gap: 3.5rem;
align-items: start;
}



.about-image {
width: 100%;
height: 100%;
min-height: 500px; 
background: url('Gallery/WhatsApp\ Image\ 2025-11-22\ at\ 10.13.20_7969aff9.jpg') center/cover;
border-radius: 16px;
position: relative;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-image:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.14); }

.about-image::after {
content: "";
position: absolute; inset: 0;
background: linear-gradient(135deg, rgba(201,169,97,0.06), rgba(255,255,255,0));
pointer-events: none;
}

.about-badge {
position: absolute;
bottom:20px;  
right: 20px;   
background: linear-gradient(135deg, #c9a961, #d4b877);
color: white;
width: 130px;
height: 130px;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 2.2rem;
font-weight: 700;
box-shadow: 0 10px 35px rgba(201, 169, 97, 0.5);
z-index: 10;
border: 4px solid rgba(255, 255, 255, 0.9);
}.about-badge span {
font-size: 0.85rem;
font-weight: 500;
margin-top: 0.4rem;
letter-spacing: 0.5px;
}

.about-badge .big { font-size: 44px; line-height: 1; }
.about-badge .small { font-size: 12px; margin-top: 6px; font-weight: 600; opacity: .95; }

.about-right { padding-top: 10px; position: relative; }

.about-content h2 {
color: #c9a961;
font-size: 25px;
font-weight: 800;
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 10px;
}

.about-content h1 {
font-size: 36px;
margin-bottom: 18px;
color: #222;
font-weight: 700;
}

.about-content p.lead {
font-size: 16px;
color: #333;
line-height: 1.8;
margin-bottom: 1.6rem;
max-width: 100%;
}

.cta-row {
display: flex;
align-items: center;
justify-content: flex-end;
margin-bottom: 0.9rem;
}

.get-quote-btn {
background: linear-gradient(135deg,#c9a961 0%,#d4b877 100%);
color: #fff;
border: none;
padding: 12px 28px;
border-radius: 10px;
font-weight: 700;
letter-spacing: .6px;
cursor: pointer;
box-shadow: 0 14px 30px rgba(201,169,97,0.25);
transition: transform .22s ease, box-shadow .22s ease;
}
.get-quote-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(201,169,97,0.33); }

.about-columns {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 26px;
margin-top: 28px;
align-items: stretch;
}



.about-column {
background: #fff;
padding: 26px 22px;
border-radius: 10px;
border-left: 6px solid #c9a961;   
box-shadow: 0 8px 28px rgba(0,0,0,0.04);
transition: transform .22s ease, box-shadow .22s ease;
display: flex;
flex-direction: column;
justify-content: center;
text-align: left;
}
.about-column h4 { color: #c9a961; font-size: 18px; margin-bottom: 10px; font-weight: 800; }
.about-column p { color: #444; font-size: 15px; line-height: 1.6; margin: 0; }

.about-column:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(201,169,97,0.12); border-left-color: #d4b877; }

.muted { color: #777; font-size: 14px; margin-top: 6px; }
.spacer { height: 60px; }

.about-right { padding-bottom: 70px; } 
     /* Project Page */
     #project-page {
        padding: 12rem 6% 8rem;
        background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
        position: relative;
    }

    #project-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(212, 184, 119, 0.08) 100%);
        z-index: 0;
    }

    .project-page-container {
        max-width: 1600px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Hero Section */
    .hero-section {
        text-align: center;
        margin-bottom: 8rem;
        padding: 0 10%;
    }

    .hero-title {
        font-size: clamp(2.8rem, 6vw, 5rem);
        font-weight: 300;
        font-style: italic;
        line-height: 1.3;
        color: #e0d9b9;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.3rem);
        color: #666;
        font-family: 'Segoe UI', sans-serif;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .divider {
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #c9a961, transparent);
        margin: 3rem auto;
    }

    /* Project Sections */
    .projects-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10rem;
    }

    .project-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        position: relative;
        padding: 4rem 0;
    }

    .project-section:nth-child(even) {
        direction: rtl;
    }

    .project-section:nth-child(even) > * {
        direction: ltr;
    }

    /* Image Grid Side */
    .images-side {
        position: relative;
    }

    .project-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        position: relative;
    }

    .grid-image {
        aspect-ratio: 4/3;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        position: relative;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    }

    .grid-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(212, 184, 119, 0.2));
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 2;
    }

    .grid-image:hover::before {
        opacity: 1;
    }

    .grid-image:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 80px rgba(201, 169, 97, 0.3);
    }

    .grid-image:nth-child(1) {
        transform: rotate(-2deg);
    }

    .grid-image:nth-child(2) {
        transform: rotate(1deg);
    }

    .grid-image:nth-child(3) {
        transform: rotate(1deg);
    }

    .grid-image:nth-child(4) {
        transform: rotate(-1deg);
    }

    .grid-image:hover {
        transform: rotate(0deg) translateY(-10px) scale(1.02) !important;
    }

    .grid-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .grid-image:hover img {
        transform: scale(1.1);
    }

    /* Content Side */
    .content-side {
        padding: 2rem;
    }

    .project-number {
        font-size: 1rem;
        color: #c9a961;
        font-weight: 600;
        letter-spacing: 3px;
        margin-bottom: 1rem;
        font-family: 'Segoe UI', sans-serif;
        text-transform: uppercase;
    }

    .project-title {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 400;
        color: #1a1a1a;
        margin-bottom: 2rem;
        line-height: 1.3;
        position: relative;
        padding-bottom: 1.5rem;
    }

    .project-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #c9a961, #d4b877);
    }

    .project-description {
        font-size: clamp(1rem, 2vw, 1.15rem);
        line-height: 1.9;
        color: #555;
        font-family: 'Segoe UI', sans-serif;
        font-weight: 300;
        margin-bottom: 2rem;
    }

    .project-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
    }

    .tag {
        padding: 0.6rem 1.5rem;
        background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(212, 184, 119, 0.15));
        border: 1px solid rgba(201, 169, 97, 0.3);
        border-radius: 50px;
        font-size: 0.85rem;
        color: #c9a961;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        font-family: 'Segoe UI', sans-serif;
    }

    .tag:hover {
        background: linear-gradient(135deg, #c9a961, #d4b877);
        color: white;
        transform: translateY(-2px);
    }

    /* Decorative Elements */
    .decorative-circle {
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201, 169, 97, 0.05), transparent);
        z-index: 0;
        pointer-events: none;
    }

    .project-section:nth-child(odd) .decorative-circle {
        top: -100px;
        right: -150px;
    }

    .project-section:nth-child(even) .decorative-circle {
        top: -100px;
        left: -150px;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .project-section {
            gap: 3rem;
        }
    }

    @media (max-width: 968px) {
        #project-page {
            padding: 8rem 4% 5rem;
        }

        .hero-section {
            margin-bottom: 5rem;
            padding: 0 5%;
        }

        .projects-wrapper {
            gap: 6rem;
        }

        .project-section {
            grid-template-columns: 1fr;
            gap: 3rem;
            padding: 2rem 0;
        }

        .project-section:nth-child(even) {
            direction: ltr;
        }

        .content-side {
            padding: 0;
        }

        .grid-image:nth-child(n) {
            transform: rotate(0deg) !important;
        }
    }

    @media (max-width: 640px) {
        #project-page {
            padding: 6rem 4% 4rem;
        }

        .projects-wrapper {
            gap: 4rem;
        }

        .project-grid {
            gap: 1rem;
        }

        .grid-image {
            border-radius: 12px;
        }

        .project-tags {
            gap: 0.6rem;
        }

        .tag {
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
        }

        .decorative-circle {
            display: none;
        }
    }
    .projects-section {
        padding: 6rem 5%;
        background: white;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    .section-header h2 {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
        color: #333;
        font-weight: 500;
        letter-spacing: 1px;
    }
    .section-header p {
        color: #666;
        font-style: italic;
        font-size: 1.1rem;
    }
    
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
        gap: 2.5rem;
        max-width: 1500px;
        margin: 0 auto;
    }
    
    .project-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        cursor: pointer;
    }
    .project-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #c9a961, #d4b877);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }
    .project-card:hover::before { opacity: 0.08; }
    .project-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 70px rgba(201, 169, 97, 0.35);
    }
    
    .project-image {
        position: relative;
        height: 340px;
        overflow: hidden;
    }
    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }
    .project-card:hover img { transform: scale(1.12); }
    
    .project-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
        z-index: 1;
    }
    
    .project-label {
        position: absolute;
        bottom: 24px;
        left: 24px;
        right: 24px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        color: #333;
        padding: 1.2rem 1.8rem;
        border-radius: 15px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        border-left: 4px solid #c9a961;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        transition: all 0.4s ease;
        z-index: 2;
    }
    .project-card:hover .project-label {
        background: linear-gradient(135deg, #c9a961, #d4b877);
        color: white;
        border-left-color: white;
        transform: translateY(-6px);
    }  .section {
        padding: 6rem 5%;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
        margin-bottom: 1rem;
        font-weight: 400;
        color: var(--dark-text);
        letter-spacing: 1px;
    }

    .section-header p {
        color: var(--light-text);
        font-size: clamp(1rem, 2vw, 1.1rem);
        font-style: italic;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
        gap: 2.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Card Styles - Unified */
    .card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        cursor: pointer;
        position: relative;
    }

    .card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: var(--shadow-lg);
    }

    .card-image {
        width: 100%;
        height: 320px;
        position: relative;
        overflow: hidden;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .card:hover .card-image img {
        transform: scale(1.1);
    }
    /* product */
.products-page {
    padding: 4rem 5% 6rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c9a961, #d4b877);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.pdf-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c9a961, #d4b877);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    margin: 2rem auto;
    text-decoration: none;
}

.pdf-preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f5f5f5;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-photo {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-specs p {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
}

.product-specs strong {
    color: #c9a961;
    font-weight: 600;
}

.price-tag {
    background: linear-gradient(135deg, #c9a961, #d4b877);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
.why-section {
    padding: 6rem 5% 0.5rem;
    background: white;
    margin-bottom: 0 
}

footer {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: white;
    padding: 2.5rem 5% 2rem;   
    margin-top: -2rem;          
}

.blogs { padding: 6rem 5%; background: white; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 1rem;  
}

.why-card { background: white; padding: 2.5rem; border-radius: 20px; box-shadow: 0 10px 35px rgba(0,0,0,0.1); transition: all 0.4s ease; }
.why-card:hover { transform: translateY(-10px); box-shadow: 0 15px 50px rgba(201, 169, 97, 0.2); }

.why-image { width: 100%; height: 220px; background: linear-gradient(135deg, #d4a574, #c9a961); border-radius: 15px; margin-bottom: 2rem; overflow: hidden; transition: all 0.3s ease; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-card:hover .why-image { transform: scale(1.05); }

.why-card h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); margin-bottom: 1.2rem; color: #333; font-weight: 600; }
.why-card p { color: #666; font-size: clamp(0.9rem, 2vw, 0.95rem); line-height: 1.9; }

.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 3.5rem; max-width: 1400px; margin: 0 auto; }
.footer-section h3 { color: #c9a961; margin-bottom: 1.8rem; font-size: clamp(1.05rem, 2.5vw, 1.25rem); font-weight: 600; }
.footer-section p, .footer-section a { color: #ccc; font-size: clamp(0.9rem, 2vw, 0.95rem); line-height: 2; text-decoration: none; transition: all 0.3s; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 1rem; }
.footer-section a:hover { color: #c9a961; padding-left: 5px; }
.social-links { display: flex; gap: 1.2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.social-links a { width: 45px; height: 45px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-links a:hover { background: linear-gradient(135deg, #c9a961, #d4b877); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4); }/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Navigation */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
}


/* Gallery Preview Section on Home Page */
.gallery-preview-section {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.gallery-preview-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.preview-filter-btn {
    padding: 0.75rem 1.8rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.preview-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9a961, #d4b877);
    transition: left 0.3s ease;
    z-index: -1;
}

.preview-filter-btn:hover {
    border-color: #c9a961;
    color: #c9a961;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.2);
}

.preview-filter-btn.active {
    background: linear-gradient(135deg, #c9a961, #d4b877);
    border-color: #c9a961;
    color: white;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.preview-filter-btn.active::before {
    left: 0;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.gallery-preview-item.hidden {
    display: none;
}

.gallery-preview-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-preview-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.3);
}

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

.gallery-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.gallery-preview-category {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Gallery */
.gallery-section { 
    padding: 9rem 5% 7rem; 
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin-bottom: 1rem; 
    color: #222;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gallery-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    font-weight: 300;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.filter-btn {
    padding: 0.85rem 2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9a961, #d4b877);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover {
    border-color: #c9a961;
    color: #c9a961;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #c9a961, #d4b877);
    border-color: #c9a961;
    color: white;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.filter-btn.active::before {
    left: 0;
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 2rem; 
    max-width: 1450px; 
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img { 
    width: 100%; 
    height: 380px; 
    object-fit: cover; 
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.3);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.gallery-category {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 35px; right: 35px; z-index: 9999; width: 68px; height: 68px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 38px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); cursor: pointer; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Pages */
.page-content { display: none; }
.page-content.active { display: block; }

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 32px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}


/* Large Tablets & Small Laptops */
@media (max-width: 1200px) {
    .about-columns {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.8rem;
    }
    .nav-links a {
        font-size: 0.92rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .about-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .projects-grid,
    .products-grid,
    .gallery-grid,
    .gallery-preview-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }

    .gallery-filters,
    .gallery-preview-filters {
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    /* Show Hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Full Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.45s cubic-bezier(0.77, 0, 0.18, 1);
        z-index: 1000;
        padding: 2rem;
        box-shadow: -15px 0 50px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.9rem;
        padding: 1.4rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .lang-btn {
        margin-top: 3.rem;
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }

    /* Hero */
    .hero {
        padding: 5rem 5% 7rem;
        min-height: 85vh;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 90%;
        max-width: 360px;
        justify-content: center;
        font-size: 1.1rem;
    }
@media (max-width: 992px) {
    .projects-grid,
    .products-grid,
    .gallery-grid,
    .gallery-preview-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        padding: 0 1.2rem !important;
    }
}

@media (max-width: 768px) {
    .projects-grid,
    .products-grid,
    .gallery-grid,
    .gallery-preview-grid,
    .why-grid {
        grid-template-columns: 1fr !important;   
        gap: 2.2rem !important;
        padding: 0 1rem !important;
    }

    .project-card img,
    .product-card img,
    .gallery-item img,
    .gallery-preview-item img,
    .why-card img {
        height: 240px !important;
    }
}

@media (max-width: 480px) {
    .projects-grid,
    .products-grid,
    .gallery-grid,
    .gallery-preview-grid,
    .why-grid {
        gap: 1.8rem !important;
        padding: 0 0.8rem !important;
    }

    .project-card img,
    .product-card img,
    .gallery-item img,
    .gallery-preview-item img,
    .why-card img {
        height: 220px !important;
    }
}
    /* All Grids → 1 Column */
    .projects-grid,
    .products-grid,
    .gallery-grid,
    .gallery-preview-grid,
    .why-grid,
    .about-columns {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        padding: 0 1.5rem;
    }

    .gallery-filters,
    .gallery-preview-filters {
        gap: 0.8rem;
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    .filter-btn,
    .preview-filter-btn {
        padding: 0.75rem 1.6rem;
        font-size: 0.9rem;
    }

    .section-header {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 25px;
        right: 25px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero {
        padding: 4rem 5% 6rem;
    }
    .hero-title {
        font-size: 2.6rem !important;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }

    .about-badge {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
        top: 15px;
    }

   
    .product-image img {
        height: 260px;
    }

    .projects-grid,
    .products-grid,
    .gallery-grid,
    .gallery-preview-grid,
    .why-grid {
        padding: 0 1rem;
        gap: 2rem;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 18px;
        right: 18px;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .nav-links a {
        font-size: 1.7rem;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        font-size: 1rem;
        padding: 1.1rem 2.2rem;
    }
    .hero-title {
        font-size: 2.4rem !important;
    }
}

body.rtl .menu-toggle {
    margin-left: auto;
}

body.rtl .nav-links {
    right: auto;
    left: -100%;
}

body.rtl .nav-links.active {
    left: 0;
    right: auto;
}

body.rtl .whatsapp-float {
    right: auto !important;
    left: 35px !important;
}

@media (max-width: 768px) {
    body.rtl .whatsapp-float {
        left: 25px !important;
    }
}

@media (max-width: 480px) {
    body.rtl .whatsapp-float {
        left: 18px !important;
    }
}
.projects-grid,
.products-grid,
.gallery-grid,
.gallery-preview-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 2.5rem !important;
    padding: 0 1.5rem;
    max-width: 1450px;
    margin: 0 auto;
}

/* Make sure every card takes full width on small screens */
.project-card,
.product-card,
.gallery-item,
.gallery-preview-item,
.why-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.project-card img,
.product-card img,
.gallery-item img,
.gallery-preview-item img,
.why-card img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
}

.why-section {
    padding-bottom: 200px !important;
    margin-bottom: 120px !important;
}

.section-cta {
    margin-top: 120px !important;
    padding-top: 80px !important;
    position: relative !important;
    z-index: 10 !important;
}
