/* Base Styles & CSS Variables */
:root {
    --primary-color: #ff9920;
    /* User Brand Color */
    --primary-color-hover: #e08316;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-main: #ffffff;
    --bg-alt: #f8f9fa;
    --border-color: #eaeaea;
    --transition-speed: 0.3s;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --blue-color: #091939;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-alt);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

/* Header Styles */
.main-header {
    background: var(--primary-color);
    background-color: #091939;
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);

}

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

/* Brand Logo Text Version */
.brand-logo {
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Navigation Menu */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Align right */
}

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

.nav-item {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    color: var(--blue-color);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;

}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
    color: var(--primary-color);
}

.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after {
    width: 100%;
}

.chevron {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-speed) ease;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown Shared Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--bg-main);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

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

.dropdown-link {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.dropdown-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-alt);
    padding-left: 2rem;
    /* micro-interaction */
}

/* Mega Menu */
.has-mega-menu {
    position: static;
    /* Vital for full width absolute down below */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-main);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease;
    padding: 3rem 0;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mega-link {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid transparent;
    align-self: flex-start;
}

.mega-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    transform: translateX(4px);
    /* micro-interaction */
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    position: absolute;
    left: 0;
    transition: all var(--transition-speed) ease;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Section (Placeholder Content) */
.hero {
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(255, 153, 32, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(255, 153, 32, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 32, 0.4);
}

/* About Us Section */
.about-us {
    padding: 6rem 2rem;
    background-color: var(--bg-main);
    overflow: hidden;
}

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

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(255, 153, 32, 0.3);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-right: 2rem;
}

.section-subtitle {
    color: var(--blue-color);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);

    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-box {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 153, 32, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    flex-shrink: 0;
}

.icon-box svg {
    width: 20px;
    height: 20px;
}

.feature-item h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 153, 32, 0.3);
}

/* Animations Scroll Trigger */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

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

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

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

.delay-5 {
    transition-delay: 0.5s;
}

/* What Makes Us Special Section */
.what-makes-us-special {
    padding: 6rem 2rem;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.special-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.special-title {
    font-weight: 300;
    text-transform: capitalize;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.special-description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.special-description p {
    margin-bottom: 1rem;
}

.special-description p:last-child {
    margin-bottom: 0;
}

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

.stat-card {
    background-color: var(--bg-alt);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 153, 32, 0.3);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 153, 32, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
}

.stat-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 0.2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Promo Parallax Section */
.promo-parallax {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.parallax-video {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    z-index: 1;
    will-change: transform;
}

.promo-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.promo-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: capitalize;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.promo-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.promo-parallax .section-subtitle {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .promo-title {
        font-size: 2.5rem;
    }
}

/* Capabilities Section */
.capabilities {
    padding: 6rem 2rem;
    background-color: var(--bg-main);
}

.capabilities-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.capability-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-alt);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid var(--border-color);
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 153, 32, 0.3);
}

.capability-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: rgba(255, 153, 32, 0.1);
    border-radius: 50%;
}

.capability-icon svg {
    width: 32px;
    height: 32px;
}



.capability-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    /* User requested light weight font */
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.capability-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Catalog Section */
.catalogs {
    padding: 6rem 2rem;
    background-color: var(--bg-alt);
}

.catalog-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    transition: transform var(--transition-speed) ease;
}

.catalog-thumbnail {
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #fff;
    aspect-ratio: 1 / 1.414;
    /* Enforce uniform height universally */
}

/* CSS Generated Catalog Cover */
.css-catalog-cover {
    position: absolute;
    /* Fill the forced ratio container */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid var(--border-color);
    box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.02), -5px 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-align: left;
    overflow: hidden;
    background-image: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    z-index: 1;
    transition: transform 0.5s ease;
}

/* Spine effect */
.css-catalog-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0.4) 30%, rgba(0, 0, 0, 0.02) 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 2;
}

/* Geometric Accent background */
.css-catalog-cover::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 80%;
    height: 60%;
    background-color: var(--primary-color);
    transform: rotate(-30deg);
    z-index: 0;
    opacity: 0.1;
}

.cover-header,
.cover-body,
.cover-footer {
    position: relative;
    z-index: 3;
    padding-left: 10px;
    /* Offset for spine */
}

.cover-header {
    margin-bottom: auto;
}

.cover-logo {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.cover-body {
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cover-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin: 0px;
    text-transform: uppercase;
}

.cover-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 0px;
}

.cover-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.cover-accent {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

.catalog-item:hover .catalog-thumbnail {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 153, 32, 0.2);
}

