* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block;
}

body {
    overflow-x: hidden;
    width: 100%;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: -90px;
}

.header-logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-contact-header {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-contact-header:hover {
    background: #fff;
    color: #0b1c2d;
    border-color: #fff;
}

.menu-toggle {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    mix-blend-mode: difference;
    color: #fff;
    /* Smooth entrance animation */
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.55s;
}

.menu-toggle.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(80px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s;
}

.menu-toggle:hover {
    opacity: 0.7;
}

.menu-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

.menu-lines {
    display: flex;
    gap: 5px;
    height: 35px;
}

.menu-lines span {
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-next-preview {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.hero-next-preview:hover {
    transform: scale(1.05);
}

.hero-next-preview span {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-img {
    width: 120px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 100px;
}

.hero-tagline {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #fff;
    background: linear-gradient(90deg, #0E68A0, #1BA2E1, #439A3E, #F97C0A, #FBB30B);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    animation: fadeInUpUltra 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.hero-content h1 span {
    display: block;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    font-size: 1em;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 8px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 14px;
    background: #fff;
    color: #007bbd;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.primary {
    background: linear-gradient(212deg, #007bbd, #092938, #007bbd);
    background-size: 200% auto;
    animation: gradientMove 3s ease infinite;
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 123, 189, 0.2);
}

.outline {
    border: 2px solid #fff;
    color: #fff;
}

.outline i {
    background: #fff;
    color: #1b1b1b;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-pagination {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
    width: 25px;
    border-radius: 10px;
}



/* ABOUT */
.about {
    padding: 100px 0;
    background: #f4faff;
    overflow-x: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
}

.about-left h2 {
    font-size: 41px;
    font-weight: 700;
    color: #0b1c2d;
    margin-bottom: 30px;
    font-family: 'Kanit', sans-serif;
}

.about-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.about-img-large img {
    width: 115%;
    border-radius: 25px;
    display: block;
    height: 404px;
    animation: blobMorph 8s ease-in-out infinite;
}

/* Premium Effect Classes */
.morph {
    animation: blobMorph 12s ease-in-out infinite !important;
}

.blund {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    /* Override standard border radius for "blunder" / organic look */
    backdrop-filter: blur(8px);
    box-shadow: 0 40px 100px rgba(0, 123, 189, 0.2), 0 0 50px rgba(0, 123, 189, 0.1) inset;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.about-img-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 54px;
}

.about-img-group img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
}

.about-img-group .partner-logo {
    object-fit: contain;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.about-text2 {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: #0b1c2d;
}

.stat-item span {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.about-footer {
    margin-top: 10px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #0b1c2d;
    padding: 8px 10px 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    background-image: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(0, 123, 189, 0.4) 50%,
            rgba(255, 255, 255, 0.2) 75%);
    background-size: 200% 200%;
    animation: liquidMovement 4s ease infinite;
}

.arrow-circle {
    background: #007bbd;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.btn-more:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Swipe Button - Optimized Premium Interaction */
.btn-swipe {
    position: relative;
    padding: 8px 8px 8px 30px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    min-width: 210px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    will-change: transform;
}

.btn-swipe::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #007bbd;
    transform: translateX(101%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
    will-change: transform;
}

.btn-swipe .arrow-circle {
    position: relative;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        background-color 0.3s ease,
        color 0.3s ease;
    will-change: transform;
}

.btn-swipe:active,
.btn-swipe.swiping {
    color: #fff !important;
}

.btn-swipe:active::after,
.btn-swipe.swiping::after {
    transform: translateX(0);
}

.btn-swipe:active .arrow-circle,
.btn-swipe.swiping .arrow-circle {
    transform: translateX(-163px);
    background: #fff !important;
    color: #007bbd !important;
}

/* PRODUCTS */
.products {
    padding: 77px 0;
    background: #f4faff;
    margin-top: -57px;
    overflow-x: hidden;
}

.products-inner {
    text-align: center;
}

.section-tag-centered {
    color: #007bbd;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: kanit, sans-serif;
}

.section-tag {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #003366;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: heartbeatPumping 5.5s infinite ease-in-out;
}

@keyframes heartbeatPumping {
    0% {
        transform: scale(1);
        color: #003366;
    }

    20% {
        transform: scale(1.1);
        color: rgb(0, 90, 158);
    }

    35% {
        transform: scale(1);
        color: #003366;
    }

    55% {
        transform: scale(1.15);
        color: rgb(0, 123, 189);
    }

    75% {
        transform: scale(1);
        color: #003366;
    }

    88% {
        transform: scale(1.07);
        color: rgb(0, 100, 170);
    }

    100% {
        transform: scale(1);
        color: #003366;
    }
}

.section-title-centered {
    font-family: 'Kanit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2d;
    margin-bottom: 30px;
    text-align: left;
}

.section-desc-centered {
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    text-align: left;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 89px;
    max-width: 1066px;
    margin: 0 auto;
    align-items: start;
}

.product-card {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
}

.product-card:nth-child(odd) {
    transform: translateY(60px);
}

.product-overlay {
    width: 100%;
    height: 60px;
    /* Fixed height for 3D effect */
    perspective: 1000px;
    background: transparent;
    /* Remove bg from container */
    padding: 0;
}

.overlay-cube {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.product-card:hover .overlay-cube,
.product-card.tapped .overlay-cube {
    transform: rotateX(90deg);
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007bbd;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border-radius: 12px;
    backface-visibility: hidden;
}

.cube-face.front {
    transform: translateZ(30px);
}

.cube-face.bottom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    background-image: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(0, 123, 189, 0.4) 50%,
            rgba(255, 255, 255, 0.2) 75%);
    background-size: 200% 200%;
    animation: liquidMovement 4s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #0b1c2d;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: rotateX(-90deg) translateZ(30px);
}

.cube-face.bottom a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-footer {
    display: flex;
    justify-content: flex-end;
    max-width: 1066px;
    margin: 20px auto 0;
}

/* SOLUTIONS */
.solutions {
    padding: 100px 0;
    background: linear-gradient(rgba(11, 28, 45, 0.92), rgba(11, 28, 45, 0.92)), url('/image/heroimg2.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.solutions-main-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.solutions-sub-title {
    font-size: 18px;
    color: #ccc;
}

.solutions-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px) saturate(200%);
    -webkit-backdrop-filter: blur(8px) saturate(200%);
    box-shadow:
        inset 0 12px 12px rgba(255, 255, 255, 0.3),
        inset 0 -12px 12px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    overflow: hidden;
}

.nav-btn::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 15%;
    width: 70%;
    height: 35%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50% 50% 40% 40% / 100% 100% 20% 20%;
    pointer-events: none;
}

.nav-btn:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 18px 18px rgba(255, 255, 255, 0.4),
        inset 0 -18px 18px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.25);
}



.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: #007bbd;
}

.solution-img {
    margin-bottom: 30px;
}

.solution-img img {
    max-width: 100%;
    border-radius: 12px;
}

.solution-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

/* TESTIMONIAL */
.testimonial {
    padding: 100px 0;
    background: #f4faff;
}

.testimonial-inner {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.testimonial-card {
    background: #007bbd;
    color: #fff;
    padding: 12% 10%;
    border-radius: 60px;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    height: 100%;
}

.testimonial-card p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-user {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    background: #ddd;
}

.user-info strong {
    font-size: 17px;
    font-weight: 700;
}

.testimonial-nav {
    display: flex;
    gap: 12px;
}

.nav-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-btn-outline:hover {
    background: #fff;
    color: #007bbd;
    border-color: #fff;
}

.testimonial-image-box {
    width: 100%;
    height: 100%;
}

.testimonial-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
}

.section-title-centeredt {
    font-family: 'Kanit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0b1c2d;
    margin-bottom: 30px;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #11181c;
    color: #fff;
    padding: 37px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 10px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 60px;
    margin-bottom: 10px;
    /* Reduced to fit name */
    display: block;
}

