/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        .preloader.fade-out {
            opacity: 0;
        }
        .preloader-logo {
            width: 150px;
            height: auto;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
html, body {
    overflow-x: hidden; /* CRUCIAL: Ensure this is present and not overridden */
    width: 100vw; /* Explicitly set width to viewport width */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    /* Initial transparent background for home page */
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-solid { /* Used for non-home pages (like About, Gallery, Services, Contact) */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
/* Ensure mobile menu button is visible on all navbar states */
.navbar .mobile-menu-btn {
    color: #f57920ff !important;
    z-index: 1001;
}

.navbar.navbar-solid .mobile-menu-btn {
    color: #f57920ff !important;
}

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

/* Mobile navigation layout */
@media (max-width: 768px) {
    /* Lock scroll on index page only */
    body.index-no-scroll {
        overflow: hidden;
        height: 100vh;
        position: fixed;
        inset: 0;
        width: 100%;
    }
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

.nav-brand .brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f57920ff; /* Orange color */
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-icon {
    margin-right: 0.5rem;
    height: 100px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the logo fits well */
}

.desktop-nav {
    display: none; /* Hidden by default, shown on desktop */
    gap: 2rem;
}

.nav-link { /* Unified nav-link class */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff; /* White for hero nav */
    transition: color 0.3s ease;
    font-weight: 500;
}

/* Color adjustment for scrolled/solid navbar */
.navbar.scrolled .nav-link,
.navbar.navbar-solid .nav-link {
    color: #333; /* Darker color when scrolled or on solid nav pages */
}

.nav-link:hover,
.nav-link.active {
    color: #f57920ff;
}

/* Ensure nav-link1 styles are also applied to nav-link for consistency */
.nav-links .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff; /* White for hero nav */
    transition: color 0.3s ease;
    font-weight: 500;
}

/* Color adjustment for scrolled/solid navbar */
.nav-links .navbar.scrolled .nav-link,
.nav-links .navbar.navbar-solid .nav-link {
    color: #333; /* Darker color when scrolled or on solid nav pages */
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: #f57920ff;
}

/* Removed .nav-link1 as it's redundant */
.nav-links .nav-link1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color:black; /* White for hero nav */
    transition: color 0.3s ease;
    font-weight: 500;
}

/* Color adjustment for scrolled/solid navbar */
.nav-links .navbar.scrolled .nav-link1,
.nav-links .navbar.navbar-solid .nav-link1 {
    color: #333; /* Darker color when scrolled or on solid nav pages */
}

.nav-links .nav-link1:hover,
.nav-links .nav-link1.active {
    color: #f57920ff;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #f57920ff;
    cursor: pointer;
    display: block; /* Show on mobile */
}

.mobile-menu {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f57920ff 0%, #e65a1a 100%);
    backdrop-filter: blur(10px);
    z-index: 9999; /* Higher z-index to ensure it's above everything */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
    /* Ensure mobile menu is not affected by navbar classes */
    pointer-events: none;
}

.mobile-menu.show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Re-enable pointer events when shown */
}



/* Mobile menu close button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
}

.mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.4s; }
.mobile-nav-link:nth-child(6) { animation-delay: 0.5s; }

.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mobile-nav-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section (for index.html) */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden; /* Crucial for containing hero slides */
}


.hero-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;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px; /* Ensure padding prevents content from touching edges */
    width: 100%; /* Ensure it takes full width for padding to work */
    
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    height: 100%; /* Take full height of hero-slide */
    animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem; /* Space below buttons before social links on mobile */
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #f57920ff;
    color: white;
    border-color: #f57920ff;
}

.btn-primary:hover {
    background: #e06a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 121, 32, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #f57920ff;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3; /* Ensure arrows are above content */
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 2rem;
}