.catalog-item:hover .css-catalog-cover {
    transform: scale(1.03);
    /* Slight zoom on cover */
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 153, 32, 0.85);
    /* Use primary color for overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

.view-btn {
    background-color: #fff;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.catalog-item:hover .view-btn {
    transform: translateY(0);
}

.cover-product-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
    color: var(--primary-color);
    flex: 1;
}

.cover-product-icon img.cover-product-img {
    width: 300px;
    height: 310px;
    object-fit: cover;
    border-radius: 8px;
    /* Slightly rounded for photoshoot images */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
    z-index: 5;
    transform: rotate(-2deg);
    filter: none !important;
}

.cover-product-icon svg {
    width: 64px;
    height: 64px;
    opacity: 0.9;
}

.catalog-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 1rem;
    transition: color var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-item:hover .catalog-title {
    color: var(--primary-color-hover);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-main);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        padding-top: 100px;
        z-index: 1000;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 2rem;
    }

    .nav-item {
        height: auto;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        color: #e08316;
    }

    .mega-menu,
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        padding: 1rem 0 0 1rem;
    }

    .has-mega-menu.active .mega-menu,
    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
    }

    .experience-badge {
        right: 15px;
        bottom: 15px;
        padding: 1rem 1.5rem;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

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

    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 2rem;
    }
}

/* Exhibitions Gallery */
.exhibitions-gallery {
    padding: 6rem 0;
    background-color: var(--bg-main);
    overflow: hidden;
}

.center-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.gallery-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-sizing: border-box;
}

.gallery-marquee {
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.gallery-marquee:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 450px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease;
}

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

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

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* Instagram Section */
.instagram-section {
    padding: 5rem 2rem;
    background-color: var(--bg-alt);
}

.insta-container {
    max-width: 1400px;
    margin: 0 auto;
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.insta-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

@media (max-width: 900px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Footer Section */
.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6rem 2rem 2rem;
    background-color: var(--blue-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

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

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

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

.footer-links h5,
.footer-contact h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    text-decoration: underline;
    color: var(--primary-color);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    color: var(--primary-color);
    color: #fff;
}

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

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gallery-item {
        width: 250px;
        height: 180px;
    }
}

/* About Us Page Enhanced Styles */
.about-hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    /* 1920x500 aspect ratio approximate */
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(9, 25, 57, 0.7) 0%, rgba(9, 25, 57, 0.2) 100%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.banner-title span {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.py-60 {
    padding: 60px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* Company Profile Card Style */
.company-profile-section {
    background-color: #fff;
    position: relative;
    z-index: 5;
    margin-top: -50px;
    /* Slight overlap for modern look */
}

.profile-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.profile-image {
    position: relative;
    height: 100%;
}

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

.experience-years {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 153, 32, 0.4);
}

.experience-years .count {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-years .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-content {
    padding: 4rem;
}

.profile-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-sm {
    width: 42px;
    height: 42px;
    background: rgba(255, 153, 32, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-sm svg {
    width: 22px;
    height: 22px;
}

.feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--blue-color);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .profile-content {
        padding: 3rem 2rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-title span {
        font-size: 1.8rem;
    }

    .about-hero-banner {
        height: 350px;
    }
}

/* Utility & Layout Classes */
.py-100 {
    padding: 100px 0;
}

.bg-dark-blue {
    background-color: var(--blue-color);
}

.invert-text * {
    color: #fff !important;
}

.white-text {
    color: #fff !important;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
}

/* Mission & Vision Section Refined */
.mission-vision {
    background-color: var(--bg-alt);
}

.mv-card {
    background: #fff;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.mv-icon {
    width: 64px;
    /* Reduced to professional size */
    height: 64px;
    background: rgba(255, 153, 32, 0.08);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.mv-icon svg {
    width: 32px;
    /* Professional SVG size */
    height: 32px;
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--blue-color);
    letter-spacing: -0.5px;
}

.mv-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Core Values Section Refined */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 153, 32, 0.1);
}

.value-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 153, 32, 0.08);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--blue-color);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Quality Section Refined */
.quality-commitment {
    background-color: var(--blue-color);
    border-radius: 0;
}

.quality-commitment .quality-icon {
    margin-bottom: 2rem;
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .values-grid,
    .row.g-4 {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 2.5rem 1.5rem;
    }

    .cover-product-icon img.cover-product-img {
        object-fit: contain;
    }
}

.btn-download {
    background-color: #ff9920;

}