/* ===== BASE STYLES ===== */
:root {
    --primary-color: #457E82;
    --primary-light: rgba(69, 126, 130, 0.1);
    --primary-dark: #3a6a6d;
    --secondary-color: #665655;
    --gold: #457E82;
    --dark-bg: #ffffff;
    --darker-bg: #f8f8f8;
    --light-text: #615151;
    --medium-text: #8a7a7a;
    --border-color: #e0e0e0;
    --overlay-color: rgba(0, 0, 0, 0.6);
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    overscroll-behavior: none;
    /* Prevent bounce effect on some browsers */
}

img {
    max-width: 100%;
    height: auto;
    will-change: opacity;
    transition: opacity 0.3s ease;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.section-title h2::before {
    content: attr(data-text);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.03;
    white-space: nowrap;
    z-index: -1;
}

.section-title.light h2 {
    color: var(--light-text);
}

.section-title.left-align {
    text-align: left;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.title-line::before,
.title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.title-line::before {
    left: -40px;
}

.title-line::after {
    right: -40px;
}

.section-title.left-align {
    text-align: left;
}

.section-title.left-align .title-line {
    margin: 0;
}

.section-title.left-align h2::before {
    left: 0;
    transform: none;
}

.section-title.left-align .title-line::before,
.section-title.left-align .title-line::after {
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    box-shadow: 0 10px 20px rgba(69, 126, 130, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(69, 126, 130, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--primary-color);
    overflow: hidden;
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(69, 126, 130, 0.3);
}

.text-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-btn i {
    transition: var(--transition);
}

.text-btn:hover {
    color: var(--light-text);
}

.text-btn:hover i {
    transform: translateX(5px);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    will-change: transform;
    backface-visibility: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-menu {
    display: flex;
    gap: 2rem;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/SHOWROOM DESIGN-1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin-left: 10%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-text);
    max-width: 500px;
}

/* ===== ENHANCED ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(69, 126, 130, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(69, 126, 130, 0.02) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 5;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5%;
    margin-top: 3rem;
}

.about-text {
    flex: 1;
    position: relative;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--medium-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.5s ease;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    transform: scale(1);
}

.about-image::before {
    content: "";
    display: block;
    padding-top: 75%;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, rgba(69, 126, 130, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.about-image:hover::after {
    opacity: 1;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Vision and Mission boxes upgrade */
.vision-mission-container {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.vision-box,
.mission-box {
    flex: 1;
    background-color: rgba(18, 18, 18, 0.6);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
}

.vision-box::before,
.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vision-box:hover::before,
.mission-box:hover::before {
    transform: scaleX(1);
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.vision-box h3,
.mission-box h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.vision-box i,
.mission-box i {
    font-size: 1.6rem;
    background-color: rgba(69, 126, 130, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.vision-box:hover i,
.mission-box:hover i {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.mission-box ul {
    padding-left: 0;
    margin-top: 1.5rem;
}

.mission-box li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.mission-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.mission-box li:hover {
    color: var(--light-text);
}

/* Add media queries for responsiveness */
@media (max-width: 992px) {
    .vision-mission-container {
        flex-direction: column;
    }

    .vision-box,
    .mission-box {
        width: 100%;
        margin-bottom: 20px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .about-image {
        width: 100%;
    }

    .floating-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .vision-box,
    .mission-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 80px 0;
    }

    .vision-box h3,
    .mission-box h3 {
        font-size: 1.2rem;
        gap: 10px;
    }

    .vision-box i,
    .mission-box i {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* ===== COLLECTIONS SECTION ===== */
.collections-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(69, 126, 130, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.collections-section .container {
    position: relative;
    z-index: 5;
}

.collection-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category {
    background-color: var(--darker-bg);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.5s ease;
    z-index: 1;
}

.category:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.category-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
}

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

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

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.category-content p {
    margin-bottom: 1.5rem;
    color: var(--medium-text);
}

/* ===== SHOWCASE SECTION ===== */
.showcase-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    will-change: transform;
    backface-visibility: hidden;
    position: relative;
    z-index: 1;
}

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

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 300px;
    border: none;
    transition: transform 0.3s ease;
    opacity: 1;
    z-index: 1;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    opacity: 1;
}

/* Fix for lazy loading */
.showcase-item img.lazy {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.showcase-item img.lazy.loaded {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.showcase-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
    z-index: 3;
}

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

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.overlay-content p {
    color: var(--medium-text);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Make the overlay always visible on mobile */
    .overlay {
        opacity: 1 !important;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .overlay-content {
        transform: translateY(0) !important;
    }
}

@media (max-width: 768px) {
    .showcase-section {
        padding: 50px 0;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .showcase-item {
        height: 250px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .overlay {
        opacity: 1 !important;
        background-color: rgba(0, 0, 0, 0.7);
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem;
        display: flex !important;
        visibility: visible !important;
    }

    .overlay-content {
        transform: translateY(0) !important;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .overlay-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .overlay-content p {
        font-size: 0.9rem;
    }

    /* Fix for lazy loaded images on mobile */
    .showcase-item img,
    .showcase-item img.lazy {
        opacity: 1 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        height: 280px;
        margin-bottom: 10px;
    }
}

/* Make sure overlay appears on mobile tap */
.mobile-hovered.showcase-item .overlay {
    opacity: 1 !important;
}

.mobile-hovered.showcase-item .overlay-content {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    will-change: transform;
    backface-visibility: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonialSwiper {
    overflow: hidden;
    padding-bottom: 50px;
}

.testimonial {
    background-color: var(--darker-bg);
    border-radius: 5px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.quote {
    margin-bottom: 1.5rem;
}

.quote i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.quote p {
    font-style: italic;
    color: var(--medium-text);
}

.client h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.client p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    z-index: 10;
}

.testimonial-button-prev,
.testimonial-button-next {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: none;
    /* No transition */
    z-index: 15;
}

.testimonial-button-prev i,
.testimonial-button-next i {
    color: #fff;
    font-size: 16px;
}

/* Remove hover effects */
.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background: rgba(0, 0, 0, 0.6);
    /* Same as default */
    transform: none;
    /* No transform */
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    will-change: transform;
    backface-visibility: hidden;
}

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

.contact-info p {
    margin-bottom: 2rem;
    color: var(--medium-text);
}

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

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

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin-bottom: 0;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--darker-bg);
}

.contact-form {
    background-color: var(--dark-bg);
    padding: 3rem;
    border-radius: 2px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border-radius: 2px;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-text);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding-top: 70px;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.footer-column p {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--medium-text);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-right: none;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    border-radius: 2px 0 0 2px;
}

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

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--light-text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--medium-text);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--medium-text);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }

    .hero-slider h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 10px 15px;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: var(--darker-bg);
        z-index: 100;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .main-menu.active {
        display: flex;
        right: 0;
    }

    .main-menu li {
        width: 100%;
        margin-bottom: 15px;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown>a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 5px;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 101;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--light-text);
        cursor: pointer;
        z-index: 102;
    }

    .hero-slider h1 {
        font-size: 2.5rem;
    }

    .hero-slider p {
        font-size: 1rem;
    }

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

    .about-text,
    .about-image,
    .contact-info,
    .contact-form {
        width: 100%;
    }

    .about-image {
        margin-top: 30px;
        height: 400px;
    }

    .vision-mission-container {
        flex-direction: column;
    }

    .vision-box,
    .mission-box {
        width: 100%;
        margin-bottom: 20px;
        min-height: 200px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider .slide-content {
        padding: 0 20px;
        max-width: 100%;
        text-align: center;
    }

    .hero-slider h1 {
        font-size: 2rem;
    }

    .hero-slider p {
        font-size: 0.9rem;
    }

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

    .collection-categories,
    .services-grid,
    .benefits-container,
    .stats-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-navigation {
        bottom: 10px;
    }

    .slider-navigation .swiper-button-prev,
    .slider-navigation .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .showcase-filter {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        margin: 5px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .testimonial {
        padding: 20px 15px;
    }

    .page-loader .loader {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .hero-slider .slide-content {
        padding: 0 15px;
    }

    .hero-slider h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-section::before,
    .about-section::after,
    .collections-section::before,
    .services-section::before,
    .why-choose-section::after,
    .testimonials-section::before,
    .stats-section::before {
        display: none;
    }

    .about-image {
        height: 300px;
    }

    .service-card,
    .benefit-item,
    .stat-item {
        padding: 20px 15px;
    }

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

    .client-image {
        margin: 0 auto 15px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 15px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom-links {
        margin-top: 10px;
    }

    .loader-progress {
        width: 80%;
    }
}

/* ===== CURSOR ANIMATION ===== */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    will-change: transform;
    backface-visibility: hidden;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.1s, width 0.2s, height 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(69, 126, 130, 0.1);
    mix-blend-mode: difference;
}

.cursor-click {
    transform: translate(-50%, -50%) scale(0.8);
    background-color: var(--primary-color);
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader {
    width: 300px;
    text-align: center;
}

.loader-logo {
    margin-bottom: 30px;
}

.loader-logo img {
    width: 120px;
    height: auto;
    animation: pulse 1.5s infinite alternate;
}

.loader-progress {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Additional loading animation */
.loader::after {
    content: 'Loading...';
    display: block;
    color: var(--primary-color);
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    animation: pulseText 1.2s infinite alternate;
}

@keyframes pulseText {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100% !important;
    width: 100% !important;
}

.hero-slider .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slider .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    max-width: 700px;
    margin-left: 10%;
    padding: 2rem;
}

.hero-slider h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-slider p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-text);
}

.slider-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: #fff;
    position: relative;
}

.slider-navigation .swiper-button-prev {
    margin-left: 30px;
}

.slider-navigation .swiper-button-next {
    margin-right: 30px;
}

.slider-navigation .swiper-button-prev::after,
.slider-navigation .swiper-button-next::after {
    font-size: 22px;
    font-weight: 700;
}

.slider-navigation .swiper-button-prev:hover,
.slider-navigation .swiper-button-next:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: bottom 0.3s ease, background-color 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    will-change: transform;
    backface-visibility: hidden;
}

.back-to-top.active {
    bottom: 30px;
}

.back-to-top:hover {
    background-color: var(--light-text);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* ===== SHOWCASE FILTER ===== */
.showcase-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: var(--medium-text);
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--primary-color);
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 70%;
}

/* ===== LIGHTBOX STYLES ===== */
.project-lightbox {
    position: fixed;
    /* Fixed position */
    top: 0;
    left: 0;
    width: 100vw;
    /* Use viewport units */
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
    /* Prevent scrolling when lightbox is open */
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    background-color: transparent;
    box-shadow: var(--box-shadow);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s forwards;
}

.lightbox-close {
    position: fixed;
    /* Fixed position relative to viewport */
    top: 15px;
    right: 15px;
    width: 50px;
    /* Larger button for easier tapping */
    height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 28px;
    display: flex !important;
    /* Force display with !important */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1000000;
    /* Extremely high z-index to ensure it's on top */
    transition: all 0.2s ease;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
    /* Force visibility */
    visibility: visible !important;
    /* Force visibility */
    transform: none !important;
    /* Prevent transforms from hiding it */
}

.lightbox-close:hover,
.lightbox-close:active,
.lightbox-close:focus {
    background-color: var(--primary-color);
    transform: rotate(90deg) !important;
    /* Override any transforms */
    color: white;
}

/* Make sure it's visible on all devices */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 22px;
        border-width: 2px;
    }
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: black;
}

.lightbox-image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    opacity: 0;
    animation: fadeIn 0.5s 0.2s forwards;
}

.lightbox-details {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

/* Add lightbox controls for mobile */
.lightbox-controls {
    position: fixed;
    /* Change to fixed position */
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 15;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Apply animations to elements */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    animation: pulse 1s ease-in-out infinite;
    color: var(--primary-color);
}

/* Mobile menu animation */
.mobile-menu {
    animation: slideInRight 0.3s forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Optimize layout shift during image loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Fix layout shift for client photos */
.client-photo {
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Fix layout shift for showcase items */
.showcase-item {
    aspect-ratio: 4/3;
}

/* Reduce paint operations during scroll */
.showcase-section,
.collections-section,
.about-section,
.services-section,
.why-choose-section,
.stats-section,
.testimonials-section,
.brands-section,
.contact-section {
    will-change: transform;
    backface-visibility: hidden;
}

/* Reduce repaint for fixed elements */
header,
.back-to-top,
.cursor-dot,
.cursor-outline {
    will-change: transform;
    backface-visibility: hidden;
}

/* Brands Slider Fix */
.brands-slider.swiper {
    overflow: hidden;
    padding: 20px 0;
}

.brands-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.brand-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.brand-item img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}

.brand-item:hover img {
    opacity: 1;
}

/* Swiper Pagination Fix */
.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    left: 0;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: var(--transition);
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Swiper Navigation Fix */
.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-color) !important;
}

.testimonial-button-prev,
.testimonial-button-next {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: none;
    /* No transition */
    z-index: 15;
}

.testimonial-button-prev i,
.testimonial-button-next i {
    color: #fff;
    font-size: 16px;
}

/* Remove hover effects */
.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background: rgba(0, 0, 0, 0.6);
    /* Same as default */
    transform: none;
    /* No transform */
}

