/* Mobile full-screen nav menu and large tap targets */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 80px; /* leave space for header */
        overflow-y: auto;
        transition: opacity 0.2s;
    }
    .nav-menu.active {
        display: flex;
        opacity: 1;
    }
    .header-nav-left .nav-link,
    .header-nav-right .nav-link,
    .nav-menu .nav-link {
        min-height: 44px;
        line-height: 1.3;
        font-size: 1.1rem;
        padding: 12px 24px;
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid #f0f0f0;
        background: none;
        color: #0F2854;
        text-align: left;
        text-decoration: none;
        transition: background 0.2s;
    }
    .header-nav-left .nav-link:active,
    .header-nav-right .nav-link:active,
    .nav-menu .nav-link:active,
    .header-nav-left .nav-link:focus,
    .header-nav-right .nav-link:focus,
    .nav-menu .nav-link:focus,
    .header-nav-left .nav-link:hover,
    .header-nav-right .nav-link:hover,
    .nav-menu .nav-link:hover {
        background: #f0f4fa;
        color: #1C4D8D;
    }
}
/* Prevent about-company-intro image from being too large on small screens */
@media (max-width: 480px) {
    .about-company-image img {
        max-width: 320px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}
/* Responsive: Stack about-company-intro on mobile */
@media (max-width: 900px) {
    .about-company-intro .about-company-container {
        flex-direction: column !important;
        gap: 32px !important;
        padding: 40px 10px 40px 10px !important;
    }
    .about-company-intro .about-company-content,
    .about-company-intro .about-company-image {
        max-width: 100% !important;
        min-width: 0 !important;
        text-align: left !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .about-company-intro .about-company-image {
        justify-content: center !important;
    }
    .about-company-intro .about-company-image img {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
    }
}
/* LATEST PROJECTS SECTION (matches our-main-services-section style) */
.latest-projects-section {
    background: #0F2854;
    padding: 60px 0 40px 0;
}
.latest-projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.latest-projects-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -1px;
}
.latest-projects-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 36px;
    text-align: center;
}
.latest-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
}
.project-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(30,40,90,0.07);
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    min-height: 320px;
}
.project-card:hover {
    box-shadow: 0 8px 32px 0 rgba(30,40,90,0.13);
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
}
.project-card-icon {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 18px;
}
.project-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #263238;
    margin-bottom: 10px;
}
.project-card-desc {
    font-size: 1rem;
    color: #607d8b;
    margin-bottom: 22px;
    flex: 1 1 auto;
}
.project-card-btn {
    display: inline-flex;
    align-items: center;
    background: #0F2854;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px 0 rgba(25,118,210,0.08);
    cursor: pointer;
}
.project-card-btn:hover {
    background: #0d47a1;
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(25,118,210,0.16);
}
.project-card-btn i {
    margin-left: 10px;
    font-size: 1.1em;
    transition: transform 0.18s;
}
.project-card-btn:hover i {
    transform: translateX(4px);
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 0.85rem + 0.25vw, 1rem);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ========================================
   PERFORMANCE: CORE WEB VITALS OPTIMIZATION
   ======================================== */

/* Content-visibility for off-screen sections (improves rendering) */
.about-company-intro,
.chairmans-message-section,
.our-main-services-section,
.events-exhibitions-section,
.why-choose-floating-korean,
.certifications-licenses-section,
.projects-portfolio-preview,
.news-updates-section,
.partners-clients-section,
.contact-banner-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* GPU acceleration for animated elements */
.hero-slide,
.main-service-card,
.floating-card-korean,
.portfolio-item,
.news-card {
    will-change: transform, opacity;
}

/* Lazy-loaded images fade-in */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img.loaded {
    opacity: 1;
}

/* Reduce layout shift for images */
img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* KOREAN PREMIUM NAVBAR - TOP UTILITY BAR */
.top-utility-bar {
    background: #F7F7F7;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-bottom: 1px solid #EEEEEE;
}

.utility-bar-left {
    font-size: 0.85rem;
    color: #7C7C7C;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.utility-bar-right {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #7C7C7C;
}

.utility-bar-right a {
    color: #7C7C7C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.utility-bar-right a:hover {
    color: #3A68B8;
}

/* MAIN HEADER - KOREAN PREMIUM */
.main-header {
    background: #FFFFFF;
    width: 100%;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #EEEEEE;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

/* LEFT NAVIGATION */
.header-nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-right: 0; /* Remove margin */
}

/* RIGHT NAVIGATION */
.header-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto; /* Push to the right */
}

/* NAVIGATION LINKS - KOREAN STYLE */
.header-nav-left .nav-link,
.header-nav-right .nav-link {
    color: #222222;
    font-weight: 300;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.header-nav-left .nav-link:hover,
.header-nav-right .nav-link:hover {
    color: #3A68B8;
}

.header-nav-left .nav-link.active,
.header-nav-right .nav-link.active {
    color: #3A68B8;
}

.header-nav-left .nav-link.active::after,
.header-nav-right .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3A68B8;
}

/* CTA BUTTON - KOREAN STYLE */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #3A68B8;
    border-radius: 999px;
    color: #3A68B8;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta-btn:hover {
    background: #3A68B8;
    color: #FFFFFF;
}

/* MOBILE MENU TOGGLE */
.header-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    justify-content: center;
    position: absolute;
    right: 40px;
}

.header-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: #222222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header-menu.active span:nth-child(2) {
    opacity: 0;
}

.header-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* DROPDOWN STYLES */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #EEEEEE;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu li a {
    color: #222222;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: #F7F7F7;
    color: #3A68B8;
}

/* RESPONSIVE - MOBILE */
/* ============================
   NEW MOBILE MENU STYLE
   ============================ */
@media (max-width: 1024px) {

    /* Header sizing */
    .header-container {
        height: 70px;
        padding: 0 16px;
    }

    /* Show hamburger */
    .header-menu {
        display: flex;
        position: absolute;
        right: 16px;
    }

    /* Base style for both navs on mobile */
    .header-nav-left,
    .header-nav-right {
        position: fixed;
        top: 70px;          /* just below header */
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px 32px;
        gap: 14px;
        margin: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow-y: auto;
        z-index: 999;
    }

    /* When menu icon is active, JS adds .active to both navs */
    .header-nav-left.active,
    .header-nav-right.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Put right-nav items under left-nav items with a soft divider */
    .header-nav-right {
        border-top: 1px solid #eeeeee;
        margin-top: 8px;
        padding-top: 18px;
    }

    /* Make links full-width and easier to tap */
    .header-nav-left .nav-link,
    .header-nav-right .nav-link {
        width: 100%;
        padding: 8px 0;
        font-size: 0.98rem;
    }

    /* CTA button full-width on mobile */
    .header-cta-btn {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    /* Dropdown inside mobile menu – simple stacked */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
        margin-top: 6px;
        border: none;
    }

    .nav-dropdown .dropdown-menu li a {
        padding: 6px 0;
    }
}

