* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #fafafa;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #FFCC29;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0.6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: none;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
    background: #FFCC29;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
    font-size: 22px;
}

/* ========== HEADER WITH PROPER LOGO ========== */
.main-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
    width: 100%;
    overflow: visible;
}

.topbar {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: auto;
    max-height: 60px;
    width: auto;
    display: block;
}

/* ========== HAMBURGER MENU BUTTON (MOBILE ONLY) ========== */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-left: auto;
}

.hamburger-menu:hover {
    background: #f5f5f5;
}

.hamburger-icon {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    width: 100%;
    height: 2px;
    background: #0A3D62;
    border-radius: 2px;
    transition: 0.2s;
}

/* mobile logo adjustment */
@media (max-width: 768px) {
    .logo img {
        max-height: 30px;
    }
    .topbar {
        padding: 12px 15px;
    }
    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ========== MOBILE SLIDE-IN MENU ========== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-container.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    border-bottom: 1px solid #eef2f6;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A3D62;
    text-decoration: none;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    transition: background 0.2s;
}

.close-menu-btn:hover,
.close-menu-btn:active {
    background: #f0f2f5;
}

.mobile-nav-list {
    list-style: none;
    padding: 12px 0;
    flex: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f2f5;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0A3D62;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: #f8f9fc;
}

.mobile-nav-link .arrow-icon {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    color: #FFCC29;
}

.mobile-nav-link.open .arrow-icon {
    transform: rotate(180deg);
}

/* Accordion submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #fafcff;
}

.mobile-submenu.open {
    max-height: 800px;
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    font-size: 13px;
    font-weight: 500;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f7fa;
    position: relative;
}

.mobile-submenu a:before {
    content: "→";
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: opacity 0.2s, left 0.2s;
    font-size: 12px;
    color: #FFCC29;
}

.mobile-submenu a:hover {
    background: #eef3fc;
    padding-left: 48px;
    color: #FFCC29;
}

.mobile-submenu a:hover:before {
    opacity: 1;
    left: 28px;
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

/* ========== MEGA DROPDOWN NAVIGATION STYLES - CLEAN FIX ========== */
/* ========== MEGA DROPDOWN NAVIGATION STYLES - FULLY FIXED ========== */
.navbar {
    position: relative;
    z-index: 9999;
    background: white;
    width: 100%;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 25px;
    list-style: none;
    padding: 22px 20px;
    margin: 0;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #0A3D62;
    font-size: 13px;
    transition: color 0.2s ease;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.4;
}

.nav-menu li a:hover {
    color: #C5A028;
}

.dropdown {
    position: static;
}

/* ========== MEGA MENU - FIXED LAYOUT ========== */
.dropdown .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    padding: 3rem 5rem;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    border-top: 1px solid #e0e8f0;
    border-bottom: 1px solid #e0e8f0;
    box-sizing: border-box;
}

.dropdown.active .mega-menu {
    display: grid;
}

/* ========== 4-COLUMN GRID LAYOUT ========== */
.dropdown .mega-menu {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Override for Products menu - 2 column layout */
.dropdown .products-mega {
    grid-template-columns: 220px 1fr;
    gap: 40px;
}

/* Column styling */
.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #C5A028;
    margin-bottom: 1.2rem;
    border-left: 3px solid #C5A028;
    padding-left: 0.8rem;
    letter-spacing: -0.2px;
}

.mega-column a {
    display: block;
    text-decoration: none;
    color: #2c2c2c;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-column a:hover {
    color: #C5A028;
    transform: translateX(5px);
}

/* ========== PRODUCTS MENU - QUICK LINKS (FIXED VERTICAL LAYOUT) ========== */
.quick-links {
    display: block; /* ✅ Force block layout for vertical stacking */
}

.quick-links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #C5A028;
    margin-bottom: 1.2rem;
    border-left: 3px solid #C5A028;
    padding-left: 0.8rem;
}

.quick-links a {
    display: block; /* ✅ Each link on its own line */
    text-decoration: none;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    width: 100%; /* ✅ Ensure full width */
}

.quick-links a:hover {
    color: #C5A028;
    transform: translateX(5px);
}

/* Product grid */
.dropdown .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dropdown .product-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0f0f0;
}

.dropdown .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #C5A028;
}

.dropdown .product-item img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 20px;
}

.dropdown .product-item span {
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: #0A3D62;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.dropdown .product-item:hover span {
    color: #C5A028;
}

