
/* Reset CSS */
/* Base Styles */
:root {
    --primary-color: #3a506b;
    --secondary-color: #0b132b;
    --accent-color: #c5a880;
    --light-color: #ffffff;
    --dark-color: #1c2541;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.2rem;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--accent-color);
}

ul {
    list-style-type: none;
}

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

section {
    padding: 6rem 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--light-color);
}

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

.section-header h2 {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.underline {
    height: 3px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 1.5rem 0;
}

nav.sticky {
    background-color: var(--light-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(28, 37, 65, 0.7), rgba(28, 37, 65, 0.7)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
}

.hero-section h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.hero-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    margin-top: 3rem;
}

.stat {
    margin-right: 3rem;
    text-align: center;
}

.stat span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat p {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-down i {
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

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

/* About Section */
.about-section {
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-text {
    flex: 1.5;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-areas {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.expertise h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.expertise h4 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Experience Section */
.experience-section {
    background-color: var(--light-gray);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: 2.5rem;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-date {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.timeline-content h4 {
    color: var(--dark-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.timeline-content ul li {
    position: relative;
    margin-bottom: 0.5rem;
    list-style-type: none;
}

.timeline-content ul li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--light-color);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem 1rem;
    cursor: pointer;
    position: relative;
    color: var(--text-color);
    transition: var(--transition);
}

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

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

.filter-btn.active {
    color: var(--accent-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 80, 107, 0.9);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.portfolio-info h3 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

/* Brands Section */
.brands-section {
    background-color: var(--light-gray);
}

.brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.brand-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.brand-logo {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.brand-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.brand-metrics {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric span {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.metric strong {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.brands-chart-container {
    max-height: 400px;
    max-width: 800px;
    margin: 3rem auto 0;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.brands-chart-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -15px;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    margin: 0 1rem;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    color: var(--accent-color);
}

.testimonial-dots {
    display: flex;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

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

.social-links {
    display: flex;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    margin-right: 1rem;
    transition: var(--transition);
}

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

.contact-form {
    flex: 1.5;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    resize: none;
    transition: var(--transition);
}

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

.form-group textarea {
    height: 150px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Animation classes */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .about-content {
        flex-direction: column;
        gap: 3rem;
    }

    .expertise-areas {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 20px;
    }

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

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light-color);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: var(--transition);
    }

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

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat {
        margin-bottom: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

/* Products Section Styles */
.products-section {
    background-color: var(--light-color);
    padding: 6rem 0;
}

.products-search {
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.search-container input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    transition: var(--transition);
}

.search-container input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.product-tile {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-tile:hover {
    transform: translateY(-5px);
}

.product-tile img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-tile:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--accent-color);
    color: var(--light-color);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Styles for Products Section */
@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Animation for products */
.product-tile {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

.product-tile:nth-child(2) {
    animation-delay: 0.1s;
}

.product-tile:nth-child(3) {
    animation-delay: 0.2s;
}

.product-tile:nth-child(4) {
    animation-delay: 0.3s;
}

.product-tile:nth-child(5) {
    animation-delay: 0.4s;
}

.product-tile:nth-child(6) {
    animation-delay: 0.5s;
}


/* Enhanced Product Tile Styles */
.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    transition: bottom 0.3s ease;
}

.product-tile:hover .product-overlay {
    bottom: 0;
}

.image-info {
    font-size: 0.8rem;
}

.image-info span {
    display: block;
    margin: 0.2rem 0;
}

.image-info i {
    margin-right: 0.5rem;
    width: 16px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    background-color: var(--accent-color);
    color: white;
}

/* Animation */
.fade-in {
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Enhancements */
.search-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-container input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    transition: var(--transition);
}

.search-container input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

/* Modal Styles */
/* Modal Styles - Fixed */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.modal .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    max-width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.modal .gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.modal .gallery img:hover {
    transform: scale(1.03);
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.close-button:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Ensure fade-in animation works */
.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Mobile View Enhancements */
@media screen and (max-width: 480px) {
    /* General Adjustments */
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Navigation */
    nav {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        top: 60px;
        padding-top: 2rem;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hamburger {
        padding: 5px;
    }

    /* Hero Section */
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }

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

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

    .hero-section h3 {
        font-size: 1.2rem;
    }

    .hero-stats {
        margin-top: 2rem;
        align-items: center;
    }

    .stat {
        margin: 1rem 0;
    }

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

    .scroll-down {
        bottom: 1rem;
        font-size: 0.9rem;
        left: 40%;
    }

    /* About Section */
    .about-content {
        gap: 2rem;
    }

    .about-image img {
        width: 100%;
    }

    .expertise-areas {
        gap: 1rem;
    }

    /* Experience Section */
    .timeline {
        padding: 0 1rem;
    }

    .timeline-item {
        padding: 1.5rem 0 1.5rem 60px;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 10px;
        width: 15px;
        height: 15px;
    }

    /* Portfolio Section */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-image img {
        height: 200px;
    }

    .portfolio-overlay {
        padding: 1rem;
    }

    /* Brands Section */
    .brands-grid {
        gap: 1rem;
    }

    .brand-card {
        padding: 1.5rem;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .brand-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .brands-chart-container {
        padding: 1rem;
    }

    /* Testimonials Section */
    .testimonial-slide {
        padding: 1.5rem;
    }

    .quote {
        font-size: 1rem;
    }

    .author img {
        width: 50px;
        height: 50px;
    }

    /* Contact Section */
    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Products Section */
    .products-search {
        padding: 0 1rem;
    }

    .search-container input {
        padding: 0.8rem 2.5rem 0.8rem 1rem;
        font-size: 1rem;
    }

    .search-icon {
        right: 1rem;
    }

    .product-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-tile img {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-overlay {
        padding: 0.8rem;
    }

    /* Footer */
    footer {
        padding: 1.5rem 0;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

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

/* Very Small Screens (below 360px) */
@media screen and (max-width: 360px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

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

    .hero-section h2 {
        font-size: 1.3rem;
    }

    .stat span {
        font-size: 1.8rem;
    }

    .portfolio-info h3 {
        font-size: 1.2rem;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }
}



/* Product Portfolio Section Styles */
.products-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.underline {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #f5a623, #f57923);
    margin: 0 auto;
}

/* Search and Filter Styles */
.products-search {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

#productSearch {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#productSearch:focus {
    border-color: #f5a623;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.15);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

#productSearch.searching + .search-icon {
    animation: spin 1s infinite linear;
}

.clear-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    display: none;
}

.product-count {
    text-align: center;
    color: #777;
    font-style: italic;
    margin: 10px 0;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.hover {
    background-color: rgba(245, 166, 35, 0.1);
    border-color: var(--accent-color);
}

.filter-btn.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.25);
}

/* Products Grid Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-tile {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.product-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.product-tile:hover .product-image-container img {
    transform: scale(1.05);
}

.item-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.view-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(245, 166, 35, 0.85);
    color: white;
    padding: 12px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-tile:hover .view-overlay {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.product-tag {
    background-color: #f0f0f0;
    color: #555;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    padding: 30px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 24px;
}

.modal-description {
    color: #666;
    margin-bottom: 25px;
}

.gallery-main {
    position: relative;
    margin-bottom: 20px;
}

.main-image-container {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

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

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

.thumbnail.active {
    border-color: #f5a623;
    opacity: 1;
}

.thumbnail:hover {
    opacity: 1;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: #777;
}

.modal-category {
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    text-transform: capitalize;
}

/* No Results Message */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    color: #777;
    font-size: 18px;
}

.no-results-message i {
    font-size: 40px;
    color: #ddd;
    display: block;
    margin-bottom: 20px;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Styles for modal open state */
body.modal-open {
    overflow: hidden;
}

/* Styles for menu open state */
body.menu-open {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .gallery-thumbnails {
        justify-content: center;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .main-image-container {
        height: 250px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .modal-title {
        font-size: 20px;
    }
}

/* Sticky Navigation Styles */
nav {
    transition: all 0.3s ease;
}

nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}