/* ==========================================================================
   METAL-LINK STEEL AND ALLOYS - PREMIUM B2B DESIGN SYSTEM & STYLESHEET
   Primary Color: #5D6C89 (Steel Slate Blue)
   Secondary Color: #EF2E31 (Forge Red Accent)
   Accent Tint: #F3F5F8 (Metallic Silver)
   Background Light: #F8FAFC
   Text Color: #30343F
   Typography: Outfit (Headings) & Poppins (Body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --primary-color: #5D6C89;
    --primary-dark: #3F4C6B;
    --primary-light: #7E8DAF;
    --primary-subtle: rgba(93, 108, 137, 0.08);

    --secondary-color: #EF2E31;
    --secondary-hover: #D72225;
    --secondary-glow: rgba(239, 46, 49, 0.3);
    --secondary-subtle: rgba(239, 46, 49, 0.08);

    --accent-color: #F3F5F8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;

    --text-main: #30343F;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;

    --border-color: #E2E8F0;
    --border-hover: #CBD5E1;

    /* Glassmorphism Design Tokens */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 20px 40px -15px rgba(93, 108, 137, 0.12);

    /* Elevation Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(93, 108, 137, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(93, 108, 137, 0.2);
    --shadow-red-glow: 0 10px 30px rgba(239, 46, 49, 0.35);

    /* Typography Tokens */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout Tokens */
    --container-max: 1320px;
    --header-height-desk: 110px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--accent-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    border: 2px solid var(--accent-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   03. REUSABLE UTILITIES & COMPONENTS
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

.section-padding {
    padding-top: clamp(4rem, 8vw, 7.5rem);
    padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

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

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

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

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

.text-white {
    color: var(--bg-white);
}

.text-muted {
    color: var(--text-muted);
}

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

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

/* Grid Layout Utilities */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

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

/* Fluid Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-muted);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.section-tag {
    gap: 12px;
    margin-bottom: 12px;
}

.tag-line {
    width: 24px;
    height: 2px;
    background-color: var(--secondary-color);
    display: inline-block;
}

.tag-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.gradient-text-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(93, 108, 137, 0.3);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-large {
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(93, 108, 137, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 108, 137, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-red-glow);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(239, 46, 49, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-glow:hover::after {
    opacity: 1;
}

/* Button Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   04. PAGE LOADER & LOGO IMAGES
   -------------------------------------------------------------------------- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 320px;
}

.loader-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 15px auto;
    border-radius: 6px;
    animation: pulse-logo 1.5s infinite ease-in-out;
}

@keyframes pulse-logo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.loader-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.brand-text-sub {
    font-size: 0.75rem;
    color: var(--secondary-color);
    letter-spacing: 0.2em;
}

.loader-bar-bg {
    width: 100%;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.loader-status {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* --------------------------------------------------------------------------
   05. HEADER & NAVIGATION WITH LOGO-01.JPG
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.top-bar {
    background-color: var(--primary-dark);
    color: var(--accent-color);
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.header-container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

.top-info,
.top-contacts {
    gap: 12px;
}

.top-divider {
    opacity: 0.3;
}

.top-link:hover {
    color: var(--secondary-color);
}

.currency-selector select {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
    cursor: pointer;
}

.currency-selector select option {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.main-nav-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
    transition: var(--transition-smooth);
}

.site-header.scrolled .top-bar {
    margin-top: -38px;
}

.site-header.scrolled .main-nav-bar {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

/* Brand Logo Image Styling */
.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.mobile-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    background: #FFFFFF;
    padding: 4px;
}

/* Navigation Links */
.nav-list {
    gap: 22px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Hamburger button */
.mobile-hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 10001;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-close-btn {
    font-size: 2rem;
    color: var(--text-muted);
    line-height: 1;
}

.mobile-nav-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(48, 52, 63, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   06. HERO SECTION WITH VIDEO BACKGROUND
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height-desk) + 40px);
    padding-bottom: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(248 250 252 / 66%) 0%, rgb(235 240 247 / 40%) 50%, rgb(243 245 248 / 0%) 100%);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: rgba(93, 108, 137, 0.12);
}