/* Desktop fine-tuning */
@media (min-width: 1200px) {
    .nav-menu {
        padding: 24px 20px;
    }
    .nav-menu li a {
        font-size: 14px;
    }
}

@media (min-width: 1400px) {
    .nav-menu {
        padding: 28px 20px;
    }
}

/* ========== TABLET RESPONSIVE (FIXED) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 10px;
        padding: 16px 15px;
    }
    .nav-menu li a {
        font-size: 12px;
    }
    .dropdown .mega-menu {
        padding: 2rem 3%;
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== MOBILE - HIDE DESKTOP NAVBAR ========== */
@media (max-width: 768px) {
    .navbar {
        display: none !important;
    }
}

/* ========== PRODUCTS RESPONSIVE (FIXED - NO HORIZONTAL LINKS) ========== */
@media (max-width: 1024px) {
    .dropdown .products-mega {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 2rem 3% !important;
    }
    
    /* ✅ FIXED: Force vertical column on tablet */
    .quick-links {
        display: block !important; /* Override any flex */
        width: 100%;
    }
    
    .quick-links a {
        display: block !important;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .quick-links h4 {
        width: auto;
        margin-bottom: 15px;
        border-left: none;
        border-bottom: 2px solid #C5A028;
        padding-left: 0;
        padding-bottom: 8px;
    }
    
    .dropdown .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .dropdown .product-item img {
        height: 130px;
        padding: 15px;
    }
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .dropdown .products-mega {
        padding: 1.5rem 5% !important;
    }
    
    .dropdown .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .dropdown .product-item img {
        height: 110px;
        padding: 12px;
    }
    
    .dropdown .product-item span {
        font-size: 11px;
        padding: 8px 6px;
    }
}
/* CONTAINER - FIXED */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ========== HERO SECTION - DESKTOP (KEPT ORIGINAL) ========== */
.hero {
    width: 100%;
    aspect-ratio: 1920/1080;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #0a0f1a;
}

/* Background image layers */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* IMPORTANT */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

/* Images */
.hero-bg-1 {
    background-image: url("../images/Home\ page\ 2\ in\ white\ \(5\).png");
}

.hero-bg-2 {
    background-image: url("../images/1920\ x\ 864.png");
}

/* Active image */
.hero-bg.active {
    opacity: 1;
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    color: white;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress indicators */
.hero-progress {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    width: 28px;
    border-radius: 4px;
    background: #C5A028;
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Diagonal accent */
.diagonal-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C5A028 20%, 
        #FFCC29 50%, 
        #C5A028 80%, 
        transparent 100%);
    z-index: 12;
    transform: skewX(-30deg);
    animation: accentPulse 2s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% {
        opacity: 0.5;
        height: 2px;
    }
    50% {
        opacity: 1;
        height: 3px;
    }
}

/* ========== MOBILE FIX (REAL SOLUTION) ========== */
@media (max-width: 768px) {
    .hero {
        height: 100vh; /* FIX: remove auto/min-height conflict */
        padding: 0 20px;
    }

    .hero-bg {
        background-size: cover;   /* FIX: no black bars */
        background-position: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-progress {
        bottom: 20px;
    }

    .progress-dot {
        width: 6px;
        height: 6px;
    }

    .progress-dot.active {
        width: 20px;
    }
}

/* ========== SMALL DEVICES ========== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* ========== VERY SMALL PHONES ========== */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero {
        position: relative;
        width: 100%;

        /* ✅ THIS IS THE FIX */
        aspect-ratio: 1920 / 864;

        height: auto;
        min-height: unset;
        padding: 0;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        background-size: contain;   /* full image visible */
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 15px;
    }
}

/* INTRO SECTION - Unified background */
.intro {
    background: #fafafa;
    padding: 90px 0;
    text-align: center;
}

.intro .container {
    max-width: 1100px;
    margin: auto;
}

.intro h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0A3D62;
    margin-bottom: 25px;
    letter-spacing: .5px;
}

.intro p {
    font-size: 17px;
    line-height: 1.9;
    color: #2c2c2c;
    max-width: 900px;
    margin: 0 auto;
}

/* TABLE CERTIFICATES */
.certification-section {
    padding: 80px 0;
    background: #fafafa;
}

.cert-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cert-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-family: Montserrat, sans-serif;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cert-table thead th {
    background: #0A3D62;
    color: white;
    padding: 15px;
    font-size: 16px;
    text-align: left;
}

.cert-table tbody td {
    padding: 15px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
}

.cert-table tbody tr:nth-child(even) {
    background: #f1f5f9;
}