.footer-logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: block;
}

.footer-about {
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-links a i {
    font-size: 10px;
    color: #007bbd;
}

.footer-links a:hover {
    color: #007bbd;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact li i {
    color: #fff;
    margin-top: 4px;
    font-size: 16px;
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #7d7c7c;
}

.footer-bottom a {
    color: #7d7c7c;
    font-weight: 500;
}

/* SLIDE MENU */
.slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    /* Open from RIGHT */
    left: auto;
    /* Reset left */
    width: 600px;
    max-width: 100%;
    height: 100vh;
    background: #0b1c2d;
    color: #fff;
    z-index: 9998;
    transform: translateX(100%);
    /* Start off-screen right */
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    /* Shadow to left */
    display: flex;
    align-items: center;
    overflow: hidden;
    will-change: transform;
}

.slide-menu.active {
    transform: translate3d(0, 0, 0);
}

.slide-menu.active~* {
    pointer-events: none;
}

/* Prevent clicks during animation */

/* Menu Item Animations */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-nav li {
    opacity: 0;
    /* Initially hidden */
    transform: translateY(30px);
    margin-bottom: 25px;
}

.slide-menu.active .slide-nav li {
    animation: slideUpFade 0.3s ease forwards;
}

/* Staggered Delays */
.slide-menu.active .slide-nav li:nth-child(1) {
    animation-delay: 0.05s;
}

.slide-menu.active .slide-nav li:nth-child(2) {
    animation-delay: 0.1s;
}

.slide-menu.active .slide-nav li:nth-child(3) {
    animation-delay: 0.15s;
}

.slide-menu.active .slide-nav li:nth-child(4) {
    animation-delay: 0.2s;
}

.slide-menu.active .slide-nav li:nth-child(5) {
    animation-delay: 0.25s;
}

.slide-menu.active .slide-nav li:nth-child(6) {
    animation-delay: 0.3s;
}

.slide-contact,
.slide-social {
    opacity: 0;
    transform: translateY(20px);
}

.slide-menu.active .slide-contact {
    animation: slideUpFade 0.3s ease forwards 0.35s;
}

.slide-menu.active .slide-social {
    animation: slideUpFade 0.3s ease forwards 0.4s;
}

.slide-menu-content {
    padding: 30px 40px;
    /* Highly compact padding */
    width: 100%;
}

.slide-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 50px;
}

.slide-logo img {
    height: 70px;
    width: auto;
    /* Maintain aspect ratio */
}

.slide-logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.slide-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.slide-nav li {
    margin-bottom: 10px;
}

.slide-nav a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Kanit', sans-serif;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.slide-nav a:hover {
    color: #007bbd;
    padding-left: 10px;
}

.slide-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slide-contact p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    gap: 15px;
    align-items: center;
    line-height: 1.5;
}

.slide-contact p span {
    flex: 1;
}

.slide-contact p:last-child {
    align-items: flex-start;
}

.slide-contact i {
    color: #007bbd;
    width: 24px;
    font-size: 18px;
    text-align: center;
    flex-shrink: 0;
}