.shape-2 {
    bottom: 15%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: rgba(239, 46, 49, 0.08);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

/* Pill Badge */
.pill-badge {
    display: inline-flex;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(239, 46, 49, 0.25);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
    animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.pill-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.08em;
}

.hero-heading {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.typing-target {
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 2px;
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: #031836;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-cta-group {
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.trust-badge-item {
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.trust-badge-icon {
    color: var(--secondary-color);
    font-weight: 800;
}

/* Hero Right Visual */
.hero-visual {
    position: relative;
}

.hero-main-card {
    position: relative;
    padding: 12px;
    border-radius: var(--radius-lg);
}

.card-image-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-img {
    transform: scale(1.03);
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(93, 108, 137, 0.1) 0%, rgba(48, 52, 63, 0.4) 100%);
}

/* Floating Product Badge Cards */
.floating-product-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.card-pipes {
    top: 10%;
    left: -20px;
}

.card-flanges {
    top: 48%;
    right: -25px;
}

.card-fittings {
    bottom: 12%;
    left: -15px;
}

.f-icon {
    font-size: 1.25rem;
}

.f-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-dark);
}

.f-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.hero-live-stat-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 12px 20px;
    gap: 12px;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
    z-index: 4;
}

.live-pulse {
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.live-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.live-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Floating Animations */
.floating-anim-1 {
    animation: float-slow 4s infinite ease-in-out;
}

.floating-anim-2 {
    animation: float-slow 5s infinite ease-in-out 1s;
}

.floating-anim-3 {
    animation: float-slow 4.5s infinite ease-in-out 2s;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px);
    }

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

/* --------------------------------------------------------------------------
   07. COMPANY STATISTICS BAR (STRICTLY HORIZONTAL LAYOUT)
   -------------------------------------------------------------------------- */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.stats-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 28px 36px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    align-items: center;
}

.stat-item-h {
    padding: 12px;
    position: relative;
}

.stat-item-h:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border-color);
}