.hero-next {
    right: 2rem;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3; /* Ensure indicators are above content */
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Social Media Links - Now inside hero-content */
.social-links {
    display: flex;
    flex-direction: row; /* Default to row for desktop */
    gap: 1rem;
    margin-top: 1rem; /* Space from buttons on desktop */
    z-index: 2; /* Within hero-content, so z-index 2 is fine */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-link:hover {
    background:#f57920ff;
   transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Page Header (General for other pages like About, Gallery, Services, Contact) */
.page-header {
    background: linear-gradient(135deg, #f57920ff, #A0522D); /* Solid background for other page headers */
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative; /* For scroll indicator if needed */
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Styles */
.gallery-filters {
    padding: 2rem 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #f57920ff;
    background: transparent;
    color: #f57920ff;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f57920ff;
    color: white;
}

.gallery-section {
    padding: 4rem 0;
}

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

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

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

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

.gallery-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;
}

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

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-btn {
    background: #f57920ff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background: #A0522D;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 1.5rem;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f57920ff;
}

/* About Page Styles */
.about-hero { /* This section is being removed from HTML, so these styles will no longer apply */
    height: 80vh;
    background: url('src/assets/workshop-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero-overlay { /* This will now only apply to index.html hero */
    background: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-scroll-indicator { /* This will now only apply to index.html hero */
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
}

/* Our Story Section (Timeline) */
.our-story-section {
    padding: 4rem 0;
    background: #f8f9fa; /* Light background for this section */
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding-bottom: 2rem; /* Space below timeline */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 10px; /* Thicker line for wood effect */
    background: linear-gradient(to bottom, #8B4513, #A0522D, #CD853F); /* Wood-like gradient */
    border-radius: 5px; /* Slightly rounded edges for the beam */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 2rem; /* Space between items */
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px; /* Space for line and dot */
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px; /* Space for line and dot */
    text-align: left;
}

.timeline-item::after { /* Circle dot on the timeline */
    content: '';
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #f57920ff;
    border: 4px solid white;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -10px; /* Position dot on the right side of the left item */
    transform: translateX(50%);
}

.timeline-item:nth-child(even)::after {
    left: -10px; /* Position dot on the left side of the right item */
    transform: translateX(-50%);
}


.timeline-year {
    background: #f57920ff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1rem; /* Space below year */
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    text-align: left; /* Ensure text aligns left within content box */
}

.timeline-content h3 {
    color: #f57920ff;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* Removed specific after pseudo-elements for timeline-content as the dot handles it */


.story-grid { /* This class is no longer used in the new about.html structure */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 { /* This class is no longer used directly */
    font-size: 2.5rem;
    color: #f57920ff;
    margin-bottom: 2rem;
}

.story-content p { /* This class is no longer used directly */
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image img { /* This class is no longer used directly */
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #f57920ff;
    margin-bottom: 3rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Simplified transition */
    /* Removed perspective and 3D transform for a simpler hover */
}

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

/* Removed .value-item-inner and .value-content as they are part of the flip animation */

.value-icon {
    width: 80px;
    height: 80px;
    background: #f57920ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease; /* Simplified transition */
    /* Removed backface-visibility as flip is gone */
}
.value-item:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 121, 32, 0.3);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f57920ff;
}
.value-item p { /* Added style for p in value-item */
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f57920ff, #A0522D);
    color: white;
    text-align: center; /* Center content in stats section */
}
.stats-section .section-title{
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 1rem; /* Added padding for better spacing */
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    /* Removed gradient text fill - it was making text transparent on white backgrounds */
    color: white; /* Ensure number is white on dark background */
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05); /* Slightly smaller hover scale */
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.team-section {
    padding: 4rem 0;
    text-align: center;
}

/* New style for the single founder profile */
.founder-profile {
    display: flex;
    justify-content: center; /* Center the single team member */
    max-width: 500px; /* Limit width for better readability */
    margin: 0 auto; /* Center the block itself */
}

.team-grid { /* This will now only apply if you decide to have a team again */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax */
    gap: 2rem;
}

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

.member-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem; /* Space below image */
}

.member-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top; /* Crop from the top */
    border-radius: 0.5rem; /* Apply border-radius to image too */
}
.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: 0; /* Position at the bottom */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0; /* Add padding for visibility */
    background: rgba(0,0,0,0.6); /* Semi-transparent background */
    transform: translateY(100%); /* Hide by default */
    transition: transform 0.3s ease;
}

.team-member:hover .member-social {
    transform: translateY(0); /* Slide up on hover */
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f57920ff;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #f57920ff;
    color: white;
    transform: translateY(-5px);
}
.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f57920ff;
}

.member-role {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #666;
}

.member-bio {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services Page Styles */
.services-section {
    padding: 4rem 0;
}

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

.service-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(245, 121, 32, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    position: relative;
    background: white;
}

.service-icon {
    position: absolute;
    top: -30px;
    left: 1.5rem;
    width: 60px;
    height: 60px;
    background: #f57920ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(245, 121, 32, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
}

.service-content h3 {
    font-size: 1.5rem;
    color: #f57920ff;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-features li:before {
    content: "→";
    color: #f57920ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.repairs-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.repairs-info h2 {
    font-size: 2.5rem;
    color: #f57920ff;
    margin-bottom: 2rem;
}

.repairs-info p {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.repairs-list {
    list-style: none;
    margin-bottom: 2rem;
}

.repairs-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.repairs-list i {
    color: #f57920ff;
    margin-right: 1rem;
}

.repairs-image img {
    width: 100%;
    border-radius: 0.5rem;
}
.before-after-slider {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.before-after-slider img {
    width: 100%;
    display: block;
}

.before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: col-resize;
}

.slider::-webkit-slider-thumb {
    cursor: col-resize;
}
.benefits-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: #f57920ff;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.process-section {
    padding: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Corrected typo here */
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 121, 32, 0.1);
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f57920ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::after {
    transform: scaleX(1);
}


 .step-number {
    background: linear-gradient(135deg, #f57920ff, #e06a1a);
    color: white;
    text-align: center;
    font-size:bold;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
} 

.process-step:hover .step-number {
    transform: rotate(15deg) scale(1.1);
}

.process-step h3 {
    font-size: 1.5rem;
    color: #f57920ff;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    font-size: 2rem;
    color: #f57920ff;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 0.25rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f57920ff;
}

.contact-info h2 {
    font-size: 2rem;
    color: #f57920ff;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f57920ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    color: #f57920ff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: #666;
}

.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-placeholder {
    height: 300px;
    background: #ddd;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-content i {
    font-size: 3rem;
    color: #f57920ff;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    color: #f57920ff;
    margin-bottom: 1rem;
}

.why-choose-section {
    padding: 4rem 0;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #f57920ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: #f57920ff;
    margin-bottom: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}
/* Footer Styles */
.footer {
    background: #222;
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
}

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

.footer-title {
    font-size: 1.5rem;
    color: #f57920ff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #f57920ff;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: #f57920ff;
    transform: translateY(-3px);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #f57920ff;
    padding-left: 5px;
}

.footer-links i,
.footer-services i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: #f57920ff;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #f57920ff;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-legal a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #f57920ff;
}

/* Load More Button */
/* Initially hide items with this class */
.gallery-item.hidden-item {
    display: none;
}
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

#loadMoreBtn {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
}


/* Responsive Design */
/* Added a new breakpoint for better control over elements causing overflow */
@media (max-width: 992px) {
    .hero-arrow {
        display: none; /* Hide arrows on larger tablets/smaller desktops */
    }
    /* Social links are now inside hero-content, so this specific rule is less critical here.
       We'll handle its mobile layout within the 768px media query. */
    /* .social-links {
        right: 1rem;
    } */
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .story-grid,
    .contact-grid,
    .repairs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Timeline adjustments for mobile */
    .timeline::before {
        left: 20px; /* Move vertical line to the left */
        transform: translateX(0);
    }

    .timeline-item {
        width: 100%; /* Take full width */
        padding-left: 60px; /* Adjust padding for content */
        padding-right: 20px; /* Keep some right padding */
        text-align: left; /* Align text left */
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0; /* Align all items to the left */
    }

    .timeline-item::after {
        left: 15px; /* Position dot on the left side of the line */
        transform: translateX(-50%); /* Center dot on the line */
    }

    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        right: auto; /* Remove right positioning */
    }
    
    /* hero-arrow is already hidden at 992px, but keeping this for clarity */
    .hero-arrow {
        display: none; 
    }
    
    /* Social links now inside hero-content, adjust its flex direction */
    .social-links {
        flex-direction: row; /* Stack vertically on mobile */
        margin-top: 1.5rem; /* Space below buttons */
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .repairs-content {
        flex-direction: column;
    }
    
    .repairs-image {
        margin-top: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hidden class for filtered items */
.gallery-item.hidden {
    display: none;
}
