/*
 Theme Name:   Hariom Refrigeration Theme
 Theme URI:    http://hariomrefrigeration.com/
 Description:  A professional theme for Hariom Refrigeration Mulund - Refrigeration and HVAC Solutions
 Author:       Hariom Refrigeration
 Author URI:   http://hariomrefrigeration.com
 Version:      1.2.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         business, refrigeration, hvac, professional, responsive
 Text Domain:  hariom-theme
*/

/* Brand Colors */
:root {
    --pot-pourri: #f7eaea;
    --red: #ee0e0e;
    --my-pink: #d89192;
    --contessa: #be716f;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--pot-pourri);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo,
.custom-logo-link {
    max-height: 90px;
    max-width: 250px;
    width: auto;
    height: auto;
    display: inline-block;
}

.site-logo img,
.custom-logo {
    max-height: 90px !important;
    max-width: 250px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-navigation a {
    text-decoration: none;
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-navigation a:hover:not(.brand-logo-link),
.main-navigation .current-menu-item a:not(.brand-logo-link) {
    background-color: var(--red);
    color: var(--white);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    outline: none;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle:focus {
    outline: none;
}

.mobile-menu-toggle .hamburger {
    display: block !important;
    width: 30px;
    height: 3px;
    background: #ee0e0e !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Offcanvas Menu */
.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-offcanvas.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--light-gray);
}

.offcanvas-logo {
    max-width: 200px;
}

.offcanvas-logo img,
.offcanvas-logo .custom-logo {
    max-height: 70px !important;
    width: auto !important;
    height: auto !important;
}

.offcanvas-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--red);
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.offcanvas-navigation {
    padding: 1rem 0;
}

.offcanvas-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-navigation li {
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-navigation a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.offcanvas-navigation a:hover,
.offcanvas-navigation .current-menu-item a {
    background-color: var(--red);
    color: var(--white);
    padding-left: 2rem;
}

/* Offcanvas Overlay */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Slider */

/* ================================
   HERO SLIDER WRAPPER
================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 450px;
    overflow: hidden;
}

/* ================================
   SLIDES CONTAINER
================================ */
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ================================
   INDIVIDUAL SLIDE
================================ */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

/* ACTIVE SLIDE */
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* ================================
   MEDIA (VIDEO / IMAGE)
================================ */
.hero-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Prevent video overflow issues */
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   OVERLAY CONTENT
================================ */

.hero-slide.has-overlay {
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(180, 30, 30, 0.75),
        rgba(240, 180, 160, 0.6)
    );
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    color: #fff;
}

.hero-slide.has-overlay .hero-media {
    z-index: 1;
}

/* ================================
   TEXT STYLES
================================ */
/* .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    opacity: 0.95;
} */

/* ================================
   CTA BUTTON
================================ */
/* .cta-button {
    display: inline-block;
    background-color: #fff;
    color: var(--red);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--pot-pourri);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
} */

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 65vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 380px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--red), var(--contessa));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--red);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--pot-pourri);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
	box-shadow: 2px 2px 5px red;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    display: block;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

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

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-link:hover .service-card {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

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

.service-card-link:hover .service-image .product-img {
    transform: scale(1.05);
}

.service-image.no-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border: 2px dashed #ccc;
}

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.placeholder-image span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-title {
    color: var(--red);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    flex-grow: 1;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.contact-info {
    background-color: var(--red);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(238, 14, 14, 0.2);
}

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

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item h4 i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-item ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.contact-item ul li {
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-form > p {
    margin-bottom: 1.5rem;
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

.submit-button {
    background-color: var(--red);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--contessa);
}

/* Footer */
.site-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* ===================================
   Product Category Page Styles
   =================================== */

/* Breadcrumb Navigation */
.breadcrumb-section {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--red);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav .separator {
    color: #999;
    margin: 0 0.25rem;
}

.breadcrumb-nav .current {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Category Filter Section */
.category-filter-section {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.category-filters {
    text-align: center;
}

.filter-title {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.filter-title i {
    color: var(--red);
}

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

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.filter-btn:hover {
    background: var(--pot-pourri);
    border-color: var(--my-pink);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.filter-btn .count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.filter-btn.active .count {
    background: rgba(255, 255, 255, 0.2);
}

/* Category Info Bar */
.category-info-bar {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-count {
    margin: 0;
    color: var(--dark-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.results-count i {
    color: var(--red);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination a,
.pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.pagination a:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: translateY(-2px);
}

.pagination .current {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.pagination .prev,
.pagination .next {
    gap: 0.5rem;
}

/* No Products Message */
.no-products-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-products-icon {
    font-size: 4rem;
    color: var(--my-pink);
    margin-bottom: 1.5rem;
}

.no-products-message h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.no-products-message p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Related Categories Section */
.related-categories-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red), var(--contessa));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

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

.category-card h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.category-count {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.category-link {
    color: var(--red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.category-card:hover .category-link {
    gap: 1rem;
}

/* Category Hero Variations */
.category-hero {
    background: linear-gradient(135deg, var(--red) 0%, var(--contessa) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
    }
    
    .site-branding {
        flex: 1;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        margin-left: 1rem;
    }
    
    /* Hide desktop navigation menu */
    .main-navigation ul {
        display: none;
    }
    
    .main-navigation {
        flex: 0 0 auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide offcanvas on desktop */
@media (min-width: 769px) {
    .mobile-offcanvas,
    .offcanvas-overlay {
        display: none;
    }
}

/* Page Specific Styles */
.page-template {
    /* padding: 2rem 0; */
}

/* Remove padding for full-width template pages */

.page-header {
    background: linear-gradient(135deg, var(--red), var(--contessa));
    color: var(--white);
    padding: 1rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Override for pages with full-width sections */
.page-content-full-width,
.page-content:has(.full-width-section) {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.product-image {
    width: 100%;
    height: 200px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    color: var(--red);
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

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

/* Modern Typography Enhancements */
.site-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.service-title,
.product-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Enhanced readability */
p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Footer typography */
.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-section p,
.footer-section li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Contact info typography */
.contact-item h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Page title typography */
.page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ========================================
   ENHANCED ABOUT US PAGE STYLES
   ======================================== */

/* Hero Section Enhancements */
.about-hero {
    background: linear-gradient(135deg, #ee0e0e 0%, #be716f 50%, #d89192 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Full Width Section Styles */
.full-width-section {
    width: 100%;
    padding: 4rem 0;
    background: #ffffff; /* Default white background */
}

.full-width-section:nth-child(even) {
    background: linear-gradient(135deg, #f7eaea 0%, #ffffff 100%);
}

.full-width-section:nth-child(odd) {
    background: #ffffff;
}

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

/* Alternating background colors for visual interest */
.team-section.full-width-section {
    background: linear-gradient(135deg, #f7eaea 0%, #fef5f5 100%);
    position: relative;
}

.team-section.full-width-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(238,14,14,0.05)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.team-section.full-width-section .container {
    position: relative;
    z-index: 1;
}

.expertise-section.full-width-section {
    background: #ffffff;
}

.certifications-section.full-width-section {
    background: linear-gradient(135deg, #fef5f5 0%, #f7eaea 100%);
}

.achievements-section.full-width-section {
    background: linear-gradient(135deg, #ee0e0e 0%, #be716f 50%, #d89192 100%);
    color: var(--white);
}

.achievements-section.full-width-section .section-title,
.achievements-section.full-width-section .section-subtitle {
    color: var(--white);
}

.cta-section.full-width-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section.full-width-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(238, 14, 14, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.cta-section.full-width-section .container {
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.mini-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mini-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.mini-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.mini-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

/* Fade-in Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

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

/* Scroll Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* About Story Section */
.about-story-section {
    background: var(--white);
}

.about-story-section .container {
    max-width: 1400px;
}

.about-text-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-text-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red), var(--contessa));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Mission Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.mv-card {
    background: linear-gradient(135deg, var(--pot-pourri), var(--white));
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--my-pink);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(238, 14, 14, 0.15);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

/* Values Card */
.values-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--red);
}

.values-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.values-header i {
    font-size: 2rem;
    color: var(--red);
}

.values-header h3 {
    margin: 0;
}

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

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.values-list li:hover {
    background: var(--pot-pourri);
    transform: translateX(5px);
}

.values-list li i {
    color: var(--red);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Team Section Enhancements */
.team-section {
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: 0.8;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.gradient-icon {
    background: linear-gradient(135deg, var(--red), var(--contessa));
    position: relative;
    overflow: hidden;
}

.gradient-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Expertise Section */
.expertise-section {
    background: var(--white);
}

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

.expertise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--contessa));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(238, 14, 14, 0.15);
    transform: translateY(-8px);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pot-pourri), var(--my-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.expertise-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.expertise-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.expertise-features span:hover {
    background: var(--red);
    color: var(--white);
}

.expertise-features i {
    font-size: 0.75rem;
}

/* Certifications Section */
.certifications-section {
    background: var(--light-gray);
}

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

.cert-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red), var(--contessa));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.cert-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cert-list li:hover {
    background: var(--pot-pourri);
    transform: translateX(5px);
}

.cert-list i {
    color: var(--red);
    font-size: 1rem;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red), var(--contessa));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin-top: 1rem;
    font-weight: 600;
}

/* Modern Statistics */
.achievements-section {
    background: linear-gradient(135deg, var(--pot-pourri), var(--white));
}

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

.modern-stat {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--contessa));
}

.modern-stat:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(238, 14, 14, 0.2);
    border-color: var(--red);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pot-pourri), var(--my-pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.modern-stat:hover .stat-icon {
    transform: scale(1.2) rotate(360deg);
}

.modern-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    display: inline;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    margin-left: 0.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--red), var(--contessa));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    animation: float 3s ease-in-out infinite;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-cta {
    background: var(--white);
    color: var(--red);
}

.primary-cta:hover {
    background: var(--pot-pourri);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.secondary-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .full-width-section {
        padding: 3rem 0;
    }
    
    .full-width-section .container {
        padding: 0 1rem;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mini-stat {
        width: 100%;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .about-hero {
        padding: 3rem 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .full-width-section .container {
        padding: 0 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Single Product & Service Pages */
.single-product-content,
.single-service-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.product-image-large,
.service-image-large {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-image-large img,
.service-image-large img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.product-details,
.service-details {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.product-description,
.service-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-description p,
.service-description p {
    margin-bottom: 1rem;
}

.product-features-section,
.service-features-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.product-features-section h3,
.service-features-section h3 {
    color: var(--red);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.product-features-list,
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-list li,
.service-features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.product-features-list li:last-child,
.service-features-list li:last-child {
    border-bottom: none;
}

.product-features-list li i,
.service-features-list li i {
    color: var(--red);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.product-cta,
.service-cta {
    background: linear-gradient(135deg, var(--red) 0%, var(--contessa) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.product-cta h3,
.service-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.product-cta p,
.service-cta p {
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.product-cta .btn,
.service-cta .btn {
    background: var(--white);
    color: var(--red);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-cta .btn:hover,
.service-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Related Products & Services */
.related-products,
.related-services {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.related-products .section-title,
.related-services .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.product-card a,
.service-card a {
    color: inherit;
    text-decoration: none;
}

.product-card .read-more,
.service-card .read-more {
    color: var(--red);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.product-card .read-more:hover,
.service-card .read-more:hover {
    transform: translateX(5px);
}

/* Product Features in Cards */
.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.product-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.product-features li i {
    color: var(--red);
    font-size: 0.85rem;
}

/* Service Features in Cards */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--red);
    font-size: 0.85rem;
}

/* Responsive for Single Pages */
@media (max-width: 768px) {
    .product-details,
    .service-details {
        padding: 1.5rem;
    }
    
    .product-features-section,
    .service-features-section {
        padding: 1.5rem;
    }
    
    .product-cta,
    .service-cta {
        padding: 2rem 1.5rem;
    }
    
    .product-cta h3,
    .service-cta h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   ENHANCED PRODUCTS & SERVICES PAGE STYLES
   ======================================== */

/* Remove top/bottom padding for full-width products page */
.page-content-full-width > .full-width-section:first-child {
    padding-top: 0;
}

.page-content-full-width > .full-width-section:last-child {
    padding-bottom: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.product-thumbnail {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumbnail img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-thumbnail img {
    transform: scale(1.05);
}

.product-icon-large {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.5rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-large {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    z-index: 3;
}

.product-badge i {
    font-size: 0.9rem;
}

/* Product Content */
.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    color: var(--dark-gray);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--red);
}

.product-description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-description p {
    margin: 0;
}

/* Product Features */
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.product-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.product-features li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

/* View Details Button */
.btn-view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
    margin-top: auto;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-view-details i {
    transition: transform 0.3s ease;
}

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

/* Services Grid Enhanced */
.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Service Card Enhanced */
.service-card-enhanced {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red) 0%, #f59e0b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

/* Service Card Header */
.service-card-header {
    position: relative;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-header .service-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-card-header .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.service-badge i {
    font-size: 0.9rem;
}

/* Service Card Body */
.service-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body .service-title {
    color: var(--dark-gray);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card-enhanced:hover .service-card-body .service-title {
    color: var(--red);
}

.service-description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-description p {
    margin: 0;
}

.service-card-body .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.service-card-body .service-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.service-card-body .service-features li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Service Card Footer */
.service-card-footer {
    padding: 0 2rem 2rem 2rem;
}

.service-card-footer .btn-view-details {
    width: 100%;
}

/* Enhanced CTA Section */
.products-cta,
.services-cta {
    background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.products-cta::before,
.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.products-cta::after,
.services-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.products-cta .cta-content,
.services-cta .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.products-cta .cta-content h2,
.services-cta .cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.products-cta .cta-content p,
.services-cta .cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--red);
}

.cta-buttons .btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* CTA Features */
.cta-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.cta-feature i {
    font-size: 2rem;
    opacity: 0.9;
}

.cta-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Hero Stats Mini Enhancement */
.hero-stats-mini {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats-mini .mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-stats-mini .mini-stat i {
    font-size: 2rem;
    color: var(--red);
}

.hero-stats-mini .mini-stat-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .products-grid,
    .services-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card,
    .service-card-enhanced {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-image-wrapper {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    .product-icon-large {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .product-content,
    .service-card-body {
        padding: 1.5rem;
    }
    
    .product-title,
    .service-card-body .service-title {
        font-size: 1.2rem;
    }
    
    .products-cta .cta-content h2,
    .services-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .products-cta .cta-content p,
    .services-cta .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-features {
        gap: 2rem;
    }
    
    .hero-stats-mini {
        gap: 2rem;
    }
    
    .service-card-footer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    /* Category Page Responsive */
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .category-info-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pagination ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination a,
    .pagination .current {
        min-width: 35px;
        height: 35px;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   Mega Menu Styles
   ======================================== */

/* Mega Menu Container */
.main-navigation .has-mega-menu {
    position: relative;
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 2rem;
    min-width: 900px;
    max-width: 1100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 1rem;
}

.main-navigation .has-mega-menu:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.mega-menu-container {
    width: 100%;
}

/* Mega Menu Grid */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

/* Category Item */
.mega-menu-category-item {
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mega-menu-category-item:hover {
    background: var(--pot-pourri);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 14, 14, 0.2);
}

/* Category Link */
.mega-menu-category-link {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem !important;
    color: var(--dark-gray) !important;
    text-decoration: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.mega-menu-category-item:hover .mega-menu-category-link {
    color: var(--red) !important;
}

.mega-menu-category-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    color: var(--red);
    transition: transform 0.3s ease;
}

.mega-menu-category-item:hover .mega-menu-category-link i {
    transform: scale(1.2) rotate(5deg);
}

.mega-menu-category-link .category-name {
    flex: 1;
    font-weight: 600;
}

.mega-menu-category-link .category-count {
    font-size: 0.85rem;
    color: var(--contessa);
    font-weight: 400;
}

/* Empty State */
.mega-menu-empty {
    text-align: center;
    padding: 2rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* Mega Menu Content Wrapper */
.mega-menu-content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.mega-menu-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

/* Brands Column */
.mega-menu-brands-column {
    width: 200px;
    min-width: 200px;
    padding-left: 2rem;
    border-left: 1px solid var(--light-gray);
}

.brands-header {
    margin-bottom: 1.5rem;
}

.brands-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--red);
}

.brands-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background-color: transparent !important;
}

.brand-logo-link:hover {
    background-color: transparent !important;
    color: inherit !important;
}

.brand-logo {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-item:hover .brand-logo {
    transform: scale(1.1);
}

.brands-empty {
    text-align: center;
    padding: 1.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Hide mega menu on mobile */
@media (max-width: 768px) {
    .mega-menu-dropdown {
        display: none !important;
    }
    
    .main-navigation .has-mega-menu .sub-menu {
        display: block;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
    .mega-menu-dropdown {
        min-width: 600px;
        padding: 1.5rem;
    }
    
    .mega-menu-content-wrapper {
        gap: 1.5rem;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.75rem;
    }
    
    .mega-menu-category-link {
        padding: 1rem 1.25rem !important;
        font-size: 0.95rem;
    }
    
    .mega-menu-category-link i {
        font-size: 1.25rem;
    }
    
    .mega-menu-brands-column {
        width: 150px;
        min-width: 150px;
        padding-left: 1.5rem;
    }
    
    .brand-item {
        min-height: 70px;
    }
    
    .brand-logo {
        max-height: 60px;
    }
}

/* Stack brands vertically on tablets */
@media (max-width: 900px) {
    .mega-menu-content-wrapper {
        flex-direction: column;
    }
    
    .mega-menu-brands-column {
        width: 100%;
        min-width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--light-gray);
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
    
    .brands-container {
        flex-direction: row;
        gap: 1rem;
    }
    
    .brand-item {
        flex: 1;
    }
}

/* Ensure mega menu doesn't overflow viewport */
@media (min-width: 769px) {
    .mega-menu-dropdown {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Custom scrollbar for mega menu */
    .mega-menu-dropdown::-webkit-scrollbar {
        width: 8px;
    }
    
    .mega-menu-dropdown::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 4px;
    }
    
    .mega-menu-dropdown::-webkit-scrollbar-thumb {
        background: var(--red);
        border-radius: 4px;
    }
    
    .mega-menu-dropdown::-webkit-scrollbar-thumb:hover {
        background: var(--contessa);
    }
}

/* ===================================
   Brands Carousel Section
   =================================== */

.brands-carousel-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

.brands-carousel-section .section-title {
    margin-bottom: 0.5rem;
}

.brands-carousel-section > .container > p {
    margin-bottom: 2rem;
    color: #666;
}

.carousel-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll-infinite 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 auto;
    min-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-logo-wrapper:hover {
    box-shadow: 0 4px 15px rgba(238, 14, 14, 0.2);
    transform: translateY(-3px);
}

.brand-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo {
    transform: scale(1.1);
}

.brand-name-only {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.brand-name-only span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
    word-break: break-word;
}

/* Infinite scroll animation */
@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive carousel */
@media (max-width: 768px) {
    .brands-carousel-section {
        padding: 2rem 0;
    }
    
    .carousel-item {
        min-width: 150px;
        height: 80px;
    }
    
    .carousel-track {
        gap: 1rem;
        animation: scroll-infinite 25s linear infinite;
    }
    
    .brand-logo-wrapper {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .brands-carousel-section {
        padding: 1.5rem 0;
    }
    
    .carousel-item {
        min-width: 120px;
        height: 70px;
    }
    
    .carousel-track {
        gap: 0.75rem;
        animation: scroll-infinite 20s linear infinite;
    }
    
    .brand-logo-wrapper {
        padding: 0.5rem;
        border-radius: 6px;
    }
}

.about-text-inner-container {
	background-color: var(--light-gray);
    padding: 5px 15px;
    border-radius: 10px;
	border:1px solid #0000002b;
	margin:10px 0;
}

.about-text-inner-container:hover {
	box-shadow: 1px 1px 5px red
}