@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

:root {
    --primary-color: rgb(186, 124, 41);
    --secondary-color: rgb(209, 157, 81);
    --dark-color: #000;
    --light-color: #fff;
}

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

body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
    filter: NONE;
    transition: filter 0.3s ease;
}

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

.nav-list a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: block;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.slide-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(5px);
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.slide-content p {
    font-size: 1.2rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
}

.animated-text {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1.2s ease-out 0.3s forwards;
}

.animated-subtext {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1.2s ease-out 0.8s forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotateY(-20deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) rotateY(20deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.slide.active .animated-text {
    animation: slideInLeft 1.2s ease-out 0.3s forwards;
}

.slide.active .animated-subtext {
    animation: slideInRight 1.2s ease-out 0.8s forwards;
}

.slide:not(.active) .animated-text {
    opacity: 0;
    transform: translateX(-100px);
}

.slide:not(.active) .animated-subtext {
    opacity: 0;
    transform: translateX(100px);
}



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

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.about-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
    font-family: 'Urbanist', sans-serif;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 0.5rem 0;
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.services-section {
    padding: 80px 20px;
    background: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.service-overlay h3 {
    font-size: 1.3rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    text-align: center;
    color: white;
    padding: 1rem;
}

.flip-card-back {
    background: white;
    color: #333;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px solid var(--primary-color);
}

.flip-card-back p {
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Urbanist', sans-serif;
    text-align: center;
    margin: 0;
    color: #333;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.team-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.team-diagram {
    position: relative;
    padding: 2rem 0;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    position: relative;
    z-index: 5;
}

.ceo {
    margin-bottom: 3rem;
}

.team-row {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.member-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.member-circle:hover {
    transform: scale(1.1);
}

.member-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Urbanist', sans-serif;
}

.connecting-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.line {
    background: var(--primary-color);
    position: absolute;
    opacity: 0.3;
}

.vertical {
    width: 2px;
    height: 80px;
    top: -40px;
}

.horizontal {
    height: 2px;
    width: 300px;
    left: -150px;
    top: 40px;
}

@media (max-width: 768px) {
    .team-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .horizontal {
        display: none;
    }
    
    .vertical {
        height: 80px;
        top: -40px;
    }
}

.workflow-section {
    padding: 80px 20px;
    background: white;
}

.workflow-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.workflow-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.workflow-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Urbanist', sans-serif;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    text-align: left;
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Urbanist', sans-serif;
    line-height: 1.4;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 1rem;
    font-weight: bold;
}

.final .step-arrow {
    display: none;
}

@media (max-width: 768px) {
    .workflow-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .final .step-arrow {
        display: none;
    }
}

.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

/* Mobile video optimization */
@media (max-width: 768px) {
    .video-section {
        height: 50vh;
    }
    
    .video-container video {
        object-position: center;
    }
}

.why-us-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-us-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.why-us-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.why-us-container h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-us-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.why-us-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.why-us-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Urbanist', sans-serif;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.projects-section {
    padding: 80px 20px;
    background: white;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.projects-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.projects-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.project-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

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

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

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

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

.project-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.project-overlay p {
    font-size: 0.9rem;
    font-family: 'Urbanist', sans-serif;
    opacity: 0.9;
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 124, 41, 0.3);
}

/* Projects Page Styles */
.projects-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.projects-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Images/project.jpg');
    background-size: cover;
    background-position: center;
}



.team-hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Images/Team.jpg') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.finishes-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Images/finishes.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.howwework-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Images/howwework.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.contact-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Images/contact.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.collaborations-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Images/collaborations.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.projects-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.projects-hero-content p {
    font-size: 1.2rem;
    font-family: 'Urbanist', sans-serif;
    color: var(--secondary-color);
}

.projects-list {
    padding: 80px 20px;
    background: white;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}



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

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.project-category {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-family: 'Urbanist', sans-serif;
}