.slide-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.slide-social a {
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slide-social a:hover {
    background: #007bbd;
    border-color: #007bbd;
}

/* Slide Menu Mobile Responsiveness */
@media (max-width: 768px) {
    .slide-menu {
        width: 100%;
        /* Full width on mobile */
    }

    .slide-menu-content {
        padding: 60px 30px 30px;
    }

    .slide-logo {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .slide-logo img {
        height: 45px;
    }

    .slide-nav {
        text-align: center;
    }

    .slide-nav ul {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide-nav a {
        font-size: 24px;
    }

    .slide-nav li {
        margin-bottom: 15px;
    }

    .slide-social {
        margin-top: 30px;
        justify-content: center;
    }

    .slide-contact {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .slide-contact p {
        justify-content: flex-start;
        text-align: left;
    }

    .slide-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* HEADER HOVER MENU */
.header-right {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-right: -120px;
}

.header-menu-wrapper {
    position: relative;
    padding: 10px 0;
    /* buffer for hover */
    z-index: 101;
    padding-right: 18px;
}

.header-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
}

.header-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.header-menu-wrapper:hover .header-hamburger span {
    background: #fff;
    /* Changed from #007bbd */
}

/* Full Screen Menu Styles */
.mobile-menu-close {
    display: none;
}

.header-fullscreen-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    /* Changed from 100vw to avoid scrollbar */
    height: 100vh;
    background: #000;

    z-index: 2000;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    overflow: hidden;
    /* Removed scrolling */
    will-change: transform;
}

.header-fullscreen-menu.active {
    transform: translate3d(0, 0, 0);
}

.menu-content-container {
    flex: 1;
    padding: 3vh 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    height: 100%;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: blur(15px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.header-fullscreen-menu.active .menu-content-container {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Staggered text animations for menu items */
.header-fullscreen-menu.active .fullscreen-nav li {
    animation: menuFadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

.header-fullscreen-menu.active .fullscreen-nav li:nth-child(1) {
    animation-delay: 0.3s;
}

.header-fullscreen-menu.active .fullscreen-nav li:nth-child(2) {
    animation-delay: 0.4s;
}

.header-fullscreen-menu.active .fullscreen-nav li:nth-child(3) {
    animation-delay: 0.5s;
}

.header-fullscreen-menu.active .fullscreen-nav li:nth-child(4) {
    animation-delay: 0.6s;
}

.header-fullscreen-menu.active .fullscreen-nav li:nth-child(5) {
    animation-delay: 0.7s;
}

.header-fullscreen-menu.active .fullscreen-nav li:nth-child(6) {
    animation-delay: 0.8s;
}

.header-fullscreen-menu.active .fullscreen-nav li:nth-child(7) {
    animation-delay: 0.9s;
}

@keyframes menuFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min-content;
    width: fit-content;
    padding: 10px 0;
    /* Minimal vertical padding */
}

.menu-logo {
    margin-bottom: clamp(20px, 4vh, 40px);
    display: flex;
    flex-direction: column;
}

.menu-logo img {
    height: 62px;
    width: 175px;
    /* Maintain aspect ratio */
}

.menu-logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

/* ===== LOGO TEXT: RESPONSIVE VARIANTS ===== */
/* Desktop (>768px): show full name, hide short */
.menu-logo-mobile,
.logo-text-mobile,
.footer-logo-mobile,
.slide-logo-mobile {
    display: none !important;
}

.menu-logo-desktop,
.logo-text-desktop,
.footer-logo-desktop,
.slide-logo-desktop {
    display: block !important;
}

/* Mobile (≤768px): show short name, hide full */
@media (max-width: 768px) {

    .menu-logo-desktop,
    .logo-text-desktop,
    .footer-logo-desktop,
    .slide-logo-desktop {
        display: none !important;
    }

    .menu-logo-mobile,
    .logo-text-mobile,
    .footer-logo-mobile,
    .slide-logo-mobile {
        display: block !important;
    }
}

/* Base state for logo and contact info */
.menu-logo,
.fullscreen-contact-info,
.fullscreen-social,
.menu-right-col {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.header-fullscreen-menu.active .menu-logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.header-fullscreen-menu.active .fullscreen-contact-info {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.header-fullscreen-menu.active .fullscreen-social {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.header-fullscreen-menu.active .menu-right-col {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Desktop Fix for Overlay Logo alignment */
@media (min-width: 1025px) {
    .logo-brand-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .menu-logo-text {
        margin-top: 0;
        line-height: 1.2;
        font-size: 24px;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .menu-logo img {
        height: 85px;
        width: auto;
    }
}

.fullscreen-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    /* Reduced */
}

.fullscreen-nav li {
    margin-bottom: 15px;
    /* Reduced */
}

.fullscreen-nav a {
    color: #fff;
    font-size: clamp(18px, 3.5vh, 26px);
    /* More condensed font size */
    font-weight: 800;
    text-decoration: none;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    transition: color 0.3s;
}

.fullscreen-nav a:hover,
.fullscreen-nav a.active-link {
    color: #1BA2E1 !important;
    opacity: 1;
}

.fullscreen-contact-info {
    margin-bottom: 5px;
    /* Reduced */
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Tighter gap */
}

.fullscreen-contact-info p {
    color: #889bb0;
    font-size: 15px;
    margin: 0;
    display: flex;
    gap: 15px;
    align-items: center;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.fullscreen-contact-info p span {
    flex: 1;
}

.fullscreen-contact-info p:last-child {
    align-items: flex-start;
}

.fullscreen-contact-info i {
    color: #007bbd;
    width: 24px;
    font-size: 18px;
    text-align: center;
    flex-shrink: 0;
}

.fullscreen-social {
    display: flex;
    gap: 15px;
    /* Tightened */
}

.fullscreen-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.fullscreen-social a:hover {
    background: #fff;
    border-color: #fff;
    color: #0b1c2d;
    /* Dark text on white background */
}

/* SEARCH RESULTS */
.no-results-premium {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.no-results-premium i {
    font-size: 64px;
    color: #eee;
    margin-bottom: 25px;
    display: block;
}

.no-results-premium h3 {
    font-size: 28px;
    color: #0b1c2d;
    margin-bottom: 15px;
}

.no-results-premium p {
    color: #666;
    margin-bottom: 30px;
}

.no-results-premium .btn {
    display: inline-flex;
    margin: 0 auto;
}

/* Decorative Right Column */
.menu-right-col {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
    margin-left: 5vw;
}

.header-fullscreen-menu.active .menu-right-col {
    opacity: 1;
    transform: translateX(0);
    display: flex;
}

.mobile-line,
.mobile-contact-wrap,
.menu-hamburger-close {
    display: none;
}


.tech-core-wrapper {
    position: relative;
    width: 600px;
    max-width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-circle {
    position: absolute;
    border: 1px solid rgba(0, 123, 189, 0.15);
    border-radius: 50%;
}

.tech-circle.outer {
    width: 450px;
    height: 450px;
    border-style: dashed;
    animation: rotateSlow 40s linear infinite;
}

.tech-circle.inner {
    width: 250px;
    height: 250px;
    border-style: solid;
    border-width: 0.5px;
    animation: rotateSlow 25s linear reverse infinite;
    opacity: 0.4;
}

.tech-lines {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.tech-lines svg {
    width: 100%;
    height: 100%;
}

.floating-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #007bbd;
    border-radius: 50%;
    filter: blur(1.5px);
    box-shadow: 0 0 15px #007bbd;
}

.node-1 {
    top: 20%;
    left: 20%;
    animation: floatNode 10s ease-in-out infinite;
}

.node-2 {
    top: 75%;
    left: 80%;
    animation: floatNode 14s ease-in-out infinite 1s;
}

.node-3 {
    top: 45%;
    left: 65%;
    animation: floatNode 11s ease-in-out infinite 2s;
}

.node-4 {
    top: 15%;
    left: 75%;
    animation: floatNode 18s ease-in-out infinite 3.5s;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Quick Access Utility Panel */
.menu-utility-panel {
    position: relative;
    z-index: 10;
    max-width: 450px;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: clamp(20px, 4vh, 50px) clamp(20px, 4vw, 40px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vh, 40px);
}

.utility-search h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.search-box-premium {
    position: relative;
    width: 100%;
}

.search-box-premium i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #007bbd;
    font-size: 16px;
}

.search-box-premium input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 15px 15px 50px;
    border-radius: 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.search-box-premium input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #007bbd;
    box-shadow: 0 0 15px rgba(0, 123, 189, 0.2);
}

.utility-categories h4 {
    font-size: 14px;
    font-weight: 700;
    color: #007bbd;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cat-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cat-item-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.cat-item-premium i {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s;
}

.cat-item-premium span {
    font-size: 12px;
    color: #889bb0;
    font-weight: 600;
    text-transform: uppercase;
}

.cat-item-premium:hover {
    background: rgba(0, 123, 189, 0.1);
    border-color: #007bbd;
    transform: translateY(-5px);
}

.cat-item-premium:hover i {
    color: #007bbd;
    transform: scale(1.1);
}

.btn-quote-premium {
    width: 100%;
    background: #007bbd;
    color: #fff !important;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.4s;
    box-shadow: 0 15px 30px rgba(0, 123, 189, 0.3);
}

.btn-quote-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 189, 0.5);
    background: #1BA2E1;
}

@keyframes floatNode {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(40px, -30px);
        opacity: 0.9;
    }
}

@media (max-width: 992px) {
    .menu-right-col {
        display: none;
    }

    .menu-content-container {
        padding: 40px;
    }
}

.menu-close-strip {
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: auto;
    /* Push to right */
}

.close-text {
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.vertical-lines {
    display: flex;
    gap: 4px;
    height: 60px;
}

.vertical-lines span {
    width: 1px;
    height: 100%;
    background: #fff;
    opacity: 0.5;
}

/* Removed duplicate menu-toggle definitions to prevent conflicts */

@keyframes liquidMovement {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ================= PREMIUM ABOUT PAGE ================= */
.about-hero {
    height: 70vh;
    min-height: 550px;
    background: linear-gradient(rgba(11, 28, 45, 0.8), rgba(11, 28, 45, 0.8)), url('/image/hero2.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 120px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* PREMIUM STORY */
.about-story-premium {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.premium-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.premium-story-images {
    position: relative;
    height: 500px;
}

.img-wrapper {
    position: absolute;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.main-img {
    width: 100%;
    height: 500px;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-stat-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #007bbd;
    color: #fff;
    padding: 35px;
    border-radius: 30px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 123, 189, 0.3);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-stat-card h3 {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 5px;
}

.floating-stat-card p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 123, 189, 0.1);
    color: #007bbd;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.premium-title {
    font-size: 48px;
    font-weight: 800;
    color: #0b1c2d;
    line-height: 1.1;
    margin-bottom: 30px;
}

.premium-title span {
    color: #007bbd;
}

.story-text-block p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.premium-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 600;
    color: #0b1c2d;
}

.premium-list i {
    color: #007bbd;
    font-size: 22px;
}

/* MISSION & VISION PREMIUM */
.mission-vision-premium {
    padding: 100px 0;
    background: #0b1c2d;
    /* Dark theme contrast */
    position: relative;
}

.mv-premium-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-premium-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 50px;
    border-radius: 40px;
    transition: all 0.4s ease;
}

.mv-premium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 123, 189, 0.4);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #007bbd;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 35px;
    box-shadow: 0 15px 30px rgba(0, 123, 189, 0.3);
}

.card-label {
    font-size: 12px;
    font-weight: 700;
    color: #007bbd;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.mv-premium-card h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-premium-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.6;
}

/* CORE VALUES PREMIUM */
.core-values-premium {
    padding: 120px 0;
    background: #f8fbff;
}

.section-center-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-center-head .sub-title {
    color: #007bbd;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-center-head .main-title {
    font-size: 44px;
    font-weight: 800;
    color: #0b1c2d;
    line-height: 1.2;
}

.section-center-head .main-title span {
    color: #007bbd;
}

.values-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-premium-item {
    background: #fff;
    padding: 50px 35px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-premium-item:hover {
    box-shadow: 0 25px 60px rgba(0, 123, 189, 0.08);
    border-color: rgba(0, 123, 189, 0.1);
    transform: scale(1.02);
}

.value-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    font-weight: 800;
    color: rgba(0, 123, 189, 0.05);
}

.value-icon-box {
    width: 60px;
    height: 60px;
    background: #f4faff;
    color: #007bbd;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.value-premium-item:hover .value-icon-box {
    background: #007bbd;
    color: #fff;
    transform: rotateY(180deg);
}

.value-premium-item h3 {
    font-size: 22px;
    color: #0b1c2d;
    margin-bottom: 20px;
    font-weight: 700;
}

.value-premium-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* PREMIUM CTA */
.premium-cta {
    position: relative;
    padding: 150px 0;
    background: #0b1c2d;
    overflow: hidden;
}

.cta-overlay-bg {
    position: absolute;
    inset: 0;
    background: url('/image/heroimg2.jpg') center/cover;
    opacity: 0.15;
    mix-blend-mode: soft-light;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-wrapper h2 {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cta-content-wrapper p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.primary-premium {
    background: #fff;
    color: #007bbd !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
}

.primary-premium i {
    background: #007bbd;
    color: #fff;
}

.outline-premium {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
}

.outline-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ANIMATIONS */
.animate-up,
.animate-left,
.animate-right,
.animate-fade {
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-up {
    transform: translateY(60px);
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

.animate-up.active,
.animate-left.active,
.animate-right.active,
.animate-fade.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* ================= SOLUTIONS PAGE ================= */
.solutions-hero {
    height: 70vh;
    min-height: 550px;
    background: url('/image/heroimg2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 28, 45, 0.9), rgba(11, 28, 45, 0.7));
}

.solutions-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.solutions-hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
}

.solutions-hero h1 span {
    color: #007bbd;
}

.solutions-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* SOLUTIONS INTRO */
.solutions-intro {
    padding: 100px 0;
    background: #fff;
    overflow-x: hidden;
}

.intro-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-desc p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
}

/* SOLUTIONS MAIN GRID */
.solutions-main-grid {
    padding: 0 0 120px;
    background: #fff;
}

.sol-card-premium {
    margin-bottom: 80px;
}

.sol-card-premium:last-child {
    margin-bottom: 0;
}

.sol-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #f8fbff;
    border-radius: 50px;
    overflow: hidden;
    padding: 40px;
    transition: all 0.4s ease;
}

.sol-card-premium.reverse .sol-card-inner {
    direction: rtl;
}

.sol-card-premium.reverse .sol-content-box {
    direction: ltr;
    /* Reset text direction for content */
}

.sol-card-inner:hover {
    box-shadow: 0 30px 60px rgba(0, 123, 189, 0.1);
    transform: translateY(-5px);
}

.sol-img-box {
    height: 450px;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sol-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.sol-card-inner:hover .sol-img-box img {
    transform: scale(1.1);
}

.sol-content-box {
    padding: 40px;
}

.sol-icon {
    width: 65px;
    height: 65px;
    background: #007bbd;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 123, 189, 0.3);
}

.sol-content-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2d;
    margin-bottom: 25px;
}

.sol-content-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sol-detail-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.detail-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #007bbd;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sol-features-list {
    list-style: none;
    padding: 0;
}

.sol-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

.sol-features-list li i {
    color: #007bbd;
    font-size: 14px;
}

/* BRAND TECHNOLOGY GRID */
.brand-technology-premium {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #0b1c2d; 
}

.rain-lines-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.rain-line {
    position: absolute;
    width: 1px;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(0, 123, 189, 0.4));
    top: -200px;
    animation: technoRain 4s linear infinite;
}

.line-1 { left: 10%; animation-delay: 0s; animation-duration: 5s; }
.line-2 { left: 25%; animation-delay: -1.5s; animation-duration: 4s; }
.line-3 { left: 40%; animation-delay: -3s; animation-duration: 6s; }
.line-4 { left: 55%; animation-delay: -0.5s; animation-duration: 5s; }
.line-5 { left: 70%; animation-delay: -2s; animation-duration: 4.5s; }
.line-6 { left: 85%; animation-delay: -3.5s; animation-duration: 5.5s; }
.line-7 { left: 15%; animation-delay: -1s; animation-duration: 4.2s; }
.line-8 { left: 80%; animation-delay: -2.5s; animation-duration: 5.8s; }

@keyframes technoRain {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    70% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.brand-technology-premium .container {
    position: relative;
    z-index: 2;
}

.section-desc-light {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 20px auto 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px; /* Standardize card height */
}

.brand-item img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    transition: all 0.4s ease;
}

.brand-item:hover {
    background: rgba(0, 123, 189, 0.1);
    transform: translateY(-5px);
    border-color: #007bbd;
}

.brand-item:hover img {
    transform: scale(1.1);
}

.btn-sol-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #007bbd;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
}

/* INDUSTRY SECTORS */
.industry-sectors {
    padding: 120px 0;
    background: #0b1c2d;
}

.industry-sectors .main-title {
    color: #fff;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sector-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sector-item:hover {
    background: #007bbd;
    transform: translateY(-10px);
    border-color: #007bbd;
}

.sector-icon {
    font-size: 35px;
    color: #007bbd;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.sector-item:hover .sector-icon {
    color: #fff;
}

.sector-item h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.sector-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* SOLUTIONS CTA */
.solutions-cta {
    padding: 120px 0;
    background: #fff;
}

.cta-glass-box {
    background: url('/image/about_meeting.jpg') center/cover;
    position: relative;
    border-radius: 60px;
    padding: 100px 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.cta-glass-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 45, 0.85);
}

.cta-glass-box h2 {
    position: relative;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-glass-box p {
    position: relative;
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-glass-box .btn {
    position: relative;
}

/* ================= TECHNOLOGY PAGE ================= */
.technology-hero {
    height: 70vh;
    min-height: 550px;
    background: url('/image/tech_hero_bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.tech-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 18, 0.7);
}

.technology-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
}

.technology-hero h1 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2px;
}

.technology-hero h1 span {
    color: #007bbd;
}

.technology-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* TECH SECTION ENHANCEMENTS */
.premium-bg-section {
    position: relative;
    overflow: hidden;
}

.bg-number {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 350px;
    font-weight: 900;
    color: rgba(0, 123, 189, 0.03);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    -webkit-text-stroke: 1px rgba(0, 123, 189, 0.08);
    font-family: 'Inter', sans-serif;
}

.bg-number.light {
    color: rgba(255, 255, 255, 0.01);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
}

.micro-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #007bbd;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

.micro-label span {
    color: #0b1c2d;
    opacity: 0.4;
}

.tech-section .container {
    position: relative;
    z-index: 5;
}

.tech-content h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 25px;
}

/* TECH INTRO CLASSIC */
.tech-intro {
    padding: 80px 0;
    background: #f9f9f9;
}

.intro-classic-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
}

.intro-classic-card p {
    font-size: 20px;
    color: #444;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* STANDARD TECH GALLERY */
.tech-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-main-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-sub-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

/* ADVANCED GALLERY */
.tilt-effect {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: crosshair;
}

.tilt-effect:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

.tech-main-img {
    position: relative;
}

.glass-info-tag {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 100px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.glass-info-tag span {
    color: #00ffcc;
    margin-left: 10px;
}

.sub-img-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.glass-info-mini {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(4, 10, 18, 0.9), transparent);
    padding: 30px 20px 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* COMPLIANCE SECTION */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.compliance-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-10px);
    background: #007bbd;
}

.comp-icon {
    font-size: 30px;
    color: #007bbd;
    margin-bottom: 20px;
}

.compliance-item:hover .comp-icon,
.compliance-item:hover h4 {
    color: #fff;
}

.compliance-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0b1c2d;
    line-height: 1.4;
}

/* TECH CTA */
.tech-cta {
    padding: 120px 0;
    background: #0b1c2d;
}

.cta-tech-box {
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.cta-tech-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-tech-box p {
    font-size: 20px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* ================= BLUEPRINT TECH DESIGN (v3.0) ================= */
.blueprint-grid {
    background-image:
        linear-gradient(rgba(0, 123, 189, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 189, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.tech-callout-container {
    position: relative;
}

.tech-callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.callout-line {
    width: 60px;
    height: 1px;
    background: #007bbd;
    position: relative;
}

.callout-line::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #007bbd;
    border-radius: 50%;
    top: -2.5px;
    left: -3px;
}

.callout-text {
    background: #0b1c2d;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 3px solid #007bbd;
    white-space: nowrap;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.metric-item {
    border-left: 1px solid rgba(0, 123, 189, 0.2);
    padding-left: 20px;
}

.metric-val {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #007bbd;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

.tech-section.blueprint-bg {
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Position specific callouts */
.callout-1 {
    top: 20%;
    left: -40px;
}

.callout-2 {
    bottom: 30%;
    right: -40px;
    flex-direction: row-reverse;
}

.callout-2 .callout-line::before {
    left: auto;
    right: -3px;
}

.callout-2 .callout-text {
    border-left: none;
    border-right: 3px solid #007bbd;
}

/* Responsive adjustments for v3.0 */
@media (max-width: 1200px) {
    .tech-callout {
        display: none;
        /* - [x] Optimize full-screen menu layout for 'proper fit' across screen sizes */
    }
}

/* ================= INDUSTRIES PAGE ================= */
.industries-hero {
    height: 70vh;
    min-height: 550px;
    background: url('/image/tech_hero_bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.industries-hero h1 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2px;
}

.industries-hero h1 span {
    color: #007bbd;
}

.industries-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.industries-list {
    padding: 120px 0;
    background: #fff;
}

.industry-item {
    margin-bottom: 120px;
}

.industry-item:last-child {
    margin-bottom: 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.industry-grid.reverse {
    direction: rtl;
}

.industry-grid.reverse .industry-text {
    direction: ltr;
}

.industry-text .premium-title {
    font-size: 42px;
    margin-bottom: 25px;
}

.industry-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.focus-title {
    font-size: 14px;
    font-weight: 800;
    color: #0b1c2d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.industry-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.industry-gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.industry-gallery-grid img:hover {
    transform: scale(1.02);
}

.section-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 100px 0;
}

.partner-cta {
    padding: 120px 0;
    background: #0b1c2d;
    color: #fff;
}

.partner-cta h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.partner-cta p {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 50px;
}

/* ================= CONTACT PAGE ================= */
.contact-hero {
    height: 70vh;
    min-height: 550px;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.contact-hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.contact-hero h1 span {
    color: #007bbd;
}

.contact-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    padding: 120px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info-col .premium-title {
    font-size: 42px;
    margin-bottom: 25px;
}

.contact-info-col p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-cards-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: #007bbd;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #007bbd;
    color: #fff;
    font-size: 24px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0b1c2d;
}

.card-text p {
    font-size: 15px !important;
    margin-bottom: 0 !important;
}

.social-links-premium {
    display: flex;
    gap: 15px;
}

.social-links-premium a {
    width: 50px;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1c2d;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links-premium a:hover {
    background: #007bbd;
    color: #fff;
    border-color: #007bbd;
}

.form-glass-box {
    background: #0b1c2d;
    padding: 60px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.form-glass-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.form-glass-box h3 span {
    color: #007bbd;
}

.form-glass-box p {
    opacity: 0.7;
    margin-bottom: 40px;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.premium-form .form-group {
    margin-bottom: 20px;
}

.premium-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #007bbd;
}

.premium-form select option {
    background: #0b1c2d;
}

.contact-map-section {
    height: 500px;
    background: #040a12;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.google-map-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 76px;
    z-index: 2;
    pointer-events: none;
    /* Allow interaction with map underneath */
}

.map-info-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 45px;
    border-radius: 15px;
    /* More standard premium look */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5;
    transition: transform 0.3s ease;
    pointer-events: auto;
    /* Re-enable clicks for the box itself */
}

.map-info-box:hover {
    transform: translateY(-5px);
}

.map-info-box i {
    font-size: 36px;
    color: #007bbd;
    /* Brand Blue */
    text-shadow: 0 5px 15px rgba(0, 123, 189, 0.3);
}

.map-info-box p {
    margin: 0;
    color: #0b1c2d;
    font-weight: 600;
}

.map-info-box p span {
    color: #007bbd;
}

/* Large Tablets & Small Desktops */
@media (max-width: 1400px) {
    .header-logo img {
        margin-left: 0;
    }

    .header-right {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .btn-contact-header {
        display: none;
    }

    .header-inner {
        padding: 15px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin: 0;
        min-width: auto;
    }

    .header-logo img {
        height: 56px;
        width: 120px;
    }

    .logo-text {
        margin: 0;
        font-size: clamp(16px, 2.5vw, 24px);
        color: #fff;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        display: inline-block;
        text-align: left;
        white-space: nowrap;
    }

    @keyframes blinkCursor {

        from,
        to {
            border-color: transparent;
        }

        50% {
            border-color: #007bbd;
        }
    }

    /* Grid Responsiveness */
    .about-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2;
    }

    /* SLIDE MENU RESPONSIVE */
    .slide-menu {
        width: 100% !important;
    }

    .slide-menu-content {
        padding: 40px 20px !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide-logo {
        margin: 0 auto 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .slide-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px !important;
    }

    .slide-nav a {
        font-size: 26px !important;
    }

    .slide-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .slide-contact p {
        justify-content: center;
        font-size: 14px !important;
        width: 100%;
        max-width: 320px;
    }

    .slide-social {
        justify-content: center;
        margin-top: 30px !important;
    }

    .about-img-large img {
        width: 100%;
        height: 222px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
        padding: 0 20px;
    }

    .product-card {
        height: 250px;
    }

    .product-card:nth-child(odd) {
        transform: translateY(0);
    }

    .solutions-header {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .solutions-main-title {
        font-size: 30px !important;
    }

    .reveal-up,
    .reveal-fade,
    .reveal-left,
    .reveal-right,
    .reveal-3d {
        transition-duration: 0.4s !important;
        /* Faster transitions on mobile for snappier feel */
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-card {
        text-align: left;
        padding: 30px 20px;
    }

    /* TECHNOLOGY PAGE RESPONSIVE */
    .technology-hero h1 {
        font-size: 32px;
    }

    .intro-glass-card {
        padding: 30px 20px;
    }

    .intro-glass-card p {
        font-size: 18px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tech-grid.reverse {
        direction: ltr;
    }

    .tech-content h2 {
        font-size: 30px;
    }

    .tech-main-img {
        height: 350px;
    }

    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-tech-box h2 {
        font-size: 32px;
    }

    .bg-number {
        display: none;
    }

    .tech-gallery {
        gap: 20px;
    }

    .glass-info-tag {
        bottom: 15px;
        right: 15px;
        font-size: 11px;
        padding: 10px 15px;
    }
}

/* Mobile Devices */
@media (max-width: 1024px) {
    .header-fullscreen-menu {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: #ffffff !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow-y: auto;
    }

    .header-fullscreen-menu::before,
    .menu-bg-animations,
    .bg-circle-pulse {
        display: none !important;
    }

    .menu-content-container {
        padding: 20px 15px 40px !important;
        width: 100% !important;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        overflow-x: hidden;
        margin: 0 !important;
        background: none !important;
    }

    .menu-left-col {
        width: 100% !important;
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-logo {
        margin: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 5px 0 10px;
        background: none;
        border-radius: 0;
    }

    .logo-brand-group {
        display: flex;
        align-items: center;
    }


    .menu-hamburger-close {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        padding: 5px;
    }

    .close-icon {
        font-size: 32px;
        color: #000;
        margin-left: 0;
        font-weight: 900;
    }




    .menu-logo img {
        height: 56px;
        width: 120px;
    }

    .menu-logo-text {
        font-size: 23px;
        color: #000 !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
        font-weight: 500;
        letter-spacing: -0.5px;
        margin-top: 0;
        margin-left: 8px;
        filter: none !important;
        text-transform: none;
        display: block;
        width: auto !important;
        border-right: none !important;
        animation: none !important;
        white-space: normal;
        line-height: 1.1;
    }


    .mobile-line {
        display: block;
        width: 100%;
        height: 1px;
        background: #d9edf7;
        margin: 0;
    }

    .fullscreen-nav {
        width: 100%;
        margin: 20px 0;
        text-align: left;
        margin-left: 50px;
    }

    .fullscreen-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin: 0 !important;
    }

    .fullscreen-nav li {
        width: 100%;
        margin-bottom: 0px;
    }

    .fullscreen-nav a {
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #333 !important;
        letter-spacing: 0.5px;
        padding: 15px 0;
        justify-content: flex-start;
        text-transform: uppercase;
    }

    .fullscreen-nav li:first-child a {
        color: #007bbd !important;
    }

    .mobile-contact-wrap {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 30px 0;
    }

    .btn-mobile-contact {
        display: inline-block;
        padding: 12px 60px;
        border: 1px solid #000;
        color: #007bbd;
        border-radius: 30px;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .fullscreen-social {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .fullscreen-social i {
        font-size: 22px;
        color: #000;
    }

    .menu-right-col,
    .fullscreen-contact-info,
    .mobile-menu-close,
    .menu-close-strip {
        display: none !important;
    }


    .fullscreen-contact-info {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
        gap: 12px;
    }

    .fullscreen-contact-info p {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        font-size: 15px;
        margin: 0;
        text-align: left;
    }

    .fullscreen-contact-info p span {
        flex: 0 1 auto;
    }

    .fullscreen-contact-info p:last-child {
        align-items: flex-start;
    }

    .fullscreen-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
    }

    .menu-close-strip {
        display: none !important;
    }

    /* Background Animations for Mobile Menu */
    .menu-bg-animations {
        position: absolute;
        inset: 0;
        z-index: -1;
        overflow: hidden;
        pointer-events: none;
    }

    .bg-dot {
        position: absolute;
        width: 2px;
        height: 80px;
        background: linear-gradient(to bottom, transparent, #0E68A0, transparent);
        opacity: 0.4;
        filter: blur(1px);
    }

    .dot-1 {
        top: 0;
        left: 15%;
        animation: circuitTrace 8s infinite linear;
    }

    .dot-2 {
        top: 0;
        left: 45%;
        background: linear-gradient(to bottom, transparent, #439A3E, transparent);
        animation: circuitTrace 12s infinite linear 2s;
    }

    .dot-3 {
        top: 0;
        left: 75%;
        background: linear-gradient(to bottom, transparent, #F97C0A, transparent);
        animation: circuitTrace 10s infinite linear 1s;
    }

    .dot-4 {
        top: 0;
        left: 90%;
        background: linear-gradient(to bottom, transparent, #FBB30B, transparent);
        animation: circuitTrace 15s infinite linear 4s;
    }

    @keyframes circuitTrace {
        0% {
            transform: translateY(-100vh);
            opacity: 0;
        }

        10% {
            opacity: 0.5;
        }

        90% {
            opacity: 0.5;
        }

        100% {
            transform: translateY(100vh);
            opacity: 0;
        }
    }

    .bg-circle-pulse {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 450px;
        height: 450px;
        border: 1px solid rgba(14, 104, 160, 0.2);
        border-radius: 50%;
        animation: powerCore 4s infinite ease-out;
    }

    .bg-circle-pulse::before {
        content: "";
        position: absolute;
        inset: -20px;
        border: 1px solid rgba(67, 154, 62, 0.1);
        border-radius: 50%;
        animation: powerCore 4s infinite ease-out 1s;
    }

    @keyframes powerCore {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.5;
        }

        100% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0;
        }
    }

    .mobile-menu-close {
        display: none;
    }
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.2);
    }

    66% {
        transform: translate(-20px, 40px) scale(0.8);
    }
}

@keyframes pulseScale {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .btn-contact-header {
        display: none;
    }

    .header-inner {
        padding: 12px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin: 0;
        min-width: auto;
    }

    .header-logo img {
        height: auto;
        width: clamp(80px, 15vw, 110px);
    }

    .logo-text {
        margin: 0;
        font-size: clamp(14px, 4.5vw, 22px);
        color: #fff;
        font-weight: 500;
        letter-spacing: 1px;
        display: inline-block;
        text-align: left;
        white-space: nowrap;
    }

    .header-right {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .header-hamburger {
        display: flex;
        margin: 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
        padding-top: 150px;
        font-family: 'Kanit', sans-serif;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 18px;
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;

        br {
            display: none;
        }
    }

    /* Standardized Hero H1 for all pages */
    .about-hero h1,
    .solutions-hero h1,
    .technology-hero h1,
    .industries-hero h1,
    .contact-hero h1,
    .parts-hero h1 {
        font-size: 32px !important;
        font-family: 'Kanit', sans-serif !important;
        font-weight: 700 !important;
    }

    /* Standardized Hero P for all pages */
    .about-hero p,
    .solutions-hero p,
    .technology-hero p,
    .industries-hero p,
    .contact-hero p,
    .parts-hero p {
        font-size: 18px !important;
        font-family: 'Poppins', sans-serif !important;
        line-height: 1.6 !important;
    }

    /* WHO WE ARE RESPONSIVE */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left h2 {
        font-size: 28px;
        text-align: left;
        margin-bottom: 20px;
    }

    .about-desc,
    .about-text,
    .about-text2 {
        font-size: 16px;
        text-align: left;
        margin-bottom: 20px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 30px 0;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .section-title-centered,
    .section-title-centeredt {
        font-size: 26px;
        text-align: left;
    }

    .section-tag-centered {
        text-align: left;
        display: block;
    }

    .industry-grid,
    .intro-flex,
    .sol-card-inner,
    .sol-detail-lists {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industry-grid.reverse,
    .sol-card-premium.reverse .sol-card-inner {
        direction: ltr;
        /* Reset RTL hack */
    }

    .sol-img-box {
        height: 300px;
    }

    .sol-content-box {
        padding: 20px;
    }

    .industry-text .premium-title,
    .contact-info-col .premium-title {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-cards-stack {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .form-glass-box {
        padding: 30px 20px;
    }

    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-map-section {
        height: 300px;
    }

    .section-desc-centered {
        font-size: 15px;
        text-align: left;
        padding: 0;
    }

    .testimonial-inner {
        text-align: left;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 40px 30px;
        border-radius: 30px;
        min-height: 480px;
    }

    .testimonial-image-box {
        height: 480px;
    }

    .testimonial-image-box img {
        border-radius: 30px;
        height: 100%;
        object-fit: cover;
    }

    .hero-next-preview {
        bottom: 20px;
        right: 20px;
        padding: 5px;
    }

    .preview-img {
        width: 80px;
        height: 50px;
    }

    .footer-col {
        text-align: left;
        align-items: flex-start;
    }

    .footer-links a,
    .footer-contact li {
        justify-content: flex-start;
    }

    .footer-about {
        margin: 0 0 30px;
        text-align: left;
    }

    /* PREMIUM ABOUT PAGE RESPONSIVE */
    .premium-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .premium-story-images {
        height: 450px;
    }

    .main-img {
        width: 100%;
        height: 350px;
    }


    .floating-stat-card {
        bottom: -20px;
        left: 20px;
        padding: 20px;
    }

    .premium-title {
        font-size: 32px;
    }

    .mv-premium-container,
    .values-premium-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mv-premium-card {
        padding: 40px 30px;
    }

    .cta-content-wrapper h2 {
        font-size: 32px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* SOLUTIONS PAGE RESPONSIVE */
    .sol-card-inner {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }

    .sol-card-premium.reverse .sol-card-inner {
        direction: ltr;
    }

    .sol-img-box {
        height: 300px;
    }

    .sol-content-box {
        padding: 10px;
    }

    .sol-content-box h3 {
        font-size: 26px;
    }

    .sol-features {
        grid-template-columns: 1fr;
    }

    .sol-detail-lists {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .cta-glass-box {
        padding: 60px 25px;
        border-radius: 40px;
    }

    .cta-glass-box h2 {
        font-size: 28px;
    }
}



@media (max-width: 768px) {
    .fullscreen-nav a {
        font-size: 20px !important;
    }

    .fullscreen-contact-info p {
        font-size: 14px;
    }

    .parts-hero h1 {
        font-size: 36px;
    }

    .parts-hero h1 span {
        font-size: 24px;
    }

    .parts-hero p {
        font-size: 16px;
    }

    .parts-section {
        padding: 60px 0;
    }

    .parts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .fullscreen-nav a {
        font-size: 18px !important;
    }

    .fullscreen-contact-info p {
        font-size: 12px;
    }

    .parts-hero h1 {
        font-size: 28px;
    }
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        justify-content: center;
        text-align: center;
    }
}

/* ================= PARTS PAGE PREMIUM DESIGN ================= */
.parts-hero {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 0;
    background: #0b1c2d;
    background: linear-gradient(135deg, #0b1c2d 0%, #007bbd 100%);
    text-align: center;
    color: #fff;
}

.parts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/image/heroimg2.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.parts-hero .container {
    position: relative;
    z-index: 1;
}

.parts-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.parts-hero h1 span {
    color: #1BA2E1;
    display: block;
    font-size: 48px;
    margin-top: -10px;
}

.parts-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.parts-section {
    padding: 120px 0;
    background: #f8fbff;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.part-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background-color: #eee;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.part-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 189, 0.2);
}

.part-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.part-card:hover .part-img {
    transform: scale(1.1);
}

.part-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(11, 28, 45, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.part-info {
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 16px;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.part-card:hover .part-info {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
}

.part-info h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.part-info .explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1BA2E1;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease 0.1s;
}

.part-card:hover .part-info .explore-btn {
    opacity: 1;
    transform: translateX(0);
}

/* SAFETY COMPONENTS PAGE */
.safety-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/SAFETY COMPONENTS.jpg') no-repeat center center;
    background-size: cover;
}

.safety-hero::before {
    display: none !important;
    /* Remove the duplicate background image from .parts-hero */
}

.car-frame-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/CAR FRAME COMPONENTS.jpg') no-repeat center center;
    background-size: cover;
}

.car-frame-hero::before {
    display: none !important;
}

.cable-hanger-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/CABLE HANGER.jpg') no-repeat center center;
    background-size: cover;
}

.cable-hanger-hero::before {
    display: none !important;
}

.buffers-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/BUFFERS.jpg') no-repeat center center;
    background-size: cover;
}

.buffers-hero::before {
    display: none !important;
}

.isolators-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/ISOLATORS.jpg') no-repeat center center;
    background-size: cover;
}

.isolators-hero::before {
    display: none !important;
}

.brackets-accessories-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/BRACKETS & ACCESSORIES.jpg') no-repeat center center;
    background-size: cover;
}

.brackets-accessories-hero::before {
    display: none !important;
}

.mechanical-accessories-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/MECHANICAL ACCESSORIES.jpg') no-repeat center center;
    background-size: cover;
}

.mechanical-accessories-hero::before {
    display: none !important;
}

.electrical-accessories-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/ELECTRICAL ACCESSORIES.jpg') no-repeat center center;
    background-size: cover;
}

.electrical-accessories-hero::before {
    display: none !important;
}

.control-panel-accessories-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/CONTROL PANEL ACCESSORIES.jpg') no-repeat center center;
    background-size: cover;
}

.control-panel-accessories-hero::before {
    display: none !important;
}

.decoration-accessories-hero {
    background: linear-gradient(rgba(11, 28, 45, 0.4), rgba(11, 28, 45, 0.4)), url('/image/DECORATION ACCESSORIES.png') no-repeat center center;
    background-size: cover;
}

.decoration-accessories-hero::before {
    display: none !important;
}

.part-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
    opacity: 0.9;
}

.img-placeholder {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Back button styling removed in favor of global .btn primary */

/* Animations - ULTRA-SMOOTH MODEL */
.animate-up {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: fadeInUpUltra 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    will-change: transform, opacity;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUpUltra {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



/* DISTRIBUTORS */
.distributors {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f4faff 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 123, 189, 0.1);
    border-bottom: 1px solid rgba(0, 123, 189, 0.1);
    text-align: center;
}

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
    width: max-content;
    align-items: center;
}

.marquee-item {
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 80px;
    width: auto;
    max-width: 220px;
    filter: none;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.marquee-item img:hover {
    opacity: 1;
    transform: scale(1.15);
}

.logo-italianpro {
    background: #053e78;
    padding: 10px 15px;
    border-radius: 12px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15)) !important;
    opacity: 1 !important;
    box-shadow: 0 4px 15px rgba(0, 123, 189, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* AUTHORIZED DISTRIBUTOR SECTION */
.authorized-distributor {
    padding: 120px 0;
    background: #fdfdfd;
}

.distributor-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 70px;
}

.distributor-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.distributor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #007bbd;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: center;
}

.distributor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 123, 189, 0.1);
    border-color: #007bbd;
}

.distributor-card:hover::before {
    transform: scaleX(1);
}

.dist-logo-wrap {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dist-logo-wrap img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.distributor-card:hover .dist-logo-wrap img {
    transform: scale(1.08);
}

.dist-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0b1c2d;
    margin-bottom: 12px;
}

.dist-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    max-width: 320px;
}

/* Responsive adjustment for distributors */
@media (max-width: 1024px) {
    .distributor-logos {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .distributors {
        padding: 60px 0;
    }

    .marquee-item img {
        height: 50px;
        max-width: 150px;
    }

    .marquee-item {
        padding: 0 30px;
    }
}

/* GLOBAL REVEAL ON SCROLL - NEW SMOOTH MODEL V2 */
.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-mask,
.reveal-3d {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, clip-path;
}

.reveal-up {
    transform: translateY(40px) scale(0.98);
}

.reveal-fade {
    transform: scale(0.96);
}

.reveal-left {
    transform: translateX(-40px) scale(0.98);
}

.reveal-right {
    transform: translateX(40px) scale(0.98);
}

.reveal-mask {
    clip-path: inset(0 100% 0 0);
    filter: none;
    opacity: 1;
    /* Mask uses clip-path for reveal */
}

.reveal-3d {
    transform: perspective(1000px) rotateX(15deg) translateY(40px) scale(0.95);
}

.reveal-up.active,
.reveal-fade.active,
.reveal-left.active,
.reveal-right.active,
.reveal-mask.active,
.reveal-3d.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
    clip-path: inset(0 0 0 0);
}

/* Stagger for container children - NEW SMOOTH MODEL */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* ===================================================
   MOBILE RESPONSIVE — ALL SIZES
   =================================================== */

/* --- Tablet & Small Desktop (≤ 1024px) ------------------- */
@media (max-width: 1024px) {

    /* Ensure hero sections don't overflow vertically */
    .about-hero,
    .solutions-hero,
    .technology-hero,
    .industries-hero,
    .contact-hero {
        height: auto;
        min-height: 420px;
        padding: 140px 20px 70px;
    }

    .parts-hero {
        height: auto;
        min-height: 340px;
        padding: 140px 20px 60px;
    }

    /* Section padding reduction */
    .about-story-premium,
    .core-values-premium,
    .solutions-cta,
    .industries-list,
    .tech-cta,
    .partner-cta,
    .contact-section {
        padding: 80px 0;
    }

    .premium-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .industry-gallery-grid img {
        height: 180px;
    }
}

/* --- Mobile (≤ 768px) ------------------------------------- */
@media (max-width: 768px) {

    /* === HERO SECTIONS === */
    .about-hero,
    .solutions-hero,
    .technology-hero,
    .industries-hero,
    .contact-hero {
        height: auto !important;
        min-height: 0 !important;
        padding: 130px 20px 60px !important;
        background-attachment: scroll !important;
    }

    .parts-hero {
        height: auto !important;
        min-height: 0 !important;
        padding: 130px 20px 60px !important;
    }

    /* Hero headings — uniform across all pages */
    .about-hero h1,
    .solutions-hero h1,
    .technology-hero h1,
    .industries-hero h1,
    .contact-hero h1,
    .parts-hero h1 {
        font-size: 30px !important;
        letter-spacing: 0 !important;
        line-height: 1.7 !important;
    }

    .about-hero h1 span,
    .solutions-hero h1 span,
    .technology-hero h1 span,
    .industries-hero h1 span,
    .contact-hero h1 span,
    .parts-hero h1 span {
        font-size: 0.8em !important;
        display: block;
    }

    /* Hero paragraphs */
    .about-hero p,
    .solutions-hero p,
    .technology-hero p,
    .industries-hero p,
    .contact-hero p,
    .parts-hero p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        max-width: 100%;
    }

    /* Hero content centering */
    .about-hero .hero-content,
    .solutions-hero .hero-content,
    .technology-hero .hero-content,
    .industries-hero .hero-content,
    .contact-hero .hero-content,
    .parts-hero .container {
        padding-top: 0 !important;
        max-width: 100%;
    }

    /* === HOME HERO === */
    .hero {
        height: 100svh;
    }

    .hero-content h1 {
        font-size: 30px;
        padding-top: 120px;
    }

    /* === SECTION PADDING === */
    .about-story-premium,
    .mission-vision-premium,
    .core-values-premium,
    .premium-cta,
    .solutions-intro,
    .solutions-main-grid,
    .brand-technology-premium,
    .industry-sectors,
    .solutions-cta,
    .tech-intro,
    .industries-intro,
    .industries-list,
    .contact-section,
    .tech-cta,
    .partner-cta,
    .parts-section {
        padding: 60px 0 !important;
    }

    /* === GRIDS → SINGLE COLUMN === */
    .values-premium-grid,
    .mv-premium-container,
    .compliance-grid,
    .brands-grid,
    .sectors-grid,
    .info-cards-stack,
    .tech-grid,
    .industry-grid,
    .sol-card-inner,
    .sol-detail-lists,
    .intro-flex,
    .contact-grid {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
        gap: 30px !important;
    }

    /* === PARTS GRID — responsive fill === */
    .parts-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }

    .part-card {
        height: 320px;
    }

    /* === TYPOGRAPHY === */
    .premium-title {
        font-size: 28px !important;
    }

    .section-center-head .main-title {
        font-size: 28px !important;
    }

    .cta-content-wrapper h2,
    .cta-tech-box h2,
    .cta-glass-box h2 {
        font-size: 26px !important;
    }

    .cta-content-wrapper p,
    .cta-tech-box p,
    .cta-glass-box p {
        font-size: 16px !important;
    }

    /* === FOOTER === */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2;
    }

    /* === MISC === */
    .sol-img-box {
        height: 240px;
    }

    .industry-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .industry-gallery-grid img {
        height: 150px;
    }

    .section-divider {
        margin: 50px 0;
    }

    .industry-item {
        margin-bottom: 60px;
    }

    .map-overlay {
        padding-top: 0;
    }

    .contact-map-section {
        height: 250px;
    }

    .form-glass-box {
        border-radius: 20px;
    }

    .mv-premium-card {
        padding: 35px 25px;
    }

    .value-premium-item {
        padding: 35px 25px;
    }

    /* Button stacking */
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-actions .btn,
    .cta-actions .primary-premium,
    .cta-actions .outline-premium {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* --- Small Mobile (≤ 480px) ------------------------------ */
@media (max-width: 480px) {

    /* === HEADER === */
    .header-logo {
        min-width: 200px;
    }

    .header-logo img {
        height: 54px;
        width: 127px;
    }

    /* === HERO === */
    .about-hero,
    .solutions-hero,
    .technology-hero,
    .industries-hero,
    .contact-hero,
    .parts-hero {
        padding: 110px 15px 50px !important;
    }

    .about-hero h1,
    .solutions-hero h1,
    .technology-hero h1,
    .industries-hero h1,
    .contact-hero h1,
    .parts-hero h1 {
        font-size: 26px !important;
    }

    /* === FOOTER — quick links and support on same line === */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2;
    }

    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        grid-column: span 1;
    }

    /* === PARTS GRID — single col on very small === */
    .parts-grid {
        grid-template-columns: 1fr;
    }

    .part-card {
        height: 280px;
    }

    /* === TYPOGRAPHY === */
    .premium-title {
        font-size: 24px !important;
    }

    .cta-content-wrapper h2,
    .cta-tech-box h2,
    .cta-glass-box h2 {
        font-size: 22px !important;
    }

    /* === FORMS === */
    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- Tiny Mobile (≤ 360px) ------------------------------- */
@media (max-width: 360px) {

    .about-hero h1,
    .solutions-hero h1,
    .technology-hero h1,
    .industries-hero h1,
    .contact-hero h1,
    .parts-hero h1 {
        font-size: 22px !important;
    }

    .about-hero p,
    .solutions-hero p,
    .technology-hero p,
    .industries-hero p,
    .contact-hero p,
    .parts-hero p {
        font-size: 13px !important;
    }

    .header-logo {
        min-width: unset;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .premium-title {
        font-size: 20px !important;
    }
}

/* --- Ultra Small Mobile (≤ 320px) ------------------------- */
@media (max-width: 320px) {
    .header-logo {
        max-width: 180px;
    }

    .about-hero h1,
    .solutions-hero h1,
    .technology-hero h1,
    .industries-hero h1,
    .contact-hero h1,
    .parts-hero h1 {
        font-size: 18px !important;
    }

    .logo-text {
        font-size: 14px !important;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .tech-circle.outer {
        width: 280px !important;
        height: 280px !important;
    }

    .tech-circle.inner {
        width: 150px !important;
        height: 150px !important;
    }
}

/* ================= FLOATING BUTTONS ================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: 50px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 12px;
    font-size: 26px;
    z-index: 3000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
}

.floating-whatsapp .wa-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
}

.floating-whatsapp:hover {
    width: 220px;
    /* Expand horizontally to fit number */
    background-color: #128c7e;
    transform: translateY(-5px);
    color: #fff;
}

.floating-whatsapp:hover .wa-text {
    opacity: 1;
    transform: translateX(0);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    background: #0b1c2d;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    /* Fully rounded pill shape */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 17px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    white-space: nowrap;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top .top-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-left: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 1px;
}

.back-to-top:hover {
    width: 105px;
    /* Expand horizontally */
    background: #007bbd;
    border-color: #007bbd;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 189, 0.4);
    color: #fff;
}

.back-to-top:hover .top-text {
    opacity: 1;
    transform: translateX(0);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .floating-whatsapp,
    .floating-whatsapp:hover {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
        font-size: 30px;
        justify-content: center;
        padding-left: 0;
    }

    .floating-whatsapp .wa-text {
        display: none;
    }

    .back-to-top,
    .back-to-top:hover {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
        justify-content: center;
        padding-left: 0;
    }

    .back-to-top .top-text {
        display: none;
    }
}