.cert-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.cert-table .left {
    font-weight: 600;
    text-align: center;
    width: 35%;
    color: #0A3D62;
}

/* quality-certificates - WITH NAMES BELOW IMAGES */
.quality-certificates {
    background: #fafafa;
    padding: 90px 0;
    text-align: center;
}

.qc-title {
    font-size: 40px;
    font-weight: 600;
    color: #0A3D62;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.qc-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: #C5A028;
    margin: 10px auto 0;
}

/* Desktop: Horizontal row - NO CARDS, JUST IMAGES WITH NAMES */
.certificate-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 0 40px;
    flex-wrap: nowrap;
}

.certificate-card {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 500px;
    min-width: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.certificate-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.certificate-card:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cert-name {
    font-size: 18px;
    font-weight: 700;
    color: #0A3D62;
    margin-top: 20px;
    margin-bottom: 5px;
}

.cert-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: 0;
}

/* Mobile: Grid layout */
@media (max-width: 992px) {
    .certificate-grid {
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }
    .certificate-card {
        max-width: none;
    }
    .cert-name {
        font-size: 16px;
    }
    .cert-desc {
        font-size: 12px;
    }
}

/* timeline-section */
.timeline-section {
    padding: 100px 0;
    background: #fafafa;
    text-align: center;
}

.timeline-title {
    font-size: 38px;
    color: #0A3D62;
    margin-bottom: 20px;
    margin-top: 5px;
}

.timeline-intro {
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
    color: #2c2c2c;
    line-height: 1.6;
    padding: 0 20px;
}

.timeline-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.timeline-btn {
    background: #f1f5f9;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #0A3D62;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.timeline-btn.active {
    background: #0A3D62;
    color: white;
}

.timeline-btn:hover {
    background: #C5A028;
    color: white;
}

.timeline-line {
    height: 4px;
    background: #C5A028;
    width: 60%;
    margin: 20px auto 40px auto;
    border-radius: 2px;
}

.timeline-content {
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
}

.timeline-block {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    animation: fadeInScale 0.5s ease;
}

.timeline-block.active {
    display: block;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.timeline-block ul {
    margin-top: 15px;
    padding-left: 20px;
}

.timeline-block li {
    margin-bottom: 10px;
    color: #2c2c2c;
}

.timeline-block h3 {
    color: #0A3D62;
}

/* DIVISION SECTION */
.division-section {
    padding: 60px 0 100px 0;
    background: #fafafa;
    text-align: center;
}

.division-title {
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.division-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #C5A028;
    transition: 0.3s;
    text-align: left;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.division-card h3 {
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.division-card a {
    color: #008EC0;
    font-size: 13px;
    text-decoration: none;
    word-break: break-all;
}

.division-card a:hover {
    text-decoration: underline;
    color: #FFCC29;
}

.division-card p {
    font-size: 14px;
    margin-top: 8px;
    color: #64748b;
}

/* GRATITUDE SECTION - KEEP ORIGINAL BLUE THEME */
.gratitude-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff, #eef4ff, #ffffff);
    overflow: hidden;
}

.gratitude-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.gratitude-container h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.gratitude-container span {
    color: #00b0f0;
}

.gratitude-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.gratitude-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #0A3D62;
}

.gratitude-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 320px;
    font-weight: 900;
    color: #0A3D62;
    opacity: .05;
    z-index: 1;
    animation: float60 8s ease-in-out infinite;
}

@keyframes float60 {
    0% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -55%); }
    100% { transform: translate(-50%, -50%); }
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .25;
    animation: floatCircle 10s ease-in-out infinite;
}

.circle1 {
    width: 220px;
    height: 220px;
    background: #0A3D62;
    top: 15%;
    left: 10%;
}

.circle2 {
    width: 180px;
    height: 180px;
    background: #C5A028;
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatCircle {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

.fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* GLOBAL PRESENCE */
.global-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.global-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.global-presence {
    padding: 80px 20px;
    background: #fafafa;
    text-align: center;
}

.global-header {
    max-width: 900px;
    margin: auto;
    margin-bottom: 70px;
}

.global-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0A3D62;
    margin-bottom: 20px;
}

.global-sub {
    font-size: 20px;
    font-weight: 600;
    color: #C5A028;
    margin-bottom: 25px;
}

.global-desc {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.global-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #C5A028;
    text-align: left;
    transition: .35s;
}

.global-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.global-card h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #0A3D62;
    font-size: 18px;
}

.global-card ul {
    padding-left: 18px;
}