.stat-icon-bg {
    width: 50px;
    height: 50px;
    background: var(--secondary-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
}

.stat-number-wrap {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-plus {
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   08. ABOUT US SECTION
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--bg-white);
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.about-badge-floating {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 20px 24px;
    background: var(--primary-dark);
    color: var(--bg-white);
    max-width: 220px;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* About Tabs */
.about-tab-buttons {
    gap: 12px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.about-tab-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 10px 16px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition-fast);
}

.about-tab-btn.active,
.about-tab-btn:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.tab-pane {
    display: none;
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tab-pane.active {
    display: block;
}

.feature-mini-card {
    gap: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.mini-icon {
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.feature-mini-card h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.feature-mini-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   09. PRODUCT CATEGORIES SECTION
   -------------------------------------------------------------------------- */
.product-filter-bar {
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-main);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

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

.product-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.product-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-dark);
    color: var(--bg-white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-specs {
    font-size: 0.82rem;
    color: var(--text-main);
    background: var(--bg-light);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.stock-status {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-us-section {
    background-color: var(--bg-white);
}

.reason-card {
    padding: 30px 24px;
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.reason-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.reason-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--secondary-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.reason-card:hover .reason-icon-wrap {
    background: var(--secondary-color);
}

.reason-card:hover .reason-icon-wrap stroke {
    stroke: #FFFFFF;
}

.reason-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. INDUSTRIES WE SERVE
   -------------------------------------------------------------------------- */
.industry-card {
    padding: 28px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-6px);
}

.industry-card:hover h3 {
    color: var(--bg-white);
}

.industry-card:hover p {
    color: var(--text-light);
}

.ind-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.industry-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. MANUFACTURING TIMELINE WITH IMAGES
   -------------------------------------------------------------------------- */
.manufacturing-section {
    background-color: var(--bg-white);
}

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

.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--primary-subtle);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--bg-white), var(--shadow-sm);
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    width: 43%;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.timeline-img-wrap {
    width: 100%;
    height: 150px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 14px;
}

.timeline-step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.timeline-content:hover .timeline-step-img {
    transform: scale(1.06);
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. QUALITY ASSURANCE
   -------------------------------------------------------------------------- */
.quality-lead {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.quality-standards-grid {
    gap: 10px;
    margin-top: 20px;
}

.std-badge {
    padding: 10px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--primary-dark);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.check-list {
    gap: 12px;
}

.check-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-check {
    color: var(--secondary-color);
    font-weight: 800;
}

.quality-hero-card {
    padding: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quality-hero-card img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.quality-mtc-banner {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 16px;
    padding: 14px;
    background: var(--primary-dark);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
}

.mtc-icon {
    font-size: 1.8rem;
}

.quality-mtc-banner h4 {
    font-size: 0.95rem;
    color: var(--bg-white);
    margin-bottom: 2px;
}

.quality-mtc-banner p {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* --------------------------------------------------------------------------
   14. GLOBAL EXPORT SECTION (MAP)
   -------------------------------------------------------------------------- */
.map-wrapper {
    padding: 24px;
    position: relative;
    border: 1px solid var(--border-color);
}

.world-map-svg-container {
    position: relative;
    width: 100%;
}

.world-map-svg {
    width: 100%;
    height: auto;
    max-height: 480px;
}

.route-line {
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.map-marker {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-marker:hover {
    transform: scale(1.3);
}

.marker-pulse {
    animation: marker-pulse-anim 2s infinite ease-out;
}

@keyframes marker-pulse-anim {

    0% {
        r: 5;
        opacity: 0.8;
    }

    100% {
        r: 25;
        opacity: 0;
    }
}

.map-tooltip {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 16px 20px;
    background: var(--primary-dark);
    color: var(--bg-white);
    max-width: 320px;
    z-index: 10;
    pointer-events: none;
    border-left: 4px solid var(--secondary-color);
}

.map-tooltip h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 4px;
}

.map-tooltip p {
    font-size: 0.82rem;
    color: var(--text-light);
}

.map-stats-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.m-stat {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.m-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. CERTIFICATIONS & CLIENT MARQUEE
   -------------------------------------------------------------------------- */
.cert-card {
    padding: 30px 20px;
    border: 1px solid var(--border-color);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.cert-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.cert-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Client Marquee */
.clients-section {
    padding: 40px 0;
    background: var(--primary-dark);
    color: var(--bg-white);
    overflow: hidden;
}

.clients-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: 24px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 50px;
    animation: marquee-anim 30s linear infinite;
}

@keyframes marquee-anim {

    0% {
        transform: translateX(0%);
    }

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

.client-logo-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   16. TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--bg-white);
}

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

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    padding: 40px;
    position: relative;
    border: 1px solid var(--border-color);
}

.quote-mark {
    font-size: 4rem;
    color: var(--secondary-subtle);
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.t-text {
    font-size: 1.1rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.t-author {
    gap: 16px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-name {
    font-size: 1rem;
    margin-bottom: 2px;
}

.t-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.t-prev-btn,
.t-next-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.t-prev-btn:hover,
.t-next-btn:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
}

.t-dots {
    gap: 8px;
    margin: 0 20px;
}

.t-dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.t-dot.active {
    background: var(--secondary-color);
    width: 24px;
    border-radius: 5px;
}

/* --------------------------------------------------------------------------
   17. BLOG SECTION
   -------------------------------------------------------------------------- */
.blog-card {
    border: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(48, 52, 63, 0.85);
    color: var(--bg-white);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-content {
    padding: 24px;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 6px;
}

.blog-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   18. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    background-color: var(--bg-white);
}

.cta-banner-card {
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2A344A 100%);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(239, 46, 49, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.cta-heading {
    color: var(--bg-white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 14px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
}

.cta-actions {
    gap: 20px;
}

/* --------------------------------------------------------------------------
   19. FOOTER SECTION
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #1E2330;
    color: var(--text-light);
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.social-icon:hover {
    background: var(--secondary-color);
}

.footer-heading {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.88rem;
}

.footer-contact-items a {
    color: var(--secondary-color);
}

.footer-newsletter {
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.newsletter-form {
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--bg-white);
    width: 280px;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--bg-white);
}

/* --------------------------------------------------------------------------
   20. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red-glow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--secondary-hover);
}

/* --------------------------------------------------------------------------
   21. INTERACTIVE MODAL POPUPS
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 35, 48, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.modal-container {
    width: 100%;
    max-width: 650px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-close-btn {
    font-size: 2rem;
    color: var(--text-muted);
    line-height: 1;
}

.modal-form {
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(93, 108, 137, 0.15);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10003;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--secondary-color);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   22. ANIMATION HELPER CLASSES (Intersection Observer Triggered)
   -------------------------------------------------------------------------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.appear,
.fade-in-left.appear,
.fade-in-right.appear {
    opacity: 1;
    transform: translate(0);
}