/* Extra-small phones – just tighten a bit */
@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }
    /* Center about-company-image and add padding on mobile */
    .about-company-image {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    .about-company-image img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    /* Stack hero buttons vertically and make them full width on mobile */
    .hero-content .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    .hero-content .hero-buttons button,
    .hero-content .hero-buttons a {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        display: block;
    }
    /* Hide hero video and show poster image as background on mobile */
    .hero-video-bg {
        display: none !important;
    }
    .hero-slide {
        background-size: cover;
        background-position: center;
    }
}
/* ============================
   HERO SECTION STYLES
   ============================ */

/* Hero */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: white;
    text-align: center;
    min-height: 520px;
    padding: 0;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(6, 31, 54, 0.75), rgba(6, 123, 158, 0.45));
    z-index: 1;
    pointer-events: none;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	transition: transform 0.6s ease, opacity 0.6s ease;
}

/* New Hero Styles */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: clamp(28px, 4vw, 48px);
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    text-align: center;
}
.hero-animated-text {
    position: relative;
    width: 100%;
    max-width: 900px;
}
.hero-animated-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 500; /* Medium weight for Korean style */
    line-height: 1.3;
    color: #FFFFFF; /* Pure white */
    margin: 0 0 2rem 0; /* Increased spacing */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px; /* Wide spacing */
    opacity: 0;
    transform: translateY(15px);
    animation: none;
}
.hero-slide.active .hero-animated-text h1 {
    animation: fadeInRise 0.8s ease-out 0.3s forwards;
}

/* Accent Line (Samsung-style) */
.hero-slide .hero-animated-text h1::after {
    content: '';
    position: absolute;
    bottom: -16px; /* Increased spacing */
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #3A68B8, #5A88D8); /* Korean blue gradient */
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(58, 104, 184, 0.4);
}

.hero-slide.active .hero-animated-text h1::after {
    animation: lineExpand 0.6s ease-out 0.8s forwards;
}
.hero-slide .hero-animated-text p {
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    color: #FFFFFF; /* Pure white */
    line-height: 1.8;
    max-width: 760px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
    font-weight: 300; /* Light weight */
    letter-spacing: 0.8px; /* Wide spacing */
    opacity: 0;
    transform: translateY(15px);
    animation: none;
}
.hero-slide.active .hero-animated-text p {
    animation: fadeInRise 0.8s ease-out 0.5s forwards;
}
.hero-slide .hero-buttons {
    display: flex;
    gap: 1.5rem; /* Wider spacing */
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 1rem; /* Extra spacing */
    opacity: 0;
    transform: scale(0.95);
    animation: none;
}
.hero-slide.active .hero-buttons {
    animation: fadeInScale 0.8s ease-out 0.7s forwards;
}

/* Hero Buttons - Korean Style */
.hero-slide .hero-content button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 16px 48px; /* Wider padding */
    border-radius: 999px;
    font-weight: 500; /* Medium weight */
    font-size: 1.05rem;
    letter-spacing: 1.2px; /* Wide spacing */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.hero-slide .hero-content button:hover {
    transform: translateY(-3px);
}

/* Primary Button - Korean Blue */
.hero-slide .Explore-Services {
    background: #3A68B8; /* Korean blue */
    color: #FFFFFF;
    border: 2px solid #3A68B8;
    box-shadow: 0 8px 24px rgba(58, 104, 184, 0.35);
}

.hero-slide .Explore-Services:hover {
    background: #2E5499; /* Darker Korean blue */
    border-color: #2E5499;
    box-shadow: 0 12px 32px rgba(58, 104, 184, 0.45);
}

/* Secondary Button - Transparent with White Border */
.hero-slide .Contact-Us {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-slide .Contact-Us:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* SEO INTRODUCTION SECTION */
.seo-intro {
    width: 100%;
    background: #ffffff;
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f0;
}

.seo-intro-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.seo-intro-title {
    font-size: clamp(1.4rem, 1.2rem + 1vw, 1.8rem);
    font-weight: 400;
    color: #14396a;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.seo-intro-text {
    font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.3px;
}

/* ABOUT COMPANY — INTRO SECTION (Modern Construction Hero) */
.about-company-intro {
    width: 100%;
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-company-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side: Content */
.about-company-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
}

.about-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #067b9e;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
    background: rgba(6, 123, 158, 0.1);
    border-radius: 30px;
    width: fit-content;
}

.about-company-title {
    font-size: clamp(2rem, 1.8rem + 2vw, 3rem);
    font-weight: 700;
    color: #14396a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

.about-company-text {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
    font-weight: 400;
    color: #5a6a7a;
    line-height: 1.8;
    margin: 0;
}

.about-company-text strong {
    color: #14396a;
    font-weight: 600;
}

/* Pill Points */
.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #14396a;
    box-shadow: 0 2px 8px rgba(20, 57, 106, 0.06);
    transition: all 0.3s ease;
}

.about-pill:hover {
    background: #14396a;
    color: #ffffff;
    border-color: #14396a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 57, 106, 0.2);
}

.about-pill i {
    color: #067b9e;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.about-pill:hover i {
    color: #ffffff;
}

/* Right Side: Clean Illustration Image */
.about-company-image {
    position: relative;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    padding: 0;
}

.about-company-image img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    display: block;
    background: transparent;
}

/* CEO SECTION */
.ceo-section {
    padding: 70px 0;
    background: #0F2854;
    overflow-x: hidden;
    color: #fff;
}

.ceo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.ceo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 320px;
}

.ceo-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.12);
    padding: 7px 18px;
    border-radius: 20px;
    width: fit-content;
}

.ceo-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ceo-text {
    font-size: 1.08rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
}

.ceo-text:last-of-type {
    margin-bottom: 0;
}

.ceo-figure {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ceo-figure img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border: 4px solid #fff;
}

.ceo-figure figcaption {
    margin-top: 10px;
    text-align: center;
    color: #fff;
}

.ceo-figure figcaption strong {
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
}

.ceo-figure figcaption span {
    display: block;
    font-size: 0.98rem;
    color: #e0eaf6;
    margin-top: 2px;
}
@media (max-width: 900px) {
    .ceo-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .ceo-content {
        align-items: center;
    }
    .ceo-figure {
        align-items: center;
    }
}