.global-card li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #2c2c2c;
}

/* product-banner */
.product-banner {
    height: 300px;
    background: linear-gradient(rgba(10, 61, 98, 0.7), rgba(10, 61, 98, 0.7)), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?q=80&w=2070') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 60px;
    margin-bottom: 20px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.banner-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.banner-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    opacity: .9;
}

/* FASTENER CAPABILITY */
.fastener-capability {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.capability-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.cap-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0A3D62;
}

.cap-hero-sub {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 60px;
    line-height: 1.7;
    padding: 0 20px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.cap-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.cap-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #C5A028;
}

.cap-title {
    font-size: 12px;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 10px;
}

.cap-value {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D62;
}

.product-range-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #0A3D62;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.product-item {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: .3s;
    background: white;
    color: #2c2c2c;
    font-weight: 500;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #C5A028;
    color: #C5A028;
}

.capability-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.tag-group h4 {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #0A3D62;
}

.tag-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag-grid span {
    padding: 10px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-size: 13px;
    color: #2c2c2c;
    transition: 0.3s;
}

.tag-grid span:hover {
    border-color: #C5A028;
    color: #C5A028;
}

/* PRODUCT GALLERY */
.product-gallery {
    padding: 80px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0A3D62;
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.gallery-item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

.gallery-img {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
}

.gallery-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-item h4 {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #0A3D62;
    background: #ffffff;
    text-align: center;
}

/* PRODUCT PORTFOLIO - 5 cards horizontal on desktop */
.product-portfolio {
    padding: 80px 0;
    background: #fafafa;
}

.portfolio-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 820px;
    margin: auto;
    margin-bottom: 60px;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 20px;
}

.portfolio-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.portfolio-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #2c2c2c;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Mobile: wrap to grid */
@media (max-width: 992px) {
    .portfolio-grid {
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .portfolio-card {
        min-width: auto;
    }
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0A3D62;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: auto;
    margin-bottom: 18px;
    transition: 0.3s;
}

.portfolio-card:hover .icon-circle {
    transform: scale(1.1);
    background: #C5A028;
}

.portfolio-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0A3D62;
}

.portfolio-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* HOT PRODUCTS */
.hot-products {
    background: #fafafa;
    padding: 80px 0;
}

.hot-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.hot-product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s;
}

.hot-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.hot-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hot-info {
    padding: 20px;
    text-align: center;
}

.hot-info h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #0A3D62;
}

.hot-info p {
    font-size: 13px;
    color: #64748b;
}

/* MANUFACTURING PROCESS */
.manufacturing-process {
    padding: 80px 0;
    background: #fafafa;
    position: relative;
}

.process-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #0A3D62;
    font-weight: 700;
    padding: 0 20px;
}

.process-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.process-box {
    background: white;
    padding: 20px;
    border-radius: 14px;
    border: 2px solid #C5A028;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    width: 230px;
    min-height: 220px;
    font-size: 12px;
    transition: .3s;
}

.process-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.process-box h4 {
    margin-bottom: 12px;
    color: #0A3D62;
    font-size: 14px;
    font-weight: 700;
}

.process-box ul {
    padding-left: 18px;
    line-height: 1.6;
    color: #2c2c2c;
}

.process-box.center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #0A3D62;
}

.arrow {
    font-size: 30px;
    color: #C5A028;
    font-weight: bold;
}

/* COMPANY STRENGTH */
/* ========== COMPANY STRENGTH ========== */
.company-strength {
    padding: 80px 0;
    background: #fafafa;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* FIXED 3 COLUMN */
    gap: 30px;
    padding: 0 20px;
}

.strength-card {
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* equal height feel */
}

.strength-card:hover {
    transform: translateY(-5px);
}

.strength-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #0A3D62;
}

.strength-card p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #2c2c2c;
}

/* BUTTON STYLE (LINK SAME AS BUTTON) */
.strength-card .learn-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 8px;
    background: #C5A028;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    align-self: flex-start;
}

.strength-card .learn-btn:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

