/* Golden Loom Frontend Styles - Color Theme: #b49940 & Black */

:root {
    --golden-color: #b49940;
    --golden-dark: #8f7a33;
    --golden-light: #c9b366;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #999999;
    --gray-dark: #333333;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

main {
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.main-header {
    background-color: var(--black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
}

.navbar {
    padding: 1rem 0 0 0;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--golden-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--golden-color);
}

.nav-menu li a.active {
    color: var(--golden-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--golden-color);
}

.search-icon a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.search-icon a:hover {
    color: var(--golden-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.search-box {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box.active {
    display: block;
}

.search-box form {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
}

.search-box button {
    padding: 10px 20px;
    background-color: var(--golden-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-box button:hover {
    background-color: var(--golden-dark);
}

/* Home Hero Section */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
}

.home-hero .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-hero .hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.home-hero .slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
}

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

.home-hero .slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
}

.hero-motto {
    font-family: 'Lato', sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    font-style: normal;
    color: var(--golden-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 4px;
    text-transform: none;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    transition: all 0.5s ease;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    transition: all 0.5s ease;
}

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

.home-hero .hero-slider .slide.active .hero-motto {
    opacity: 1;
    transform: translateY(0);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-quote {
    font-size: 3rem;
    font-weight: bold;
    font-style: normal;
    color: var(--black);
    margin-bottom: 30px;
}

.welcome-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.leaders-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--golden-color);
    flex-wrap: nowrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-info {
    flex: 0 0 48%;
    text-align: center;
}

.leadership-info.leader-left {
    text-align: left;
}

.leadership-info.leader-right {
    text-align: right;
}

.leader-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.leader-title {
    font-size: 1.1rem;
    color: var(--golden-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .leaders-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    
    .leadership-info {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .leadership-info.leader-left,
    .leadership-info.leader-right {
        text-align: center;
    }
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.who-we-are-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-we-are-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
    border-top: 4px solid var(--golden-color);
    border-right: 4px solid var(--golden-color);
}

.who-we-are-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.who-we-are-content {
    padding: 40px;
}

.who-we-are-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-top: 20px;
}

/* Home Stats Section */
.home-stats-section {
    padding: 80px 0;
    background-color: var(--black);
    color: var(--white);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-bar .stat-item {
    padding: 50px 30px;
    background-color: var(--golden-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-bar .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stats-bar .stat-icon {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 15px;
}

.stats-bar .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.stats-bar .stat-label {
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Home Services Section */
.home-services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    font-size: 0.9rem;
    color: var(--golden-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.services-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.home-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.home-services-section .service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(180, 153, 64, 0.3);
}

.home-services-section .service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.home-services-section .service-card:hover .service-image img {
    transform: scale(1.1);
}

.home-services-section .service-icon {
    position: relative;
    margin: -30px auto 20px;
    width: 60px;
    height: 60px;
    background-color: var(--golden-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    z-index: 2;
}

.home-services-section .service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
    padding: 0 20px;
}

.home-services-section .service-description {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 20px;
}

.home-services-section .service-link {
    display: inline-block;
    color: var(--golden-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0 20px 20px;
    transition: color 0.3s ease;
}

.home-services-section .service-link:hover {
    color: var(--golden-dark);
}

.view-all-services-btn {
    display: inline-block;
    background-color: var(--golden-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(180, 153, 64, 0.3);
}

.view-all-services-btn:hover {
    background-color: var(--golden-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(180, 153, 64, 0.4);
    text-decoration: none;
}

.view-all-services-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-services-btn:hover i {
    transform: translateX(5px);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.partners-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.partners-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.partner-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    background-color: var(--golden-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-nav-btn:hover {
    background-color: var(--golden-dark);
    transform: scale(1.1);
}

/* Product Range Section */
.product-range-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.product-range-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 200px 0;
}

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

.product-range-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.product-range-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--golden-color);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s ease-out 0.1s forwards;
    transition: all 0.3s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-range-title {
    font-family: 'Lato', sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 40px;
    color: var(--golden-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 4px;
    text-transform: none;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    transition: all 0.5s ease;
}

.product-range-content:hover .product-range-title {
    transform: translateY(-5px);
    text-shadow: 3px 3px 12px rgba(180, 153, 64, 0.6);
}

.product-range-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-range-btn:hover {
    background-color: var(--golden-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(180, 153, 64, 0.4);
}

/* Work With Us Section */
.work-with-us-section {
    padding: 100px 0;
    background-color: var(--white);
}

.work-with-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.work-with-us-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
    border-top: 4px solid var(--golden-color);
    border-right: 4px solid var(--golden-color);
}

.work-with-us-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.work-with-us-content {
    padding: 40px;
}

.work-with-us-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-top: 20px;
    margin-bottom: 30px;
}

.work-with-us-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--golden-color);
}

/* Home CTA Section */
.home-cta-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.cta-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 200px 0;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--golden-color);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s ease-out 0.1s forwards;
    transition: all 0.3s ease;
}

.cta-title {
    font-family: 'Lato', sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 40px;
    color: var(--golden-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 4px;
    text-transform: none;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    transition: all 0.5s ease;
}

.cta-content:hover .cta-title {
    transform: translateY(-5px);
    text-shadow: 3px 3px 12px rgba(180, 153, 64, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: var(--golden-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(180, 153, 64, 0.4);
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.certifications-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.certifications-slider {
    flex: 1;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}

.certifications-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    will-change: transform;
    justify-content: center;
}

.cert-item {
    flex-shrink: 0;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cert-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Section Styles */
.home-hero {
    padding: 0 !important;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--golden-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-top: 1rem;
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--golden-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(180, 153, 64, 0.2);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-icon {
    position: relative;
    margin: -30px auto 20px;
    width: 60px;
    height: 60px;
    background-color: var(--golden-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    z-index: 2;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
    padding: 0 20px;
}

.service-description {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 20px;
}

.service-link {
    color: var(--golden-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    padding: 0 20px 20px;
}

.service-link:hover {
    color: var(--golden-dark);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-card-link .service-card {
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(180, 153, 64, 0.2);
}

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

.products-filter-section {
    padding: 60px 0 0 0;
    background-color: var(--white);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--white);
    border: 2px solid var(--golden-color);
    color: var(--golden-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 1;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--golden-color);
    color: var(--white);
    text-decoration: none;
}

.filter-btn:active {
    transform: scale(0.95);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-item {
    text-align: center;
    padding: 20px;
    background-color: var(--gray-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--golden-color) 0%, var(--golden-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Care Section */
.care-section {
    padding: 60px 0;
    background-color: var(--gray-light);
}

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

.care-item {
    text-align: center;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Footer */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--golden-color);
    margin-bottom: 20px;
}

.footer-text {
    line-height: 1.8;
    color: var(--gray-medium);
}

.footer-text a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--golden-color);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo h3 {
    color: var(--golden-color);
    font-size: 1.5rem;
}

.footer-copyright {
    color: var(--gray-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Page Hero Slider Styles */
.page-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 60px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(180, 153, 64, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--golden-color);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--golden-color);
    transform: scale(1.2);
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.slider-wrapper {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Styles */
.gallery-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(180, 153, 64, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Image Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: var(--golden-color);
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    max-width: 80%;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(180, 153, 64, 0.8);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        bottom: 15px;
        padding: 8px 15px;
    }
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background-color: var(--white);
}

.leadership-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.leader-card {
    text-align: center;
    max-width: 400px;
}

.leader-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--golden-color);
}

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

.leader-info h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 10px;
}

.leader-info p {
    color: var(--golden-color);
    font-weight: 600;
}

/* Management Quotes Section */
.management-quotes-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.management-quotes-section .quote-wrapper {
    display: grid;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.management-quotes-section .quote-wrapper:last-child {
    margin-bottom: 0;
}

/* Left Layout - Image Left, Content Right */
.management-quotes-section .quote-wrapper.quote-left {
    grid-template-columns: 350px 1fr;
}

.management-quotes-section .quote-wrapper.quote-left .quote-image {
    order: 1;
    align-self: stretch;
}

.management-quotes-section .quote-wrapper.quote-left .quote-content {
    order: 2;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

/* Right Layout - Image Right, Content Left */
.management-quotes-section .quote-wrapper.quote-right {
    grid-template-columns: 1fr 350px;
}

.management-quotes-section .quote-wrapper.quote-right .quote-image {
    order: 2;
    align-self: stretch;
}

.management-quotes-section .quote-wrapper.quote-right .quote-content {
    order: 1;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

.quote-image {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    align-self: stretch;
    min-height: 100%;
}

.quote-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 4px solid var(--golden-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

.quote-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-author {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--golden-color);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 5px 0;
}

.author-designation {
    font-size: 1rem;
    color: var(--golden-color);
    font-weight: 500;
    margin: 0;
}

.quote-text-wrapper {
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--golden-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--gray-dark);
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

@media (max-width: 968px) {
    .management-quotes-section .quote-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 40px;
    }
    
    .management-quotes-section .quote-wrapper.quote-left .quote-content,
    .management-quotes-section .quote-wrapper.quote-right .quote-content {
        padding-left: 0;
        padding-right: 0;
        order: 2;
    }
    
    .management-quotes-section .quote-wrapper.quote-left .quote-image,
    .management-quotes-section .quote-wrapper.quote-right .quote-image {
        order: 1;
        text-align: center;
    }
    
    .quote-image img {
        width: 100%;
        max-width: 400px;
        height: 300px;
        min-height: 300px;
        margin: 0 auto;
    }
    
    .quote-content {
        text-align: center;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .management-quotes-section .quote-wrapper {
        padding: 30px 20px;
    }
    
    .quote-image img {
        width: 100%;
        max-width: 100%;
        height: 250px;
        min-height: 250px;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .author-name {
        font-size: 1.2rem;
    }
    
    .author-designation {
        font-size: 1rem;
    }
}

/* Services Intro Section */
.services-intro-section {
    padding: 60px 0;
    background-color: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Service Images Section */
.service-images-section {
    padding: 60px 0;
    background-color: var(--gray-light);
}

/* Product Banner Section */
.product-banner-section {
    padding: 60px 0;
    background-color: var(--white);
}

.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.banner-slide {
    display: none;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background-color: var(--golden-color);
    transform: scale(1.2);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(180, 153, 64, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-btn {
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--golden-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--golden-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.info-content p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.info-content a {
    color: var(--golden-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--golden-dark);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 15px 40px;
    background-color: var(--golden-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--golden-dark);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: var(--white);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-text {
    text-align: center;
}

.content-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-top: 30px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--golden-color) 0%, var(--golden-dark) 100%);
    color: var(--white);
}

.stats-section .stat-number {
    color: var(--white);
}

.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stats-section .stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background-color: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-card {
    padding: 50px 40px;
    background-color: var(--gray-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--golden-color);
    text-align: center;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(180, 153, 64, 0.3);
}

.mission-vision-card .card-icon {
    font-size: 4rem;
    color: var(--golden-color);
    margin-bottom: 25px;
    display: inline-block;
}

.mission-vision-card .card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.mission-vision-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--golden-color);
}

.mission-vision-card .card-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    text-align: left;
}

@media (max-width: 768px) {
    .home-hero {
        height: 500px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-top: 15px;
    }
    
    .hero-motto {
        font-size: 2.5rem;
    }
    
    .who-we-are-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .home-services-section .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-with-us-wrapper {
        grid-template-columns: 1fr;
    }
    
    .product-range-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .cta-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-card {
        padding: 40px 30px;
    }
    
    .mission-vision-card .card-icon {
        font-size: 3rem;
    }
    
    .mission-vision-card .card-title {
        font-size: 1.75rem;
    }
    
    .leadership-content {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .leader-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        /* height: 400px; */
    }
    
    .home-hero {
        height: 400px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-top: 10px;
    }
    
    .hero-motto {
        font-size: 2rem;
    }
    
    .welcome-quote {
        font-size: 2rem;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .product-range-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .cta-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mission-vision-card {
        padding: 30px 20px;
    }
    
    .mission-vision-card .card-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .mission-vision-card .card-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .mission-vision-card .card-description {
        font-size: 1rem;
    }
    
    .leadership-section {
        padding: 50px 0;
    }
    
    .leader-image {
        width: 200px;
        height: 200px;
    }
    
    .leader-info h3 {
        font-size: 1.25rem;
    }
    
    .leader-info p {
        font-size: 0.95rem;
    }
    
    .product-range-section {
        height: 500px;
    }
    
    .home-cta-section {
        height: 500px;
    }
}