.testimonial-button-prev {
    left: -20px;
}

.testimonial-button-next {
    right: -20px;
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    z-index: 10;
}

/* Fix any potential layout issues */
section {
    padding: 100px 0;
    position: relative;
}

.img-loading {
    opacity: 0;
    filter: blur(0);
}

.img-loaded {
    opacity: 1;
    filter: blur(0);
    transition: opacity 0.3s ease;
}

/* ===== SERVICES SECTION (WHAT WE OFFER) ===== */
.services-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom right, rgba(10, 10, 10, 0.95), rgba(18, 18, 18, 0.9));
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.5s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(69, 126, 130, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--darker-bg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--medium-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(69, 126, 130, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    padding: 1.5rem;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(69, 126, 130, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.benefit-item:hover::before {
    transform: translateX(100%);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background-color: rgba(69, 126, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background-color: var(--primary-color);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon i {
    color: var(--darker-bg);
    animation: pulse 1s ease-in-out infinite;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
    transition: var(--transition);
}

.benefit-item:hover .benefit-content h3 {
    color: var(--primary-color);
}

.benefit-content p {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== ENHANCED TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(69, 126, 130, 0.05) 0%, rgba(69, 126, 130, 0) 70%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 60px;
}

.testimonialSwiper {
    overflow: hidden;
    padding-bottom: 70px;
}

.testimonial {
    background-color: rgba(12, 12, 12, 0.5);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial:hover::before {
    transform: scaleX(1);
}

.testimonial:hover {
    border-color: var(--primary-color);
    transform: none;
}

.quote {
    margin-bottom: 2rem;
    position: relative;
}

.quote i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
    display: block;
}

.quote p {
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.quote::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 150px;
    color: var(--primary-color);
    opacity: 0.05;
    font-family: Georgia, serif;
    z-index: 1;
}

.client {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: var(--transition);
}

.testimonial:hover .client-image {
    border-color: var(--primary-color);
}

.client-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.client p {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    z-index: 10;
}

.testimonial-button-prev,
.testimonial-button-next {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: none;
    /* No transition */
    z-index: 15;
}

.testimonial-button-prev i,
.testimonial-button-next i {
    color: #fff;
    font-size: 16px;
}

/* Remove hover effects */
.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background: rgba(0, 0, 0, 0.6);
    /* Same as default */
    transform: none;
    /* No transform */
}

.testimonial-button-prev {
    left: -20px;
}

.testimonial-button-next {
    right: -20px;
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

/* Enhanced responsive styles for these sections */
@media (max-width: 992px) {

    .services-grid,
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .services-grid,
    .benefits-container {
        grid-template-columns: 1fr;
    }

    .testimonial-button-prev {
        left: -15px;
    }

    .testimonial-button-next {
        right: -15px;
    }

    .testimonial {
        padding: 30px 20px;
    }

    .quote i {
        font-size: 2rem;
    }

    .client {
        gap: 1rem;
    }

    .client-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 2rem 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        margin: 0 auto 1rem;
    }

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

    .client-image {
        margin: 0 auto 1rem;
    }

    .rating {
        justify-content: center;
    }

    .testimonial-button-prev,
    .testimonial-button-next {
        width: 40px;
        height: 40px;
    }
}

/* ===== ENHANCED STATS SECTION ===== */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background-color: rgba(69, 126, 130, 0.1);
    padding: 3rem 1.5rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.5s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(69, 126, 130, 0.2);
    flex: 1;
    min-width: 220px;
    max-width: 300px;
}

.stat-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 5px;
    position: relative;
    top: -5px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    position: relative;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(69, 126, 130, 0.15);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.stat-item:hover .stat-icon {
    transform: rotateY(180deg);
}

/* Responsive styles for stats section */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 280px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus {
        font-size: 2rem;
    }
}

/* ... existing code ... */

/* Add new background patterns and visual enhancements for certain sections */
.collections-section {
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(69, 126, 130, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.collections-section .container {
    position: relative;
    z-index: 5;
}

/* Enhanced map section */
.map-section {
    position: relative;
    height: 500px;
    filter: grayscale(0.8) contrast(1.1);
    transition: filter 0.5s ease;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.2);
    z-index: 10;
    pointer-events: none;
    transition: background-color 0.5s ease;
}

.map-section:hover {
    filter: grayscale(0) contrast(1);
}

.map-section:hover::before {
    background-color: rgba(18, 18, 18, 0);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Improved scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(69, 126, 130, 0.8);
}

::-webkit-scrollbar-track {
    background-color: var(--dark-bg);
}

/* Enhance image hover effects on collections and showcase items */
.category {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.5s ease;
    z-index: 1;
}

.category:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.showcase-item {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.5s ease;
}

.showcase-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Mobile First Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }

    .hero-slider h1 {
        font-size: 3rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 10px 15px;
    }

    .main-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-slider h1 {
        font-size: 2.5rem;
    }

    .hero-slider p {
        font-size: 1rem;
    }

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

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-image {
        margin-top: 30px;
        height: 350px;
    }

    .vision-mission-container {
        flex-direction: column;
    }

    .vision-box,
    .mission-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .services-grid,
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-form {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

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

    .hero-slider .slide-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-slider h1 {
        font-size: 2rem;
    }

    .hero-slider p {
        font-size: 0.9rem;
    }

    .services-grid,
    .benefits-container,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonialSwiper .swiper-slide {
        width: 100% !important;
    }

    .slider-navigation .swiper-button-prev,
    .slider-navigation .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .slider-navigation .swiper-button-prev {
        margin-left: 10px;
    }

    .slider-navigation .swiper-button-next {
        margin-right: 10px;
    }
}

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

    .hero-slider .slide-content {
        padding: 0 10px;
    }

    .hero-slider h1 {
        font-size: 1.5rem;
    }

    .hero-slider p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        height: 250px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .about-section::before,
    .about-section::after {
        display: none;
    }

    .about-image {
        height: 250px;
    }

    .vision-box,
    .mission-box {
        padding: 15px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .benefit-item {
        padding: 15px;
    }

    .client {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .client-image {
        margin: 0 auto 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }

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

    .footer-bottom-links {
        margin-top: 10px;
    }

    .testimonial-button-prev,
    .testimonial-button-next {
        width: 30px;
        height: 30px;
    }

    .lightbox-container {
        width: 95%;
        height: 80vh;
    }

    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

/* Add lightbox controls for mobile */
.lightbox-controls {
    position: fixed;
    /* Change to fixed position */
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 15;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Specific Touch Enhancements */
@media (hover: none) {

    /* For devices that don't support hover (mobile) */
    .service-card,
    .benefit-item,
    .category,
    .testimonial {
        /* Apply hover styles automatically */
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-hover);
    }

    .service-card::before,
    .benefit-item::before {
        opacity: 1;
        transform: scaleY(1);
    }

    .service-icon,
    .benefit-icon {
        background-color: var(--primary-color);
        color: #fff;
    }

    .service-card h3,
    .benefit-content h3 {
        color: var(--primary-color);
    }

    .category-image img {
        transform: scale(1.05);
    }

    .testimonial::before {
        opacity: 1;
        transform: scaleY(1);
    }

    /* Showcase item hover effect for mobile */
    .showcase-item .overlay {
        opacity: 0.9;
        /* Slightly see-through by default on mobile */
        background-color: rgba(0, 0, 0, 0.7);
    }

    .showcase-item .overlay-content {
        transform: translateY(0);
        opacity: 1;
    }

    /* Make buttons more touchable */
    .btn {
        padding: 12px 25px;
        margin-bottom: 15px;
    }

    /* Ensure dropdown menus are accessible */
    .dropdown-content {
        display: block;
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown-content a {
        color: #ddd;
        padding: 8px 10px;
    }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 480px) {

    /* Base layout and typography */
    .container {
        width: 95%;
        padding: 0 10px;
    }

    section {
        padding: 40px 0;
    }

    h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    p {
        font-size: 0.95rem;
    }

    /* Header improvements */
    header {
        height: 70px;
    }

    .logo img {
        max-width: 120px;
    }

    .menu-toggle {
        top: 20px;
        right: 15px;
    }

    /* Hero section fixes */
    .hero-slider {
        height: 80vh;
    }

    .hero-slider .swiper-slide {
        background-position: center center;
    }

    .hero-slider .slide-content {
        width: 100%;
        padding: 0 20px;
        align-items: center;
    }

    .hero-slider h1 {
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-slider p {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Grid layouts for mobile */
    .services-grid,
    .stats-grid,
    .benefits-container,
    .showcase-grid,
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section specific fixes */
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
        padding: 0;
    }

    .vision-mission-container {
        flex-direction: column;
    }

    .vision-box,
    .mission-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .collection-categories {
        flex-direction: column;
    }

    .category {
        width: 100%;
        margin-bottom: 25px;
    }

    /* Testimonials improvements */
    .testimonial {
        padding: 20px 15px;
    }

    .client {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .client-image {
        margin: 0 auto 15px;
    }

    .quote p {
        font-size: 0.95rem;
    }

    .testimonial-button-prev,
    .testimonial-button-next {
        width: 35px;
        height: 35px;
        position: absolute;
        top: auto;
        bottom: -20px;
    }

    .testimonial-button-prev {
        left: 50%;
        margin-left: -40px;
    }

    .testimonial-button-next {
        right: 50%;
        margin-right: -40px;
    }

    /* Contact form fixes */
    .contact-content {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }

    /* Footer improvements */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-column {
        margin-bottom: 25px;
    }

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

    .footer-bottom-links {
        margin-top: 15px;
    }

    /* Improved showcase for mobile */
    .showcase-item {
        height: 250px;
    }

    .showcase-filter {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        margin: 0 5px 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 350px) {
    .hero-slider h1 {
        font-size: 1.5rem !important;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .section-title h2::before {
        font-size: 2.2rem;
        top: -8px;
    }
}

/* ===== MAJOR MOBILE RESPONSIVE IMPROVEMENTS ===== */

/* Ensure basic mobile touch behavior */
@media (hover: none) {

    /* Apply pre-hover state to all interactive elements */
    .service-card,
    .benefit-item,
    .category,
    .showcase-item {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-hover);
    }

    /* Always show featured project overlays on mobile */
    .showcase-item .overlay {
        opacity: 0.9;
    }

    .showcase-item .overlay-content {
        opacity: 1;
        transform: translateY(0);
    }

    /* Improve touch targets */
    .btn,
    .filter-btn,
    .social-links a,
    .footer-links a,
    .main-menu a {
        padding: 12px 15px;
        min-height: 44px;
        /* Standard minimum touch target size */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Make touch targets bigger */
    .testimonial-button-prev,
    .testimonial-button-next,
    .swiper-button-prev,
    .swiper-button-next,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }
}

/* Mobile banner improvements */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }

    .hero-slider .swiper-slide {
        background-position: center center !important;
    }

    .hero-slider .slide-content {
        width: 100%;
        padding: 0 20px;
        text-align: center;
        align-items: center;
    }

    .hero-slider h1 {
        font-size: 2rem;
        text-align: center;
        padding: 0 10px;
    }

    .hero-slider p {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-slider .btn {
        margin: 0 auto;
    }

    /* Adjust slider controls for mobile */
    .slider-navigation {
        bottom: 20px;
        top: auto;
    }

    .swiper-pagination {
        bottom: 10px;
    }
}

/* Better testimonials for mobile */
@media (max-width: 768px) {
    .testimonial {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .client {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .client-image {
        margin: 0 auto 15px;
    }

    .testimonial-button-prev,
    .testimonial-button-next {
        bottom: -15px;
        top: auto;
        position: absolute;
        margin: 0;
    }

    .testimonial-button-prev {
        left: calc(50% - 50px);
    }

    .testimonial-button-next {
        right: calc(50% - 50px);
    }

    .testimonials-container {
        padding-bottom: 40px;
    }
}

/* Featured projects mobile improvements */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .showcase-item {
        height: 250px;
        margin: 0 0 2px 0;
    }

    .overlay-content h3 {
        font-size: 1.2rem;
    }

    .overlay-content p {
        font-size: 0.9rem;
    }

    .showcase-filter {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }

    .filter-btn {
        margin: 0 5px 10px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Footer mobile improvements */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links li {
        margin: 0 10px 10px;
    }

    .newsletter-form {
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .footer-bottom-links {
        margin-top: 15px;
    }
}

/* Extra fixes for very small screens */
@media (max-width: 350px) {
    .hero-slider h1 {
        font-size: 1.5rem !important;
    }

    .hero-slider p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .section-title h2 {
        font-size: 1.3rem !important;
    }

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

    .testimonial {
        padding: 15px 10px;
    }

    .showcase-item {
        height: 200px;
    }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary-color);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Mobile Hover Effects */
.mobile-hovered.vision-box,
.mobile-hovered.mission-box,
.mobile-hovered.service-card,
.mobile-hovered.benefit-item,
.mobile-hovered.category,
.mobile-hovered.about-image {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.mobile-hovered.vision-box::before,
.mobile-hovered.mission-box::before,
.mobile-hovered.service-card::before,
.mobile-hovered.benefit-item::before {
    opacity: 1;
    transform: scaleY(1);
}

.mobile-hovered.vision-box .vision-box h3,
.mobile-hovered.mission-box .mission-box h3,
.mobile-hovered.service-card h3,
.mobile-hovered.benefit-item .benefit-content h3 {
    color: var(--primary-color);
}

.mobile-hovered.vision-box i,
.mobile-hovered.mission-box i,
.mobile-hovered.service-card .service-icon,
.mobile-hovered.benefit-item .benefit-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.mobile-hovered.showcase-item .overlay {
    opacity: 0.9;
}

.mobile-hovered.showcase-item .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Lightbox Styles */
.project-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 28px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1000000;
    transition: all 0.2s ease;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    pointer-events: auto !important;
}

.lightbox-close:hover,
.lightbox-close:active,
.lightbox-close:focus {
    background-color: var(--primary-color);
    transform: rotate(90deg) !important;
    /* Override any transforms */
    color: white;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
}

.lightbox-image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-controls {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000000;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid white;
    z-index: 1000000;
}

/* Improved Footer for Mobile */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        margin: 0 auto 20px;
        max-width: 150px;
    }

    .footer-column {
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background-color: var(--primary-color);
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links li {
        margin: 0 10px 10px;
    }

    .footer-links a {
        padding: 8px 12px;
        display: inline-block;
        font-size: 0.9rem;
    }

    .newsletter-form {
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom-links {
        margin-top: 15px;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .social-links a {
        margin: 0 8px;
    }
}

/* Improved Contact/Get in Touch Section for Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 0;
    }

    .contact-info {
        text-align: center;
    }

    .section-title.left-align {
        text-align: center;
    }

    .section-title.left-align .title-line {
        margin: 0 auto;
    }

    .section-title.left-align h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-details {
        margin-top: 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-5px);
        background-color: rgba(69, 126, 130, 0.1);
    }

    .contact-item i {
        margin: 0 auto 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .social-links {
        justify-content: center;
        margin-top: 30px;
    }

    .contact-form {
        padding: 25px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
    }

    .contact-form .btn {
        width: 100%;
        padding: 15px;
        margin-top: 10px;
    }
}

/* Fix scrolling issues on mobile */
html,
body {
    overscroll-behavior: none;
    /* Prevent pull-to-refresh on mobile */
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

/* Force hover effects for mobile */
.force-hover.vision-box,
.force-hover.mission-box,
.force-hover.service-card,
.force-hover.benefit-item {
    transform: translateY(-5px) !important;
    box-shadow: var(--box-shadow-hover) !important;
}

.force-hover.vision-box::before,
.force-hover.mission-box::before,
.force-hover.service-card::before,
.force-hover.benefit-item::before {
    opacity: 1 !important;
    transform: scaleY(1) !important;
}

.force-hover.vision-box h3,
.force-hover.mission-box h3,
.force-hover.service-card h3,
.force-hover.benefit-item h3 {
    color: var(--primary-color) !important;
}

.force-hover.vision-box i,
.force-hover.mission-box i,
.force-hover.service-card .service-icon,
.force-hover.benefit-item .benefit-icon {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Enhanced mobile footer */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        position: relative;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .footer-logo {
        margin: 0 auto 20px;
        max-width: 150px;
    }

    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        position: relative;
        display: inline-block;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background-color: var(--primary-color);
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links li {
        margin: 0 10px 5px;
    }

    .footer-links a {
        padding: 8px 12px;
        display: inline-block;
        font-size: 0.95rem;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        opacity: 1;
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    .newsletter-form {
        max-width: 280px;
        margin: 0 auto;
        position: relative;
    }

    .newsletter-form input {
        width: 100%;
        padding: 12px 45px 12px 15px;
        border-radius: 25px;
    }

    .newsletter-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        height: calc(100% - 10px);
        width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-links {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .social-links a {
        margin: 0 8px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background-color: var(--primary-color);
        transform: translateY(-3px);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 25px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom p {
        margin-bottom: 15px;
        font-size: 0.9rem;
        opacity: 0.7;
    }

    .footer-bottom-links {
        margin-top: 10px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
        font-size: 0.85rem;
        opacity: 0.7;
    }

    .footer-bottom-links a:hover {
        opacity: 1;
        color: var(--primary-color);
    }
}

/* Improved Get in Touch section for mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 0;
    }

    .contact-info {
        text-align: center;
    }

    .section-title.left-align {
        text-align: center;
    }

    .section-title.left-align .title-line {
        margin: 10px auto;
    }

    .section-title.left-align h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-details {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .contact-item i {
        margin: 0 auto 15px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        background-color: rgba(69, 126, 130, 0.1);
        border-radius: 50%;
        color: var(--primary-color);
    }

    .contact-item h4 {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .social-links {
        justify-content: center;
        margin-top: 30px;
    }

    .contact-form {
        padding: 25px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--light-text);
        width: 100%;
        font-size: 1rem;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 5px rgba(69, 126, 130, 0.3);
    }

    .contact-form .btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
        margin-top: 10px;
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-form .btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
    }
}

/* Fix lightbox for mobile devices */
.project-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Loading Progress Styles */
#loading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

/* Fix Scrolling Issues */
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overscroll-behavior: none;
    /* Prevent pull-to-refresh */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

body {
    position: relative;
    overflow-y: auto !important;
    /* Enforce scrollability */
}

/* Mobile hover effects for elements that normally have hover states */
@media (max-width: 768px) {

    /* Force hover effects on mobile */
    .vision-box.hover-active,
    .mission-box.hover-active {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .service-card.hover-active {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .service-card.hover-active .service-icon {
        transform: translateY(-10px);
        color: var(--accent-color);
    }

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

    .showcase-item.hover-active .overlay {
        opacity: 0.9;
    }

    .showcase-item.hover-active .overlay-content {
        transform: translateY(0);
        opacity: 1;
    }

    .collection-item.hover-active::after {
        opacity: 0.75;
    }

    .collection-item.hover-active .collection-title {
        transform: translateY(-10px);
    }

    .testimonial-card.hover-active {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

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

    /* Ensure elements are properly tappable on mobile */
    a,
    button,
    .btn,
    .showcase-item,
    .collection-item,
    .service-card,
    .benefit-item,
    .vision-box,
    .mission-box,
    .contact-item,
    .testimonial-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        /* Remove tap highlight */
        touch-action: manipulation;
        /* Optimize for touch */
    }

    /* Add touch feedback for interactive elements */
    a:active,
    button:active,
    .btn:active {
        opacity: 0.7;
        transform: scale(0.98);
        transition: transform 0.1s, opacity 0.1s;
    }
}

/* Enhanced mobile responsive design for the Get in Touch section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info {
        width: 100%;
        padding: 30px 20px;
        border-radius: 10px;
        background: rgba(15, 15, 15, 0.7);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .contact-form {
        width: 100%;
        padding: 30px 20px;
        background: rgba(25, 25, 25, 0.7);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-item {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 8px;
        background: rgba(30, 30, 30, 0.6);
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .contact-icon {
        font-size: 24px;
        margin-right: 15px;
        color: var(--accent-color);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(40, 40, 40, 0.5);
        border-radius: 50%;
    }

    .contact-details h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contact-details p {
        font-size: 14px;
        opacity: 0.8;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-control {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
        background: rgba(30, 30, 30, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .form-control:focus {
        border-color: var(--accent-color);
        outline: none;
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 8px;
        background: var(--accent-color);
        border: none;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

    /* Social icons in contact section */
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(30, 30, 30, 0.6);
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
    }
}

/* Footer Enhancements for Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .footer-links {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-column {
        width: 45%;
        min-width: 120px;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 18px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--accent-color);
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 14px;
        opacity: 0.8;
        transition: all 0.3s ease;
        display: inline-block;
        padding: 5px 0;
    }

    .footer-column ul li a:hover {
        opacity: 1;
        color: var(--accent-color);
        transform: translateX(3px);
    }

    .copyright {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 14px;
        opacity: 0.7;
    }
}

/* Enhanced Lightbox Styles */
#global-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    /* Ensure it's above other elements */
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
    z-index: 10000;
    /* Ensure image is properly positioned */
}

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

.lightbox-details {
    width: 100%;
    padding: 20px;
    background-color: rgba(25, 25, 25, 0.8);
    border-radius: 0 0 5px 5px;
    margin-top: 10px;
}

.lightbox-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.lightbox-details p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10001;
    /* Highest z-index to ensure it's clickable */
    pointer-events: auto !important;
    /* Crucial for interaction */
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10001;
    /* Highest z-index to ensure it's clickable */
    pointer-events: auto !important;
    /* Crucial for interaction */
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .lightbox-details h3 {
        font-size: 18px;
    }

    .lightbox-details p {
        font-size: 14px;
    }
}

/* ... existing code ... */

/* Footer Styles for Mobile - Improved Version */
@media (max-width: 768px) {
    footer {
        padding: 60px 0 30px;
        position: relative;
        background: var(--darker-bg);
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('images/pattern-dark.png');
        opacity: 0.05;
        z-index: 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .footer-column {
        margin-bottom: 30px;
        text-align: left;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }

    .newsletter-form {
        position: relative;
        margin-top: 20px;
    }

    .newsletter-form input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 30px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .newsletter-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: var(--primary-color);
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 25px;
        justify-content: center;
    }

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

    .social-links a:hover {
        background: var(--primary-color);
        transform: translateY(-5px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 15px;
        font-size: 14px;
    }

    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .footer-bottom-links a:hover {
        color: var(--primary-color);
    }
}

/* Enhanced mobile responsive design for the Get in Touch section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

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

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-info {
        order: 1;
        margin-bottom: 30px;
    }

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

    .contact-item {
        display: flex;
        align-items: center;
        background: rgba(25, 25, 25, 0.5);
        padding: 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

    .contact-item i {
        width: 50px;
        height: 50px;
        background: rgba(35, 35, 35, 0.7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 20px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .contact-item h4 {
        font-size: 16px;
        margin-bottom: 5px;
        color: #fff;
    }

    .contact-item p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .contact-form {
        order: 3;
        background: rgba(25, 25, 25, 0.5);
        padding: 30px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(35, 35, 35, 0.7);
        color: #fff;
        font-size: 14px;
    }

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

    .contact-form .btn {
        width: 100%;
        padding: 15px;
        border: none;
        background: var(--primary-color);
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-form .btn:hover {
        background: #fff;
        color: var(--primary-color);
    }

    .social-links {
        order: 2;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 20px 0 30px;
    }
}

/* Loading styles updated for logo visibility */
#loading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: opacity 0.5s ease;
}

#loading-progress-container img {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    opacity: 1 !important;
    visibility: visible !important;
}

#loading-progress {
    width: 0%;
    height: 4px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#loading-text {
    margin-top: 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Hamburger menu styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        font-size: 18px;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--darker-bg);
        padding: 80px 20px 30px;
        overflow-y: auto;
        transition: all 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .main-menu.active {
        right: 0;
    }

    .main-menu li {
        display: block;
        margin: 0 0 15px;
    }

    .main-menu a {
        display: block;
        padding: 10px 15px;
        font-size: 16px;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

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

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 10px 0 10px 20px;
        background: transparent;
        box-shadow: none;
        display: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .dropdown.open .dropdown-content {
        display: block;
        max-height: 1000px;
    }
}

/* ... existing code ... */

/* MOBILE-ONLY DESIGN FOR GET IN TOUCH SECTION */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 30px;
        background: var(--darker-bg);
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .contact-info {
        width: 100%;
        order: 1;
        padding: 20px;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-info .section-title h2 {
        font-size: 28px;
    }

    .contact-info .section-title.left-align .title-line {
        margin: 0 auto;
    }

    .contact-info .section-title.left-align h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info p {
        text-align: center;
        margin-bottom: 30px;
    }

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

    .contact-item {
        display: flex;
        align-items: flex-start;
        padding: 15px;
        background: rgba(30, 30, 30, 0.6);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .contact-item i {
        width: 45px;
        height: 45px;
        min-width: 45px;
        background: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-right: 15px;
        transition: all 0.3s ease;
    }

    .contact-item h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: #fff;
    }

    .contact-item p {
        margin: 0;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        text-align: left;
    }

    .contact-form {
        width: 100%;
        order: 2;
        padding: 25px 20px;
        background: rgba(25, 25, 25, 0.6);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(35, 35, 35, 0.5);
        color: #fff;
        font-size: 16px;
    }

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

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' fill='white'%3E%3Cpath d='M0 0l6 6 6-6z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-right: 30px;
    }

    .contact-form .btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        background: var(--primary-color);
        color: #fff;
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .contact-form .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .social-links {
        width: 100%;
        order: 3;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(30, 30, 30, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-links a:hover {
        transform: translateY(-5px);
        background: var(--primary-color);
    }
}

/* MOBILE-ONLY DESIGN FOR FOOTER */
@media (max-width: 768px) {
    footer {
        background: var(--darker-bg);
        padding: 50px 0 20px;
        position: relative;
        overflow: hidden;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('images/pattern-dark.png');
        opacity: 0.05;
        z-index: 0;
        pointer-events: none;
    }

    .footer-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }

    .footer-logo img {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .footer-column p {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 15px;
    }

    .footer-column h3 {
        font-size: 18px;
        color: #fff;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        transition: all 0.3s ease;
        display: block;
        padding: 5px 10px;
    }

    .footer-links a:hover {
        color: var(--primary-color);
    }

    .newsletter-form {
        position: relative;
        margin-top: 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form input {
        width: 100%;
        padding: 12px 50px 12px 15px;
        border-radius: 50px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 14px;
    }

    .newsletter-form input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
    }

    .newsletter-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: var(--primary-color);
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .newsletter-form button:hover {
        background: #fff;
        color: var(--primary-color);
    }

    .footer-bottom {
        position: relative;
        z-index: 1;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 20px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 15px;
    }

    .footer-bottom-links {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .footer-bottom-links a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }

    .footer-bottom-links a:hover {
        color: var(--primary-color);
    }
}

/* MOBILE MENU STYLES - FIXED HAMBURGER FUNCTIONALITY */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .menu-toggle:hover {
        background: #fff;
        color: var(--primary-color);
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--darker-bg);
        padding: 80px 20px 30px;
        overflow-y: auto;
        transition: all 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .main-menu.active {
        right: 0;
    }

    .main-menu li {
        display: block;
        margin: 0 0 15px;
    }

    .main-menu a {
        display: block;
        padding: 10px 15px;
        font-size: 16px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .main-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 20px;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

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

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 10px 0 10px 20px;
        background: transparent;
        box-shadow: none;
        display: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .dropdown.open .dropdown-content {
        display: block;
        max-height: 1000px;
    }

    .dropdown>a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .dropdown.open>a::after {
        transform: rotate(180deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* ... existing code ... */

/* Additional Mobile Menu Styling */
@media (max-width: 992px) {

    /* Ensure menu toggle button is clearly visible */
    .menu-toggle {
        position: relative;
        z-index: 1001;
        width: 45px;
        height: 45px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Fixed positioning for the mobile menu */
    .main-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--darker-bg);
        z-index: 9999;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    }

    /* Ensure active class properly displays the menu */
    .main-menu.active {
        right: 0;
    }

    /* When menu is open, add overlay to background */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    /* Style the close button */
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        cursor: pointer;
        z-index: 1000;
        transition: all 0.3s ease;
    }

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

    /* Style the menu items */
    .main-menu li {
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }

    .main-menu a {
        color: #fff;
        font-size: 16px;
        display: block;
        padding: 12px 15px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .main-menu a:hover,
    .main-menu a.active {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Style dropdown menus */
    .dropdown>a {
        position: relative;
    }

    .dropdown>a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: 15px;
        transition: transform 0.3s ease;
    }

    .dropdown.open>a::after {
        transform: rotate(180deg);
    }

    .dropdown-content {
        position: static;
        background: rgba(0, 0, 0, 0.2);
        margin: 5px 0 15px;
        padding: 10px 0;
        border-radius: 5px;
        display: none;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 10px 15px 10px 25px;
        font-size: 14px;
    }
}

/* ... existing code ... */

/* Updated Brands Section Styles */
.brands-section {
    padding: 70px 0;
    background: var(--dark-bg);
    position: relative;
}

.brands-slider.swiper {
    padding: 20px 0 50px;
    margin-top: 20px;
}

.brands-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.brand-item {
    width: 100%;
    max-width: 180px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.brand-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* Center alignment adjustments for 4 brands */
@media (min-width: 1024px) {
    .brands-slider .swiper-wrapper {
        justify-content: center;
    }

    .brands-slider .swiper-slide {
        width: 25%;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .brands-slider .swiper-wrapper {
        justify-content: center;
    }

    .brands-slider .swiper-slide {
        width: 33.33%;
    }
}

@media (max-width: 767px) and (min-width: 480px) {
    .brands-slider .swiper-wrapper {
        justify-content: center;
    }

    .brands-slider .swiper-slide {
        width: 50%;
    }
}

@media (max-width: 479px) {
    .brands-slider .swiper-wrapper {
        justify-content: center;
    }

    .brands-slider .swiper-slide {
        width: 100%;
    }
}

/* ... existing code ... */

/* Add this to ensure Font Awesome icons display properly on mobile */
@media (max-width: 768px) {

    /* Fix service icons in "What We Offer" section */
    .service-card .service-icon {
        background-color: rgba(69, 126, 130, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: var(--primary-color);
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        border-radius: 50%;
    }

    .service-card .service-icon i {
        display: inline-block !important;
        font-size: 26px !important;
    }

    /* Fix benefit icons in "Why Choose Servah" section */
    .benefit-item .benefit-icon {
        background-color: rgba(69, 126, 130, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: var(--primary-color);
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .benefit-item .benefit-icon i {
        display: inline-block !important;
        font-size: 26px !important;
    }
}

/* ... existing code ... */

/* Ensure showcase items display properly on mobile */
@media (max-width: 768px) {

    /* Fix showcase grid layout */
    .showcase-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .showcase-item {
        flex: 0 0 calc(50% - 15px);
        min-height: 200px;
        margin-bottom: 15px;
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        transform: none !important;
    }

    .showcase-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block !important;
    }

    /* Override lazy loading for critical mobile view */
    .showcase-item img.lazy {
        opacity: 1;
        display: block !important;
    }

    /* Ensure overlay content is visible */
    .showcase-item .overlay {
        background-color: rgba(0, 0, 0, 0.7);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.9;
    }

    .showcase-item .overlay-content {
        text-align: center;
        padding: 15px;
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .showcase-item {
        flex: 0 0 100%;
    }
}

/* ... existing code ... */

/* Fix stats section to ensure horizontal centering on mobile */
@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        padding: 20px 15px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        flex: 0 0 100%;
        max-width: 280px;
        width: 100%;
        margin-bottom: 20px;
    }
}

/* ... existing code ... */

/* Fix for mobile Vision/Mission icons alignment */
@media (max-width: 768px) {

    .vision-box i,
    .mission-box i {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        border-radius: 50% !important;
        background-color: var(--primary-color) !important;
        color: var(--darker-bg) !important;
        margin: 0 auto 1rem auto !important;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .vision-box h3,
    .mission-box h3 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .vision-box,
    .mission-box {
        text-align: center !important;
        padding: 1.5rem !important;
    }
}

/* Fix for service and benefit icons always visible on mobile */
@media (max-width: 768px) {
    .service-card .service-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 70px !important;
        height: 70px !important;
        background-color: var(--primary-color) !important;
        border-radius: 50% !important;
        margin: 0 auto 1.5rem auto !important;
        transition: none !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .service-card .service-icon i {
        font-size: 28px !important;
        color: var(--darker-bg) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        transition: none !important;
    }

    .benefit-item .benefit-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 60px !important;
        height: 60px !important;
        background-color: var(--primary-color) !important;
        border-radius: 50% !important;
        margin: 0 auto 1.5rem auto !important;
        transition: none !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .benefit-item .benefit-icon i {
        font-size: 24px !important;
        color: var(--darker-bg) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        transition: none !important;
    }

    /* Ensure proper structure and alignment of benefit items */
    .benefit-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }

    .benefit-content {
        text-align: center !important;
    }

    /* Ensure proper structure and alignment of service cards */
    .service-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }

    .service-card h3 {
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
    }

    .service-card p {
        text-align: center !important;
    }
}

/* Special styling for touch devices */
@media (hover: none) {

    /* Vision and Mission boxes */
    .vision-box i,
    .mission-box i {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        border-radius: 50% !important;
        background-color: var(--primary-color) !important;
        color: var(--darker-bg) !important;
        margin: 0 auto 1rem auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Service Cards */
    .service-card .service-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 70px !important;
        height: 70px !important;
        background-color: var(--primary-color) !important;
        border-radius: 50% !important;
        margin: 0 auto 1.5rem auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .service-card .service-icon i {
        font-size: 28px !important;
        color: var(--darker-bg) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Benefit Items */
    .benefit-item .benefit-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 60px !important;
        height: 60px !important;
        background-color: var(--primary-color) !important;
        border-radius: 50% !important;
        margin: 0 auto 1.5rem auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .benefit-item .benefit-icon i {
        font-size: 24px !important;
        color: var(--darker-bg) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Disable all fancy hover effects on touch devices */
    .service-card::before,
    .service-card:hover::before,
    .benefit-item::before,
    .benefit-item:hover::before,
    .vision-box::before,
    .vision-box:hover::before,
    .mission-box::before,
    .mission-box:hover::before {
        opacity: 0 !important;
    }
}

/* Fix dropdown visibility on mobile */
@media (max-width: 992px) {

    /* Clean dropdown styling */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: transparent;
        box-shadow: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        display: block;
    }

    .dropdown.open .dropdown-content {
        max-height: 1000px;
        padding: 10px 0;
    }

    /* Remove default arrow and style dropdown links */
    .dropdown>a::after {
        content: '\f107' !important;
        font-family: 'Font Awesome 5 Free' !important;
        font-weight: 900 !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        transition: transform 0.3s ease !important;
    }

    .dropdown.open>a::after {
        transform: translateY(-50%) rotate(180deg) !important;
    }

    /* Style dropdown items (categories) */
    .dropdown-content a {
        padding: 10px 15px !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        display: block !important;
        margin: 5px 0 !important;
        transition: all 0.3s ease !important;
        border-left: 2px solid rgba(255, 255, 255, 0.1) !important;
        background: rgba(10, 10, 10, 0.5) !important;
        border-radius: 4px !important;
    }

    .dropdown-content a:hover {
        background: rgba(69, 126, 130, 0.2) !important;
        color: var(--primary-color) !important;
        padding-left: 20px !important;
        border-left: 2px solid var(--primary-color) !important;
    }

    /* Highlight active dropdown parent */
    .dropdown.open>a {
        background: rgba(69, 126, 130, 0.1) !important;
        color: var(--primary-color) !important;
    }

    /* Space management for dropdown */
    .main-menu li.dropdown {
        margin-bottom: 5px !important;
    }

    /* Remove duplicate arrow class completely */
    .dropdown-arrow {
        display: none !important;
    }
}

/* Enhanced dropdown arrow styles for mobile */
@media (max-width: 992px) {

    /* Better styling for the dropdown arrow */
    .dropdown-arrow {
        display: none;
    }

    .dropdown.open .dropdown-arrow {
        transform: none;
    }

    /* Better dropdown layout */
    .main-menu .dropdown {
        position: relative !important;
    }

    /* Space management */
    .main-menu li.dropdown:not(.open) {
        margin-bottom: 15px !important;
    }
}

/* ===== VIEW MORE GALLERY CONTAINER ===== */
.gallery-count {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.gallery-count span {
    font-weight: 700;
}

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

.view-more-container .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.view-more-container .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(69, 126, 130, 0.3);
}

.view-more-container .btn i {
    font-size: 1.2rem;
}

.images-loaded-count {
    color: var(--medium-text);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.images-loaded-count span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Showcase grid improvements for dynamic loading */
#gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    min-height: 400px;
}

#gallery-grid .showcase-item {
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

#gallery-grid .showcase-item img.loaded {
    opacity: 1;
}

#gallery-grid .showcase-item img:not(.loaded) {
    opacity: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }

    .gallery-count {
        font-size: 1rem;
    }

    .view-more-container .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SHOWCASE/PORTFOLIO SECTION ===== */
.showcase-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

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

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    aspect-ratio: 4/3;
    background-color: var(--dark-bg);
}

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

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

.showcase-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .overlay {
    opacity: 1;
}

.showcase-item .overlay-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.showcase-item .overlay-content p {
    color: var(--light-text);
    font-size: 0.9rem;
    opacity: 0.8;
}

.showcase-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--light-text);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Force page-loader to be hidden immediately */
.page-loader {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ===== SWIPER ARROW FIX - Make arrows visible ===== */
.slider-navigation .swiper-button-prev::after,
.slider-navigation .swiper-button-next::after {
    color: #fff !important;
    font-size: 22px;
    font-weight: 700;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: #fff !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* ===== TESTIMONIAL CLIENT STYLING FIX (no image) ===== */
.testimonial .client {
    justify-content: center;
    text-align: center;
}

.testimonial .client-info {
    text-align: center;
}

/* ===== MOBILE SCROLL FIX ===== */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    touch-action: pan-y;
    overscroll-behavior-y: none;
}

/* Fix for scroll getting stuck */
section {
    overflow: visible;
    position: relative;
}

/* ===== MOBILE ALIGNMENT FIXES ===== */
@media (max-width: 992px) {

    /* Fix container overflow */
    .container {
        width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }

    /* Fix hero content alignment */
    .hero-slider .slide-content {
        margin-left: 5%;
        margin-right: 5%;
        padding: 1.5rem;
        max-width: 90%;
    }

    .hero-slider h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-slider p {
        font-size: 1rem;
    }

    /* Fix slider navigation on mobile */
    .slider-navigation .swiper-button-prev,
    .slider-navigation .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
    }

    .slider-navigation .swiper-button-prev {
        margin-left: 10px;
    }

    .slider-navigation .swiper-button-next {
        margin-right: 10px;
    }

    .slider-navigation .swiper-button-prev::after,
    .slider-navigation .swiper-button-next::after {
        font-size: 16px;
    }

    /* Fix about section alignment */
    .about-content {
        padding: 0 15px;
    }

    /* Fix services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Fix collections alignment */
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Fix stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fix testimonials alignment */
    .testimonial {
        padding: 1.5rem;
    }

    .testimonial .quote p {
        font-size: 0.95rem;
    }

    /* Fix contact section */
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    /* Fix footer alignment */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    /* Fix section padding */
    section {
        padding: 60px 0;
    }

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

    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .hero-slider h1 {
        font-size: 1.6rem;
    }

    .hero-slider p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-slider .slide-content {
        margin-left: 3%;
        margin-right: 3%;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

/* ===== LIGHT THEME COMPREHENSIVE OVERRIDES ===== */

/* Header - clean white with subtle shadow */
header {
    background-color: #fff !important;
    border-bottom: 1px solid #e8e8e8 !important;
}

header.sticky {
    background-color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Logo container */
.logo img {
    filter: none !important;
}

/* Navigation - grey text */
.nav-link,
.main-menu a {
    color: #615151 !important;
}

.nav-link:hover,
.main-menu a:hover {
    color: var(--primary-color) !important;
}

/* Dropdown styling */
.dropdown-content {
    background-color: #fff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.dropdown-content a {
    color: #615151 !important;
}

.dropdown-content a:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Mobile menu */
.main-menu.active {
    background-color: #fff !important;
}

.menu-toggle span {
    background-color: #615151 !important;
}

/* ===== SECTION BACKGROUNDS ===== */

/* Services section - OVERRIDE dark gradient */
.services-section {
    background-color: #f8f8f8 !important;
}

.services-section::before {
    display: none !important;
}

.service-card {
    background-color: #fff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.service-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-card h3 {
    color: #615151 !important;
}

.service-card p {
    color: #8a7a7a !important;
}

.service-icon {
    background-color: rgba(69, 126, 130, 0.1) !important;
}

.service-icon i {
    color: var(--primary-color) !important;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color) !important;
}

.service-card:hover .service-icon i {
    color: #fff !important;
}

/* Why Choose Section - override dark */
.why-choose-section {
    background-color: #fff !important;
}

.why-choose-section::after {
    background-color: rgba(69, 126, 130, 0.03) !important;
}

.benefit-item {
    background-color: #f8f8f8 !important;
    border: 1px solid #e0e0e0 !important;
}

.benefit-item:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.benefit-icon {
    color: var(--primary-color) !important;
}

.benefit-item h4 {
    color: #615151 !important;
}

.benefit-item p {
    color: #8a7a7a !important;
}

/* Stats section - USE GREY not teal */
.stats-section {
    background-color: #615151 !important;
}

.stats-section::before {
    display: none !important;
}

.stat-item {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.stat-number {
    color: #fff !important;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* About section */
.about-section {
    background-color: #fff !important;
}

.about-text h2,
.about-text h3 {
    color: #615151 !important;
}

.about-text p {
    color: #8a7a7a !important;
}

.floating-badge {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.vision-box,
.mission-box {
    background-color: #f8f8f8 !important;
    border: 1px solid #e0e0e0 !important;
}

.vision-box h4,
.mission-box h4 {
    color: #615151 !important;
}

.vision-box p,
.mission-box p {
    color: #8a7a7a !important;
}

/* Collections section */
.collections-section {
    background-color: #f8f8f8 !important;
}

.collection-item {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Showcase section */
.showcase-section {
    background-color: #fff !important;
}

/* Testimonials section */
.testimonials-section {
    background-color: #f8f8f8 !important;
}

.testimonial {
    background-color: #fff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.testimonial .quote i {
    color: var(--primary-color) !important;
}

.testimonial .quote p {
    color: #615151 !important;
}

.client-info h4 {
    color: #615151 !important;
}

.client-info p {
    color: #8a7a7a !important;
}

.rating i {
    color: #f5a623 !important;
}

/* Testimonial navigation buttons */
.testimonial-button-prev,
.testimonial-button-next {
    background-color: #615151 !important;
    border: none !important;
}

.testimonial-button-prev i,
.testimonial-button-next i {
    color: #fff !important;
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background-color: var(--primary-color) !important;
}

/* Brands section */
.brands-section {
    background-color: #fff !important;
}

.brand-item {
    background-color: #f8f8f8 !important;
    border: 1px solid #e0e0e0 !important;
}

.brand-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Contact section */
.contact-section {
    background-color: #f8f8f8 !important;
}

.contact-info h3 {
    color: #615151 !important;
}

.contact-info i {
    color: var(--primary-color) !important;
}

.contact-info h4 {
    color: #615151 !important;
}

.contact-info p,
.contact-info a {
    color: #8a7a7a !important;
}

.contact-info a:hover {
    color: var(--primary-color) !important;
}

/* SOCIAL ICONS IN CONTACT - FIX VISIBILITY */
.contact-section .social-links a,
.contact-info .social-links a {
    background-color: #615151 !important;
    color: #fff !important;
    border: none !important;
}

.contact-section .social-links a:hover,
.contact-info .social-links a:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Contact form */
.contact-form {
    background-color: #fff !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.contact-form h3 {
    color: #615151 !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background-color: #f8f8f8 !important;
    border: 1px solid #e0e0e0 !important;
    color: #615151 !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(69, 126, 130, 0.1) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a7a7a !important;
}

/* Map section */
.map-section {
    background-color: #f8f8f8 !important;
}

/* ===== FOOTER - Keep Dark for contrast ===== */
footer {
    background-color: #2a2a2a !important;
    color: #f5f5f5 !important;
}

footer h4 {
    color: #f5f5f5 !important;
}

footer p,
footer a {
    color: #aaa !important;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #aaa !important;
}

/* Footer social links */
footer .social-links a {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #f5f5f5 !important;
}

footer .social-links a:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Newsletter form in footer */
.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #f5f5f5 !important;
}

.newsletter-form input::placeholder {
    color: #aaa !important;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
}

.btn-primary:hover,
.btn:hover {
    background-color: #3a6a6d !important;
    box-shadow: 0 5px 20px rgba(69, 126, 130, 0.3) !important;
}

.btn-secondary,
.btn-outline {
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-secondary:hover,
.btn-outline:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Hero buttons - keep white on dark overlay */
.hero-slider .btn {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* ===== SECTION TITLES ===== */
.section-title h2 {
    color: #615151 !important;
}

.section-title p {
    color: #8a7a7a !important;
}

.section-title h2::before {
    color: var(--primary-color) !important;
    opacity: 0.06 !important;
}

.title-line {
    background-color: var(--primary-color) !important;
}

/* Filter buttons */
.filter-btn {
    color: #615151 !important;
    border: 1px solid #e0e0e0 !important;
    background-color: #fff !important;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

/* Back to top */
.back-to-top {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.back-to-top:hover {
    background-color: #3a6a6d !important;
}

/* Swiper arrows - fix visibility */
.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
    background-color: rgba(97, 81, 81, 0.8) !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--primary-color) !important;
}

/* ADD VISUAL DEPTH - shadows and subtle effects */
.about-image-container {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
}

.collection-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.showcase-item {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.showcase-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ===== HERO SLIDER TEXT - WHITE COLOR ===== */
.hero-slider .slide-content h1 {
    color: #fff !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-slider .slide-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* ===== SERVICES CAROUSEL SECTION ===== */
.services-carousel-section {
    background-color: #f8f8f8 !important;
    padding: 80px 0 !important;
}

.servicesSwiper {
    padding: 20px 0 60px 0 !important;
}

.service-slide-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.service-slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-slide-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-slide-item:hover .service-slide-image img {
    transform: scale(1.08);
}

.service-slide-content {
    padding: 1.5rem;
    text-align: center;
}

.service-slide-content h3 {
    color: #615151 !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-slide-content p {
    color: #8a7a7a !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Services Navigation */
.services-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
}

.services-navigation .swiper-button-prev,
.services-navigation .swiper-button-next {
    position: relative !important;
    width: 45px !important;
    height: 45px !important;
    background-color: rgba(97, 81, 81, 0.9) !important;
    border-radius: 50% !important;
    pointer-events: auto;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
}

.services-navigation .swiper-button-prev::after,
.services-navigation .swiper-button-next::after {
    font-size: 18px !important;
    color: #fff !important;
}

.services-pagination {
    bottom: 10px !important;
}

.services-pagination .swiper-pagination-bullet {
    background-color: #615151 !important;
    opacity: 0.4;
}

.services-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
    opacity: 1;
    transform: scale(1.2);
}

/* ===== TESTIMONIAL ALIGNMENT FIX ===== */
.testimonials-section .swiper-wrapper {
    align-items: stretch !important;
}

.testimonials-section .swiper-slide {
    height: auto !important;
    display: flex;
}

.testimonial {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 320px;
}

.testimonial .quote {
    flex: 1;
}

.testimonial .client {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* ===== RESPONSIVE SERVICES CAROUSEL ===== */
@media (max-width: 992px) {
    .service-slide-image {
        height: 200px;
    }

    .service-slide-content {
        padding: 1rem;
    }

    .service-slide-content h3 {
        font-size: 1.1rem;
    }

    .service-slide-content p {
        font-size: 0.85rem;
    }

    .services-navigation {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-carousel-section {
        padding: 50px 0 !important;
    }

    .service-slide-image {
        height: 180px;
    }

    .testimonial {
        min-height: 280px;
        padding: 1rem;
    }

    .testimonial .quote p {
        font-size: 0.9rem;
    }
}

/* ===== SERVICE CAROUSEL SYMMETRY FIX ===== */
.servicesSwiper .swiper-wrapper {
    align-items: stretch !important;
}

.servicesSwiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.service-slide-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 380px;
}

.service-slide-image {
    flex-shrink: 0;
    height: 200px !important;
}

.service-slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 130px;
}

.service-slide-content h3 {
    margin-bottom: 0.75rem;
    min-height: 1.6rem;
}

.service-slide-content p {
    margin: 0;
    line-height: 1.6;
}

/* Ensure text doesn't overflow and cards stay uniform */
@media (max-width: 992px) {
    .service-slide-item {
        min-height: 340px;
    }

    .service-slide-image {
        height: 180px !important;
    }
}

@media (max-width: 576px) {
    .service-slide-item {
        min-height: 300px;
    }

    .service-slide-image {
        height: 160px !important;
    }

    .service-slide-content {
        min-height: 100px;
        padding: 1rem;
    }
}

/* ===== WHAT WE OFFER CAROUSEL ===== */
.what-we-offer-section {
    background-color: #fff !important;
    padding: 80px 0 !important;
}

.what-we-offer-section::before {
    display: none !important;
}

.whatWeOfferSwiper {
    padding: 20px 0 60px 0 !important;
}

.offer-slide-item {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.offer-slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(69, 126, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.offer-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.offer-slide-item:hover .offer-icon {
    background-color: var(--primary-color);
}

.offer-slide-item:hover .offer-icon i {
    color: #fff;
}

.offer-slide-item h3 {
    color: #615151 !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.offer-slide-item p {
    color: #8a7a7a !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Offer Navigation */
.offer-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
}

.offer-navigation .swiper-button-prev,
.offer-navigation .swiper-button-next {
    position: relative !important;
    width: 45px !important;
    height: 45px !important;
    background-color: rgba(97, 81, 81, 0.9) !important;
    border-radius: 50% !important;
    pointer-events: auto;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
}

.offer-navigation .swiper-button-prev::after,
.offer-navigation .swiper-button-next::after {
    font-size: 18px !important;
    color: #fff !important;
}

.offer-pagination .swiper-pagination-bullet {
    background-color: #615151 !important;
    opacity: 0.4;
}

.offer-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
    opacity: 1;
    transform: scale(1.2);
}

/* What We Offer Swiper symmetry */
.whatWeOfferSwiper .swiper-wrapper {
    align-items: stretch !important;
}

.whatWeOfferSwiper .swiper-slide {
    height: auto !important;
    display: flex;
}

/* ===== TESTIMONIAL CLIENT INFO LEFT ALIGN ===== */
.testimonial .client {
    text-align: left !important;
}

.testimonial .client-info {
    text-align: left !important;
}

.testimonial .client-info h4 {
    text-align: left !important;
}

.testimonial .client-info p {
    text-align: left !important;
}

.testimonial .rating {
    justify-content: flex-start !important;
    text-align: left !important;
}

/* Responsive Offer Carousel */
@media (max-width: 992px) {
    .offer-navigation {
        display: none;
    }

    .offer-slide-item {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .what-we-offer-section {
        padding: 50px 0 !important;
    }

    .offer-slide-item {
        min-height: 220px;
        padding: 1.5rem 1rem;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
    }

    .offer-icon i {
        font-size: 1.5rem;
    }
}