/* CEO Section - Small Mobile (320px-430px) */
@media (max-width: 430px) {
    .ceo-section {
        padding: 36px 0;
    }
    
    .ceo-container {
        padding: 0 14px;
        gap: 14px;
    }
    
    .ceo-label {
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }
    
    .ceo-heading {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .ceo-text {
        font-size: 0.7rem;
        line-height: 1.55;
        margin-bottom: 8px;
    }
    
    .ceo-figure img {
        max-width: 72px;
        border-radius: 6px;
    }
    
    .ceo-figure figcaption {
        margin-top: 6px;
    }
    
    .ceo-figure figcaption strong {
        font-size: 0.65rem;
    }
    
    .ceo-figure figcaption span {
        font-size: 0.55rem;
    }
}

@media (max-width: 360px) {
    .ceo-container {
        padding: 0 12px;
        gap: 12px;
    }
    
    .ceo-heading {
        font-size: 0.875rem;
    }
    
    .ceo-text {
        font-size: 0.65rem;
        line-height: 1.5;
    }
    
    .ceo-figure img {
        max-width: 64px;
    }
}

/* CHAIRMAN'S MESSAGE SECTION */
.chairmans-message-section {
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #fafbfc 100%);
    padding: 100px 0;
    position: relative;
}

.chairmans-message-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.chairmans-message-main-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
    font-weight: 300;
    color: #14396a;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 4px);
    text-align: center;
    margin-bottom: 70px;
    text-transform: uppercase;
    position: relative;
}

.chairmans-message-main-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #14396a, #067b9e);
}

.chairmans-message-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 80px rgba(20, 57, 106, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: grid;
    grid-template-columns: 420px 1fr;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chairmans-message-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 100px rgba(20, 57, 106, 0.12);
}

.chairman-photo {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.chairman-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58, 104, 184, 0.05) 0%, rgba(6, 123, 158, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.chairmans-message-card:hover .chairman-photo::before {
    opacity: 1;
}

.chairman-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.chairmans-message-card:hover .chairman-photo img {
    transform: scale(1.05);
}

.chairman-text-area {
    padding: 60px 60px 60px 70px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
}

.chairman-text-area::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(58, 104, 184, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.chairman-message-title {
    font-size: clamp(1.25rem, 1.1rem + 1vw, 2rem);
    font-weight: 300;
    color: #14396a;
    letter-spacing: clamp(0.5px, 0.3px + 0.3vw, 1.5px);
    margin: 0;
    position: relative;
    z-index: 1;
}

.chairman-message-text {
    font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.1rem);
    font-weight: 300;
    color: #555;
    line-height: 1.9;
    letter-spacing: 0.3px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.chairman-signature-area {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 2px solid rgba(58, 104, 184, 0.15);
    position: relative;
    z-index: 1;
}

.chairman-signature {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: #14396a;
    margin-bottom: 8px;
    font-style: italic;
    letter-spacing: 1px;
}

.chairman-position {
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.5px;
    margin: 0;
}

/* OUR MAIN SERVICES SECTION */
.our-main-services-section {
    width: 100%;
    background: #f7f9fb; /* Light background for contrast */
    padding: 80px 0 80px 0;
    position: relative;
}
.our-main-services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.our-main-services-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
    font-weight: 300;
    color: #14396a;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 4px);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.our-main-services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #14396a, #067b9e);
}

.our-main-services-subtitle {
    font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
    font-weight: 300;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 25px;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.our-main-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
}

.main-service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(15,40,84,0.06);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 420px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 36px 28px 28px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 57, 106, 0.08);
}

.main-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #14396a, #067b9e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.main-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(20, 57, 106, 0.12);
    background: #ffffff;
}

.main-service-card:hover::before {
    transform: scaleX(1);
}

.main-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e6ecf5;
    color: #0F2854;
    font-size: 2.2rem;
    margin: 0 auto 24px auto;
    box-shadow: 0 2px 8px 0 rgba(15,40,84,0.07);
}

.main-service-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.main-service-card:hover .main-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(20, 57, 106, 0.3);
}

.main-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F2854;
    margin-bottom: 12px;
    text-align: center;
}

.main-service-desc {
    font-size: 1rem;
    color: #4a5a6a;
    margin-bottom: 18px;
    text-align: center;
    flex: 1 1 auto;
}

.main-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.main-service-features li {
    font-size: 0.98rem;
    color: #0F2854;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.main-service-features li::before {
    content: '\2022';
    color: #0F2854;
    position: absolute;
    left: 0;
    font-size: 1.1em;
    top: 0;
}

.main-service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F2854;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    margin-top: auto;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 4px 0 rgba(15,40,84,0.08);
    width: 100%;
    gap: 8px;
}

.main-service-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.main-service-btn:hover {
    background: #1a3a7c;
    color: #fff;
}
/* Responsive: 2 columns on tablets, 1 on mobile */
@media (max-width: 1200px) {
    .our-main-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .our-main-services-grid {
        grid-template-columns: 1fr;
    }
    .main-service-card {
        min-height: 0;
        padding: 28px 14px 20px 14px;
    }
}

.main-service-btn:hover i {
    transform: translateX(5px);
}

/* EVENTS & EXHIBITIONS SECTION */
.events-exhibitions-section {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    padding: 100px 0;
    position: relative;
}

.events-exhibitions-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.events-exhibitions-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
    font-weight: 300;
    color: #14396a;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 4px);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
}

.events-exhibitions-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #14396a, #067b9e);
}

.events-exhibitions-subtitle {
    font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.1rem);
    font-weight: 300;
    color: #999;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom:70px;
}

.featured-event-banner {
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(20, 57, 106, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-event-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(20, 57, 106, 0.18);
}

.featured-event-image {
    position: relative;
    width: 100%;
    height: clamp(320px, 35vw, 450px);
    overflow: hidden;
}

.featured-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-event-banner:hover .featured-event-image img {
    transform: scale(1.08);
}

.featured-event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 57, 106, 0.88) 0%, rgba(58, 104, 184, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.featured-event-content {
    text-align: center;
    max-width: 800px;
}

.event-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-event-title {
    font-size: clamp(1.5rem, 1.3rem + 1.5vw, 2.8rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: clamp(0.3px, 0.2px + 0.2vw, 1px);
    margin-bottom: 25px;
    line-height: 1.3;
}

.featured-event-desc {
    font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
}

.featured-event-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #14396a;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.featured-event-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.featured-event-btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateX(5px);
}

.featured-event-btn:hover i {
    transform: translateX(5px);
}

.events-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.event-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(20, 57, 106, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(20, 57, 106, 0.12);
}

.event-card-image {
    position: relative;
    width: 100%;
    height: clamp(200px, 25vw, 280px);
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 57, 106, 0.7) 0%, rgba(58, 104, 184, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover .event-card-overlay {
    opacity: 1;
}

.event-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: scale(0.8);
    transition: transform 0.4s ease 0.1s;
}

.event-card:hover .event-icon {
    transform: scale(1);
}

.event-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.event-card-content {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-card-title {
    font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem);
    font-weight: 400;
    color: #14396a;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
}

.event-card-desc {
    font-size: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    letter-spacing: 0.3px;
    margin: 0;
    flex: 1;
}

.event-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3A68B8;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.event-card-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.event-card-link:hover {
    color: #2E5499;
    gap: 12px;
}

.event-card-link:hover i {
    transform: translateX(4px);
}

/* WHY CHOOSE US */
.why-choose-floating-korean {
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-floating-korean::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 104, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-floating-korean::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 123, 158, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-floating-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.why-choose-floating-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
    font-weight: 300;
    color: #0F2854;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 4px);
    text-align: center;
    margin-bottom: 70px;
    text-transform: uppercase;
    position: relative;
}

.why-choose-floating-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #14396a, #067b9e);
}