/* COLORS */
.blue { background: #e0f2fe; }
.green { background: #dcfce7; }
.beige { background: #fef3c7; }
.purple { background: #f3e8ff; }
.pink { background: #ffe4e6; }
.teal { background: #ccfbf1; }
.slate  {background: #D6E1F0;}
.olive {background: #DDE7D5;}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 992px) {
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .strength-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SUSTAINABILITY SECTION ========== */
.sustainability-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0fdf4, #dcfce7);
    overflow: hidden;
}

.framework-scroll {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.framework-track {
    display: flex;
    gap: 30px;
    animation: scrollFramework 35s linear infinite;
}

.framework-track:hover {
    animation-play-state: paused;
}

.framework-box {
    min-width: 260px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    border-left: 6px solid #10b981;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.framework-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 185, 129, .25);
}

.framework-box h3 {
    color: #0A3D62;
    margin-bottom: 12px;
    font-size: 18px;
}

.framework-box ul {
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #2c2c2c;
}

@keyframes scrollFramework {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* GLOBAL BUTTON (optional use) */
.learn-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #C5A028;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.learn-btn:hover {
    background: #D4AF37;
}
/* SUSTAINABILITY SECTION - KEEP ORIGINAL GREEN THEME */
.sustainability-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0fdf4, #dcfce7);
    overflow: hidden;
}

.framework-scroll {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.framework-track {
    display: flex;
    gap: 30px;
    animation: scrollFramework 35s linear infinite;
}

.framework-track:hover {
    animation-play-state: paused;
}

.framework-box {
    min-width: 260px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    border-left: 6px solid #10b981;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.framework-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 185, 129, .25);
}

.framework-box h3 {
    color: #0A3D62;
    margin-bottom: 12px;
    font-size: 18px;
}

.framework-box ul {
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #2c2c2c;
}

@keyframes scrollFramework {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.learn-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #C5A028;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.learn-btn:hover {
    background: #D4AF37;
}

/* COMPANY STATS - Pradako Group on LEFT side */
.company-stats {
    background: #fafafa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.stats-header {
    margin-bottom: 50px;
    text-align: left;
}

.stats-left h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #0A3D62;
}

.stats-left span {
    color: #C5A028;
}

.stats-left p {
    color: #64748b;
    max-width: 500px;
    font-size: 14px;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.stat {
    position: relative;
    padding-left: 15px;
    text-align: left;
}

.stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 3px;
    height: 30px;
    background: #C5A028;
}

.stat h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0A3D62;
}

.stat p {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== COMPLETE FOOTER FIX ========== */
.footer {
    padding: 50px 20px 20px !important;
    background: #ffffff !important;
    color: #2c2c2c !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 35px !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.footer h4 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #C5A028 !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
}

.footer p, 
.footer li {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #2c2c2c !important;
    margin-bottom: 6px !important;
    list-style: none !important;
    word-break: break-word !important;
}

.footer a {
    color: #2c2c2c;
    text-decoration: none;
}

.footer a:hover {
    color: #C5A028;
}

.footer input[type="text"] {
    width: 100% !important;
    padding: 8px 10px !important;
    border: 1px solid #334155 !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    box-sizing: border-box !important;
    background: #1e293b;
    color: white;
}

.about {
    grid-column: auto !important;
}

.social p {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
}

.footer-brand {
    text-align: center !important;
    margin-top: 50px !important;
    padding-top: 25px !important;
    border-top: 1px solid #e2e8f0 !important;
    font-size: 12px !important;
}

.footer-brand span {
    display: block !important;
    font-size: 10px !important;
    margin-top: 8px !important;
    color: #64748b !important;
}

.footer-bottom {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e2e8f0 !important;
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    font-size: 11px !important;
}

.footer-links {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.footer-links span {
    cursor: pointer;
    transition: 0.3s;
}

.footer-links span:hover {
    color: #C5A028;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .gratitude-container h2 {
        font-size: 32px;
    }
    .cap-hero-title {
        font-size: 32px;
    }
    .timeline-title {
        font-size: 28px;
    }
    .stats-left h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 20px !important;
    }
    .footer p, 
    .footer li {
        font-size: 11px !important;
    }
    .footer-brand {
        font-size: 10px !important;
    }
    .footer-brand span {
        font-size: 8px !important;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .process-box {
        width: 100%;
        max-width: 280px;
    }
    .arrow {
        display: none;
    }
    .process-row {
        flex-direction: column;
    }
}

/* Clean CSS for footer links and active state */
.footer a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #e6b21e;
}

.footer a.active {
    color: #e6b21e;
    font-weight: bold;
}

.footer .footer-links a {
    margin: 0 10px;
}

.footer .social a {
    display: inline-block;
    text-decoration: none;
}

.footer .social a i {
    margin-right: 8px;
}

/* ========== ABOUT MASTERPIECE SECTION - PERFECT VERSION ========== */
.about-masterpiece-section {
    position: relative;
    padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 6%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    isolation: isolate;
}

.about-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    filter: brightness(0.55) contrast(1.05);
}

.about-masterpiece-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 100%);
    z-index: -2;
}

.about-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 1100px;
    min-width: 280px;
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.8s ease;
    object-fit: contain;
    animation: aboutMapFade 1.2s ease-out forwards;
}

@keyframes aboutMapFade {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.96); }
    100% { opacity: 0.12; transform: translate(-50%, -50%) scale(1); }
}