.project-location {
    color: #666;
    font-size: 0.9rem;
    font-family: 'Urbanist', sans-serif;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    max-height: 95vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

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

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.slideshow-container {
    position: relative;
    display: inline-block;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.modal-images {
    padding: 2rem;
}

.modal-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.image-thumbnails {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: none;
    padding: 0;
    overflow: hidden;
    pointer-events: auto;
}

.thumbnail:hover {
    opacity: 1;
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.thumbnail.active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    pointer-events: none;
    display: block;
}

.modal-info {
    padding: 2rem;
    background: #f8f9fa;
}

.modal-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.modal-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
}

.project-details {
    margin-top: 2rem;
}

.project-details h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.project-details p {
    line-height: 1.6;
    color: #666;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-hero-content h1 {
        font-size: 2rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Page Hero Styles */
.page-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.page-hero-content p {
    font-size: 1.2rem;
    font-family: 'Urbanist', sans-serif;
    color: var(--secondary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 124, 41, 0.3);
}

.form-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
}

/* Finishes Page Styles */
.finishes-intro {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.finishes-intro-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.finishes-intro-container p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Urbanist', sans-serif;
}

.finishes-gallery {
    padding: 80px 20px;
    background: white;
}

.category-divider {
    padding: 60px 20px;
    background: var(--primary-color);
    text-align: center;
}

.divider-container h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.divider-container p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-family: 'Urbanist', sans-serif;
}

.finishes-container {
    max-width: 1400px;
    margin: 0 auto;
}

.finishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.finish-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.finish-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.finish-info {
    padding: 1.5rem;
    text-align: center;
}

.finish-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.finish-code {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
}

.finish-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Urbanist', sans-serif;
}

.pvd-benefits {
    padding: 80px 20px;
    background: #f8f9fa;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-family: 'Urbanist', sans-serif;
}

@media (max-width: 768px) {
    .finishes-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .finishes-intro-container h2 {
        font-size: 2rem;
    }
}

/* Methodology Page Styles */
.methodology-intro {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.methodology-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.methodology-container p {
    font-size: 1.2rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Urbanist', sans-serif;
}

.methodology-details {
    padding: 80px 20px;
    background: white;
}

.methodology-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.methodology-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.methodology-item.reverse .methodology-image {
    order: 2;
}

.methodology-item.reverse .methodology-content {
    order: 1;
}

.methodology-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.methodology-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.methodology-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    font-family: 'Urbanist', sans-serif;
}

.pictorial-process {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pictorial-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.pictorial-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.pictorial-container > p {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Urbanist', sans-serif;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(186, 124, 41, 0.3);
}

.timeline-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    border: 3px solid var(--primary-color);
}

.timeline-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(186, 124, 41, 0.3);
}

.timeline-icon .icon {
    font-size: 3rem;
    filter: grayscale(0.2);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Urbanist', sans-serif;
    line-height: 1.4;
}

.timeline-connector {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    position: relative;
    margin: 0 -50px;
    z-index: 1;
}

.timeline-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -8px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .methodology-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .methodology-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .methodology-item.reverse .methodology-image,
    .methodology-item.reverse .methodology-content {
        order: unset;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .timeline-connector {
        width: 3px;
        height: 50px;
        margin: 0;
        transform: rotate(90deg);
    }
    
    .timeline-connector::after {
        content: '↓';
        right: -8px;
        top: -10px;
    }
}

/* Team Story Page Styles */
.story-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.story-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.story-hero-content p {
    font-size: 1.3rem;
    max-width: 900px;
    line-height: 1.6;
    font-family: 'Urbanist', sans-serif;
    color: rgba(255,255,255,0.9);
}

.journey-section {
    padding: 80px 20px;
    background: white;
}

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

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.journey-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.journey-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.journey-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-family: 'Urbanist', sans-serif;
}

.manifesto-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.manifesto-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.manifesto-content p {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-family: 'Urbanist', sans-serif;
    font-style: italic;
}

.team-intro-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.team-intro-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-family: 'Urbanist', sans-serif;
}

.team-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-showcase {
    padding: 80px 20px;
    background: white;
}

.team-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-showcase-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.leadership-grid {
    margin-bottom: 4rem;
}

.leader-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.leader-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(186, 124, 41, 0.3);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.leader-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.leader-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    font-family: 'Urbanist', sans-serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.member-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Urbanist', sans-serif;
}

