:root {
            --primary: #3b3c3d;
            --secondary: #d66f0f;
            --light: #f8f9fa;
            --dark: #212529;
            --accent: #186fa1;
            --text: #333;
            --text-light: #707575;
            --bg-color: #f5f5f5; 
            --card-bg: #b89f7dab;
            --border-color: #f1f1f1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--bg-color);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--card-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            max-width: 80px;
            height: auto;
            margin-right: 0;
        }

        .logo h1 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 700;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px; /* Consistent spacing between links */
        }

        .nav-links li {
            margin-left: 0; /* Remove margin, handled by gap */
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a.active {
            color: var(--secondary);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .phone-info {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .phone-info .phone-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            gap: 12px;
        }

        .phone-info .phone-link:hover {
            color: var(--secondary);
        }

        .phone-info .phone-link i {
            font-size: 1rem;
            background-color: var(--secondary);
            color: var(--light);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-info .phone-link span {
            font-size: 1rem;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            margin-right: 10px;
        }

        @media (max-width: 992px) {
            .logo img {
                max-width: 120px;
            }
            .logo h1 {
                font-size: 1.3rem;
            }
            .nav-links {
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                z-index: 2;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(255, 255, 255, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
                gap: 30px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links a {
                font-size: 1.2rem;
            }
            
            /* .phone-info .phone-link i {
                display: none;
                left: -5px;
            } */

            .phone-info .phone-link span {
                font-size: 1rem;
                font-weight: 600;
                text-align: center;
            }
            .about-content{
                padding: 0 30px;
            }
        }

        @media (max-width: 576px) {
            .logo img {
                max-width: 60px;
            }
            
            .logo h1 {
                font-size: 1.1rem;
            }
            
            .phone-info {
                font-size: 0.85rem;
                right: 50px;
            }
            
            .phone-info .phone-link i {
                font-size: 1rem;
            }
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            overflow: hidden;
            padding-top: 50px;
        }

        .swiper-slide {
            position: relative;
            height: 700px;
            max-height: 700px;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background-size: cover;
            background-position: center;
        }

        .hero-slide-1 {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero/img1.jpg') no-repeat center center/cover;
        }

        .hero-slide-2 {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero/img2.jpg') no-repeat center center/cover;
        }

        .hero-slide-3 {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero/img1.jpg') no-repeat center center/cover;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }

        .hero-content .btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            animation: fadeInUp 1.4s ease;
        }

        .hero-content .btn:hover {
            background: #f1a853;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-slider .swiper-pagination {
            position: absolute;
            bottom: 60px;
        }

        .hero-slider .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: white;
            opacity: 0.5;
            transition: all 0.3s;
        }

        .hero-slider .swiper-pagination-bullet-active {
            background: var(--secondary);
            opacity: 1;
            transform: scale(1.2);
        }

        .hero-slider .swiper-button-next,
        .hero-slider .swiper-button-prev {
            color: white;
            width: 30px;
            height: 30px;
            transition: all 0.3s;
            opacity: 0;
        }

        .hero-slider:hover .swiper-button-next,
        .hero-slider:hover .swiper-button-prev {
            opacity: 1;
        }

        .hero-slider .swiper-button-next:hover,
        .hero-slider .swiper-button-prev:hover {
            color: var(--secondary);
        }

        /* About Section */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            margin-top: 40px;
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
            /*text-align: center;*/
        }

        .about-text p {
            margin-bottom: 15px;
            color: var(--text-light);
            text-align: justify;
        }

        .about-features {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
        }

        .feature-item p{
            text-align: left;
        }

        .feature-icon {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-right: 15px;
            margin-top: 5px;
        }

        /* Services Section */
        .services {
            background-color: var(--bg-color);
            
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .services h2{
            margin-top: 50px;
            color: var(--primary);
            
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 40px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            text-align: justify;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .read-more:hover {
            color: #c0392b;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* Products Section */
        .products .section-title {
            margin-bottom: 40px;
        }

        .product-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 8px 20px;
            background: rgba(236, 235, 234, 0.644);
            border: 1px solid #ddd;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--secondary);
            color: white;
            border-color: var(--secondary);
        }

        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .product-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--secondary);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .product-content {
            padding: 20px;
        }

        .product-category {
            display: inline-block;
            color: var(--accent);
            font-size: 0.8rem;
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .price {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.2rem;
        }

        /* .add-to-cart {
            background: var(--primary);
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .add-to-cart:hover {
            background: var(--secondary);
        } */

        /* Testimonials Section */
        .testimonials {
            height: 650px;
            background: linear-gradient(rgb(0, 0, 0), rgba(70, 42, 3, 0.692)), url('images/serviceSection/service-bg.jpg') no-repeat center center/cover;background-attachment: fixed;
        }

        .testimonials .section-title h2 {
            color: var(--light);
            margin-top: 50px;
        }

        .testimonials .section-title h2::after {
            background: var(--secondary);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .swiper {
            width: 100%;
            padding: 30px 0;
        }

        .testimonial-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 0 30px;
            margin-bottom: 400px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--dark);
            opacity: 0.5;
        }

        .testimonial-text::before {
            position: absolute;
            top: -15px;
            left: -10px;
        }

        .testimonial-text::after {
            position: absolute;
            bottom: -30px;
            right: -10px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 15px;
            border: 3px solid var(--bg-color);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-name {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .author-role {
            color: var(--light);
            font-size: 0.9rem;
        }

        .testimonial-slider .swiper-pagination {
            position: relative;
            margin-top: -350px;
        }

        .testimonial-slider .swiper-pagination-bullet {
            background: white;
            opacity: 0.5;
            width: 12px;
            height: 12px;
        }

        .testimonial-slider .swiper-pagination-bullet-active {
            background: var(--secondary);
            opacity: 1;
        }

        /* Gallery Section */
        .gallery {
            background-color: #f9f9f9;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-icon {
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Lightbox Styles */
        .lg-backdrop {
            background-color: rgba(0, 0, 0, 0.9);
        }

        .lg-outer .lg-thumb-outer {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .lg-actions .lg-next, 
        .lg-actions .lg-prev {
            background-color: rgba(0, 0, 0, 0.3);
            color: white;
        }

        .lg-toolbar {
            background-color: transparent;
        }

        .lg-progress-bar .lg-progress {
            background-color: var(--secondary);
        }

/* Contact Section */
.contact-section {
    background: var(--bg-color);
    background-attachment: fixed;
    padding: 80px 0;
    color: var(--dark);
}
.contact-section .section-title h2 {
    color: var(--dark);
    margin-top:-20px;
}

.contact-section .section-title h2::after {
    background: var(--secondary);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex: 1;
    min-width: 300px;
    justify-content: center;
}

.contact-item {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--bg-color);
    width: 50px;
    height: 50px;
    background: var(--secondary); /* Slightly more opaque for visibility */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark); /* White for readability */
}

.contact-text p, .contact-text a {
    color: var(--dark); /* White for readability */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--secondary);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    /* background: rgba(167, 165, 165, 0.616); */
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
}

/* .contact-form h2 {
    font-size: 1.8rem;
    color: #b36808;
    margin-bottom: 15px;
    text-align: center;
} */

.contact-form p {
    color: #b36808;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-col {
    flex: 1;
    min-width: 150px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

input.form-control{
    border: 1px solid #b36808;
    background: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    border: 1px solid #b36808;
    background: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary), #eb9342);
    background-size: 200% auto;
    color: white;
    border: none;
    padding: 12px;
    font-size: 15px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.submit-btn:hover {
    background-position: right center;
}

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 30px 0 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 20px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }

        .footer-col p {
            margin-bottom: 20px;
            color: #bdc3c7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        .footer-logo{
            height: 120px;
        }

        .newsletter-form {
            display: flex;
            align-items: center;
            gap: 5px; /* Ensure no gap between input and button */
        }

        .newsletter-form input {
            width: auto;
            padding: 12px 10px;
            border-right: none;
            border-radius: 5px 0 0 5px;
            border-color: 1px solid var(--secondary);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .newsletter-form button {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            padding: 15px 15px;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: var(--secondary);
        }
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #d68e4a;
            transform: translateY(-5px);
        }

        

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #212529;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* .loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 1s linear infinite;
} */

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Notification Toast */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .toast.show {
            opacity: 1;
            visibility: visible;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from {
                transform: translate(-50%, 100%);
                opacity: 0;
            }
            to {
                transform: translate(-50%, 0);
                opacity: 1;
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-slider {
                height: 500px;
            }

            .swiper-slide {
                height: 80vh;
                max-height: 600px;
                min-height: 350px;
            }

            .hero-content h1 {
                font-size: clamp(1.8rem, 4.5vw, 2.8rem);
            }

            .hero-content p {
                font-size: clamp(0.9rem, 2.8vw, 1.1rem);
            }

            .hero-content .btn {
                padding: 8px 20px;
                font-size: clamp(0.85rem, 2.2vw, 0.95rem);
            }

            .about-content {
                flex-direction: column;
            }
            
            .about-img, .about-text {
                width: 100%;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }

            .contact-container {
                flex-direction: column;
                align-items: center;
            }

            .contact-info {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .contact-item {
                flex: 0 1 auto;
                min-width: 150px;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .footer-col {
                min-width: 100%;
                text-align: center;
            }
            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%); /* Ensure underline stays centered */
            }


            .footer-links-col .footer-links {
                justify-content: center;
            }

            .footer-links li {
                flex: 0 1 100px;
            }
            .social-links {
                font-size: 0.9rem;
                justify-content: center;
            }
            .newsletter-form{
                justify-content: center;
            }
            .about-text h3,p{
                text-align: center;
            }
            .phone-info{
                margin-right: 50px;
            }
        }

        @media (max-width: 768px) {
            .hero-slider {
                height: 400px;
            }

            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                gap: 30px;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .hero-slider .swiper-button-next,
            .hero-slider .swiper-button-prev {
                display: none;
            }

            .testimonials .swiper-slide {
                height: 100vh;
                max-height: 700px;
                min-height: 300px;
            }

            .hero-content {
                padding: 15px;
                bottom: 100px;
            }

            .hero-content h1 {
                font-size: clamp(1.6rem, 4vw, 2.2rem);
            }

            .hero-content p {
                font-size: clamp(0.85rem, 2.5vw, 1rem);
            }

            .hero-content .btn {
                padding: 8px 18px;
                font-size: clamp(0.8rem, 2vw, 0.9rem);
            }

            .hero-slider .swiper-pagination {
                top: 220px;
            }

            .hero-slider .swiper-pagination-bullet {
                width: 8px;
                height: 8px;
            }
            .product-card{
                margin: 0 30px;
            }
            .service-card {
                margin: 0 30px;
                margin-bottom: 20px;
            }

            .gallery-container{
                margin: 0 30px;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 300px;
            }

            .swiper-slide {
                height: 60vh;
                max-height: 400px;
                min-height: 250px;
            }

            .hero-content h1 {
                font-size: clamp(1.4rem, 3.5vw, 1.8rem);
            }

            .hero-content p {
                font-size: clamp(0.8rem, 2.2vw, 0.9rem);
            }

            .hero-content .btn {
                padding: 7px 15px;
                font-size: clamp(0.75rem, 2vw, 0.85rem);
            }

            .logo h1 {
                font-size: 1.3rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .product-filters {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 6px 15px;
                font-size: 0.9rem;
            }

            .contact-info {
                flex-direction: column;
                align-items: center;
            }

            .contact-item {
                width: 100%;
                max-width: 300px;
            }

    .footer-col h3 {
        font-size: 1.2rem;
    }

    .footer-col p, .footer-links a {
        font-size: 0.9rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .newsletter-form input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        padding: 10px 12px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Add to your CSS */

.product-card {
    transform-style: preserve-3d;
    transition: transform 0.5s, box-shadow 0.3s;
}

.service-card:hover, .product-card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

/* Smooth shadow transitions */
.service-card, .product-card, .testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Modern input fields */
.form-control {
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    background-color: var(--light);
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(230, 135, 11, 0.25);
    border-color: var(--secondary);
}

/* Section dividers */
.section:nth-child(even) {
    background-color: #dbcebd;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}