.why-choose-floating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.floating-card-korean {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 50px rgba(20, 57, 106, 0.08);
}

.floating-card-korean::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(58, 104, 184, 0.1), rgba(6, 123, 158, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.floating-card-korean:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(20, 57, 106, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.floating-card-korean:hover::before {
    opacity: 1;
}

.floating-card-korean:nth-child(1) {
    background: linear-gradient(135deg, rgba(218, 230, 248, 0.6), rgba(255, 255, 255, 0.8));
}

.floating-card-korean:nth-child(2) {
    background: linear-gradient(135deg, rgba(230, 248, 240, 0.6), rgba(255, 255, 255, 0.8));
}

.floating-card-korean:nth-child(3) {
    background: linear-gradient(135deg, rgba(248, 235, 230, 0.6), rgba(255, 255, 255, 0.8));
}

.floating-card-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(58, 104, 184, 0.1), rgba(6, 123, 158, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 8px 24px rgba(20, 57, 106, 0.08);
}

.floating-card-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, #3A68B8, #067b9e);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.floating-card-icon i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #14396a, #067b9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.floating-card-korean:hover .floating-card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(20, 57, 106, 0.15);
}

.floating-card-korean:hover .floating-card-icon::after {
    opacity: 0.1;
}

.floating-card-heading {
    font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem);
    font-weight: 400;
    color: #14396a;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.floating-card-text {
    font-size: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* CERTIFICATIONS & LICENSES SECTION */
.certifications-licenses-section {
    width: 100%;
    background: linear-gradient(135deg, #0F2854 0%, #0F2854 100%);
    padding: 100px 0;
    position: relative;
}

.certifications-licenses-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.certifications-licenses-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 4px);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
}

.certifications-licenses-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #14396a, #067b9e);
}

.certifications-licenses-subtitle {
    font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.1rem);
    font-weight: 300;
    color: #999;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 70px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(20, 57, 106, 0.08);
    box-shadow: 0 10px 35px rgba(20, 57, 106, 0.06);
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #14396a, #067b9e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(20, 57, 106, 0.12);
    background: #ffffff;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(20, 57, 106, 0.08), rgba(6, 123, 158, 0.08));
    transition: all 0.4s ease;
    border: 1px solid rgba(20, 57, 106, 0.1);
}

.certification-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #14396a, #067b9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.certification-card:hover .certification-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(20, 57, 106, 0.15), rgba(6, 123, 158, 0.15));
    box-shadow: 0 8px 20px rgba(20, 57, 106, 0.15);
}

.certification-title {
    font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
    font-weight: 400;
    color: #14396a;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.certification-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    letter-spacing: 0.3px;
    margin-bottom: 25px;
}

.certification-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(20, 57, 106, 0.08), rgba(6, 123, 158, 0.08));
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #14396a;
    letter-spacing: 0.5px;
    border: 1px solid rgba(20, 57, 106, 0.15);
    transition: all 0.3s ease;
}

.certification-card:hover .certification-badge {
    background: linear-gradient(135deg, #14396a, #067b9e);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05);
}

/* PROJECTS / PORTFOLIO PREVIEW */
.projects-portfolio-preview {
    width: 100%;
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.projects-portfolio-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-portfolio-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
    font-weight: 300;
    color: #14396a;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 4px);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
}

.projects-portfolio-subtitle {
    font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.1rem);
    font-weight: 300;
    color: #999;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 70px;
}

.projects-portfolio-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #14396a, #067b9e);
}

.projects-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(20, 57, 106, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(20, 57, 106, 0.2);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: clamp(280px, 30vw, 400px);
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 57, 106, 0.85) 0%, rgba(58, 104, 184, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-category {
    font-size: clamp(1.25rem, 1.1rem + 1vw, 1.8rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: clamp(0.3px, 0.2px + 0.2vw, 1px);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.portfolio-description {
    font-size: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.portfolio-link:hover {
    gap: 12px;
    border-bottom-color: #ffffff;
}

.projects-view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.projects-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #14396a;
    border-radius: 30px;
    color: #14396a;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.projects-view-all-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.projects-view-all-btn:hover {
    background: #14396a;
    color: #ffffff;
    border-color: #14396a;
    transform: translateX(5px);
}

.projects-view-all-btn:hover i {
    transform: translateX(5px);
}

/* NEWS & UPDATES SECTION */
.news-updates-section {
    width: 100%;
    background: linear-gradient(135deg, #faf9f8 0%, #f5f3f0 100%);
    padding: 100px 0;
    position: relative;
}

.news-updates-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-updates-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
    font-weight: 300;
    color: #14396a;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 4px);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
}

.news-updates-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #14396a, #067b9e);
}

.news-updates-subtitle {
    font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.1rem);
    font-weight: 300;
    color: #999;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 70px;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.news-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(20, 57, 106, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(20, 57, 106, 0.12);
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #14396a;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-card-title {
    font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
    font-weight: 400;
    color: #14396a;
    line-height: 1.5;
    letter-spacing: 0.3px;
    margin: 0;
    min-height: 60px;
}

.news-card-desc {
    font-size: clamp(0.875rem, 0.85rem + 0.25vw, 0.95rem);
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    letter-spacing: 0.3px;
    margin: 0;
    flex: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3A68B8;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.news-card-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.news-card-link:hover {
    color: #2E5499;
    gap: 12px;
}

.news-card-link:hover i {
    transform: translateX(4px);
}

.news-view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.news-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #14396a;
    border-radius: 30px;
    color: #14396a;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.news-view-all-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.news-view-all-btn:hover {
    background: #14396a;
    color: #ffffff;
    border-color: #14396a;
    transform: translateX(5px);
}

.news-view-all-btn:hover i {
    transform: translateX(5px);
}

/* PARTNERS & CLIENTS LOGO WALL */
.partners-clients-section {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partners-clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.partners-clients-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
    font-weight: 300;
    color: #14396a;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 4px);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
}

.partners-clients-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #14396a, #067b9e);
}