.about-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, #0A3D62, #2c6e9e, #4a90b0);
    opacity: 0.35;
    border-radius: 2px;
    animation: aboutLineMove 3s infinite alternate ease-in-out;
    transform-origin: top;
    filter: blur(0.3px);
    z-index: -1;
}

.about-line1 { top: 25%; left: 12%; height: 110px; }
.about-line2 { top: 55%; left: 88%; height: 130px; }
.about-line3 { top: 70%; left: 45%; height: 90px; }
.about-line4 { top: 20%; left: 85%; height: 105px; animation-duration: 3.5s; }
.about-line5 { top: 78%; left: 15%; height: 85px; animation-duration: 2.8s; }

@keyframes aboutLineMove {
    0% { transform: scaleY(0.5); opacity: 0.2; }
    100% { transform: scaleY(1.3); opacity: 0.6; }
}

.about-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-heading {
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(25px, 5vw, 45px);
    letter-spacing: -0.02em;
    color: #0a1c2a;
    position: relative;
    opacity: 0;
    transform: translateY(25px);
    animation: aboutHeadingReveal 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A3D62, #4a90b0);
    border-radius: 3px;
    animation: aboutUnderlineGrow 0.9s ease-out 0.4s forwards;
}

@keyframes aboutHeadingReveal {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes aboutUnderlineGrow {
    0% { width: 0; }
    100% { width: 70px; }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-text p {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.75;
    margin-bottom: 20px;
    color: #1a2a3a;
    font-weight: 400;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    opacity: 0;
    transform: translateY(28px);
    word-break: break-word;
    overflow-wrap: break-word;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p.about-show {
    opacity: 1;
    transform: translateY(0);
}

.about-text p:nth-child(1) { transition-delay: 0.05s; }
.about-text p:nth-child(2) { transition-delay: 0.12s; }
.about-text p:nth-child(3) { transition-delay: 0.19s; }
.about-text p:nth-child(4) { transition-delay: 0.26s; }
.about-text p:nth-child(5) { transition-delay: 0.33s; }
.about-text p:nth-child(6) { transition-delay: 0.40s; }

.about-text p:hover {
    color: #0A3D62;
    transform: translateX(5px) translateY(-2px);
    transition: all 0.25s ease;
}

.about-email {
    font-weight: 700;
    color: #0A3D62;
    background: linear-gradient(120deg, rgba(10,61,98,0.1), rgba(10,61,98,0.03));
    padding: 3px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: 1px solid rgba(10,61,98,0.15);
}

.about-email:hover {
    background: #0A3D62;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(10,61,98,0.2);
}

@media (min-width: 1100px) {
    .about-line4, .about-line5 {
        display: block;
    }
}

@media (max-width: 767px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .about-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .about-heading::after {
        width: 55px;
        height: 2.5px;
    }
    .about-text p {
        font-size: 14.5px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    .about-map {
        width: 95%;
        opacity: 0.08;
    }
    .about-line1, .about-line2, .about-line3, .about-line4, .about-line5 {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-masterpiece-section {
        padding: 40px 16px 50px;
        min-height: auto;
    }
    .about-heading {
        font-size: 26px;
    }
    .about-text p {
        font-size: 13.5px;
        line-height: 1.65;
    }
    .about-map {
        width: 100%;
        opacity: 0.07;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-heading, .about-heading::after, .about-text p, .about-line, .about-map {
        animation: none !important;
        transition: none !important;
    }
    .about-heading {
        opacity: 1;
        transform: none;
    }
    .about-heading::after {
        width: 70px;
    }
    .about-text p {
        opacity: 1;
        transform: none;
    }
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */

/* Base animation for all sections */
.intro,
.certification-section,
.about-masterpiece-section,
.quality-certificates,
.timeline-section,
.division-section,
.gratitude-section,
.global-presence,
.global-banner,
.product-banner,
.fastener-capability,
.product-gallery,
.product-portfolio,
.hot-products,
.manufacturing-process,
.company-strength,
.sustainability-section,
.company-stats {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.intro.revealed,
.certification-section.revealed,
.about-masterpiece-section.revealed,
.quality-certificates.revealed,
.timeline-section.revealed,
.division-section.revealed,
.gratitude-section.revealed,
.global-presence.revealed,
.global-banner.revealed,
.product-banner.revealed,
.fastener-capability.revealed,
.product-gallery.revealed,
.product-portfolio.revealed,
.hot-products.revealed,
.manufacturing-process.revealed,
.company-strength.revealed,
.sustainability-section.revealed,
.company-stats.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Certification table stagger animation */
.certification-section .cert-table tbody tr {
    opacity: 0;
    transform: translateX(-25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.certification-section.revealed .cert-table tbody tr {
    opacity: 1;
    transform: translateX(0);
}

.certification-section.revealed .cert-table tbody tr:nth-child(1) { transition-delay: 0.05s; }
.certification-section.revealed .cert-table tbody tr:nth-child(2) { transition-delay: 0.1s; }
.certification-section.revealed .cert-table tbody tr:nth-child(3) { transition-delay: 0.15s; }
.certification-section.revealed .cert-table tbody tr:nth-child(4) { transition-delay: 0.2s; }
.certification-section.revealed .cert-table tbody tr:nth-child(5) { transition-delay: 0.25s; }
.certification-section.revealed .cert-table tbody tr:nth-child(6) { transition-delay: 0.3s; }
.certification-section.revealed .cert-table tbody tr:nth-child(7) { transition-delay: 0.35s; }

/* Quality certificates scale animation */
.quality-certificates .certificate-card {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.quality-certificates.revealed .certificate-card {
    opacity: 1;
    transform: scale(1);
}

.quality-certificates.revealed .certificate-card:nth-child(1) { transition-delay: 0.05s; }
.quality-certificates.revealed .certificate-card:nth-child(2) { transition-delay: 0.12s; }
.quality-certificates.revealed .certificate-card:nth-child(3) { transition-delay: 0.19s; }
.quality-certificates.revealed .certificate-card:nth-child(4) { transition-delay: 0.26s; }
.quality-certificates.revealed .certificate-card:nth-child(5) { transition-delay: 0.33s; }

/* Division cards stagger */
.division-section .division-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.division-section.revealed .division-card {
    opacity: 1;
    transform: translateY(0);
}

.division-section.revealed .division-card:nth-child(1) { transition-delay: 0.02s; }
.division-section.revealed .division-card:nth-child(2) { transition-delay: 0.06s; }
.division-section.revealed .division-card:nth-child(3) { transition-delay: 0.1s; }
.division-section.revealed .division-card:nth-child(4) { transition-delay: 0.14s; }
.division-section.revealed .division-card:nth-child(5) { transition-delay: 0.18s; }
.division-section.revealed .division-card:nth-child(6) { transition-delay: 0.22s; }
.division-section.revealed .division-card:nth-child(7) { transition-delay: 0.26s; }
.division-section.revealed .division-card:nth-child(8) { transition-delay: 0.3s; }
.division-section.revealed .division-card:nth-child(9) { transition-delay: 0.34s; }
.division-section.revealed .division-card:nth-child(10) { transition-delay: 0.38s; }
.division-section.revealed .division-card:nth-child(11) { transition-delay: 0.42s; }
.division-section.revealed .division-card:nth-child(12) { transition-delay: 0.46s; }

/* Global presence cards */
.global-presence .global-card {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
}

.global-presence.revealed .global-card {
    opacity: 1;
    transform: translateY(0);
}

.global-presence.revealed .global-card:nth-child(1) { transition-delay: 0.05s; }
.global-presence.revealed .global-card:nth-child(2) { transition-delay: 0.15s; }
.global-presence.revealed .global-card:nth-child(3) { transition-delay: 0.25s; }

/* Gallery items stagger */
.product-gallery .gallery-item {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.5s ease;
}

.product-gallery.revealed .gallery-item {
    opacity: 1;
    transform: scale(1);
}

.product-gallery.revealed .gallery-item:nth-child(1) { transition-delay: 0.02s; }
.product-gallery.revealed .gallery-item:nth-child(2) { transition-delay: 0.06s; }
.product-gallery.revealed .gallery-item:nth-child(3) { transition-delay: 0.1s; }
.product-gallery.revealed .gallery-item:nth-child(4) { transition-delay: 0.14s; }
.product-gallery.revealed .gallery-item:nth-child(5) { transition-delay: 0.18s; }
.product-gallery.revealed .gallery-item:nth-child(6) { transition-delay: 0.22s; }
.product-gallery.revealed .gallery-item:nth-child(7) { transition-delay: 0.26s; }
.product-gallery.revealed .gallery-item:nth-child(8) { transition-delay: 0.3s; }
.product-gallery.revealed .gallery-item:nth-child(9) { transition-delay: 0.34s; }

/* Portfolio cards */
.product-portfolio .portfolio-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.product-portfolio.revealed .portfolio-card {
    opacity: 1;
    transform: translateY(0);
}

.product-portfolio.revealed .portfolio-card:nth-child(1) { transition-delay: 0.05s; }
.product-portfolio.revealed .portfolio-card:nth-child(2) { transition-delay: 0.12s; }
.product-portfolio.revealed .portfolio-card:nth-child(3) { transition-delay: 0.19s; }
.product-portfolio.revealed .portfolio-card:nth-child(4) { transition-delay: 0.26s; }
.product-portfolio.revealed .portfolio-card:nth-child(5) { transition-delay: 0.33s; }

/* Hot products */
.hot-products .hot-product-card {
    opacity: 0;
    transform: scale(0.94);
    transition: all 0.5s ease;
}

.hot-products.revealed .hot-product-card {
    opacity: 1;
    transform: scale(1);
}

.hot-products.revealed .hot-product-card:nth-child(1) { transition-delay: 0.05s; }
.hot-products.revealed .hot-product-card:nth-child(2) { transition-delay: 0.12s; }
.hot-products.revealed .hot-product-card:nth-child(3) { transition-delay: 0.19s; }
.hot-products.revealed .hot-product-card:nth-child(4) { transition-delay: 0.26s; }

/* Strength cards */
.company-strength .strength-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.company-strength.revealed .strength-card {
    opacity: 1;
    transform: translateY(0);
}

.company-strength.revealed .strength-card:nth-child(1) { transition-delay: 0.02s; }
.company-strength.revealed .strength-card:nth-child(2) { transition-delay: 0.07s; }
.company-strength.revealed .strength-card:nth-child(3) { transition-delay: 0.12s; }
.company-strength.revealed .strength-card:nth-child(4) { transition-delay: 0.17s; }
.company-strength.revealed .strength-card:nth-child(5) { transition-delay: 0.22s; }
.company-strength.revealed .strength-card:nth-child(6) { transition-delay: 0.27s; }

/* Stats */
.company-stats .stat {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.company-stats.revealed .stat {
    opacity: 1;
    transform: translateY(0);
}

.company-stats.revealed .stat:nth-child(1) { transition-delay: 0.02s; }
.company-stats.revealed .stat:nth-child(2) { transition-delay: 0.06s; }
.company-stats.revealed .stat:nth-child(3) { transition-delay: 0.1s; }
.company-stats.revealed .stat:nth-child(4) { transition-delay: 0.14s; }
.company-stats.revealed .stat:nth-child(5) { transition-delay: 0.18s; }
.company-stats.revealed .stat:nth-child(6) { transition-delay: 0.22s; }
.company-stats.revealed .stat:nth-child(7) { transition-delay: 0.26s; }
.company-stats.revealed .stat:nth-child(8) { transition-delay: 0.3s; }
.company-stats.revealed .stat:nth-child(9) { transition-delay: 0.34s; }
.company-stats.revealed .stat:nth-child(10) { transition-delay: 0.38s; }
.company-stats.revealed .stat:nth-child(11) { transition-delay: 0.42s; }

/* Timeline animations */
.timeline-section .timeline-title,
.timeline-section .timeline-intro,
.timeline-section .timeline-nav,
.timeline-section .timeline-line {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-section.revealed .timeline-title,
.timeline-section.revealed .timeline-intro {
    opacity: 1;
    transform: translateY(0);
}

.timeline-section.revealed .timeline-nav {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.timeline-section.revealed .timeline-line {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Manufacturing process */
.manufacturing-process .process-box {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.manufacturing-process.revealed .process-box {
    opacity: 1;
    transform: translateY(0);
}

/* About section map zoom */
.about-masterpiece-section.revealed .about-map {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0.16;
    transition: transform 1.2s ease, opacity 0.8s ease;
}

/* Section titles */
.section-title, .qc-title, .division-title, .process-title, .timeline-title {
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(15px);
}

.revealed .section-title,
.revealed .qc-title,
.revealed .division-title,
.revealed .process-title,
.revealed .timeline-title {
    opacity: 1;
    transform: translateY(0);
}