@media (max-width: 768px) {
    .story-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .journey-content,
    .team-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .leader-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners/Collaborations Page Styles */
.partners-section {
    padding: 80px 20px;
    background: white;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.partners-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.partners-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-logo {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
    background: white;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.collaboration-stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-logo {
        height: 100px;
        padding: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Collaboration Intro Section */
.collaboration-intro {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.collaboration-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.collaboration-intro-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.collaboration-intro-container p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-family: 'Urbanist', sans-serif;
}


/* Carousel Slide Backgrounds */
.slide-1 {
    background-image: url('Images/1.jpg');
}

.slide-2 {
    background-image: url('Images/2.jpg');
}

.slide-3 {
    background-image: url('Images/3.jpg');
}

.slide-4 {
    background-image: url('Images/4.jpg');
}

/* Service Card Backgrounds */
.service-1 {
    background-image: url('Images/pvd.jpg');
}

.service-2 {
    background-image: url('Images/cnc.jpg');
}

.service-3 {
    background-image: url('Images/metal.jpg');
}

.service-4 {
    background-image: url('Images/steel.jpg');
}

.service-5 {
    background-image: url('Images/furniture.jpg');
}

.service-6 {
    background-image: url('Images/architecture.jpg');
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Admin Panel Styles */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    text-align: center;
    min-width: 400px;
}

.logo-admin img {
    height: 60px;
    margin-bottom: 2rem;
}

.login-form h2 {
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Urbanist', sans-serif;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.error-message {
    color: #e74c3c;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.admin-panel {
    min-height: 100vh;
    background: #f8f9fa;
}

.admin-header {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo img {
    height: 40px;
}

.admin-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    background: #e9ecef;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btn.active,
.nav-btn:hover {
    background: var(--primary-color);
    color: white;
}

.logout-btn {
    padding: 0.8rem 1.5rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.admin-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.add-project-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.add-project-form h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Urbanist', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input,
.form-row input,
.form-row select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-row input:focus,
.form-row select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea {
    resize: vertical;
    margin-bottom: 1rem;
}

.add-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.projects-list h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Urbanist', sans-serif;
}

.project-item-admin {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    align-items: center;
}

.project-item-admin img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.delete-btn {
    padding: 0.5rem 1rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.delete-btn:hover {
    background: #c0392b;
}

.file-help {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.image-uploads {
    margin: 1rem 0;
}

.image-upload-group {
    margin-bottom: 1rem;
}

.image-upload-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.image-upload-group input[type="file"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s ease;
}

.image-upload-group input[type="file"]:focus {
    outline: none;
    border-color: var(--primary-color);
}


.close:hover,
.close:focus {
    color: #000;
}


.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.thumbnail:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .project-item-admin {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 20px 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-company-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0.5rem 0 1rem 0;
    font-weight: 600;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-right: 1rem;
    font-family: 'Urbanist', sans-serif;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-family: 'Urbanist', sans-serif;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    font-family: 'Urbanist', sans-serif;
}

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(15px);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

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

    .hero p {
        font-size: 1rem;
    }
}
/* Responsive image class */
.responsive-image {
    max-width: 100%;
    height: auto;
}

/* Mobile menu body lock */
body.menu-open {
    overflow: hidden;
}

/* Improved mobile navigation */
@media (max-width: 768px) {
    .nav.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        z-index: 1001;
    }
    
    .nav-list a {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* No projects message styling */
.no-projects-message {
    text-align: center;
    color: #666;
    grid-column: 1 / -1;
    padding: 2rem;
    font-size: 1.1rem;
}

/* Patina Showcase Styles */
.patina-style .products-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.patina-style .product-card {
    width: 180px;
    transition: transform 0.3s ease;
}

.patina-style .product-card:hover {
    transform: translateY(-8px);
}

.patina-style .card-image {
    width: 180px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: perspective(800px) rotateX(5deg) rotateY(-2deg);
    transition: all 0.3s ease;
}

.patina-style .product-card:hover .card-image {
    transform: perspective(800px) rotateX(8deg) rotateY(-4deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.patina-style .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patina-style .product-info {
    margin-top: 20px;
    text-align: center;
}

.patina-style .product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.patina-style .product-code {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .patina-style .products-row {
        gap: 25px;
    }
    
    .patina-style .product-card {
        width: 160px;
    }
    
    .patina-style .card-image {
        width: 160px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .patina-style .products-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* Performance optimizations - removed duplicate * selector */

img {
    image-rendering: -webkit-optimize-contrast;
}

@supports (image-rendering: crisp-edges) {
    img {
        image-rendering: crisp-edges;
    }
}

video {
    will-change: transform;
}

/* Removed duplicate selectors - performance optimizations moved to existing selectors */



/* Projects mobile fixes */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px !important;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .project-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .project-overlay {
        padding: 15px !important;
    }
    
    .project-overlay h3 {
        font-size: 1.2rem !important;
    }
    
    .project-overlay p {
        font-size: 0.9rem !important;
    }
    
    .modal-content {
        width: 95% !important;
        max-height: 90vh;
        margin: 5% auto;
    }
    
    .modal-images {
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    .modal-info {
        width: 100% !important;
        padding: 0 !important;
    }
}