.partners-clients-subtitle {
    font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.1rem);
    font-weight: 300;
    color: #999;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 70px;
}

.partners-logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.partners-logos-wrapper::before,
.partners-logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-logos-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.partners-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(20, 57, 106, 0.08);
    box-shadow: 0 4px 15px rgba(20, 57, 106, 0.04);
}

.partner-logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(20, 57, 106, 0.12);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(20, 57, 106, 0.15);
}

.partner-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8) contrast(1.2);
    transition: all 0.4s ease;
    opacity: 0.7;
}

.partner-logo-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
}

/* CONTACT BANNER (Call to Action) */
.contact-banner-section {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-banner-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-banner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.contact-banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-banner-title {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    font-weight: 300;
    color: #0F2854;
    letter-spacing: clamp(1px, 0.5px + 0.5vw, 2px);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
}

.contact-banner-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.contact-banner-subtitle {
    font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
    font-weight: 300;
    color: #0F2854;
    letter-spacing: 0.5px;
    margin: 20px 0 0 0;
    max-width: 700px;
    line-height: 1.6;
}

.contact-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #14396a;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-banner-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-banner-btn:hover {
    background: transparent;
    color: #0F2854;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.contact-banner-btn:hover i {
    transform: translateX(5px);
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #0b1d35 0%, #14396a 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(0);
}

.site-footer::before {
    top: -40%;
    left: -20%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.site-footer::after {
    bottom: -45%;
    right: -15%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.site-footer .footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    color: #ffffff;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-company-main {
    font-size: clamp(0.875rem, 0.85rem + 0.25vw, 0.95rem);
    font-weight: 600;
    letter-spacing: clamp(0.8px, 0.5px + 0.2vw, 1px);
}

.footer-company-sub {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-description {
    font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.9rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column h4 {
    font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    font-weight: 500;
    letter-spacing: clamp(0.8px, 0.5px + 0.2vw, 1.2px);
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    letter-spacing: 0.6px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.9rem);
    letter-spacing: 0.5px;
}

.footer-meta span::before {
    content: '•';
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-meta span:first-child::before {
    content: none;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #14396a;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.footer-note {
    margin-top: 40px;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Hero Slider */
.hero.hero-slider {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: white;
    text-align: center;
    min-height: 520px;
    padding: 0;
    overflow: hidden;
}

/* Individual Hero Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Hero Video Background */
.hero-slide .hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 31, 54, 0.75) 0%, rgba(6, 123, 158, 0.5) 50%, rgba(20, 57, 106, 0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255,  255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    width: 40px;
    border-radius: 6px;
}

/* Hero Container & Content */
.hero-slide .hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero-slide .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 60px 0;
    background: transparent;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-slide .hero-animated-text {
    position: relative;
    width: 100%;
}

.hero-slide .hero-animated-text h1 {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    animation: none;
    text-align: center;
}

.hero-slide.active .hero-animated-text h1 {
    animation: fadeInRise 0.5s ease-out 0.1s forwards;
}

/* Accent Line - Center aligned */
.hero-slide .hero-animated-text h1::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #3A68B8, #5A88D8);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(58, 104, 184, 0.4);
}

.hero-slide.active .hero-animated-text h1::after {
    animation: lineExpandCenter 0.4s ease-out 0.4s forwards;
}

@keyframes lineExpandCenter {
    from {
        transform: translateX(-50%) scaleX(0);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) scaleX(1);
        opacity: 1;
    }
}

.hero-slide .hero-animated-text p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #FFFFFF;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    animation: none;
    text-align: center;
}

.hero-slide.active .hero-animated-text p {
    animation: fadeInRise 0.5s ease-out 0.25s forwards;
}

.hero-slide .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    opacity: 0;
    transform: scale(0.95);
    animation: none;
}
.hero-slide.active .hero-buttons {
    animation: fadeInScale 0.5s ease-out 0.4s forwards;
}

/* ============================
   RESPONSIVE MEDIA QUERIES
   ============================ */

/* Tablet & Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero-slide .hero-container {
        padding: 0 40px;
    }
    
    .hero-slide .hero-animated-text h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
    
    .hero-slide .hero-animated-text p {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
    }
    
    /* About Company */
    .about-company-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-company-content {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .about-company-image {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-pills {
        justify-content: center;
    }
    
    /* Chairman's Message */
    .chairmans-message-card {
        grid-template-columns: 1fr;
    }
    
    .chairman-photo {
        min-height: 350px;
    }
    
    .chairman-text-area {
        padding: 40px 30px;
    }
    
    /* Services Grid */
    .our-main-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Events Grid */
    .events-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Why Choose Us */
    .why-choose-floating-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Certifications */
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Projects Portfolio */
    .projects-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* News Grid */
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Footer */
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* ========================================
       MOBILE LAYOUT - CARD STYLE & OPTIMIZED
       ======================================== */
    
    /* Prevent horizontal overflow on mobile */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
    
    /* SEO: Disable ALL background videos on mobile for better LCP & performance */
    .hero-video-bg {
        display: none !important;
    }
    
    /* SEO: Use optimized static background for hero slides on mobile */
    .hero-slide {
        background-color: #1a1a2e;
        background-image: url('images/about-company.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    /* SEO: Enhance hero overlay for better text contrast & readability */
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.75) 100%
        );
    }
    
    /* SEO: Reduce animation complexity for better CLS scores */
    .hero-slide .hero-animated-text h1,
    .hero-slide .hero-animated-text p,
    .hero-slide .hero-buttons {
        animation-duration: 0.4s;
    }
    
    /* SEO: Contain layout to prevent CLS */
    .hero-slide .hero-content {
        contain: layout style;
    }
    
    /* ========================================
       GLOBAL MOBILE STYLES - REDUCED SIZES
       ======================================== */
    
    /* Global Section Padding - Compact */
    section {
        padding: 35px 0;
    }
    
    /* Global Container Padding */
    .container,
    .about-company-container,
    .chairmans-message-container,
    .our-main-services-container,
    .events-exhibitions-container,
    .why-choose-floating-container,
    .certifications-licenses-container,
    .projects-portfolio-container,
    .news-updates-container,
    .partners-clients-container,
    .contact-banner-container,
    .site-footer .footer-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /* Body text - slightly smaller */
    body {
        font-size: 15px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    p {
        margin-bottom: 0.75rem;
    }
    
    h2, h3 {
        line-height: 1.25;
    }
    
    /* Touch targets */
    a, button {
        min-height: 44px;
    }
    
    /* ========================================
       HERO SECTION - MOBILE COMPACT
       ======================================== */
    
    .hero.hero-slider {
        height: 65vh;
        min-height: 420px;
    }
    
    .hero-slide .hero-container {
        padding: 0 16px;
        min-height: 65vh;
    }
    
    .hero-slide .hero-content {
        gap: 1.25rem;
        padding: 30px 0;
    }
    
    .hero-slide .hero-animated-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.2px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        line-height: 1.25;
        font-weight: 600;
    }
    
    .hero-slide .hero-animated-text h1::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    .hero-slide .hero-animated-text p {
        font-size: 0.9rem;
        letter-spacing: 0.2px;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
        line-height: 1.5;
        font-weight: 400;
    }
    
    .hero-slide .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        padding: 0;
        margin: 0 auto;
    }
    
    .hero-slide .hero-content button {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        min-height: 44px;
        border-radius: 6px;
    }
    
    .hero-slider-controls {
        bottom: 15px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-dot.active {
        width: 24px;
    }
    
    /* ========================================
       SECTION TITLES - COMPACT
       ======================================== */
    
    .about-company-title,
    .chairmans-message-main-title,
    .our-main-services-title,
    .events-exhibitions-title,
    .why-choose-floating-title,
    .certifications-licenses-title,
    .projects-portfolio-title,
    .news-updates-title,
    .partners-clients-title {
        font-size: 1.35rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .about-company-title::after,
    .chairmans-message-main-title::after,
    .our-main-services-title::after,
    .events-exhibitions-title::after,
    .why-choose-floating-title::after,
    .certifications-licenses-title::after,
    .projects-portfolio-title::after,
    .news-updates-title::after,
    .partners-clients-title::after {
        width: 40px;
        height: 3px;
        bottom: -10px;
    }
    
    .events-exhibitions-subtitle,
    .certifications-licenses-subtitle,
    .projects-portfolio-subtitle,
    .news-updates-subtitle,
    .partners-clients-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    /* ========================================
       ABOUT COMPANY - CARD STYLE
       ======================================== */
    
    .about-company-intro {
        padding: 30px 0;
    }
    
    .about-company-container {
        grid-template-columns: 1fr;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding: 24px !important;
        margin: 0 16px;
        gap: 24px;
    }
    
    .about-company-content {
        order: 1;
        gap: 16px;
        text-align: center;
        align-items: center;
    }
    
    .about-label {
        font-size: 0.75rem;
        padding: 6px 14px;
        letter-spacing: 2px;
    }
    
    .about-company-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }
    
    .about-company-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .about-pills {
        justify-content: center;
        gap: 10px;
        margin-top: 8px;
    }
    
    .about-pill {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .about-pill i {
        font-size: 0.75rem;
    }
    
    .about-company-image {
        order: 2;
        border-radius: 12px;
    }
    
    .about-company-image img {
        height: 220px;
        border-radius: 12px;
    }
    
    /* ========================================
       CHAIRMAN MESSAGE - CARD STYLE
       ======================================== */
    
    .chairmans-message-section {
        padding: 30px 0;
    }
    
    .chairmans-message-container {
        margin: 0 16px;
    }
    
    .chairmans-message-card {
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }
    
    .chairman-photo {
        min-height: 200px;
        max-height: 220px;
    }
    
    .chairman-photo img {
        object-position: top center;
    }
    
    .chairman-text-area {
        padding: 20px 16px;
        gap: 12px;
    }
    
    .chairman-text-area::before {
        font-size: 50px;
        top: 10px;
        left: 8px;
        opacity: 0.08;
    }
    
    .chairman-message-title {
        font-size: 1.1rem;
    }
    
    .chairman-message-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .chairman-signature {
        font-size: 1.4rem;
    }
    
    .chairman-position {
        font-size: 0.8rem;
    }
    
    /* ========================================
       SERVICES - 2-COLUMN CARD GRID
       ======================================== */
    
    .our-main-services-section {
        padding: 30px 0;
    }
    
    .our-main-services-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
        margin-top: 15px;
        padding: 0 10px;
    }
    
    .our-main-services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .main-service-card {
        padding: 16px 12px;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
    }
    
    .main-service-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px;
    }
    
    .main-service-icon i {
        font-size: 1.3rem;
    }
    
    .main-service-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .main-service-desc {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .main-service-features {
        display: none;
    }
    
    .main-service-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-height: 38px;
        width: 100%;
        justify-content: center;
    }
    
    .main-service-btn span {
        display: none;
    }
    
    .main-service-btn::before {
        content: 'View';
    }
    
    /* ========================================
       EVENTS - COMPACT CARD LAYOUT
       ======================================== */
    
    .events-exhibitions-section {
        padding: 30px 0;
    }
    
    .featured-event-banner {
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }
    
    .featured-event-image {
        height: 200px;
    }
    
    .featured-event-overlay {
        padding: 16px;
    }
    
    .event-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    
    .featured-event-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .featured-event-desc {
        font-size: 0.8rem;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .featured-event-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    /* Events 2-column grid */
    .events-cards-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .event-card {
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }
    
    .event-card-image {
        height: 100px;
    }
    
    .event-card-overlay {
        display: none;
    }
    
    .event-card-content {
        padding: 12px 10px;
        gap: 6px;
    }
    
    .event-card-title {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .event-card-desc {
        font-size: 0.75rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .event-card-link {
        padding: 8px 0;
        min-height: 36px;
        font-size: 0.8rem;
    }
    
    /* ========================================
       WHY CHOOSE US - HORIZONTAL COMPACT
       ======================================== */
    
    .why-choose-floating-korean {
        padding: 30px 0;
    }
    
    .why-choose-floating-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .floating-card-korean {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        gap: 14px;
        text-align: left;
    }
    
    .floating-card-korean:nth-child(1),
    .floating-card-korean:nth-child(2),
    .floating-card-korean:nth-child(3) {
        animation-delay: 0s;
    }
    
    .floating-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin: 0;
    }
    
    .floating-card-icon i {
        font-size: 1.4rem;
    }
    
    .floating-card-heading {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .floating-card-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* ========================================
       CERTIFICATIONS - 2x2 GRID
       ======================================== */
    
    .certifications-licenses-section {
        padding: 30px 0;
    }
    
    .certifications-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .certification-card {
        padding: 16px 12px;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
        text-align: center;
    }
    
    .certification-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px;
    }
    
    .certification-icon i {
        font-size: 1.3rem;
    }
    
    .certification-title {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .certification-desc {
        font-size: 0.7rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .certification-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-top: 8px;
    }
    
    /* ========================================
       PORTFOLIO - HORIZONTAL SCROLL
       ======================================== */
    
    .projects-portfolio-preview {
        padding: 30px 0;
    }
    
    .projects-portfolio-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px !important;
        padding-bottom: 10px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .projects-portfolio-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .projects-portfolio-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .projects-portfolio-grid::-webkit-scrollbar-thumb {
        background: #3A68B8;
        border-radius: 2px;
    }
    
    .portfolio-item {
        min-width: 260px;
        flex-shrink: 0;
        scroll-snap-align: start;
        border-radius: 12px;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-overlay {
        padding: 14px;
    }
    
    .portfolio-category {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .portfolio-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .portfolio-link {
        font-size: 0.85rem;
        padding: 10px 18px;
        min-height: 38px;
    }
    
    .projects-view-all-wrapper {
        margin-top: 15px;
    }
    
    .projects-view-all-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        min-height: 44px;
        width: auto;
        max-width: none;
    }
    
    /* ========================================
       NEWS - HORIZONTAL SCROLL CARDS
       ======================================== */
    
    .news-updates-section {
        padding: 30px 0;
    }
    
    .news-cards-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px !important;
        padding-bottom: 10px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .news-cards-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .news-cards-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .news-cards-grid::-webkit-scrollbar-thumb {
        background: #3A68B8;
        border-radius: 2px;
    }
    
    .news-card {
        min-width: 240px;
        flex-shrink: 0;
        scroll-snap-align: start;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }
    
    .news-card-image {
        height: 130px;
    }
    
    .news-date-badge {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .news-card-content {
        padding: 14px 12px;
        gap: 8px;
    }
    
    .news-card-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .news-card-desc {
        font-size: 0.75rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .news-card-link {
        font-size: 0.8rem;
        margin-top: 4px;
    }
    
    .news-view-all-wrapper {
        margin-top: 15px;
    }
    
    .news-view-all-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        min-height: 44px;
        width: auto;
        max-width: none;
    }
    
    /* ========================================
       PARTNERS - COMPACT
       ======================================== */
    
    .partners-clients-section {
        padding: 30px 0;
    }
    
    .partners-logos-wrapper {
        padding: 15px 0;
    }
    
    .partners-logos-wrapper::before,
    .partners-logos-wrapper::after {
        width: 30px;
    }
    
    .partners-logos-track {
        gap: 20px;
    }
    
    .partner-logo-item {
        width: 80px;
        height: 50px;
        padding: 8px;
        border-radius: 8px;
    }
    
    /* ========================================
       CONTACT BANNER - COMPACT CARD
       ======================================== */
    
    .contact-banner-section {
        padding: 30px 0;
    }
    
    .contact-banner-container {
        background: linear-gradient(135deg, #1E3A5F 0%, #2D5A87 100%);
        border-radius: 16px;
        padding: 30px 20px !important;
        margin: 0 16px;
    }
    
    .contact-banner-content {
        gap: 12px;
    }
    
    .contact-banner-title {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .contact-banner-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
    
    .contact-banner-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .contact-banner-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        margin-top: 8px;
        min-height: 44px;
        width: auto;
        max-width: none;
    }
    
    /* ========================================
       FOOTER - COMPACT 2-COLUMN GRID
       ======================================== */
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-columns {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 16px !important;
        margin-bottom: 25px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .footer-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .footer-company-main {
        font-size: 0.95rem;
    }
    
    .footer-company-sub {
        font-size: 0.7rem;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .footer-column a {
        font-size: 0.8rem;
        padding: 5px 0;
        min-height: 32px;
        display: block;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 20px;
        text-align: center;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 0.75rem;
    }
    
    .footer-meta span::before {
        display: none;
    }
    
    .footer-socials {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-socials a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        min-height: 36px;
    }
    
    .footer-note {
        margin-top: 15px;
        font-size: 0.75rem;
    }
    
    /* ========================================
       SEO & ACCESSIBILITY
       ======================================== */
    
    img {
        height: auto;
        max-width: 100%;
    }
    
    @media (prefers-reduced-motion: reduce) {
        .hero-slide .hero-animated-text h1,
        .hero-slide .hero-animated-text p,
        .hero-slide .hero-buttons,
        .partners-logos-track {
            animation: none !important;
            transition: none !important;
        }
    }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Even more compact section padding */
    section {
        padding: 28px 0;
    }
    
    /* Hero adjustments - more compact */
    .hero.hero-slider {
        height: 55vh;
        min-height: 380px;
    }
    
    .hero-slide .hero-container {
        padding: 0 12px;
        min-height: 55vh;
    }
    
    .hero-slide .hero-content {
        gap: 1rem;
        padding: 20px 0;
    }
    
    .hero-slide .hero-animated-text h1 {
        font-size: 1.25rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-slide .hero-animated-text h1::after {
        width: 50px;
        height: 2px;
        bottom: -6px;
    }
    
    .hero-slide .hero-animated-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .hero-slide .hero-buttons {
        gap: 8px;
        max-width: 240px;
    }
    
    .hero-slide .hero-content button {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .hero-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-dot.active {
        width: 20px;
    }
    
    /* Section titles - smaller */
    .about-company-title,
    .chairmans-message-main-title,
    .our-main-services-title,
    .events-exhibitions-title,
    .why-choose-floating-title,
    .certifications-licenses-title,
    .projects-portfolio-title,
    .news-updates-title,
    .partners-clients-title {
        font-size: 1.15rem;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }
    
    .about-company-title::after,
    .chairmans-message-main-title::after,
    .our-main-services-title::after,
    .events-exhibitions-title::after,
    .why-choose-floating-title::after,
    .certifications-licenses-title::after,
    .projects-portfolio-title::after,
    .news-updates-title::after,
    .partners-clients-title::after {
        width: 35px;
        height: 2px;
        bottom: -8px;
    }
    
    /* Subtitles */
    .events-exhibitions-subtitle,
    .certifications-licenses-subtitle,
    .projects-portfolio-subtitle,
    .news-updates-subtitle,
    .partners-clients-subtitle {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }
    
    /* About section - compact card */
    .about-company-intro {
        padding: 25px 0;
    }
    
    .about-company-container {
        padding: 16px !important;
        margin: 0 12px;
        border-radius: 14px;
    }
    
    .about-company-image img {
        height: 150px;
    }
    
    .about-company-title {
        font-size: 1.1rem;
    }
    
    .about-company-text {
        font-size: 0.8rem;
    }
    
    .about-company-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    /* Chairman - compact */
    .chairmans-message-container {
        margin: 0 12px;
    }
    
    .chairmans-message-card {
        border-radius: 14px;
    }
    
    .chairman-photo {
        min-height: 160px;
        max-height: 180px;
    }
    
    .chairman-text-area {
        padding: 16px 12px;
        gap: 10px;
    }
    
    .chairman-text-area::before {
        font-size: 40px;
    }
    
    .chairman-message-title {
        font-size: 0.95rem;
    }
    
    .chairman-message-text {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .chairman-signature {
        font-size: 1.2rem;
    }
    
    .chairman-position {
        font-size: 0.7rem;
    }
    
    /* Service cards - 1 column for very small screens */
    .our-main-services-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .main-service-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 14px;
        border-radius: 10px;
        text-align: left;
        gap: 12px;
    }
    
    .main-service-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin: 0;
    }
    
    .main-service-icon i {
        font-size: 1.1rem;
    }
    
    .main-service-content {
        flex: 1;
    }
    
    .main-service-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .main-service-desc {
        font-size: 0.7rem;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .main-service-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        min-height: 34px;
        width: auto;
    }
    
    /* Events - compact */
    .featured-event-banner {
        border-radius: 10px;
        margin-bottom: 12px;
    }
    
    .featured-event-image {
        height: 160px;
    }
    
    .featured-event-overlay {
        padding: 12px;
    }
    
    .event-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    
    .featured-event-title {
        font-size: 0.95rem;
    }
    
    .featured-event-desc {
        font-size: 0.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .featured-event-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-height: 36px;
    }
    
    .events-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .event-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-radius: 8px;
    }
    
    .event-card-image {
        height: auto;
        width: 100px;
        min-width: 100px;
        border-radius: 8px 0 0 8px;
    }
    
    .event-card-content {
        padding: 10px;
        gap: 4px;
    }
    
    .event-card-title {
        font-size: 0.8rem;
    }
    
    .event-card-desc {
        font-size: 0.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .event-card-link {
        font-size: 0.75rem;
        padding: 6px 0;
        min-height: 30px;
    }
    
    /* Why Choose - horizontal compact */
    .why-choose-floating-korean {
        padding: 25px 0;
    }
    
    .floating-card-korean {
        padding: 12px;
        border-radius: 10px;
        gap: 10px;
    }
    
    .floating-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .floating-card-icon i {
        font-size: 1.1rem;
    }
    
    .floating-card-heading {
        font-size: 0.85rem;
    }
    
    .floating-card-text {
        font-size: 0.7rem;
    }
    
    /* Certifications - 2 columns maintained */
    .certifications-grid {
        gap: 10px !important;
    }
    
    .certification-card {
        padding: 12px 10px;
        border-radius: 10px;
    }
    
    .certification-icon {
        width: 38px;
        height: 38px;
    }
    
    .certification-icon i {
        font-size: 1.1rem;
    }
    
    .certification-title {
        font-size: 0.75rem;
    }
    
    .certification-desc {
        font-size: 0.65rem;
    }
    
    .certification-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    
    /* Portfolio - horizontal scroll maintained */
    .portfolio-item {
        min-width: 220px;
    }
    
    .portfolio-image {
        height: 150px;
    }
    
    .portfolio-overlay {
        padding: 12px;
    }
    
    .portfolio-category {
        font-size: 0.8rem;
    }
    
    .portfolio-description {
        font-size: 0.7rem;
    }
    
    .portfolio-link {
        font-size: 0.8rem;
        padding: 8px 14px;
        min-height: 34px;
    }
    
    .projects-view-all-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    /* News - horizontal scroll maintained */
    .news-card {
        min-width: 200px;
    }
    
    .news-card-image {
        height: 110px;
    }
    
    .news-date-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    
    .news-card-content {
        padding: 12px 10px;
    }
    
    .news-card-title {
        font-size: 0.8rem;
    }
    
    .news-card-desc {
        font-size: 0.7rem;
    }
    
    .news-card-link {
        font-size: 0.75rem;
    }
    
    .news-view-all-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    /* Partners - smaller */
    .partner-logo-item {
        width: 65px;
        height: 42px;
        padding: 6px;
    }
    
    /* Contact banner - compact card */
    .contact-banner-container {
        padding: 24px 16px !important;
        margin: 0 12px;
        border-radius: 14px;
    }
    
    .contact-banner-title {
        font-size: 1.2rem;
    }
    
    .contact-banner-subtitle {
        font-size: 0.8rem;
    }
    
    .contact-banner-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    /* Footer - 1 column for very small */
    .footer-columns {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .footer-logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .footer-company-main {
        font-size: 0.85rem;
    }
    
    .footer-company-sub {
        font-size: 0.65rem;
    }
    
    .footer-description {
        font-size: 0.75rem;
    }
    
    .footer-column h4 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .footer-column a {
        font-size: 0.75rem;
        padding: 4px 0;
        min-height: 28px;
    }
    
    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        min-height: 32px;
    }
    
    .footer-meta {
        font-size: 0.7rem;
    }
    
    .footer-note {
        font-size: 0.7rem;
    }
}

/* ============================
   HERO ANIMATION KEYFRAMES
   ============================ */

@keyframes fadeInRise {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineExpand {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================
   HERO HEADLINE STYLES (For slides without H1)
   ============================ */

.hero-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #FFFFFF;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    opacity: 0;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    animation: fadeInRise 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

.hero-slide.active .hero-headline {
    opacity: 1;
}

.hero-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3A68B8, #5A88D8);
    border-radius: 2px;
    animation: lineExpandCenter 0.4s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-slide.active .hero-headline::after {
    transform: translateX(-50%) scaleX(1);
}

/* ============================
   MOBILE LAYOUT IMPROVEMENTS
   ============================ */

@media (max-width: 768px) {
    /* Hero headline mobile styles */
    .hero-headline {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: 1px;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    .hero-headline::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    /* Improved mobile service cards spacing */
    .main-service-card {
        padding: 28px 20px;
        margin-bottom: 8px;
    }
    
    .main-service-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .main-service-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    /* Better floating card mobile layout */
    .floating-card-korean {
        padding: 28px 20px;
        text-align: center;
    }
    
    .floating-card-heading {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .floating-card-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Certification cards mobile */
    .certification-card {
        padding: 24px 18px;
        text-align: center;
    }
    
    /* Better event cards on mobile */
    .event-card-content {
        padding: 20px 16px;
    }
    
    .event-card-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .event-card-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* News cards mobile improvements */
    .news-card-content {
        padding: 20px 16px;
    }
    
    .news-card-title {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .news-card-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Portfolio items mobile */
    .portfolio-item {
        border-radius: 12px;
    }
    
    .portfolio-category {
        font-size: 1.1rem;
    }
    
    .portfolio-description {
        font-size: 0.9rem;
    }
    
    /* Contact banner mobile */
    .contact-banner-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .contact-banner-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .contact-banner-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Footer mobile improvements */
    .footer-columns {
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        margin-bottom: 12px;
    }
    
    .footer-column a {
        padding: 8px 0;
        display: block;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-meta span::before {
        display: none;
    }
    
    .footer-socials {
        justify-content: center;
    }
}
