:root {
    --ye-blue: #0068B0;
    --ye-blue-dark: #004C86;
    --ye-blue-light: #38A9F5;
    --ye-black: #050505;
    --ye-dark: #07111D;
    --ye-white: #ffffff;
    --ye-light: #F5F9FC;
    --ye-text: #101820;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--ye-text);
}

a {
    text-decoration: none;
}

/* =========================
   Header
========================= */

.ye-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

/* =========================
   Topbar
========================= */

.ye-topbar {
    background: linear-gradient(90deg, #000000, #07111D 45%, #003F70 100%);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.ye-topbar-left,
.ye-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ye-topbar-left a,
.ye-topbar-right span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    transition: all 0.3s ease;
}

.ye-topbar-left a i {
    color: var(--ye-blue-light);
    margin-right: 7px;
}

.ye-topbar-left a:hover {
    color: #ffffff;
}

.ye-topbar-right span {
    font-weight: 600;
}

.ye-topbar-right a {
    width: 29px;
    height: 29px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.ye-topbar-right a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ye-blue);
    transform: scale(0);
    border-radius: 50%;
    transition: all 0.35s ease;
    z-index: -1;
}

.ye-topbar-right a:hover::before {
    transform: scale(1);
}

.ye-topbar-right a:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

/* =========================
   Navbar
========================= */

.ye-navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    min-height: 88px;
    padding: 0;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.ye-navbar.scrolled {
    min-height: 74px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

.ye-logo img {
    max-width: 225px;
    height: auto;
    transition: all 0.35s ease;
}

.ye-navbar.scrolled .ye-logo img {
    max-width: 198px;
}

/* Remove Bootstrap default dropdown arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* =========================
   EXACT VIDEO STYLE NAV EFFECT
   Grey Dual Diagonal Fill Effect
========================= */

.ye-navbar .ye-nav-link {
    position: relative;
    color: #101820;
    font-size: 15px;
    font-weight: 800;
    padding: 31px 18px !important;
    margin: 0 2px;
    min-height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    overflow: visible;
    z-index: 1;
    transition: color 0.3s ease;
}

.ye-navbar.scrolled .ye-nav-link {
    min-height: 74px;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.ye-nav-text {
    position: relative;
    z-index: 5;
    transition: color 0.3s ease;
}

.ye-nav-bg {
    display: none !important;
}

/* First diagonal grey layer */
.ye-navbar .ye-nav-link::before {
    content: "";
    position: absolute;
    width: 94px;
    height: 32px;
    left: 50%;
    top: 50%;
    background: var(--ye-blue);
    transform: translate(-50%, -50%) scaleX(0) skewX(38deg);
    transform-origin: center;
    opacity: 0;
    z-index: 2;
    transition: all 0.34s ease;
}

/* Second darker diagonal layer */
.ye-navbar .ye-nav-link::after {
    content: "";
    position: absolute;
    width: 74px;
    height: 32px;
    left: 50%;
    top: 50%;
    background: var(--ye-black);
    transform: translate(-50%, -50%) scaleX(0) skewX(-38deg);
    transform-origin: center;
    opacity: 0;
    z-index: 1;
    transition: all 0.34s ease 0.05s;
}

/* Hover effect */
.ye-navbar .ye-nav-link:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1) skewX(38deg);
}

.ye-navbar .ye-nav-link:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1) skewX(-38deg);
}

.ye-navbar .ye-nav-link:hover {
    color: #ffffff;
}

.ye-navbar .ye-nav-link:hover .ye-nav-text {
    color: #ffffff;
}

/* Active menu same as hover effect */
.ye-navbar .ye-nav-link.active {
    color: #ffffff;
}

.ye-navbar .ye-nav-link.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1) skewX(38deg);
}

.ye-navbar .ye-nav-link.active::after {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1) skewX(-38deg);
}

.ye-navbar .ye-nav-link.active .ye-nav-text {
    color: #ffffff;
}

/* Active dropdown arrow same as hover */
.ye-navbar .ye-nav-link.active .ye-nav-arrow {
    background: #ffffff;
    color: var(--ye-blue);
}

/* Keep same effect on hover also */
.ye-navbar .ye-nav-link.active:hover {
    color: #ffffff;
}

.ye-navbar .ye-nav-link.active:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1) skewX(38deg);
}

.ye-navbar .ye-nav-link.active:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1) skewX(-38deg);
}

.ye-navbar .ye-nav-link.active:hover .ye-nav-text {
    color: #ffffff;
}

/* Product / Services Arrow */
.ye-nav-arrow {
    position: relative;
    z-index: 5;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.12);
    color: var(--ye-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.35s ease;
}

.ye-dropdown:hover .ye-nav-arrow,
.ye-nav-link:hover .ye-nav-arrow {
    background: #ffffff;
    color: var(--ye-blue);
    transform: rotate(180deg);
}

.ye-dropdown-link {
    display: inline-flex !important;
}

/* =========================
   Header Button
========================= */

.ye-header-btn {
    background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 104, 176, 0.34);
    transition: all 0.35s ease;
}

.ye-header-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -85px;
    width: 58px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-18deg);
    transition: all 0.6s ease;
}

.ye-header-btn i {
    transition: all 0.35s ease;
}

.ye-header-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0, 104, 176, 0.48);
}

.ye-header-btn:hover::before {
    left: 125%;
}

.ye-header-btn:hover i {
    transform: translateX(4px);
}

/* =========================
   Dropdown
========================= */

.ye-dropdown {
    position: relative;
}

.ye-mega-menu {
    width: 610px;
    padding: 21px;
    border: none;
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 104, 176, 0.42), transparent 28%),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.11), transparent 32%),
        linear-gradient(145deg, #06101c, #020202);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(25px) scale(0.94);
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: all 0.35s ease;
    overflow: visible;
}

.ye-dropdown:hover .ye-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.ye-service-menu {
    width: 670px;
}

/* Dropdown pointer arrow */
.ye-dropdown-pointer {
    position: absolute;
    top: -11px;
    left: 50%;
    width: 24px;
    height: 24px;
    background: #06101c;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 5px 0 0 0;
    box-shadow: -3px -3px 8px rgba(255, 255, 255, 0.04);
    z-index: -1;
}

/* Top gradient line */
.ye-mega-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0068B0, #38A9F5, transparent);
    border-radius: 0 0 20px 20px;
}

/* Dropdown Header */
.ye-dropdown-head {
    padding: 8px 8px 17px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ye-dropdown-head span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.ye-dropdown-head p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    margin: 6px 0 0;
    line-height: 1.5;
}

.ye-dropdown-head>i {
    width: 50px;
    height: 50px;
    background: rgba(0, 104, 176, 0.22);
    color: #ffffff;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Dropdown Cards */
.ye-menu-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.ye-menu-card::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    right: -38px;
    bottom: -38px;
    background: rgba(0, 104, 176, 0.24);
    border-radius: 50%;
    transition: all 0.35s ease;
}

.ye-menu-card::after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translate(15px, -50%);
    opacity: 0;
    color: var(--ye-blue);
    font-size: 18px;
    transition: all 0.35s ease;
}

.ye-menu-card i {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
    color: #ffffff;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex: 0 0 46px;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.ye-menu-card div {
    position: relative;
    z-index: 2;
}

.ye-menu-card h6 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 5px;
}

.ye-menu-card small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

.ye-menu-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 104, 176, 0.23);
    padding-right: 34px;
}

.ye-menu-card:hover::before {
    transform: scale(1.6);
    background: rgba(0, 104, 176, 0.10);
}

.ye-menu-card:hover::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.ye-menu-card:hover h6 {
    color: #101820;
}

.ye-menu-card:hover small {
    color: #5d6874;
}

.ye-menu-card:hover i {
    background: #050505;
    transform: scale(1.08) rotate(-5deg);
}

/* =========================
   Mobile Toggler
========================= */

.ye-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 34px;
    box-shadow: none !important;
}

.ye-toggler span {
    width: 31px;
    height: 3px;
    background: var(--ye-blue);
    display: block;
    margin: 6px 0;
    border-radius: 20px;
    transition: all 0.3s ease;
}



/* =========================
   Fresh Hero Slider - Fixed Overlap
========================= */

.ye-hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #07111D;
}

.yeHeroSwiper {
    width: 100%;
    height: 100%;
}

.ye-hero-slide {
    min-height: calc(100vh - 0px);
    padding-top: 138px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #07111D 0%, #0B1B2A 48%, #003F70 100%);
}

.ye-hero-slide::before,
.ye-hero-slide::after {
    display: none;
}

/* Static right panel */
.ye-hero-bg-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 47%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 104, 176, 0.82), rgba(0, 76, 134, 0.95));
    clip-path: ellipse(78% 82% at 78% 50%);
    z-index: 1;
}

.ye-hero-bg-panel::before {
    content: "";
    position: absolute;
    inset: 58px 45px 58px 40px;
    /* border: 1px solid rgba(255, 255, 255, 0.14); */
    border-radius: 46px;
}

.ye-hero-bg-panel::after {
    content: "";
    position: absolute;
    right: 12%;
    top: 18%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.ye-hero-row {
    min-height: calc(100vh - 208px);
    position: relative;
    z-index: 5;
}

/* Content */
.ye-hero-content {
    max-width: 660px;
    position: relative;
    z-index: 5;
    padding: 20px 0;
}

.ye-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(56, 169, 245, 0.35);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.ye-hero-badge i {
    color: var(--ye-blue-light);
}

.ye-hero-content h1 {
    color: #ffffff;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.ye-hero-content h1 span {
    display: block;
    color: var(--ye-blue-light);
}

.ye-hero-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 34px;
}

/* Buttons */
.ye-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ye-primary-btn,
.ye-outline-btn {
    min-height: 58px;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
}

.ye-primary-btn {
    background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 104, 176, 0.42);
    position: relative;
    overflow: hidden;
}

.ye-primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -90px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-18deg);
    transition: all 0.65s ease;
}

.ye-primary-btn:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(0, 104, 176, 0.52);
}

.ye-primary-btn:hover::before {
    left: 125%;
}

.ye-outline-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.ye-outline-btn:hover {
    color: #ffffff;
    border-color: var(--ye-blue-light);
    background: rgba(56, 169, 245, 0.14);
    transform: translateY(-4px);
}

/* Product Area */
.ye-hero-product-area {
    position: relative;
    z-index: 5;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ye-product-frame {
    width: 450px;
    height: 450px;
    border-radius: 22px;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow:
        0 34px 75px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 72px;
}

.ye-product-frame::before {
    content: "";
    position: absolute;
    left: -70px;
    top: -70px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.ye-product-frame::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
}

.ye-frame-label {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 4;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    padding: 10px 17px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.ye-hero-main-img {
    position: relative;
    z-index: 3;
    max-width: 86%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.42));
}

/* Info Strip - now inside frame and not overlapping arrows */
.ye-info-strip {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 8;
    width: calc(100% - 108px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.ye-info-strip div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ye-info-strip i {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ye-info-strip span {
    color: #101820;
    font-size: 13px;
    font-weight: 900;
}

/* Slider Controls - moved to bottom left, no overlap */
.ye-slider-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    z-index: 30;
    pointer-events: none;
}

.ye-slider-control-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.ye-swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 9px;
    pointer-events: auto;
}

.ye-swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.50);
    opacity: 1;
    transition: all 0.35s ease;
}

.ye-swiper-pagination .swiper-pagination-bullet-active {
    width: 42px;
    background: var(--ye-blue-light);
}

.ye-slider-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.ye-swiper-prev,
.ye-swiper-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.ye-swiper-prev:hover,
.ye-swiper-next:hover {
    background: var(--ye-blue);
    border-color: var(--ye-blue);
    transform: translateY(-4px);
}

/* Slide Animation */
.ye-hero-content {
    opacity: 0;
    transform: translateX(-35px);
    transition: all 0.85s ease;
}

.ye-hero-product-area {
    opacity: 0;
    transform: translateX(35px);
    transition: all 0.85s ease;
}

.swiper-slide-active .ye-hero-content,
.swiper-slide-active .ye-hero-product-area {
    opacity: 1;
    transform: translateX(0);
}

.swiper-slide-active .ye-hero-product-area {
    transition-delay: 0.15s;
}

/* Laptop height fix */
@media (max-height: 820px) and (min-width: 992px) {
    .ye-hero-slide {
        padding-top: 138px;
        padding-bottom: 62px;
    }

    .ye-hero-row {
        min-height: 560px;
    }

    .ye-hero-content h1 {
        font-size: 56px;
    }

    .ye-hero-content p {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .ye-hero-product-area {
        min-height: 485px;
    }

    .ye-product-frame {
        width: 450px;
        height: 450px;
    }

    .ye-hero-main-img {
        max-height: 315px;
    }

    .ye-slider-bottom {
        bottom: 18px;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .ye-hero-content h1 {
        font-size: 52px;
    }

    .ye-product-frame {
        width: 450px;
        height: 450px;
    }

    .ye-hero-main-img {
        max-height: 300px;
    }
}

@media (max-width: 991px) {
    .ye-hero-slide {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 120px;
    }

    .ye-hero-bg-panel {
        width: 100%;
        height: 45%;
        top: auto;
        bottom: 0;
        clip-path: ellipse(85% 70% at 50% 100%);
    }

    .ye-hero-row {
        min-height: auto;
    }

    .ye-hero-content {
        padding-top: 35px;
        text-align: center;
        margin: 0 auto;
    }

    .ye-hero-content h1 {
        font-size: 44px;
    }

    .ye-hero-content p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .ye-hero-actions {
        justify-content: center;
    }

    .ye-hero-product-area {
        min-height: 470px;
        margin-top: 30px;
    }

    .ye-product-frame {
        width: 100%;
        max-width: 450px;
        height: 430px;
    }

    .ye-hero-main-img {
        max-height: 280px;
    }
}

@media (max-width: 575px) {
    .ye-hero-slide {
        padding-bottom: 115px;
    }

    .ye-hero-content h1 {
        font-size: 35px;
    }

    .ye-hero-content p {
        font-size: 15px;
    }

    .ye-primary-btn,
    .ye-outline-btn {
        width: 100%;
        justify-content: center;
    }

    .ye-hero-product-area {
        min-height: 390px;
    }

    .ye-product-frame {
        height: 350px;
        border-radius: 30px;
    }

    .ye-hero-main-img {
        max-height: 220px;
    }

    .ye-info-strip {
        width: calc(100% - 30px);
        bottom: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ye-slider-control-box {
        justify-content: center;
        gap: 20px;
    }

    .ye-swiper-prev,
    .ye-swiper-next {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
}

/* =========================
   Desktop Dropdown Hover
========================= */

@media (min-width: 992px) {
    .ye-dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* =========================
   Responsive
========================= */

@media (max-width: 1199px) {
    .ye-navbar .ye-nav-link {
        font-size: 14px;
        margin: 0 1px;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .ye-logo img {
        max-width: 195px;
    }

    .ye-header-btn {
        padding: 12px 18px;
    }
}

@media (max-width: 991px) {
    .ye-header {
        position: sticky;
    }

    .ye-topbar {
        display: none;
    }

    .ye-navbar,
    .ye-navbar.scrolled {
        min-height: auto;
        padding: 14px 0;
    }

    .ye-logo img,
    .ye-navbar.scrolled .ye-logo img {
        max-width: 185px;
    }

    .navbar-collapse {
        background: #ffffff;
        margin-top: 16px;
        border-radius: 20px;
        padding: 14px;
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
        max-height: 78vh;
        overflow-y: auto;
    }

    .ye-navbar .ye-nav-link,
    .ye-navbar.scrolled .ye-nav-link {
        width: 100%;
        min-height: auto;
        justify-content: space-between;
        padding: 0 !important;
        margin: 0;
        color: #101820;
        overflow: hidden;
        border-radius: 12px;
    }

    .ye-nav-text {
        width: 100%;
        padding: 13px 15px;
        border-radius: 12px;
    }

    .ye-navbar .ye-nav-link::before,
    .ye-navbar .ye-nav-link::after {
        width: 100%;
        height: 100%;
    }

    .ye-navbar .ye-nav-link:hover {
        color: #ffffff;
    }

    .ye-navbar .ye-nav-link:hover .ye-nav-text {
        color: #ffffff;
    }

    .ye-navbar .ye-nav-link.active {
        color: var(--ye-blue);
    }

    .ye-navbar .ye-nav-link.active:hover {
        color: #ffffff;
    }

    .ye-nav-arrow {
        margin-right: 12px;
        flex: 0 0 22px;
    }

    .ye-dropdown:hover .ye-nav-arrow {
        background: rgba(0, 104, 176, 0.12);
        color: var(--ye-blue);
    }

    .ye-dropdown .dropdown-menu.show {
        display: block;
    }

    .ye-mega-menu,
    .ye-service-menu {
        width: 100%;
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        display: none;
        margin: 8px 0 14px;
        padding: 16px;
        border-radius: 20px;
    }

    .ye-dropdown-pointer,
    .ye-mega-menu::before {
        display: none;
    }

    .ye-header-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .ye-demo-hero {
        padding-top: 90px;
        min-height: 620px;
    }

    .ye-demo-content h1 {
        font-size: 44px;
    }

    .ye-demo-content p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {

    .ye-logo img,
    .ye-navbar.scrolled .ye-logo img {
        max-width: 160px;
    }

    .ye-demo-hero {
        min-height: 570px;
    }

    .ye-demo-content h1 {
        font-size: 34px;
    }

    .ye-demo-content p {
        font-size: 15px;
    }

    .ye-hero-btn,
    .ye-hero-call {
        width: 100%;
        justify-content: center;
    }

    .ye-dropdown-head {
        align-items: flex-start;
    }

    .ye-dropdown-head>i {
        display: none;
    }

    .ye-menu-card {
        min-height: auto;
    }
}

/* =========================
   About Us Section
========================= */

.ye-about-section {
  position: relative;
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
  overflow: hidden;
}

.ye-about-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.06);
  left: -220px;
  top: 70px;
}

.ye-about-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.08);
  right: -130px;
  bottom: 80px;
}

.ye-about-section .container {
  position: relative;
  z-index: 3;
}

/* Image Area */
.ye-about-image-area {
  position: relative;
  min-height: 620px;
  padding: 35px 45px 35px 0;
}

.ye-about-shape {
  position: absolute;
  width: 430px;
  height: 500px;
  right: 55px;
  top: 60px;
  background: linear-gradient(145deg, var(--ye-blue), var(--ye-blue-dark));
  border-radius: 42px 130px 42px 42px;
  transform: rotate(-4deg);
  box-shadow: 0 28px 70px rgba(0, 104, 176, 0.22);
}

.ye-about-shape::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 32px 105px 32px 32px;
}

.ye-about-main-img-box {
  position: relative;
  z-index: 3;
  width: 82%;
  height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  border: 10px solid #ffffff;
}

.ye-about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ye-about-experience-card {
  position: absolute;
  z-index: 5;
  right: 18px;
  top: 110px;
  width: 185px;
  padding: 26px 22px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
  border-bottom: 5px solid var(--ye-blue);
}

.ye-about-experience-card h3 {
  color: var(--ye-blue);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 8px;
}

.ye-about-experience-card p {
  color: #101820;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
  margin: 0;
}

.ye-about-small-card {
  position: absolute;
  z-index: 5;
  left: 35px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.ye-about-small-card i {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ye-about-small-card strong {
  display: block;
  color: #101820;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 3px;
}

.ye-about-small-card span {
  color: #63717d;
  font-size: 12px;
  font-weight: 700;
}

/* Content */
.ye-about-content {
  position: relative;
  padding-left: 25px;
}

.ye-section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ye-blue);
  background: rgba(0, 104, 176, 0.08);
  border: 1px solid rgba(0, 104, 176, 0.14);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 22px;
}

.ye-section-subtitle i {
  color: var(--ye-blue);
}

.ye-about-content h2 {
  color: #101820;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.ye-about-content h2 span {
  color: var(--ye-blue);
  display: block;
}

.ye-about-content p {
  color: #5f6d78;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.ye-about-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ye-about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 104, 176, 0.08);
  transition: all 0.35s ease;
}

.ye-about-point:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 104, 176, 0.22);
  box-shadow: 0 18px 42px rgba(0, 104, 176, 0.12);
}

.ye-about-point i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex: 0 0 26px;
  margin-top: 2px;
}

.ye-about-point span {
  color: #25313b;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

/* Bottom */
.ye-about-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.ye-about-btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 104, 176, 0.30);
  transition: all 0.35s ease;
}

.ye-about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85px;
  width: 55px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: all 0.6s ease;
}

.ye-about-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 104, 176, 0.42);
}

.ye-about-btn:hover::before {
  left: 125%;
}



/* Responsive */
@media (max-width: 1199px) {
  .ye-about-content h2 {
    font-size: 42px;
  }

  .ye-about-main-img-box {
    width: 86%;
  }

  .ye-about-shape {
    width: 390px;
  }
}

@media (max-width: 991px) {
  .ye-about-section {
    padding: 85px 0;
  }

  .ye-about-image-area {
    min-height: 560px;
    max-width: 620px;
    margin: 0 auto 35px;
    padding-right: 0;
  }

  .ye-about-main-img-box {
    width: 78%;
    height: 480px;
  }

  .ye-about-shape {
    right: 50px;
    top: 55px;
    width: 390px;
    height: 460px;
  }

  .ye-about-content {
    padding-left: 0;
    text-align: center;
  }

  .ye-about-content h2 {
    font-size: 40px;
  }

  .ye-about-content h2 span {
    display: inline;
  }

  .ye-about-points {
    text-align: left;
  }

  .ye-about-bottom {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ye-about-section {
    padding: 70px 0;
  }

  .ye-about-image-area {
    min-height: auto;
    padding: 0;
    margin-bottom: 35px;
  }

  .ye-about-shape {
    display: none;
  }

  .ye-about-main-img-box {
    width: 100%;
    height: 360px;
    border-radius: 26px;
    border-width: 7px;
  }

  .ye-about-experience-card {
    right: 14px;
    top: 20px;
    width: 145px;
    padding: 18px 15px;
    border-radius: 20px;
  }

  .ye-about-experience-card h3 {
    font-size: 38px;
  }

  .ye-about-experience-card p {
    font-size: 12px;
  }

  .ye-about-small-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .ye-about-content h2 {
    font-size: 32px;
  }

  .ye-about-content p {
    font-size: 15px;
  }

  .ye-about-points {
    grid-template-columns: 1fr;
  }

  .ye-about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   Product Section - Dark Theme
========================= */

.ye-product-section {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(56, 169, 245, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 104, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #07111D 0%, #081726 45%, #0B1D2F 100%);
  overflow: hidden;
}

.ye-product-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.08);
  right: -220px;
  top: 90px;
  filter: blur(10px);
}

.ye-product-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.07);
  left: -160px;
  bottom: 70px;
  filter: blur(10px);
}

.ye-product-section .container {
  position: relative;
  z-index: 3;
}

/* Heading */
.ye-product-heading {
  max-width: 860px;
  margin: 0 auto 58px;
}

.ye-product-section .ye-section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(56, 169, 245, 0.22);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
}

.ye-product-section .ye-section-subtitle i {
  color: var(--ye-blue-light);
}

.ye-product-heading h2 {
  color: #ffffff;
  font-size: 47px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.ye-product-heading h2 span {
  color: var(--ye-blue-light);
  display: block;
}

.ye-product-heading p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 720px;
}

/* Featured Product */
.ye-product-feature-card {
  position: relative;
  min-height: 100%;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(56, 169, 245, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  overflow: hidden;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.ye-product-feature-card::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.ye-product-feature-card::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.ye-feature-icon {
  position: relative;
  z-index: 3;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin-bottom: 28px;
  box-shadow: 0 20px 45px rgba(0, 104, 176, 0.24);
}

.ye-product-feature-card h3 {
  position: relative;
  z-index: 3;
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 18px;
}

.ye-product-feature-card p {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.ye-product-feature-card ul {
  position: relative;
  z-index: 3;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.ye-product-feature-card ul li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ye-product-feature-card ul li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.24);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.ye-product-main-btn {
  position: relative;
  z-index: 3;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 50px;
  background: #ffffff;
  color: var(--ye-blue);
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.35s ease;
}

.ye-product-main-btn:hover {
  color: #ffffff;
  background: var(--ye-blue);
  transform: translateY(-4px);
}

.ye-feature-bg-text {
  position: absolute;
  right: -18px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 160px;
  line-height: 1;
  font-weight: 900;
  z-index: 1;
}

/* Product Cards */
.ye-product-card {
  position: relative;
  height: 100%;
  min-height: 255px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.ye-product-card::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.08);
  right: -52px;
  top: -52px;
  transition: all 0.4s ease;
}

.ye-product-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ye-blue), var(--ye-blue-light));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s ease;
}

.ye-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 169, 245, 0.24);
  box-shadow: 0 28px 65px rgba(0, 104, 176, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.ye-product-card:hover::before {
  transform: scale(1.45);
  background: rgba(56, 169, 245, 0.12);
}

.ye-product-card:hover::after {
  transform: scaleX(1);
}

.ye-product-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.ye-product-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 16px 32px rgba(0, 104, 176, 0.24);
  transition: all 0.35s ease;
}

.ye-product-card:hover .ye-product-icon {
  transform: rotate(-6deg) scale(1.08);
}

.ye-product-card-top span {
  color: rgba(255, 255, 255, 0.10);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.ye-product-card h4 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 13px;
}

.ye-product-card p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.ye-product-card a {
  position: relative;
  z-index: 2;
  color: var(--ye-blue-light);
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.35s ease;
}

.ye-product-card a i {
  transition: all 0.35s ease;
}

.ye-product-card a:hover {
  color: #ffffff;
}

.ye-product-card a:hover i {
  transform: translateX(5px);
}

/* Full Width Product Strip Card */
.ye-product-strip-card {
  position: relative;
  height: 100%;
  min-height: 150px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 104, 176, 0.18), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(56, 169, 245, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: all 0.4s ease;
}

.ye-product-strip-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.12);
  transition: all 0.4s ease;
}

.ye-product-strip-card::after {
  content: "TRANSFORMER";
  position: absolute;
  right: 22px;
  bottom: -10px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
  pointer-events: none;
}

.ye-product-strip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 169, 245, 0.28);
  background:
    linear-gradient(135deg, rgba(0, 104, 176, 0.24), rgba(255, 255, 255, 0.075));
  box-shadow: 0 28px 65px rgba(0, 104, 176, 0.16);
}

.ye-product-strip-card:hover::before {
  transform: scale(1.35);
}

.ye-product-strip-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
}

.ye-product-strip-card h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 9px;
}

.ye-product-strip-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 650px;
}

.ye-product-strip-card a {
  position: relative;
  z-index: 2;
  color: var(--ye-blue-light);
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: all 0.35s ease;
}

.ye-product-strip-card a i {
  transition: all 0.35s ease;
}

.ye-product-strip-card a:hover {
  color: #ffffff;
}

.ye-product-strip-card a:hover i {
  transform: translateX(5px);
}

.ye-product-strip-card:hover .ye-product-icon {
  transform: rotate(-6deg) scale(1.08);
}

/* Responsive */
@media (max-width: 767px) {
  .ye-product-strip-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .ye-product-strip-left {
    align-items: flex-start;
  }

  .ye-product-strip-card a {
    margin-left: 84px;
  }
}

@media (max-width: 575px) {
  .ye-product-strip-card {
    padding: 24px;
  }

  .ye-product-strip-left {
    flex-direction: column;
    gap: 18px;
  }

  .ye-product-strip-card a {
    margin-left: 0;
  }

  .ye-product-strip-card::after {
    font-size: 38px;
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .ye-product-heading h2 {
    font-size: 42px;
  }

  .ye-product-feature-card {
    padding: 34px;
  }

  .ye-feature-bg-text {
    font-size: 130px;
  }
}

@media (max-width: 991px) {
  .ye-product-section {
    padding: 85px 0;
  }

  .ye-product-heading {
    margin-bottom: 42px;
  }

  .ye-product-feature-card {
    min-height: auto;
  }

  .ye-product-feature-card h3 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .ye-product-section {
    padding: 70px 0;
  }

  .ye-product-heading h2 {
    font-size: 32px;
  }

  .ye-product-heading p {
    font-size: 15px;
  }

  .ye-product-feature-card {
    padding: 28px;
    border-radius: 26px;
  }

  .ye-product-feature-card h3 {
    font-size: 36px;
  }

  .ye-product-card {
    min-height: auto;
    padding: 24px;
  }

  .ye-product-main-btn {
    width: 100%;
    justify-content: center;
  }

  .ye-feature-bg-text {
    font-size: 95px;
  }
}

/* =========================
   Services Section - Unique Timeline Design
========================= */

.ye-services-section {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at left top, rgba(0, 104, 176, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  overflow: hidden;
}

.ye-services-section::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.05);
  right: -240px;
  top: 160px;
}

.ye-services-section::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.08);
  left: -120px;
  bottom: 90px;
}

.ye-services-section .container {
  position: relative;
  z-index: 3;
}

/* Heading */
.ye-services-heading {
  max-width: 860px;
  margin: 0 auto 35px;
}

.ye-services-heading h2 {
  color: #101820;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.ye-services-heading h2 span {
  color: var(--ye-blue);
  display: block;
}

.ye-services-heading p {
  color: #60707d;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

/* Left Visual */
.ye-service-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ye-service-visual::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  opacity: 0.12;
  left: 10px;
  top: 75px;
}

.ye-service-visual::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 45px;
  background: rgba(0, 104, 176, 0.08);
  right: 30px;
  bottom: 80px;
  transform: rotate(18deg);
}

.ye-service-panel {
  position: relative;
  z-index: 3;
  width: 390px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, #07111D, #0B1D2F);
  box-shadow: 0 32px 75px rgba(0, 28, 52, 0.28);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ye-panel-top {
  height: 58px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}

.ye-panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ye-panel-top span:nth-child(1) {
  background: var(--ye-blue-light);
}

.ye-panel-content {
  padding: 36px;
  position: relative;
}

.ye-panel-content::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.12);
}

.ye-panel-icon {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 25px;
  box-shadow: 0 18px 42px rgba(0, 104, 176, 0.32);
}

.ye-panel-content h3 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
}

.ye-panel-content p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.ye-panel-meter {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.ye-meter-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ye-meter-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.ye-meter-row strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.ye-meter-bar {
  height: 8px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.ye-meter-bar span {
  display: block;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--ye-blue), var(--ye-blue-light));
}


/* Timeline */
.ye-service-timeline {
  position: relative;
  padding-left: 55px;
}

.ye-service-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0, 104, 176, 0.30), transparent);
}

.ye-service-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 42px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  /* margin-bottom: 20px; */
  border-radius: 28px;
  background: transparent;
  transition: all 0.4s ease;
}

.ye-service-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 104, 176, 0.10);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  transform: scaleX(0.92);
  transform-origin: right;
  opacity: 0;
  transition: all 0.4s ease;
}

.ye-service-step::after {
  content: "";
  position: absolute;
  left: -42px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--ye-blue);
  transform: translateY(-50%);
  box-shadow: 0 0 0 7px rgba(0, 104, 176, 0.08);
  transition: all 0.35s ease;
}

.ye-service-step:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.ye-service-step:hover::after {
  background: var(--ye-blue);
  box-shadow: 0 0 0 10px rgba(0, 104, 176, 0.12);
}

.ye-step-number {
  display: none;
}

.ye-step-icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: rgba(0, 104, 176, 0.08);
  color: var(--ye-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: all 0.35s ease;
}

.ye-service-step:hover .ye-step-icon {
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 16px 34px rgba(0, 104, 176, 0.22);
}

.ye-step-content {
  position: relative;
  z-index: 2;
}

.ye-step-content h4 {
  color: #101820;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 7px;
}

.ye-step-content p {
  color: #60707d;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.ye-step-arrow {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.08);
  color: var(--ye-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.35s ease;
}

.ye-service-step:hover .ye-step-arrow {
  background: var(--ye-blue);
  color: #ffffff;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1199px) {
  .ye-services-heading h2 {
    font-size: 42px;
  }

  .ye-service-step {
    grid-template-columns:  64px 1fr 38px;
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .ye-services-section {
    padding: 85px 0;
  }

  .ye-services-heading {
    margin-bottom: 45px;
  }

  .ye-service-visual {
    min-height: 560px;
    margin-bottom: 45px;
  }

  .ye-service-timeline {
    padding-left: 48px;
  }
}

@media (max-width: 575px) {
  .ye-services-section {
    padding: 70px 0;
  }

  .ye-services-heading h2 {
    font-size: 32px;
  }

  .ye-services-heading p {
    font-size: 15px;
  }

  .ye-service-visual {
    min-height: auto;
    margin-bottom: 40px;
  }

  .ye-service-panel {
    width: 100%;
  }

  .ye-panel-content {
    padding: 28px;
  }

  

  .ye-service-timeline {
    padding-left: 0;
  }

  .ye-service-timeline::before,
  .ye-service-step::after {
    display: none;
  }

  .ye-service-step {
    grid-template-columns: 1fr;
    padding: 22px;
    margin-bottom: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 104, 176, 0.10);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
  }

  .ye-service-step::before {
    display: none;
  }

  .ye-step-number {
    text-align: left;
  }

  .ye-step-arrow {
    display: none;
  }
}

/* =========================
   Our Brands Section
========================= */

.ye-brand-section {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(56, 169, 245, 0.12), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(0, 104, 176, 0.16), transparent 30%),
    linear-gradient(180deg, #07111D 0%, #06101C 48%, #0B1D2F 100%);
  overflow: hidden;
}

.ye-brand-section::before {
  content: "";
  position: absolute;
  left: -220px;
  top: 70px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.08);
  filter: blur(8px);
}

.ye-brand-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: 60px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.08);
  filter: blur(8px);
}

.ye-brand-section .container {
  position: relative;
  z-index: 3;
}

/* Heading */
.ye-brand-heading {
  max-width: 780px;
  margin: 0 auto 55px;
}

.ye-dark-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(56, 169, 245, 0.25);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.ye-dark-subtitle i {
  color: var(--ye-blue-light);
}

.ye-brand-heading h2 {
  color: #ffffff;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.ye-brand-heading p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* Slider Wrap */
.ye-brand-slider-wrap {
  position: relative;
  z-index: 3;
  margin-top: 15px;
}

.ye-brand-slider-wrap::before,
.ye-brand-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 190px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.ye-brand-slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #07111D, transparent);
}

.ye-brand-slider-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #07111D, transparent);
}

.ye-brand-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
}

.ye-brand-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: yeBrandMove 26s linear infinite;
}

.ye-brand-slider:hover .ye-brand-track {
  animation-play-state: paused;
}

@keyframes yeBrandMove {
  0% {
    transform: translateX(0);
  }

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

/* Logo Card */
.ye-brand-logo {
  width: 210px;
  height: 116px;
  border-radius: 26px;
  /* background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)); */
    background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
}

.ye-brand-logo::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 0;
  width: 58px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  transition: all 0.65s ease;
}

.ye-brand-logo::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.10);
  transition: all 0.35s ease;
}

.ye-brand-logo:hover {
  transform: translateY(-7px);
  border-color: rgba(56, 169, 245, 0.28);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 65px rgba(0, 104, 176, 0.18);
}

.ye-brand-logo:hover::before {
  left: 125%;
}

.ye-brand-logo:hover::after {
  transform: scale(1.45);
}

.ye-brand-logo img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  opacity: 0.82;
  transition: all 0.35s ease;
  filter: none;
}

.ye-brand-logo:hover img {
    filter: brightness(0) invert(1) grayscale(1);
  opacity: 1;
  transform: scale(1.04);
}



/* Responsive */
@media (max-width: 1199px) {
  .ye-brand-heading h2 {
    font-size: 42px;
  }

  .ye-brand-logo {
    width: 190px;
    height: 108px;
  }
}

@media (max-width: 991px) {
  .ye-brand-section {
    padding: 85px 0;
  }

  .ye-brand-heading {
    margin-bottom: 42px;
  }

  .ye-brand-slider-wrap::before,
  .ye-brand-slider-wrap::after {
    width: 80px;
  }
}

@media (max-width: 575px) {
  .ye-brand-section {
    padding: 70px 0;
  }

  .ye-brand-heading h2 {
    font-size: 32px;
  }

  .ye-brand-heading p {
    font-size: 15px;
  }

  .ye-brand-logo {
    width: 165px;
    height: 96px;
    padding: 20px;
  }

  .ye-brand-logo img {
    max-height: 52px;
  }

  .ye-brand-track {
    gap: 18px;
    animation-duration: 20s;
  }
}

/* =========================
   Related Blog Section
========================= */

.ye-blog-section {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, rgba(0, 104, 176, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.ye-blog-section::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.055);
  left: -210px;
  top: 95px;
}

.ye-blog-section::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.08);
  right: -130px;
  bottom: 70px;
}

.ye-blog-section .container {
  position: relative;
  z-index: 3;
}

.ye-blog-heading-row {
  margin-bottom: 52px;
}

.ye-blog-heading h2 {
  color: #101820;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.ye-blog-heading h2 span {
  display: block;
  color: var(--ye-blue);
}

.ye-blog-heading p {
  color: #60707d;
  font-size: 16px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0;
}

.ye-blog-heading-btn {
  display: flex;
  justify-content: flex-end;
}

.ye-blog-view-btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 38px rgba(0, 104, 176, 0.28);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.ye-blog-view-btn::before {
  content: "";
  position: absolute;
  left: -85px;
  top: 0;
  width: 55px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: all 0.6s ease;
}

.ye-blog-view-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 104, 176, 0.40);
}

.ye-blog-view-btn:hover::before {
  left: 125%;
}

/* Blog Card */
.ye-blog-card {
  position: relative;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 104, 176, 0.10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.42s ease;
}

.ye-blog-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ye-blue), var(--ye-blue-light));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.42s ease;
  z-index: 4;
}

.ye-blog-card:hover {
  transform: translateY(-9px);
  border-color: rgba(0, 104, 176, 0.22);
  box-shadow: 0 30px 70px rgba(0, 104, 176, 0.13);
}

.ye-blog-card:hover::before {
  transform: scaleX(1);
}

/* Image */
.ye-blog-img {
  position: relative;
  height: 245px;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}

.ye-blog-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.52));
  z-index: 2;
}

.ye-blog-img::after {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.22);
  z-index: 2;
  transition: all 0.42s ease;
}

.ye-blog-card:hover .ye-blog-img::after {
  transform: scale(1.35);
}

.ye-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.55s ease;
}

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

.ye-blog-category {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  padding: 9px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 104, 176, 0.28);
}

/* Content */
.ye-blog-content {
  position: relative;
  padding: 28px;
}

.ye-blog-content::before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.05);
  transition: all 0.4s ease;
}

.ye-blog-card:hover .ye-blog-content::before {
  transform: scale(1.4);
}

.ye-blog-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.ye-blog-meta span {
  color: #667582;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ye-blog-meta i {
  color: var(--ye-blue);
}

.ye-blog-content h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: 22px;
}

.ye-blog-content h3 a {
  color: #101820;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
  transition: all 0.35s ease;
}

.ye-blog-content h3 a:hover {
  color: var(--ye-blue);
}

.ye-blog-content p {
  position: relative;
  z-index: 2;
  color: #60707d;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.ye-blog-link {
  position: relative;
  z-index: 2;
  color: var(--ye-blue);
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.35s ease;
}

.ye-blog-link i {
  transition: all 0.35s ease;
}

.ye-blog-link:hover {
  color: var(--ye-blue-dark);
}

.ye-blog-link:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1199px) {
  .ye-blog-heading h2 {
    font-size: 42px;
  }

  .ye-blog-content h3 a {
    font-size: 21px;
  }
}

@media (max-width: 991px) {
  .ye-blog-section {
    padding: 85px 0;
  }

  .ye-blog-heading-row {
    margin-bottom: 40px;
  }

  .ye-blog-heading {
    text-align: center;
  }

  .ye-blog-heading p {
    margin: 0 auto;
  }

  .ye-blog-heading-btn {
    justify-content: center;
    margin-top: 26px;
  }
}

@media (max-width: 575px) {
  .ye-blog-section {
    padding: 70px 0;
  }

  .ye-blog-heading h2 {
    font-size: 32px;
  }

  .ye-blog-heading p {
    font-size: 15px;
  }

  .ye-blog-view-btn {
    width: 100%;
    justify-content: center;
  }

  .ye-blog-img {
    height: 220px;
  }

  .ye-blog-content {
    padding: 24px;
  }

  .ye-blog-content h3 a {
    font-size: 20px;
  }
}

/* =========================
   Footer Section
========================= */

.ye-footer {
  position: relative;
  background: #07111D;
  overflow: hidden;
}

/* CTA */
.ye-footer-cta {
  position: relative;
  z-index: 5;
  margin-bottom: -86px;
  padding: 42px 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(56, 169, 245, 0.22), transparent 34%),
    linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  box-shadow: 0 30px 75px rgba(0, 104, 176, 0.30);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
}

.ye-footer-cta::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -95px;
  top: -115px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.ye-footer-cta::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.ye-footer-cta-content {
  position: relative;
  z-index: 2;
}

.ye-footer-cta-content span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 12px;
}

.ye-footer-cta-content span i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ye-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ye-footer-cta-content h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 900;
  max-width: 680px;
  margin: 0;
}

.ye-footer-cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.ye-footer-cta-btn,
.ye-footer-call-btn {
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.35s ease;
}

.ye-footer-cta-btn {
  background: #ffffff;
  color: var(--ye-blue);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.ye-footer-cta-btn:hover {
  color: #ffffff;
  background: #07111D;
  transform: translateY(-4px);
}

.ye-footer-call-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.ye-footer-call-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-4px);
}

/* Main Footer */
.ye-footer-main {
  position: relative;
  padding: 175px 0 48px;
  background:
    radial-gradient(circle at 12% 30%, rgba(56, 169, 245, 0.10), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(0, 104, 176, 0.14), transparent 30%),
    linear-gradient(180deg, #07111D 0%, #06101C 52%, #03080E 100%);
}

.ye-footer-main::before {
  content: "";
  position: absolute;
  left: -190px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.08);
}

.ye-footer-main::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 130px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.06);
}

.ye-footer-main .container {
  position: relative;
  z-index: 3;
}

.ye-footer-widget {
  position: relative;
  height: 100%;
}

.ye-footer-logo {
  display: inline-block;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.ye-footer-logo img {
  max-width: 205px;
  height: auto;
}

.ye-footer-about p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 390px;
}

.ye-footer-widget h3 {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 13px;
}

.ye-footer-widget h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--ye-blue), var(--ye-blue-light));
}

.ye-footer-social {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ye-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.ye-footer-social a:hover {
  background: var(--ye-blue);
  color: #ffffff;
  transform: translateY(-5px);
}

/* Footer Links */
.ye-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ye-footer-links li {
  margin-bottom: 13px;
}

.ye-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.35s ease;
}

.ye-footer-links a i {
  color: var(--ye-blue-light);
  transition: all 0.35s ease;
}

.ye-footer-links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.ye-footer-links a:hover i {
  color: #ffffff;
}

/* Contact */
.ye-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.ye-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.ye-footer-contact-item > i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(0, 104, 176, 0.20);
  color: var(--ye-blue-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex: 0 0 42px;
}

.ye-footer-contact-item span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ye-footer-contact-item a,
.ye-footer-contact-item p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  margin: 0;
  word-break: break-word;
  transition: all 0.35s ease;
}

.ye-footer-contact-item a:hover {
  color: var(--ye-blue-light);
}

/* Services Strip */
.ye-footer-service-strip {
  margin-top: 48px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
}

.ye-footer-service-strip a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.055);
  transition: all 0.35s ease;
}

.ye-footer-service-strip a:hover {
  color: #ffffff;
  background: var(--ye-blue);
  transform: translateY(-3px);
}

/* Bottom */
.ye-footer-bottom {
  position: relative;
  background: #02060A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.ye-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ye-footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.ye-footer-bottom a,
.ye-footer-bottom span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.ye-footer-bottom a:hover {
  color: var(--ye-blue-light);
}

/* Responsive */
@media (max-width: 1199px) {
  .ye-footer-cta {
    padding: 36px;
  }

  .ye-footer-cta-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .ye-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: -74px;
  }

  .ye-footer-main {
    padding-top: 150px;
  }

  .ye-footer-cta-buttons {
    width: 100%;
  }

  .ye-footer-cta-btn,
  .ye-footer-call-btn {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ye-footer-cta {
    padding: 28px;
    border-radius: 26px;
  }

  .ye-footer-cta-content h2 {
    font-size: 25px;
  }

  .ye-footer-cta-buttons,
  .ye-footer-cta-btn,
  .ye-footer-call-btn {
    width: 100%;
  }

  .ye-footer-main {
    padding-top: 135px;
    padding-bottom: 38px;
  }

  .ye-footer-logo img {
    max-width: 175px;
  }

  .ye-footer-widget h3 {
    margin-bottom: 20px;
  }

  .ye-footer-service-strip {
    justify-content: flex-start;
    padding: 18px;
  }

  .ye-footer-service-strip a {
    width: 100%;
    text-align: center;
  }

  .ye-footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* =========================
   Industries We Serve Section
========================= */

.ye-industry-section {
  position: relative;
  padding: 0px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(0, 104, 176, 0.06), transparent 32%),
    radial-gradient(circle at bottom right, rgba(56, 169, 245, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  overflow: hidden;
}

.ye-industry-section::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.05);
  left: -220px;
  top: 80px;
}

.ye-industry-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(56, 169, 245, 0.08);
  right: -150px;
  bottom: 60px;
}

.ye-industry-section .container {
  position: relative;
  z-index: 3;
}

.ye-industry-heading {
  max-width: 850px;
  margin: 0 auto 58px;
}

.ye-industry-heading h2 {
  color: #101820;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.ye-industry-heading h2 span {
  color: var(--ye-blue);
  display: block;
}

.ye-industry-heading p {
  color: #60707d;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

/* Main Wrap */
.ye-industry-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  background: #ffffff;
  border-radius: 34px;
  border: 1px solid rgba(0, 104, 176, 0.10);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.ye-industry-wrap::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--ye-blue), var(--ye-blue-light), transparent);
  z-index: 4;
}

.ye-industry-card {
  position: relative;
  min-height: 245px;
  padding: 34px 18px;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.4s ease;
}

.ye-industry-card:not(:last-child) {
  border-right: 1px solid rgba(0, 104, 176, 0.10);
}

.ye-industry-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.07);
  transform: translateX(-50%) scale(0.7);
  opacity: 0;
  transition: all 0.4s ease;
}

.ye-industry-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(0, 104, 176, 0);
  transition: all 0.4s ease;
  pointer-events: none;
}

.ye-industry-card:hover {
  background:
    radial-gradient(circle at top center, rgba(0, 104, 176, 0.10), transparent 45%),
    #ffffff;
  transform: translateY(-6px);
  z-index: 3;
  box-shadow: 0 24px 55px rgba(0, 104, 176, 0.12);
}

.ye-industry-card:hover::before {
  top: -45px;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.ye-industry-card:hover::after {
  border-color: rgba(0, 104, 176, 0.12);
}

.ye-industry-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(0, 104, 176, 0.08);
  color: var(--ye-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.ye-industry-card:hover .ye-industry-icon {
  background: linear-gradient(135deg, var(--ye-blue), var(--ye-blue-dark));
  color: #ffffff;
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 16px 34px rgba(0, 104, 176, 0.24);
}

.ye-industry-card h3 {
  position: relative;
  z-index: 2;
  color: #101820;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 11px;
}

.ye-industry-card p {
  position: relative;
  z-index: 2;
  color: #60707d;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .ye-industry-heading h2 {
    font-size: 42px;
  }

  .ye-industry-wrap {
    grid-template-columns: repeat(4, 1fr);
  }

  .ye-industry-card {
    border-bottom: 1px solid rgba(0, 104, 176, 0.10);
  }

  .ye-industry-card:nth-child(4n) {
    border-right: none;
  }
}

@media (max-width: 991px) {
  .ye-industry-section {
    padding: 85px 0;
  }

  .ye-industry-heading {
    margin-bottom: 42px;
  }

  .ye-industry-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .ye-industry-card:nth-child(2n) {
    border-right: none;
  }

  .ye-industry-card:nth-child(4n) {
    border-right: none;
  }
}

@media (max-width: 575px) {
  .ye-industry-section {
    padding: 70px 0;
  }

  .ye-industry-heading h2 {
    font-size: 32px;
  }

  .ye-industry-heading p {
    font-size: 15px;
  }

  .ye-industry-wrap {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .ye-industry-card {
    min-height: auto;
    padding: 28px 22px;
    border-right: none !important;
  }

  .ye-industry-card:not(:last-child) {
    border-bottom: 1px solid rgba(0, 104, 176, 0.10);
  }
}

/* =========================
   Inner Page Breadcrumb With BG Image
========================= */

.ye-breadcrumb-section {
  position: relative;
  margin: 140px 0 15px;
  padding: 100px;
  background-image:
    linear-gradient(135deg, rgba(7, 17, 29, 0.88), rgba(16, 24, 32, 0.78)),
    url("../images/breadcrumb-2.png");
  background-size: cover;
  /* background-position: center center; */
  background-repeat: no-repeat;
  overflow: hidden;
}

.ye-breadcrumb-section::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 70px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(0, 104, 176, 0.08);
  filter: blur(8px);
}

.ye-breadcrumb-section::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
}



.ye-breadcrumb-section .container {
  position: relative;
  z-index: 3;
}

.ye-breadcrumb-content {
  max-width: 760px;
}

.ye-breadcrumb-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.ye-breadcrumb-tag i {
  color: var(--ye-blue-light);
}

.ye-breadcrumb-content h1 {
  color: #ffffff;
  font-size: 62px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 22px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.ye-breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  margin: 0;
  list-style: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.ye-breadcrumb-list li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ye-breadcrumb-list li a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.35s ease;
}

.ye-breadcrumb-list li a i {
  color: var(--ye-blue-light);
}

.ye-breadcrumb-list li a:hover {
  color: var(--ye-blue-light);
}

.ye-breadcrumb-list li:last-child {
  color: var(--ye-blue-light);
}

/* Responsive */
@media (max-width: 991px) {
  .ye-breadcrumb-section {
    padding: 145px 0 80px;
    background-position: center center;
  }

  .ye-breadcrumb-content {
    text-align: start;
    margin: 0 auto;
  }

  .ye-breadcrumb-content h1 {
    font-size: 48px;
  }

  .ye-breadcrumb-list {
    justify-content: center;
  }

  
}

@media (max-width: 575px) {
  .ye-breadcrumb-section {
    padding: 20px 0 20px !important;
    background-size: cover;
    background-position: center center;
    margin: 0px !important;
  }

  .ye-breadcrumb-content h1 {
    font-size: 30px;
  }

  .ye-breadcrumb-tag {
    font-size: 9px;
    padding: 9px 15px;
  }

  .ye-breadcrumb-list {
    padding: 11px 14px;
    gap: 9px;
    flex-wrap: wrap;
    border-radius: 18px;
  }

  .ye-breadcrumb-list li {
    font-size: 10px;
  }

  .ye-breadcrumb-section::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  display: none !important;
}
}

/* =========================================
   VISION & MISSION — COMPLETE DARK SECTION
========================================= */

.ye-vm-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(0, 132, 255, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 80%,
            rgba(0, 174, 255, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #03101c 0%,
            #072033 48%,
            #020b13 100%
        );
}

.ye-vm-section .container {
    position: relative;
    z-index: 5;
}

/* Background grid */
.ye-vm-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.ye-vm-glow-one {
    top: -160px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: rgba(0, 126, 255, 0.16);
}

.ye-vm-glow-two {
    right: -180px;
    bottom: -190px;
    width: 380px;
    height: 380px;
    background: rgba(0, 174, 255, 0.11);
}

/* Section heading */

.ye-vm-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.ye-vm-heading .ye-section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 17px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.07);
}

.ye-vm-heading .ye-section-subtitle i {
    color: #37adff;
}

.ye-vm-heading h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1px;
}

.ye-vm-heading h2 span {
    color: #35adff;
}

.ye-vm-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(230, 240, 248, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

/* Main layout */

.ye-vm-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

/* Connection line */

.ye-vm-connection {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    z-index: 1;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(53, 173, 255, 0.30),
        #35adff,
        rgba(53, 173, 255, 0.30),
        transparent
    );
}

.ye-vm-energy-dot {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 9px;
    height: 9px;
    border: 2px solid #35adff;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 0 0 5px rgba(53, 173, 255, 0.12),
        0 0 18px rgba(53, 173, 255, 0.7);
    transform: translateY(-50%);
    animation: yeVmEnergyMove 4.5s linear infinite;
}

.ye-dot-two {
    animation-delay: 1.5s;
}

.ye-dot-three {
    animation-delay: 3s;
}

@keyframes yeVmEnergyMove {
    0% {
        left: 5%;
        opacity: 0;
    }

    15%,
    85% {
        opacity: 1;
    }

    100% {
        left: 95%;
        opacity: 0;
    }
}

/* Cards */

.ye-vm-card {
    position: relative;
    z-index: 2;
    min-height: 445px;
    padding: 38px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.ye-vm-card:hover {
    transform: translateY(-9px);
    border-color: rgba(53, 173, 255, 0.45);
    box-shadow:
        0 38px 80px rgba(0, 0, 0, 0.38),
        0 0 30px rgba(53, 173, 255, 0.10);
}

.ye-vm-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(0, 126, 255, 0.12),
        transparent 68%
    );
}

.ye-vm-vision {
    border-top-left-radius: 65px;
}

.ye-vm-vision::before {
    top: -90px;
    right: -70px;
}

.ye-vm-mission {
    border-bottom-right-radius: 65px;
}

.ye-vm-mission::before {
    left: -70px;
    bottom: -90px;
}

/* Card number */

.ye-vm-card-number {
    position: absolute;
    top: 20px;
    right: 27px;
    color: rgba(0, 104, 176, 0.08);
    font-size: 74px;
    line-height: 1;
    font-weight: 900;
}

/* Icon */

.ye-vm-icon-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 27px;
    color: #ffffff;
    font-size: 27px;
    border-radius: 22px;
    background: linear-gradient(135deg, #087acb, #32b2ff);
    box-shadow: 0 15px 30px rgba(0, 104, 176, 0.28);
    transform: rotate(-6deg);
}

.ye-vm-icon-box i {
    transform: rotate(6deg);
}

.ye-vm-mission .ye-vm-icon-box {
    background: linear-gradient(135deg, #071b2e, #087acb);
}

/* Card content */

.ye-vm-small-title {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 10px;
    color: #087acb;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ye-vm-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 28px;
    line-height: 1.32;
    font-weight: 900;
}

.ye-vm-card h3 span {
    color: #087acb;
}

.ye-vm-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #667788;
    font-size: 16px;
    line-height: 1.8;
}

/* Footer badges */

.ye-vm-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(11, 41, 65, 0.09);
}

.ye-vm-card-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    color: #20384c;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50px;
    background: #f0f7fc;
}

.ye-vm-card-footer span i {
    color: #087acb;
}

/* Center energy core */

.ye-vm-center-core {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 115px;
    margin: auto;
}

.ye-vm-core-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    color: #ffffff;
    font-size: 29px;
    border: 8px solid #062033;
    border-radius: 50%;
    background: linear-gradient(135deg, #052844, #087acb, #36b4ff);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.5),
        0 0 0 9px rgba(53, 173, 255, 0.10),
        0 0 30px rgba(53, 173, 255, 0.30);
}

.ye-vm-core-ring {
    position: absolute;
    border: 1px solid rgba(60, 176, 255, 0.35);
    border-radius: 50%;
    animation: yeVmCorePulse 3s ease-in-out infinite;
}

.ye-ring-one {
    width: 105px;
    height: 105px;
}

.ye-ring-two {
    width: 130px;
    height: 130px;
    animation-delay: 1.2s;
}

@keyframes yeVmCorePulse {
    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.3;
    }

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

/* Tablet */

@media (max-width: 991px) {
    .ye-vm-section {
        padding: 85px 0;
    }

    .ye-vm-heading {
        margin-bottom: 45px;
    }

    .ye-vm-heading h2 {
        font-size: 38px;
    }

    .ye-vm-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
        gap: 28px;
    }

    .ye-vm-vision {
        order: 1;
    }

    .ye-vm-center-core {
        order: 2;
    }

    .ye-vm-mission {
        order: 3;
    }

    .ye-vm-card {
        min-height: auto;
    }

    .ye-vm-connection {
        top: 10%;
        bottom: 10%;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(
            to bottom,
            transparent,
            rgba(53, 173, 255, 0.3),
            #35adff,
            rgba(53, 173, 255, 0.3),
            transparent
        );
    }

    .ye-vm-energy-dot {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        animation: yeVmEnergyVertical 4.5s linear infinite;
    }

    @keyframes yeVmEnergyVertical {
        0% {
            top: 5%;
            opacity: 0;
        }

        15%,
        85% {
            opacity: 1;
        }

        100% {
            top: 95%;
            opacity: 0;
        }
    }
}

/* Mobile */

@media (max-width: 575px) {
    .ye-vm-section {
        padding: 70px 0;
    }

    .ye-vm-heading h2 {
        font-size: 32px;
    }

    .ye-vm-heading p {
        font-size: 15px;
    }

    .ye-vm-card {
        padding: 29px 22px;
        border-radius: 22px;
    }

    .ye-vm-vision {
        border-top-left-radius: 45px;
    }

    .ye-vm-mission {
        border-bottom-right-radius: 45px;
    }

    .ye-vm-card-number {
        right: 20px;
        font-size: 58px;
    }

    .ye-vm-icon-box {
        width: 62px;
        height: 62px;
        font-size: 23px;
        border-radius: 18px;
    }

    .ye-vm-card h3 {
        font-size: 23px;
    }

    .ye-vm-card p {
        font-size: 15px;
    }

    .ye-vm-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   Why Choose Us Section
========================================= */

.ye-why-section {
    position: relative;
    padding: 60px 0;
    background:
        linear-gradient(180deg, #f7fbff 0%, #ffffff 52%, #f4f9fe 100%);
    overflow: hidden;
}

.ye-why-section .container {
    position: relative;
    z-index: 2;
}

/* Background Shapes */

.ye-why-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ye-why-shape-one {
    width: 340px;
    height: 340px;
    left: -130px;
    top: 60px;
    background: rgba(0, 104, 176, 0.06);
}

.ye-why-shape-two {
    width: 280px;
    height: 280px;
    right: -100px;
    bottom: 50px;
    background: rgba(0, 104, 176, 0.05);
}

/* Left Content */

.ye-why-content {
    max-width: 470px;
}

.ye-why-content .ye-section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.ye-why-content h2 {
    margin: 0 0 20px;
    color: #0b1d2f;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1px;
}

.ye-why-content h2 span {
    color: var(--ye-blue);
}

.ye-why-content > p {
    margin: 0 0 28px;
    color: #667788;
    font-size: 16px;
    line-height: 1.9;
}

/* Highlight Box */

.ye-why-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 104, 176, 0.10);
    box-shadow: 0 20px 45px rgba(12, 45, 74, 0.08);
}

.ye-why-highlight-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    font-size: 22px;
    background: linear-gradient(135deg, var(--ye-blue), #1fa3ff);
    box-shadow: 0 14px 25px rgba(0, 104, 176, 0.22);
}

.ye-why-highlight-text h4 {
    margin: 0 0 8px;
    color: #0b1d2f;
    font-size: 20px;
    font-weight: 800;
}

.ye-why-highlight-text p {
    margin: 0;
    color: #667788;
    font-size: 15px;
    line-height: 1.8;
}

/* Right Card Layout */

.ye-why-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

/* Cards */

.ye-why-card {
    position: relative;
    padding: 30px 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 104, 176, 0.10);
    box-shadow:
        0 18px 45px rgba(12, 45, 74, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.ye-why-card::before {
    content: "";
    position: absolute;
    top: -65px;
    right: -65px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 104, 176, 0.09), transparent 70%);
    pointer-events: none;
}

.ye-why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 104, 176, 0.22);
    box-shadow:
        0 28px 55px rgba(12, 45, 74, 0.14),
        0 8px 22px rgba(0, 104, 176, 0.08);
}

.ye-why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ye-why-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #ffffff;
    font-size: 24px;
    background: linear-gradient(135deg, #0a2340, var(--ye-blue));
    box-shadow: 0 14px 25px rgba(0, 104, 176, 0.22);
}

.ye-why-number {
    color: rgba(0, 104, 176, 0.12);
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
}

.ye-why-card h3 {
    margin: 0 0 14px;
    color: #0b1d2f;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
}

.ye-why-card p {
    margin: 0;
    color: #667788;
    font-size: 15px;
    line-height: 1.9;
}

/* Variation for visual interest */

.ye-why-card-large {
    min-height: 255px;
}

.ye-why-card-offset {
    margin-top: 35px;
}

.ye-why-card-offset-down {
    margin-top: -35px;
}

/* Responsive */

@media (max-width: 1199px) {
    .ye-why-content h2 {
        font-size: 40px;
    }

    .ye-why-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .ye-why-section {
        padding: 85px 0;
    }

    .ye-why-content {
        max-width: 100%;
    }

    .ye-why-content h2 {
        font-size: 36px;
    }

    .ye-why-cards {
        margin-top: 10px;
    }

    .ye-why-card-offset,
    .ye-why-card-offset-down {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .ye-why-cards {
        grid-template-columns: 1fr;
    }

    .ye-why-card-large {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .ye-why-section {
        padding: 70px 0;
    }

    .ye-why-content h2 {
        font-size: 31px;
    }

    .ye-why-highlight {
        padding: 20px;
        border-radius: 20px;
    }

    .ye-why-highlight-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 16px;
    }

    .ye-why-highlight-text h4 {
        font-size: 18px;
    }

    .ye-why-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .ye-why-icon {
        width: 56px;
        height: 56px;
        font-size: 21px;
        border-radius: 18px;
    }

    .ye-why-card h3 {
        font-size: 20px;
    }

    .ye-why-number {
        font-size: 40px;
    }
}

/* =========================================
   Contact Page Main Section
========================================= */

.ye-contact-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 18%,
            rgba(0, 119, 204, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(0, 167, 255, 0.08),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #f2f8fd 0%,
            #ffffff 46%,
            #edf6fc 100%
        );
}

.ye-contact-section .container {
    position: relative;
    z-index: 3;
}



.ye-contact-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.ye-contact-glow-one {
    top: -180px;
    left: -150px;
    width: 380px;
    height: 380px;
    background: rgba(0, 126, 220, 0.08);
}

.ye-contact-glow-two {
    right: -150px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    background: rgba(0, 174, 255, 0.07);
}

/* Section heading */

.ye-contact-heading {
    max-width: 770px;
    margin: 0 auto 60px;
    text-align: center;
}

.ye-contact-heading .ye-section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.ye-contact-heading h2 {
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 48px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -1.2px;
}

.ye-contact-heading h2 span {
    color: var(--ye-blue);
}

.ye-contact-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #687b8c;
    font-size: 16px;
    line-height: 1.85;
}

/* Main wrapper */

.ye-contact-main-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 36px;
    box-shadow: 0 32px 80px rgba(8, 40, 67, 0.14);
}

/* =========================================
   Left Information Panel
========================================= */

.ye-contact-info-panel {
    position: relative;
    min-height: 100%;
    padding: 48px 42px;
    overflow: hidden;
    border-radius: 36px 0 0 36px;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(36, 168, 255, 0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 88%,
            rgba(0, 126, 220, 0.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #03101d 0%,
            #07243a 52%,
            #020b13 100%
        );
}

.ye-contact-info-panel::before {
    content: "";
    position: absolute;
    right: -115px;
    bottom: -120px;
    width: 290px;
    height: 290px;
    border: 1px solid rgba(57, 177, 255, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(57, 177, 255, 0.025),
        0 0 0 70px rgba(57, 177, 255, 0.02);
}

.ye-contact-panel-top,
.ye-contact-channels,
.ye-contact-support-box {
    position: relative;
    z-index: 2;
}

/* Status */

.ye-contact-live-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 9px 14px;
    color: rgba(238, 248, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
}

.ye-contact-live-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43c9ff;
    box-shadow: 0 0 12px rgba(67, 201, 255, 0.9);
}

.ye-contact-live-dot::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(67, 201, 255, 0.45);
    border-radius: 50%;
    animation: yeContactLivePulse 2s ease-out infinite;
}

@keyframes yeContactLivePulse {
    0% {
        transform: scale(0.7);
        opacity: 1;
    }

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

/* Panel heading */

.ye-contact-panel-top h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 900;
}

.ye-contact-panel-top h3 span {
    color: #3ab2ff;
}

.ye-contact-panel-top p {
    margin: 0;
    color: rgba(222, 236, 247, 0.67);
    font-size: 15px;
    line-height: 1.8;
}

/* Contact channels */

.ye-contact-channels {
    display: grid;
    gap: 13px;
    margin-top: 34px;
}

.ye-contact-channel {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.045);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

a.ye-contact-channel:hover {
    transform: translateX(7px);
    border-color: rgba(56, 177, 255, 0.27);
    background: rgba(56, 177, 255, 0.09);
}

.ye-contact-channel-icon {
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 18px;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        #0877c6,
        #35b4ff
    );
    box-shadow: 0 11px 24px rgba(0, 125, 220, 0.26);
}

.ye-contact-channel-content {
    min-width: 0;
    flex: 1;
}

.ye-contact-channel-content span {
    display: block;
    margin-bottom: 4px;
    color: rgba(205, 224, 238, 0.61);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ye-contact-channel-content strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 800;
    word-break: break-word;
}

.ye-contact-channel-arrow {
    color: #4ab9ff;
    font-size: 18px;
}

/* Support box */

.ye-contact-support-box {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ye-contact-support-title {
    display: block;
    margin-bottom: 14px;
    color: rgba(236, 246, 253, 0.82);
    font-size: 13px;
    font-weight: 900;
}

.ye-contact-support-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ye-contact-support-tags span {
    padding: 8px 12px;
    color: rgba(229, 242, 251, 0.73);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.045);
}

/* Decorative energy line */

.ye-contact-power-line {
    position: absolute;
    right: 0;
    bottom: 105px;
    left: 0;
    height: 1px;
    opacity: 0.48;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(55, 179, 255, 0.2),
        #37b3ff,
        rgba(55, 179, 255, 0.2),
        transparent
    );
}

.ye-contact-current {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(55, 179, 255, 0.12),
        0 0 14px rgba(55, 179, 255, 0.8);
    transform: translateY(-50%);
    animation: yeContactCurrentMove 5s linear infinite;
}

.ye-contact-current-two {
    animation-delay: 2.5s;
}

@keyframes yeContactCurrentMove {
    0% {
        left: 4%;
        opacity: 0;
    }

    15%,
    85% {
        opacity: 1;
    }

    100% {
        left: 94%;
        opacity: 0;
    }
}

/* =========================================
   Contact Form Card
========================================= */

.ye-contact-form-card {
    position: relative;
    padding: 48px;
    border: 1px solid rgba(0, 104, 176, 0.08);
    border-left: 0;
    border-radius: 0 36px 36px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

.ye-contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 80px;
    width: 130px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--ye-blue),
        #37b3ff
    );
}

.ye-contact-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.ye-contact-form-header span {
    display: block;
    margin-bottom: 6px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ye-contact-form-header h3 {
    margin: 0;
    color: #0b1d2f;
    font-size: 31px;
    font-weight: 900;
}

.ye-contact-form-header-icon {
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #ffffff;
    font-size: 21px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #08263f,
        var(--ye-blue),
        #27acff
    );
    box-shadow: 0 13px 27px rgba(0, 104, 176, 0.23);
}

/* Form fields */

.ye-contact-field label {
    display: block;
    margin-bottom: 9px;
    color: #253d50;
    font-size: 13px;
    font-weight: 800;
}

.ye-contact-input-wrap {
    position: relative;
}

.ye-contact-input-wrap > i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 2;
    color: #7e94a5;
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.ye-contact-input-wrap input,
.ye-contact-input-wrap select,
.ye-contact-input-wrap textarea {
    width: 100%;
    color: #183146;
    font-size: 14px;
    outline: none;
    border: 1px solid rgba(10, 75, 121, 0.12);
    border-radius: 15px;
    background: #f7fafc;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.ye-contact-input-wrap input,
.ye-contact-input-wrap select {
    height: 54px;
    padding: 0 45px 0 45px;
}

.ye-contact-input-wrap textarea {
    min-height: 135px;
    padding: 16px 18px 16px 45px;
    resize: vertical;
}

.ye-contact-textarea-wrap > i {
    top: 20px;
    transform: none;
}

.ye-contact-input-wrap input::placeholder,
.ye-contact-input-wrap textarea::placeholder {
    color: #9aabb8;
}

.ye-contact-input-wrap input:focus,
.ye-contact-input-wrap select:focus,
.ye-contact-input-wrap textarea:focus {
    border-color: rgba(0, 104, 176, 0.4);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 104, 176, 0.07);
}

/* Select */

.ye-contact-input-wrap select {
    appearance: none;
    cursor: pointer;
}

.ye-contact-select-arrow {
    position: absolute;
    top: 50%;
    right: 17px;
    color: var(--ye-blue);
    pointer-events: none;
    transform: translateY(-50%);
}

/* Submit button */

.ye-contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 58px;
    padding: 8px 10px 8px 23px;
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        #05243c,
        var(--ye-blue),
        #1ca5fa
    );
    box-shadow: 0 16px 32px rgba(0, 104, 176, 0.23);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ye-contact-submit-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.35s ease;
}

.ye-contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(0, 104, 176, 0.31);
}

.ye-contact-submit-btn:hover i {
    transform: translateX(4px);
}

.ye-contact-form-note {
    margin: 13px 0 0;
    color: #8091a0;
    font-size: 11px;
    text-align: center;
}

.ye-contact-form-note i {
    margin-right: 5px;
    color: var(--ye-blue);
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {
    .ye-contact-section {
        padding: 85px 0;
    }

    .ye-contact-heading h2 {
        font-size: 39px;
    }

    .ye-contact-main-wrapper {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .ye-contact-info-panel {
        border-radius: 32px 32px 0 0;
    }

    .ye-contact-form-card {
        border-top: 0;
        border-left: 1px solid rgba(0, 104, 176, 0.08);
        border-radius: 0 0 32px 32px;
    }
}

@media (max-width: 767px) {
    .ye-contact-info-panel,
    .ye-contact-form-card {
        padding: 36px 28px;
    }

    .ye-contact-panel-top h3 {
        font-size: 29px;
    }

    .ye-contact-form-header h3 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {
    .ye-contact-section {
        padding: 70px 0;
    }

    .ye-contact-heading {
        margin-bottom: 42px;
    }

    .ye-contact-heading h2 {
        font-size: 32px;
    }

    .ye-contact-heading p {
        font-size: 15px;
    }

    .ye-contact-main-wrapper {
        border-radius: 24px;
    }

    .ye-contact-info-panel {
        padding: 30px 20px;
        border-radius: 24px 24px 0 0;
    }

    .ye-contact-form-card {
        padding: 30px 20px;
        border-radius: 0 0 24px 24px;
    }

    .ye-contact-panel-top h3 {
        font-size: 26px;
    }

    .ye-contact-form-header {
        align-items: flex-start;
    }

    .ye-contact-form-header h3 {
        font-size: 25px;
    }

    .ye-contact-form-header-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .ye-contact-channel {
        align-items: flex-start;
    }

    .ye-contact-channel-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .ye-contact-bottom-card {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ye-contact-live-dot::before,
    .ye-contact-current {
        animation: none;
    }

    .ye-contact-channel,
    .ye-contact-submit-btn,
    .ye-contact-submit-btn i {
        transition: none;
    }
}

/* =========================================
   Contact Map Section
========================================= */

.ye-contact-map-section {
    position: relative;
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 104, 176, 0.10);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 24px 60px rgba(8, 40, 67, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.ye-contact-map-section::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 104, 176, 0.09),
        transparent 68%
    );
    pointer-events: none;
}

/* Map Heading */

.ye-contact-map-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 5px 5px 25px;
}

.ye-contact-map-title {
    max-width: 700px;
}

.ye-contact-map-title > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.ye-contact-map-title > span i {
    font-size: 14px;
}

.ye-contact-map-title h3 {
    margin: 0 0 9px;
    color: #0b1d2f;
    font-size: 29px;
    line-height: 1.25;
    font-weight: 900;
}

.ye-contact-map-title p {
    max-width: 650px;
    margin: 0;
    color: #6d7f8e;
    font-size: 14px;
    line-height: 1.75;
}

/* Direction Button */

.ye-contact-direction-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 8px 9px 8px 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        #06243b,
        var(--ye-blue),
        #26aaff
    );
    box-shadow: 0 14px 28px rgba(0, 104, 176, 0.22);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ye-contact-direction-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.35s ease;
}

.ye-contact-direction-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(0, 104, 176, 0.30);
}

.ye-contact-direction-btn:hover i {
    transform: translate(3px, -2px);
}

/* Map Wrapper */

.ye-contact-map-wrapper {
    position: relative;
    height: 440px;
    overflow: hidden;
    border-radius: 24px;
    background: #dfeaf1;
}

.ye-contact-map-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(0, 104, 176, 0.10);
    border-radius: inherit;
    box-shadow: inset 0 0 40px rgba(4, 29, 48, 0.08);
}

.ye-contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.85) contrast(1.03);
}



/* Power Decoration */

.ye-contact-map-power {
    position: absolute;
    top: 21px;
    right: 21px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #ffffff;
    font-size: 17px;
    border: 5px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #06243b,
        var(--ye-blue)
    );
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.18),
        0 0 0 7px rgba(0, 104, 176, 0.10);
}

/* Responsive */

@media (max-width: 991px) {
    .ye-contact-map-section {
        max-width: 760px;
        padding: 24px;
        border-radius: 28px;
    }

    .ye-contact-map-wrapper {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .ye-contact-map-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .ye-contact-direction-btn {
        align-self: flex-start;
    }

    .ye-contact-map-wrapper {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .ye-contact-map-section {
        margin-top: 24px;
        padding: 16px;
        border-radius: 23px;
    }

    .ye-contact-map-title h3 {
        font-size: 24px;
    }

    .ye-contact-map-wrapper {
        height: 430px;
        border-radius: 18px;
    }

    .ye-contact-map-power {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        border-width: 4px;
    }
}

/* =========================================
   Blog Pagination
========================================= */

.ye-blog-pagination-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-top: 10px;
}

.ye-blog-pagination {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid rgba(0, 104, 176, 0.10);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 18px 45px rgba(8, 40, 67, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Decorative glow */

.ye-blog-pagination::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 70%;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.10);
    filter: blur(18px);
    transform: translateX(-50%);
    pointer-events: none;
}

/* Page item */

.ye-page-item {
    position: relative;
    z-index: 2;
}

/* Page link */

.ye-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 15px;
    color: #53687a;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ye-page-item:not(.active):not(.ye-page-disabled):not(.ye-page-dots)
.ye-page-link:hover {
    color: var(--ye-blue);
    border-color: rgba(0, 104, 176, 0.12);
    background: #eef7fd;
    transform: translateY(-3px);
}

/* Active page */

.ye-page-item.active .ye-page-link {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(
        135deg,
        #071f35,
        var(--ye-blue),
        #25aaff
    );
    box-shadow:
        0 12px 24px rgba(0, 104, 176, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}



/* Previous and next */

.ye-page-arrow {
    gap: 9px;
    min-width: 112px;
    color: #17364e;
    background: #f4f8fb;
}

.ye-page-arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    color: #ffffff;
    font-size: 14px;
    border-radius: 9px;
    background: linear-gradient(
        135deg,
        #0b304e,
        var(--ye-blue)
    );
    transition: transform 0.3s ease;
}

.ye-page-item:not(.ye-page-disabled)
.ye-page-arrow:hover i:first-child {
    transform: translateX(-3px);
}

.ye-page-item:not(.ye-page-disabled)
.ye-page-arrow:hover i:last-child {
    transform: translateX(3px);
}

/* Dots */

.ye-page-dots .ye-page-link {
    min-width: 35px;
    padding: 0;
    color: #92a2af;
    cursor: default;
}

/* Disabled */

.ye-page-disabled {
    pointer-events: none;
    opacity: 0.45;
}

.ye-page-disabled .ye-page-link {
    background: #f3f5f7;
}

/* Responsive */

@media (max-width: 767px) {
    .ye-blog-pagination-wrap {
        margin-top: 45px;
    }

    .ye-blog-pagination {
        gap: 7px;
        padding: 8px;
        border-radius: 18px;
    }

    .ye-page-link {
        min-width: 42px;
        height: 42px;
        padding: 0 12px;
        border-radius: 12px;
    }

    .ye-page-arrow {
        min-width: 42px;
        padding: 0;
    }

    .ye-page-arrow span {
        display: none;
    }

    .ye-page-arrow i {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .ye-blog-pagination {
        width: 100%;
        justify-content: center;
        gap: 5px;
    }

    .ye-page-link {
        min-width: 38px;
        height: 40px;
        padding: 0 9px;
        font-size: 13px;
    }

    .ye-page-item:nth-child(4),
    .ye-page-dots {
        display: none;
    }
}

/* =========================================
   Clean Blog Detail Page
========================================= */

.ye-blog-detail-section {
    position: relative;
    padding: 90px 0;
    background: #f8f9fb;
}

/* Main Blog */

.ye-blog-detail-main {
    overflow: hidden;
    border: 1px solid rgba(13, 47, 72, 0.07);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(11, 39, 62, 0.06);
}

/* Main Image */

.ye-blog-detail-image {
    width: 100%;
    height: 470px;
    overflow: hidden;
}

.ye-blog-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ye-blog-detail-main:hover .ye-blog-detail-image img {
    transform: scale(1.025);
}

/* Blog Content */

.ye-blog-detail-content {
    padding: 46px 44px 50px;
}

.ye-blog-detail-content h1 {
    margin: 0 0 16px;
    color: #102537;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.ye-blog-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 27px;
    color: #71808d;
    font-size: 14px;
    font-weight: 600;
}

.ye-blog-detail-date i {
    color: var(--ye-blue);
}

.ye-blog-detail-content p {
    margin: 0 0 21px;
    color: #526777;
    font-size: 16px;
    line-height: 1.9;
}

.ye-blog-detail-content h2 {
    margin: 38px 0 15px;
    color: #102537;
    font-size: 27px;
    line-height: 1.4;
    font-weight: 900;
}

.ye-blog-detail-content ol,
.ye-blog-detail-content ul {
    margin: 0 0 25px;
    padding-left: 25px;
}

.ye-blog-detail-content li {
    margin-bottom: 13px;
    padding-left: 5px;
    color: #526777;
    font-size: 16px;
    line-height: 1.8;
}

.ye-blog-detail-content li::marker {
    color: var(--ye-blue);
    font-weight: 900;
}

.ye-blog-detail-content strong {
    color: #1a3448;
    font-weight: 900;
}

/* =========================================
   Related Blog Sidebar
========================================= */

.ye-related-blog-box {
    position: sticky;
    top: 120px;
    padding: 28px 25px;
    border: 1px solid rgba(13, 47, 72, 0.07);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(11, 39, 62, 0.06);
}

.ye-related-blog-box > h2 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 13px;
    color: #102537;
    font-size: 25px;
    font-weight: 900;
}

.ye-related-blog-box > h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        var(--ye-blue),
        #36b3ff
    );
}

.ye-related-blog-list {
    display: grid;
    gap: 22px;
}

/* Related Item */

.ye-related-blog-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ye-related-blog-item + .ye-related-blog-item {
    padding-top: 22px;
    border-top: 1px solid rgba(15, 54, 82, 0.08);
}

/* Related Image */

.ye-related-blog-image {
    flex: 0 0 104px;
    display: block;
    width: 104px;
    height: 78px;
    overflow: hidden;
    border-radius: 12px;
    background: #eaf0f4;
}

.ye-related-blog-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ye-related-blog-item:hover .ye-related-blog-image img {
    transform: scale(1.08);
}

/* Related Content */

.ye-related-blog-content {
    flex: 1;
    min-width: 0;
}

.ye-related-blog-content h3 {
    margin: 0 0 9px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 900;
}

.ye-related-blog-content h3 a {
    color: #102537;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ye-related-blog-content h3 a:hover {
    color: var(--ye-blue);
}

.ye-related-blog-content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8795a0;
    font-size: 12px;
    font-weight: 600;
}

.ye-related-blog-content span i {
    color: var(--ye-blue);
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {
    .ye-blog-detail-image {
        height: 410px;
    }

    .ye-blog-detail-content {
        padding: 40px 34px 44px;
    }

    .ye-blog-detail-content h1 {
        font-size: 35px;
    }

    .ye-related-blog-box {
        padding: 24px 20px;
    }

    .ye-related-blog-image {
        flex-basis: 90px;
        width: 90px;
        height: 72px;
    }

    .ye-related-blog-content h3 {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .ye-blog-detail-section {
        padding: 75px 0;
    }

    .ye-related-blog-box {
        position: relative;
        top: auto;
    }

    .ye-related-blog-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .ye-related-blog-item {
        display: block;
    }

    .ye-related-blog-item + .ye-related-blog-item {
        padding-top: 0;
        border-top: 0;
    }

    .ye-related-blog-image {
        width: 100%;
        height: 170px;
        margin-bottom: 14px;
    }
}

@media (max-width: 767px) {
    .ye-blog-detail-image {
        height: 330px;
    }

    .ye-blog-detail-content {
        padding: 34px 25px 38px;
    }

    .ye-blog-detail-content h1 {
        font-size: 30px;
    }

    .ye-blog-detail-content h2 {
        font-size: 24px;
    }

    .ye-related-blog-list {
        grid-template-columns: 1fr;
    }

    .ye-related-blog-item {
        display: flex;
    }

    .ye-related-blog-item + .ye-related-blog-item {
        padding-top: 20px;
        border-top: 1px solid rgba(15, 54, 82, 0.08);
    }

    .ye-related-blog-image {
        flex-basis: 115px;
        width: 115px;
        height: 85px;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .ye-blog-detail-section {
        padding: 60px 0;
    }

    .ye-blog-detail-main,
    .ye-related-blog-box {
        border-radius: 16px;
    }

    .ye-blog-detail-image {
        height: 250px;
    }

    .ye-blog-detail-content {
        padding: 28px 20px 32px;
    }

    .ye-blog-detail-content h1 {
        font-size: 26px;
    }

    .ye-blog-detail-content p,
    .ye-blog-detail-content li {
        font-size: 15px;
    }

    .ye-blog-detail-content h2 {
        margin-top: 31px;
        font-size: 22px;
    }

    .ye-related-blog-box {
        padding: 22px 18px;
    }

    .ye-related-blog-image {
        flex-basis: 95px;
        width: 95px;
        height: 75px;
    }

    .ye-related-blog-content h3 {
        font-size: 14px;
    }
}

/* =========================================
   Product Listing
   Unique Prefix: yeplx-
========================================= */

.yeplx-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(0, 104, 176, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(32, 170, 255, 0.07),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f5f9fc 0%,
            #ffffff 48%,
            #f2f7fb 100%
        );
}

.yeplx-section .container {
    position: relative;
    z-index: 3;
}

/* Decorative shapes */

.yeplx-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yeplx-decoration-left {
    top: 160px;
    left: -170px;
    width: 340px;
    height: 340px;
    border: 65px solid rgba(0, 104, 176, 0.035);
}

.yeplx-decoration-right {
    right: -140px;
    bottom: 90px;
    width: 290px;
    height: 290px;
    background: rgba(0, 104, 176, 0.035);
}

/* =========================================
   Heading
========================================= */

.yeplx-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.yeplx-subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 17px;
    padding: 9px 18px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.13);
    border-radius: 50px;
    background: rgba(0, 104, 176, 0.055);
}

.yeplx-heading h2 {
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 47px;
    line-height: 1.17;
    font-weight: 900;
    letter-spacing: -1px;
}

.yeplx-heading h2 span {
    color: var(--ye-blue);
}

.yeplx-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #687b8b;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================
   Product Card
========================================= */

.yeplx-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(13, 57, 88, 0.09);
    border-radius: 26px;
    background: #ffffff;
    box-shadow:
        0 18px 44px rgba(8, 40, 67, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.yeplx-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 104, 176, 0.22);
    box-shadow:
        0 30px 65px rgba(8, 40, 67, 0.14),
        0 10px 24px rgba(0, 104, 176, 0.08);
}

/* =========================================
   Product Image Area
========================================= */

.yeplx-image-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 330px;
    padding: 48px 34px 35px;
    overflow: hidden;
    text-decoration: none;
    background:
        linear-gradient(
            145deg,
            #f9fcfe 0%,
            #edf5fa 55%,
            #e4eef5 100%
        );
}



.yeplx-card:hover .yeplx-image-area::after {
    transform: scaleX(1);
}

/* Product glow */

.yeplx-image-glow {
    position: absolute;
    top: 54%;
    left: 50%;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 104, 176, 0.13),
        rgba(0, 104, 176, 0.035) 45%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition:
        width 0.45s ease,
        height 0.45s ease,
        opacity 0.45s ease;
}

.yeplx-card:hover .yeplx-image-glow {
    width: 270px;
    height: 270px;
}

/* Product image */

.yeplx-product-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 285px;
    max-height: 245px;
    object-fit: contain;
    filter: drop-shadow(0 22px 18px rgba(10, 38, 59, 0.20));
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.yeplx-card:hover .yeplx-product-image {
    transform: translateY(-10px) scale(1.045);
    filter: drop-shadow(0 30px 24px rgba(10, 38, 59, 0.26));
}

/* Number */



/* Category */

.yeplx-category {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    padding: 8px 12px;
    color: var(--ye-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.12);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
}


/* =========================================
   Card Footer
========================================= */

.yeplx-card-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 132px;
    padding: 25px 24px 26px;
    background: #ffffff;
}

/* Title */

.yeplx-card-title {
    flex: 1;
    min-width: 0;
}

.yeplx-card-title > span {
    display: block;
    margin-bottom: 6px;
    color: #80909d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.yeplx-card-title h3 {
    margin: 0;
    color: #0c2539;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 900;
}

.yeplx-card-title h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yeplx-card-title h3 a:hover {
    color: var(--ye-blue);
}

/* View More */

.yeplx-view-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 43px;
    padding: 6px 7px 6px 15px;
    color: #17364d;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid rgba(0, 104, 176, 0.11);
    border-radius: 50px;
    background: #f2f8fc;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.yeplx-view-btn b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #06243c,
        var(--ye-blue)
    );
    transition: transform 0.3s ease;
}

.yeplx-view-btn:hover {
    color: #ffffff;
    background: var(--ye-blue);
    transform: translateY(-2px);
}

.yeplx-view-btn:hover b {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(3px);
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {
    .yeplx-heading h2 {
        font-size: 41px;
    }

    .yeplx-image-area {
        height: 300px;
    }

    .yeplx-card-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .yeplx-view-btn {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 991px) {
    .yeplx-section {
        padding: 85px 0;
    }

    .yeplx-heading {
        margin-bottom: 48px;
    }

    .yeplx-heading h2 {
        font-size: 37px;
    }

    .yeplx-image-area {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .yeplx-section {
        padding: 70px 0;
    }

    .yeplx-heading {
        margin-bottom: 40px;
    }

    .yeplx-heading h2 {
        font-size: 31px;
    }

    .yeplx-heading p {
        font-size: 15px;
    }

    .yeplx-card {
        border-radius: 21px;
    }

    .yeplx-image-area {
        height: 285px;
        padding: 55px 25px 35px;
    }

    .yeplx-product-image {
        max-width: 245px;
        max-height: 215px;
    }

    

    .yeplx-category {
        top: 19px;
        left: 18px;
        font-size: 9px;
    }


    .yeplx-card-footer {
        min-height: auto;
        padding: 22px 19px 23px;
    }

    .yeplx-card-title h3 {
        font-size: 20px;
    }
}

@media (hover: none) {
    .yeplx-card:hover {
        transform: none;
    }

    .yeplx-card:hover .yeplx-product-image {
        transform: none;
    }

}

@media (prefers-reduced-motion: reduce) {
    .yeplx-card,
    .yeplx-product-image,
    .yeplx-image-glow,
    .yeplx-view-btn,
    .yeplx-view-btn b {
        transition: none;
    }
}

/* =========================================
   UPS Product Detail Section
   Unique Prefix: yeups-
========================================= */

.yeups-detail-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 104, 176, 0.08), transparent 24%),
        radial-gradient(circle at 92% 85%, rgba(0, 104, 176, 0.06), transparent 25%),
        linear-gradient(180deg, #f7fbfe 0%, #ffffff 50%, #f1f7fb 100%);
}

.yeups-detail-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   Product Image Swiper
========================================= */

.yeups-detail-image-card {
    position: relative;
    overflow: hidden;
    padding: 20px 20px 94px;
    border: 1px solid rgba(0, 104, 176, 0.10);
    border-radius: 32px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f2f8fc 100%
        );
    box-shadow:
        0 20px 55px rgba(8, 40, 67, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Main Swiper */

.yeups-product-swiper {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(0, 104, 176, 0.12),
            rgba(0, 104, 176, 0.035) 43%,
            transparent 70%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #edf6fb 100%
        );
}

/* Background decorative shape */

.yeups-product-swiper::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    z-index: 1;
    width: 210px;
    height: 210px;
    border: 35px solid rgba(0, 104, 176, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.yeups-product-swiper::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -85px;
    z-index: 1;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.035);
    pointer-events: none;
}

/* Swiper slides */

.yeups-product-swiper .swiper-slide {
    position: relative;
    height: 100%;
}

.yeups-product-slide {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 55px 42px 60px;
}

/* Product image */

.yeups-detail-main-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 370px;
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(
        0 25px 23px rgba(7, 31, 47, 0.20)
    );
    transform: scale(0.94);
    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.yeups-product-swiper
.swiper-slide-active
.yeups-detail-main-image {
    transform: scale(1);
    filter: drop-shadow(
        0 32px 27px rgba(7, 31, 47, 0.25)
    );
}

/* Product view label */

.yeups-product-view-label {
    position: absolute;
    top: 19px;
    left: 19px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 13px;
    color: var(--ye-blue);
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.11);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
}

/* =========================================
   Swiper Navigation
========================================= */

.yeups-product-swiper .yeups-swiper-prev,
.yeups-product-swiper .yeups-swiper-next {
    top: 50%;
    z-index: 10;
    width: 43px;
    height: 43px;
    margin-top: 0;
    color: #ffffff;
    border: 5px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #06243c,
            var(--ye-blue)
        );
    box-shadow: 0 12px 24px rgba(0, 104, 176, 0.21);
    transform: translateY(-50%);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.yeups-product-swiper .yeups-swiper-prev {
    left: 14px;
}

.yeups-product-swiper .yeups-swiper-next {
    right: 14px;
}

.yeups-product-swiper .yeups-swiper-prev::after,
.yeups-product-swiper .yeups-swiper-next::after {
    font-size: 14px;
    font-weight: 900;
}

.yeups-product-swiper .yeups-swiper-prev:hover,
.yeups-product-swiper .yeups-swiper-next:hover {
    box-shadow: 0 15px 29px rgba(0, 104, 176, 0.3);
}

.yeups-product-swiper .yeups-swiper-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.yeups-product-swiper .yeups-swiper-next:hover {
    transform: translateY(-50%) translateX(3px);
}

/* Disabled arrow */

.yeups-product-swiper .swiper-button-disabled {
    opacity: 0.35;
}

/* =========================================
   Swiper Pagination
========================================= */

.yeups-product-swiper .yeups-swiper-pagination {
    right: auto;
    bottom: 18px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 30px;
    padding: 7px 11px;
    border: 1px solid rgba(0, 104, 176, 0.09);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}

.yeups-product-swiper
.yeups-swiper-pagination
.swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px;
    opacity: 1;
    background: rgba(0, 104, 176, 0.22);
    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background 0.3s ease;
}

.yeups-product-swiper
.yeups-swiper-pagination
.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 50px;
    background: var(--ye-blue);
}

/* =========================================
   Bottom Product Name
========================================= */

.yeups-detail-floating-box {
    position: absolute;
    right: 25px;
    bottom: 22px;
    left: 25px;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 19px;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            #06243c,
            var(--ye-blue)
        );
    box-shadow: 0 16px 30px rgba(0, 104, 176, 0.22);
}

.yeups-detail-floating-box h5 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
}

.yeups-detail-floating-box span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =========================================
   Content Area
========================================= */

.yeups-detail-content {
    position: relative;
}

.yeups-detail-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--ye-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.yeups-detail-subtitle i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.yeups-detail-content h2 {
    margin: 0 0 22px;
    color: #0c2438;
    font-size: 40px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.yeups-detail-content h2 span {
    color: var(--ye-blue);
    display: block;
}

.yeups-detail-content p {
    margin: 0 0 18px;
    color: #5f7383;
    font-size: 15px;
    line-height: 1.5;
}

.yeups-detail-content p strong {
    color: #122b3e;
    font-weight: 800;
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {
    .yeups-detail-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .yeups-detail-section {
        padding: 85px 0;
    }

    .yeups-detail-image-wrap {
        max-width: 540px;
        margin: 0 auto;
    }

    .yeups-detail-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    

    .yeups-detail-content h2 {
        font-size: 30px;
    }

    .yeups-detail-content p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .yeups-detail-section {
        padding: 70px 0;
    }

    .yeups-detail-image-card {
        padding: 22px 18px 80px;
        border-radius: 24px;
    }

    .yeups-detail-floating-box {
        width: calc(100% - 32px);
        bottom: 16px;
        padding: 14px 15px;
    }

    .yeups-detail-floating-box h5 {
        font-size: 16px;
    }

    .yeups-detail-content h2 {
        font-size: 26px;
    }

    .yeups-detail-btns {
        flex-direction: column;
    }

    .yeups-primary-btn,
    .yeups-outline-btn {
        width: 100%;
    }
}

@media (max-width: 1199px) {

    .yeups-product-swiper {
        height: 400px;
    }

    .yeups-detail-main-image {
        max-width: 330px;
        max-height: 305px;
    }
}

@media (max-width: 991px) {

    .yeups-product-swiper {
        height: 440px;
    }

    .yeups-detail-main-image {
        max-width: 380px;
        max-height: 340px;
    }
}

@media (max-width: 575px) {

    .yeups-detail-image-card {
        padding: 14px 14px 90px;
        border-radius: 24px;
    }

    .yeups-product-swiper {
        height: 330px;
        border-radius: 19px;
    }

    .yeups-product-slide {
        padding: 52px 42px 55px;
    }

    .yeups-detail-main-image {
        max-width: 245px;
        max-height: 240px;
    }

    .yeups-product-view-label {
        top: 14px;
        left: 14px;
        min-height: 28px;
        padding: 5px 10px;
        font-size: 8px;
    }

    .yeups-product-swiper .yeups-swiper-prev,
    .yeups-product-swiper .yeups-swiper-next {
        width: 37px;
        height: 37px;
        border-width: 4px;
        border-radius: 12px;
    }

    .yeups-product-swiper .yeups-swiper-prev {
        left: 8px;
    }

    .yeups-product-swiper .yeups-swiper-next {
        right: 8px;
    }

    .yeups-detail-floating-box {
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 13px 15px;
    }

    .yeups-detail-floating-box h5 {
        font-size: 16px;
    }

    .yeups-detail-floating-box span {
        display: none;
    }
}

/* =========================================
   UPS Types Tab Section
   Unique Prefix: yeut-
========================================= */

.yeut-section {
    position: relative;
    padding: 0 0 60px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(0, 104, 176, 0.09),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(35, 174, 255, 0.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f4f9fd 0%,
            #ffffff 50%,
            #eef6fb 100%
        );
}

.yeut-section .container {
    position: relative;
    z-index: 3;
}

/* Background */

.yeut-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.yeut-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yeut-glow-one {
    top: 140px;
    left: -160px;
    width: 340px;
    height: 340px;
    background: rgba(0, 104, 176, 0.04);
}

.yeut-glow-two {
    right: -140px;
    bottom: 90px;
    width: 290px;
    height: 290px;
    border: 55px solid rgba(0, 104, 176, 0.035);
}

/* =========================================
   Heading
========================================= */

.yeut-heading {
    max-width: 790px;
    margin: 0 auto 60px;
    text-align: center;
}

.yeut-heading-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    padding: 9px 18px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.14);
    border-radius: 50px;
    background: rgba(0, 104, 176, 0.055);
}

.yeut-heading h2 {
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1px;
}

.yeut-heading h2 span {
    color: var(--ye-blue);
}

.yeut-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #697c8c;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================
   Main Tab Layout
========================================= */

.yeut-tab-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
    align-items: stretch;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
}

/* =========================================
   Left Navigation
========================================= */

.yeut-tab-navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(45, 177, 255, 0.18),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #03101d 0%,
            #06243a 54%,
            #020a12 100%
        );
    box-shadow: 0 28px 65px rgba(5, 30, 49, 0.24);
}

.yeut-tab-navigation::before {
    content: "";
    position: absolute;
    right: -105px;
    bottom: -115px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(64, 184, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(64, 184, 255, 0.025),
        0 0 0 60px rgba(64, 184, 255, 0.018);
}

.yeut-navigation-head {
    position: relative;
    z-index: 2;
    padding: 4px 5px 22px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.yeut-navigation-head span {
    display: block;
    margin-bottom: 5px;
    color: #38aff8;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.yeut-navigation-head strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

/* Tab Buttons */

.yeut-tab-button {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 31px;
    align-items: center;
    gap: 13px;
    width: 100%;
    min-height: 83px;
    margin-top: 10px;
    padding: 13px 14px;
    color: inherit;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.045);
    cursor: pointer;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.yeut-tab-button::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: 13px;
    left: 0;
    width: 4px;
    border-radius: 0 5px 5px 0;
    background: #35b3ff;
    opacity: 0;
    transform: scaleY(0);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.yeut-tab-button:hover {
    border-color: rgba(57, 178, 255, 0.22);
    background: rgba(52, 174, 255, 0.09);
    transform: translateX(4px);
}

.yeut-tab-button.active {
    border-color: rgba(54, 178, 255, 0.32);
    background:
        linear-gradient(
            135deg,
            rgba(17, 125, 198, 0.35),
            rgba(46, 178, 255, 0.12)
        );
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.yeut-tab-button.active::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Tab Number */

.yeut-tab-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #5dbfff;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(70, 185, 255, 0.17);
    border-radius: 14px;
    background: rgba(48, 175, 255, 0.08);
    transition:
        color 0.35s ease,
        background 0.35s ease;
}

.yeut-tab-button.active .yeut-tab-number {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #0877c6,
        #35b4ff
    );
    box-shadow: 0 9px 20px rgba(0, 132, 224, 0.25);
}

/* Tab Text */

.yeut-tab-name {
    min-width: 0;
}

.yeut-tab-name small {
    display: block;
    margin-bottom: 4px;
    color: rgba(204, 224, 239, 0.52);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.yeut-tab-name strong {
    display: block;
    color: rgba(241, 248, 253, 0.86);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.yeut-tab-button.active .yeut-tab-name strong {
    color: #ffffff;
}

/* Navigation Footer */

.yeut-navigation-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding: 24px 6px 4px;
    color: rgba(219, 235, 246, 0.58);
    font-size: 11px;
    font-weight: 700;
}

.yeut-footer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ab5ff;
    box-shadow: 0 0 12px rgba(58, 181, 255, 0.85);
}

/* =========================================
   Right Dynamic Content
========================================= */

.yeut-tab-content {
    min-width: 0;
}

.yeut-tab-panel {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(9, 63, 100, 0.09);
    border-radius: 30px;
    background: #ffffff;
    box-shadow:
        0 24px 58px rgba(8, 40, 67, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    animation: yeutPanelEnter 0.48s ease;
}

.yeut-tab-panel[hidden] {
    display: none;
}

@keyframes yeutPanelEnter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Image Area */

.yeut-product-image-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding: 65px 45px 38px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #f9fcfe 0%,
            #ecf5fa 52%,
            #e3eef5 100%
        );
}

.yeut-product-image-area::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 42px solid rgba(0, 104, 176, 0.045);
}

.yeut-product-image-area::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #06243c,
        var(--ye-blue),
        #35b4ff
    );
}

.yeut-image-glow {
    position: absolute;
    top: 53%;
    left: 50%;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 104, 176, 0.14),
        rgba(0, 104, 176, 0.035) 48%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
}

/* Product Image */

.yeut-product-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 440px;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 28px 23px rgba(8, 39, 60, 0.23));
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.yeut-tab-panel:hover .yeut-product-image {
    transform: translateY(-7px) scale(1.025);
    filter: drop-shadow(0 34px 27px rgba(8, 39, 60, 0.27));
}

/* Description */

.yeut-product-description {
    position: relative;
    padding: 32px 35px 36px;
    background: #ffffff;
}

.yeut-product-type {
    display: block;
    margin-bottom: 11px;
    color: #0d2b42;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 900;
}

.yeut-product-description p {
    margin: 0;
    color: #657989;
    font-size: 15px;
    line-height: 1.9;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {

    .yeut-heading h2 {
        font-size: 41px;
    }

    .yeut-tab-layout {
        grid-template-columns: minmax(285px, 0.38fr) minmax(0, 0.62fr);
    }

    .yeut-product-image-area {
        min-height: 400px;
    }
}

@media (max-width: 991px) {

    .yeut-section {
        padding: 85px 0;
    }

    .yeut-heading {
        margin-bottom: 48px;
    }

    .yeut-heading h2 {
        font-size: 37px;
    }

    .yeut-tab-layout {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .yeut-tab-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .yeut-navigation-head,
    .yeut-navigation-footer {
        grid-column: 1 / -1;
    }

    .yeut-tab-button {
        margin-top: 0;
    }
}

@media (max-width: 767px) {

    .yeut-tab-navigation {
        display: flex;
        flex-direction: column;
    }

    .yeut-tab-button {
        margin-top: 9px;
    }

    .yeut-product-image-area {
        min-height: 350px;
        padding: 62px 30px 32px;
    }

    .yeut-product-image {
        max-width: 360px;
        max-height: 270px;
    }
}

@media (max-width: 575px) {

    .yeut-section {
        padding: 70px 0;
    }

    .yeut-heading {
        margin-bottom: 40px;
    }

    .yeut-heading h2 {
        font-size: 31px;
    }

    .yeut-heading p {
        font-size: 15px;
    }

    .yeut-tab-navigation {
        padding: 17px;
        border-radius: 23px;
    }

    .yeut-navigation-head strong {
        font-size: 21px;
    }

    .yeut-tab-button {
        grid-template-columns: 40px minmax(0, 1fr) 29px;
        min-height: 76px;
        padding: 11px 12px;
        border-radius: 16px;
    }

    .yeut-tab-number {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .yeut-tab-name strong {
        font-size: 14px;
    }

    .yeut-tab-panel {
        border-radius: 23px;
    }

    .yeut-product-image-area {
        min-height: 300px;
        padding: 65px 20px 25px;
    }

    .yeut-product-image {
        max-width: 290px;
        max-height: 225px;
    }

    .yeut-product-description {
        padding: 25px 21px 28px;
    }

    .yeut-product-type {
        font-size: 21px;
    }

    .yeut-product-description p {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .yeut-tab-panel {
        animation: none;
    }

    .yeut-tab-button,
    .yeut-product-image {
        transition: none;
    }
}

/* =========================================
   UPS Additional Information
   Unique Prefix: yeupsinfo-
========================================= */

.yeupsinfo-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(0, 104, 176, 0.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(41, 177, 255, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f5f9fc 0%,
            #ffffff 50%,
            #eff6fa 100%
        );
}

.yeupsinfo-section .container {
    position: relative;
    z-index: 3;
}

/* Background Pattern */

.yeupsinfo-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.yeupsinfo-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yeupsinfo-circle-left {
    top: 170px;
    left: -150px;
    width: 320px;
    height: 320px;
    background: rgba(0, 104, 176, 0.04);
}

.yeupsinfo-circle-right {
    right: -130px;
    bottom: 100px;
    width: 285px;
    height: 285px;
    border: 55px solid rgba(0, 104, 176, 0.035);
}

/* =========================================
   Heading
========================================= */

.yeupsinfo-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.yeupsinfo-heading-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    padding: 9px 17px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.13);
    border-radius: 50px;
    background: rgba(0, 104, 176, 0.055);
}

.yeupsinfo-heading h2 {
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1px;
}

.yeupsinfo-heading h2 span {
    color: var(--ye-blue);
}

.yeupsinfo-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #687b8b;
    font-size: 16px;
    line-height: 1.85;
}





/* =========================================
   Brand Card
========================================= */

.yeupsinfo-brand-card {
    position: relative;
    height: 100%;
    padding: 31px 28px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 20px 50px rgba(8, 40, 67, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeupsinfo-brand-card::before {
    content: "";
    position: absolute;
    top: -75px;
    right: -75px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 104, 176, 0.11),
        transparent 70%
    );
}

.yeupsinfo-brand-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}

.yeupsinfo-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 63px;
    color: #ffffff;
    font-size: 23px;
    border-radius: 19px;
    background: linear-gradient(
        135deg,
        #06243c,
        var(--ye-blue),
        #31b2ff
    );
    box-shadow: 0 14px 27px rgba(0, 104, 176, 0.24);
}

.yeupsinfo-brand-card h3,
.yeupsinfo-application-card h3 {
    margin: 0 0 15px;
    color: #0d273b;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 900;
}

.yeupsinfo-brand-card > p {
    margin: 0;
    color: #657989;
    font-size: 14px;
    line-height: 1.85;
}



/* =========================================
   Application Card
========================================= */

.yeupsinfo-application-card {
    position: relative;
    height: 100%;
    padding: 31px 30px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 20px 50px rgba(8, 40, 67, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeupsinfo-application-card::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 45px solid rgba(0, 104, 176, 0.035);
}

.yeupsinfo-application-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.yeupsinfo-application-intro {
    position: relative;
    z-index: 2;
    max-width: 730px;
    margin: 0;
    color: #657989;
    font-size: 14px;
    line-height: 1.85;
}

/* Application Grid */

.yeupsinfo-application-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.yeupsinfo-application-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 61px;
    padding: 11px 12px;
    border: 1px solid rgba(0, 104, 176, 0.08);
    border-radius: 16px;
    background: #f7fafc;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.yeupsinfo-application-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 104, 176, 0.19);
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(8, 40, 67, 0.08);
}

.yeupsinfo-application-item i {
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    font-size: 13px;
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        #082a45,
        var(--ye-blue)
    );
}

.yeupsinfo-application-item span {
    color: #284357;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
}

/* Benefit Strip */

.yeupsinfo-application-benefit {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 15px 35px rgba(4, 31, 51, 0.15);
}

.yeupsinfo-application-benefit > div {
    padding: 17px;
    background: linear-gradient(
        135deg,
        #041523,
        #08314f
    );
}

.yeupsinfo-application-benefit strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.yeupsinfo-application-benefit span {
    display: block;
    color: rgba(224, 238, 247, 0.63);
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================
   Simple Why Choose Us
========================================= */

.yeupsinfo-why-card {
    position: relative;
    max-width: 1050px;
    margin: 30px auto 0;
    padding: 48px 50px;
    overflow: hidden;
    border: 1px solid rgba(0, 104, 176, 0.12);
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f3f9fd 100%
        );
    box-shadow: 0 20px 50px rgba(8, 40, 67, 0.08);
}

/* Blue top line */

.yeupsinfo-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    width: 95px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--ye-blue),
        #38b5ff
    );
}

/* Soft decorative circle */

.yeupsinfo-why-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.05);
    pointer-events: none;
}

.yeupsinfo-why-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 13px;
    color: var(--ye-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeupsinfo-why-card h3 {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 900;
}

.yeupsinfo-why-card h3 span {
    color: var(--ye-blue);
}

.yeupsinfo-why-card p {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0;
    color: #647888;
    font-size: 15px;
    line-height: 1.9;
}

/* Responsive */

@media (max-width: 767px) {
    .yeupsinfo-why-card {
        padding: 38px 30px;
        border-radius: 22px;
    }

    .yeupsinfo-why-card::before {
        left: 30px;
    }

    .yeupsinfo-why-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .yeupsinfo-why-card {
        margin-top: 24px;
        padding: 34px 22px;
    }

    .yeupsinfo-why-card::before {
        left: 22px;
        width: 75px;
    }

    .yeupsinfo-why-card h3 {
        font-size: 24px;
    }

    .yeupsinfo-why-card p {
        font-size: 14px;
        line-height: 1.85;
    }
}
/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {
    .yeupsinfo-heading h2 {
        font-size: 41px;
    }

    .yeupsinfo-application-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 991px) {
    .yeupsinfo-section {
        padding: 85px 0;
    }

    .yeupsinfo-heading {
        margin-bottom: 48px;
    }

    .yeupsinfo-heading h2 {
        font-size: 37px;
    }

    .yeupsinfo-application-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {
    .yeupsinfo-application-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yeupsinfo-application-benefit {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .yeupsinfo-section {
        padding: 70px 0;
    }

    .yeupsinfo-heading {
        margin-bottom: 40px;
    }

    .yeupsinfo-heading h2 {
        font-size: 31px;
    }

    .yeupsinfo-heading p {
        font-size: 15px;
    }

    .yeupsinfo-brand-card,
    .yeupsinfo-application-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .yeupsinfo-brand-card h3,
    .yeupsinfo-application-card h3 {
        font-size: 23px;
    }

    .yeupsinfo-application-grid {
        grid-template-columns: 1fr;
    }

    .yeupsinfo-application-item {
        min-height: 58px;
    }

    .yeupsinfo-why-content h3 {
        font-size: 27px;
    }

    .yeupsinfo-why-item {
        grid-template-columns: 43px minmax(0, 1fr);
        padding: 15px;
    }

    .yeupsinfo-why-number {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }
}

/* =========================================
   UPS FAQ Section
   Unique Prefix: yeufaq-
========================================= */

.yeufaq-section {
    position: relative;
    padding: 0px 0 60px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(0, 104, 176, 0.08), transparent 26%),
        radial-gradient(circle at 92% 82%, rgba(34, 174, 255, 0.07), transparent 24%),
        linear-gradient(135deg, #f6fafc 0%, #ffffff 50%, #eef6fb 100%);
}

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

/* Decorative shapes */

.yeufaq-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yeufaq-shape-one {
    top: 120px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: rgba(0, 104, 176, 0.04);
}

.yeufaq-shape-two {
    right: -120px;
    bottom: 90px;
    width: 260px;
    height: 260px;
    border: 50px solid rgba(0, 104, 176, 0.035);
}

/* =========================================
   Left Heading
========================================= */

.yeufaq-heading {
    position: sticky;
    top: 120px;
}

.yeufaq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 17px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.12);
    border-radius: 50px;
    background: rgba(0, 104, 176, 0.055);
}

.yeufaq-heading h2 {
    margin: 0 0 16px;
    color: #0d2438;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
}

.yeufaq-heading h2 span {
    display: block;
    color: var(--ye-blue);
}

.yeufaq-heading p {
    max-width: 330px;
    margin: 0;
    color: #687b8b;
    font-size: 15px;
    line-height: 1.9;
}

/* =========================================
   Accordion
========================================= */

.yeufaq-accordion {
    display: grid;
    gap: 16px;
}

.yeufaq-item {
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 16px 40px rgba(8, 40, 67, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.yeufaq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 104, 176, 0.18);
    box-shadow:
        0 20px 45px rgba(8, 40, 67, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeufaq-item.active {
    border-color: rgba(0, 104, 176, 0.20);
}

/* Question */

.yeufaq-question {
    width: 100%;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.yeufaq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--ye-blue);
    font-size: 13px;
    font-weight: 900;
    border-radius: 18px;
    background: rgba(0, 104, 176, 0.08);
    border: 1px solid rgba(0, 104, 176, 0.10);
}

.yeufaq-question-text {
    color: #12293d;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 900;
}

.yeufaq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-size: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #08253e, var(--ye-blue));
    transition: transform 0.35s ease;
}

.yeufaq-item.active .yeufaq-icon {
    transform: rotate(45deg);
}

/* Answer */

.yeufaq-answer {
    display: none;
    padding: 0 24px 22px 96px;
}

.yeufaq-answer p {
    margin: 0;
    color: #657989;
    font-size: 15px;
    line-height: 1.9;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {
    .yeufaq-section {
        padding: 85px 0;
    }

    .yeufaq-heading {
        position: relative;
        top: auto;
        margin-bottom: 10px;
    }

    .yeufaq-heading h2 {
        font-size: 36px;
    }

    .yeufaq-heading p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .yeufaq-question {
        grid-template-columns: 48px minmax(0, 1fr) 40px;
        gap: 12px;
        padding: 18px;
    }

    .yeufaq-number {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .yeufaq-question-text {
        font-size: 16px;
    }

    .yeufaq-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .yeufaq-answer {
        padding: 0 18px 18px 78px;
    }
}

@media (max-width: 575px) {
    .yeufaq-section {
        padding: 70px 0;
    }

    .yeufaq-heading h2 {
        font-size: 30px;
    }

    .yeufaq-heading p {
        font-size: 14px;
    }

    .yeufaq-item {
        border-radius: 18px;
    }

    .yeufaq-question {
        grid-template-columns: 42px minmax(0, 1fr) 34px;
        gap: 10px;
        padding: 16px;
    }

    .yeufaq-number {
        width: 42px;
        height: 42px;
        font-size: 11px;
        border-radius: 13px;
    }

    .yeufaq-question-text {
        font-size: 15px;
        line-height: 1.45;
    }

    .yeufaq-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
        border-radius: 10px;
    }

    .yeufaq-answer {
        padding: 0 16px 16px 16px;
    }

    .yeufaq-answer p {
        font-size: 14px;
    }
}

/* =========================================
   Accessories & Spares Content
========================================= */

.yeupsinfo-accessory-featured {
    display: flex;
    flex-direction: column;
}

.yeupsinfo-accessory-label {
    display: block;
    margin-bottom: 8px;
    color: var(--ye-blue);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.yeupsinfo-accessory-featured > p {
    color: #657989;
    font-size: 14px;
    line-height: 1.9;
}

/* Featured accessory details */

.yeupsinfo-featured-visual {
    position: relative;
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 27px;
}

.yeupsinfo-featured-line {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 2px;
    background: linear-gradient(
        90deg,
        rgba(0, 104, 176, 0.18),
        rgba(0, 104, 176, 0.03)
    );
}

.yeupsinfo-featured-visual > div {
    position: relative;
    padding: 14px 15px 14px 45px;
    border: 1px solid rgba(0, 104, 176, 0.08);
    border-radius: 15px;
    background: #f6fafc;
}

.yeupsinfo-featured-visual > div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 17px;
    width: 10px;
    height: 10px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: var(--ye-blue);
    box-shadow: 0 0 0 4px rgba(0, 104, 176, 0.1);
    transform: translateY(-50%);
}

.yeupsinfo-featured-visual strong {
    display: block;
    margin-bottom: 2px;
    color: #17364d;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 900;
}

.yeupsinfo-featured-visual small {
    display: block;
    color: #7a8b98;
    font-size: 11px;
    line-height: 1.5;
}

/* =========================================
   Right Accessories Card
========================================= */

.yeupsinfo-accessories-card {
    display: flex;
    flex-direction: column;
}

.yeupsinfo-accessory-main-number {
    color: rgba(0, 104, 176, 0.09);
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
}

/* Accessories grid */

.yeupsinfo-accessory-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 26px;
}

.yeupsinfo-accessory-item {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 15px;
    min-height: 205px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 104, 176, 0.085);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9fc 100%
        );
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.yeupsinfo-accessory-item::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.035);
    pointer-events: none;
}

.yeupsinfo-accessory-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 104, 176, 0.18);
    box-shadow: 0 16px 32px rgba(8, 40, 67, 0.09);
}

/* Accessory icon */

.yeupsinfo-accessory-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #ffffff;
    font-size: 18px;
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        #06243c,
        var(--ye-blue),
        #35b4ff
    );
    box-shadow: 0 12px 23px rgba(0, 104, 176, 0.2);
    transition: transform 0.35s ease;
}

.yeupsinfo-accessory-item:hover .yeupsinfo-accessory-icon {
    transform: rotate(-5deg) scale(1.05);
}

/* Accessory content */

.yeupsinfo-accessory-content {
    position: relative;
    z-index: 2;
}

.yeupsinfo-accessory-content h4 {
    margin: 0 0 9px;
    color: #102d43;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.yeupsinfo-accessory-content p {
    margin: 0;
    color: #6c7f8e;
    font-size: 12px;
    line-height: 1.75;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {

    .yeupsinfo-accessory-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 17px;
    }

    .yeupsinfo-accessory-icon {
        width: 48px;
        height: 48px;
        font-size: 16px;
        border-radius: 15px;
    }
}

@media (max-width: 991px) {

    .yeupsinfo-accessory-featured {
        min-height: auto;
    }

    .yeupsinfo-accessory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .yeupsinfo-accessory-grid {
        grid-template-columns: 1fr;
    }

    .yeupsinfo-accessory-item {
        min-height: auto;
    }
}

@media (max-width: 575px) {

    .yeupsinfo-accessory-main-number {
        display: none;
    }

    .yeupsinfo-accessory-item {
        grid-template-columns: 45px minmax(0, 1fr);
        padding: 16px;
        border-radius: 17px;
    }

    .yeupsinfo-accessory-icon {
        width: 45px;
        height: 45px;
        font-size: 15px;
        border-radius: 14px;
    }

    .yeupsinfo-accessory-content h4 {
        font-size: 16px;
    }

    .yeupsinfo-accessory-content p {
        font-size: 12px;
    }
}

/* =========================================
   Isolation Transformer Benefits & Support
   Unique Prefix: yeithelp-
========================================= */

.yeithelp-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 15%,
            rgba(0, 104, 176, 0.08),
            transparent 26%
        ),
        radial-gradient(
            circle at 94% 85%,
            rgba(42, 178, 255, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f4f9fc 0%,
            #ffffff 48%,
            #eef6fa 100%
        );
}

.yeithelp-section .container {
    position: relative;
    z-index: 3;
}

/* =========================================
   Background
========================================= */

.yeithelp-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.yeithelp-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yeithelp-decoration-one {
    top: 120px;
    left: -150px;
    width: 310px;
    height: 310px;
    background: rgba(0, 104, 176, 0.04);
}

.yeithelp-decoration-two {
    right: -125px;
    bottom: 70px;
    width: 270px;
    height: 270px;
    border: 52px solid rgba(0, 104, 176, 0.035);
}

/* =========================================
   Main Layout
========================================= */

.yeithelp-main-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(9, 61, 97, 0.09);
    border-radius: 32px;
    background: #ffffff;
    box-shadow:
        0 26px 65px rgba(7, 38, 61, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* =========================================
   Left Side
========================================= */

.yeithelp-advantages {
    position: relative;
    padding: 28px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f6fafc 100%
        );
}

.yeithelp-heading {
    max-width: 650px;
    margin-bottom: 32px;
}

.yeithelp-small-title {
    display: block;
    margin-bottom: 12px;
    color: var(--ye-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeithelp-heading h2 {
    margin: 0 0 17px;
    color: #0c2438;
    font-size: 38px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.yeithelp-heading h2 span {
    color: var(--ye-blue);
}

.yeithelp-heading > p {
    margin: 0;
    color: #687b8b;
    font-size: 15px;
    line-height: 1.85;
}

/* =========================================
   Advantage Points
========================================= */

.yeithelp-advantage-list {
    position: relative;
    display: grid;
    gap: 13px;
}

.yeithelp-advantage-list::before {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 29px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(0, 104, 176, 0.12),
        rgba(0, 104, 176, 0.35),
        rgba(0, 104, 176, 0.12)
    );
}

.yeithelp-advantage-item {
    position: relative;
    display: grid;
    grid-template-columns: 59px minmax(0, 1fr);
    gap: 17px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(0, 104, 176, 0.075);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.88);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.yeithelp-advantage-item:hover {
    transform: translateX(6px);
    border-color: rgba(0, 104, 176, 0.18);
    background: #ffffff;
    box-shadow: 0 14px 29px rgba(8, 40, 67, 0.08);
}

/* No icons — number only */

.yeithelp-advantage-number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 59px;
    height: 59px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    border: 6px solid #ffffff;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            #06243c,
            var(--ye-blue),
            #35b4ff
        );
    box-shadow: 0 10px 21px rgba(0, 104, 176, 0.21);
}

.yeithelp-advantage-content {
    padding-top: 2px;
}

.yeithelp-advantage-content h3 {
    margin: 0 0 7px;
    color: #14334a;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 900;
}

.yeithelp-advantage-content p {
    margin: 0;
    color: #6b7e8d;
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================
   Right Assistance Side
========================================= */

.yeithelp-assistance {
    position: relative;
    display: flex;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(55, 184, 255, 0.20),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #03101c 0%,
            #082d49 54%,
            #020a11 100%
        );
}

.yeithelp-assistance::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;
    width: 245px;
    height: 245px;
    border: 1px solid rgba(73, 190, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 32px rgba(62, 184, 255, 0.025),
        0 0 0 65px rgba(62, 184, 255, 0.015);
}

.yeithelp-assistance::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        #35b4ff,
        var(--ye-blue),
        #ffffff
    );
}

.yeithelp-assistance-inner {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 50px 44px;
}

.yeithelp-assistance-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    color: #62c4ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    border: 1px solid rgba(86, 192, 255, 0.18);
    border-radius: 50px;
    background: rgba(60, 180, 250, 0.08);
}

.yeithelp-assistance h2 {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.27;
    font-weight: 900;
    letter-spacing: -0.6px;
}

.yeithelp-assistance h2 span {
    display: block;
    margin-top: 5px;
    color: #42b7fb;
}

.yeithelp-assistance-content {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(62, 184, 251, 0.31);
}

.yeithelp-assistance-content p {
    margin: 0 0 20px;
    color: rgba(222, 237, 247, 0.72);
    font-size: 14px;
    line-height: 1.9;
}

.yeithelp-assistance-content p:last-child {
    margin-bottom: 0;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {

    .yeithelp-main-card {
        grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    }

    .yeithelp-advantages {
        padding: 40px;
    }

    .yeithelp-assistance-inner {
        padding: 44px 35px;
    }

    .yeithelp-heading h2 {
        font-size: 34px;
    }

    .yeithelp-assistance h2 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {

    .yeithelp-section {
        padding: 85px 0;
    }

    .yeithelp-main-card {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .yeithelp-assistance-inner {
        padding: 45px 40px;
    }
}

@media (max-width: 767px) {

    .yeithelp-advantages {
        padding: 34px 28px;
    }

    .yeithelp-heading h2 {
        font-size: 30px;
    }

    .yeithelp-assistance-inner {
        padding: 38px 28px;
    }

    .yeithelp-assistance h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {

    .yeithelp-section {
        padding: 70px 0;
    }

    .yeithelp-main-card {
        border-radius: 23px;
    }

    .yeithelp-advantages {
        padding: 29px 19px;
    }

    .yeithelp-heading {
        margin-bottom: 25px;
    }

    .yeithelp-heading h2 {
        font-size: 26px;
    }

    .yeithelp-heading > p {
        font-size: 14px;
    }

    .yeithelp-advantage-list::before {
        left: 23px;
    }

    .yeithelp-advantage-item {
        grid-template-columns: 47px minmax(0, 1fr);
        gap: 13px;
        padding: 15px;
        border-radius: 16px;
    }

    .yeithelp-advantage-number {
        width: 47px;
        height: 47px;
        border-width: 5px;
        border-radius: 14px;
    }

    .yeithelp-advantage-content h3 {
        font-size: 15px;
    }

    .yeithelp-advantage-content p {
        font-size: 12px;
    }

    .yeithelp-assistance-inner {
        padding: 35px 21px 40px;
    }

    .yeithelp-assistance h2 {
        font-size: 25px;
    }

    .yeithelp-assistance-content {
        padding-left: 15px;
    }

    .yeithelp-assistance-content p {
        font-size: 13px;
        line-height: 1.85;
    }
}

@media (prefers-reduced-motion: reduce) {

    .yeithelp-advantage-item {
        transition: none;
    }
}

/* =========================================
   UPS Installation Information Section
   Unique Prefix: yeupsi-
========================================= */

.yeupsi-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(0, 104, 176, 0.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(45, 179, 255, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f4f9fc 0%,
            #ffffff 50%,
            #eef6fb 100%
        );
}

.yeupsi-section .container {
    position: relative;
    z-index: 3;
}

/* =========================================
   Background Decorations
========================================= */

.yeupsi-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}

.yeupsi-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yeupsi-circle-one {
    top: 130px;
    left: -160px;
    width: 330px;
    height: 330px;
    background: rgba(0, 104, 176, 0.04);
}

.yeupsi-circle-two {
    right: -130px;
    bottom: 100px;
    width: 280px;
    height: 280px;
    border: 55px solid rgba(0, 104, 176, 0.035);
}

/* =========================================
   Section Heading
========================================= */

.yeupsi-heading {
    max-width: 790px;
    margin: 0 auto 60px;
    text-align: center;
}

.yeupsi-heading-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    padding: 9px 18px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.13);
    border-radius: 50px;
    background: rgba(0, 104, 176, 0.055);
}

.yeupsi-heading h2 {
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1px;
}

.yeupsi-heading h2 span {
    color: var(--ye-blue);
}

.yeupsi-heading p {
    max-width: 660px;
    margin: 0 auto;
    color: #687b8b;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================
   Main Layout
========================================= */

.yeupsi-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

/* =========================================
   Importance Card
========================================= */

.yeupsi-importance-card {
    position: relative;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9fc 100%
        );
    box-shadow:
        0 22px 55px rgba(8, 40, 67, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeupsi-importance-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.045);
}

.yeupsi-card-heading,
.yeupsi-main-description,
.yeupsi-benefit-heading,
.yeupsi-benefit-grid {
    position: relative;
    z-index: 2;
}

.yeupsi-card-label {
    display: block;
    margin-bottom: 11px;
    color: var(--ye-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeupsi-card-heading h3 {
    margin: 0 0 20px;
    color: #0d273b;
    font-size: 34px;
    line-height: 1.28;
    font-weight: 900;
}

.yeupsi-card-heading h3 span {
    display: block;
    color: var(--ye-blue);
}

.yeupsi-main-description {
    margin: 0 0 16px;
    color: #657989;
    font-size: 14px;
    line-height: 1.9;
}

.yeupsi-benefit-heading {
    margin: 27px 0 16px;
    color: #17364d;
    font-size: 14px;
    font-weight: 900;
}

/* Benefits */

.yeupsi-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.yeupsi-benefit-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 104, 176, 0.08);
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.yeupsi-benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 104, 176, 0.19);
    box-shadow: 0 13px 27px rgba(8, 40, 67, 0.08);
}

.yeupsi-benefit-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    border-radius: 13px;
    background: linear-gradient(
        135deg,
        #06243c,
        var(--ye-blue)
    );
}

.yeupsi-benefit-item strong {
    color: #284357;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 900;
}

/* =========================================
   Installation Process
========================================= */

.yeupsi-process-card {
    position: relative;
    padding: 42px 35px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(55, 184, 255, 0.20),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #03101c 0%,
            #082d49 54%,
            #020a11 100%
        );
    box-shadow: 0 27px 65px rgba(4, 29, 47, 0.23);
}

.yeupsi-process-card::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -105px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(73, 190, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 32px rgba(62, 184, 255, 0.025),
        0 0 0 65px rgba(62, 184, 255, 0.015);
}

.yeupsi-process-heading,
.yeupsi-process-list {
    position: relative;
    z-index: 2;
}

.yeupsi-process-label {
    display: block;
    margin-bottom: 10px;
    color: #4ebaff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeupsi-process-heading h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
}

.yeupsi-process-heading p {
    margin: 0;
    color: rgba(222, 237, 247, 0.68);
    font-size: 13px;
    line-height: 1.8;
}

.yeupsi-process-list {
    display: grid;
    gap: 13px;
    margin-top: 27px;
}

.yeupsi-process-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: flex-start;
    gap: 14px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.yeupsi-process-item:hover {
    transform: translateX(5px);
    border-color: rgba(61, 180, 255, 0.26);
    background: rgba(44, 168, 247, 0.09);
}

.yeupsi-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        #0875c3,
        #36b5ff
    );
    box-shadow: 0 11px 22px rgba(0, 131, 221, 0.24);
}

.yeupsi-process-item h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 900;
}

.yeupsi-process-item p {
    margin: 0;
    color: rgba(218, 234, 245, 0.64);
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================
   Installation Locations
========================================= */

.yeupsi-location-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
    gap: 35px;
    align-items: center;
    margin-top: 28px;
    padding: 38px 42px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 20px 50px rgba(8, 40, 67, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeupsi-location-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: linear-gradient(
        to bottom,
        #06243c,
        var(--ye-blue),
        #35b4ff
    );
}

.yeupsi-location-content,
.yeupsi-location-list {
    position: relative;
    z-index: 2;
}

.yeupsi-location-label {
    display: block;
    margin-bottom: 9px;
    color: var(--ye-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeupsi-location-content h3 {
    margin: 0 0 13px;
    color: #0d273b;
    font-size: 28px;
    line-height: 1.32;
    font-weight: 900;
}

.yeupsi-location-content h3 span {
    display: block;
    color: var(--ye-blue);
}

.yeupsi-location-content p {
    margin: 0;
    color: #687b8b;
    font-size: 13px;
    line-height: 1.8;
}

.yeupsi-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yeupsi-location-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 15px;
    color: #274458;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    border: 1px solid rgba(0, 104, 176, 0.09);
    border-radius: 50px;
    background: #f3f8fb;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.yeupsi-location-list span:hover {
    color: #ffffff;
    border-color: var(--ye-blue);
    background: var(--ye-blue);
    transform: translateY(-2px);
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {

    .yeupsi-heading h2 {
        font-size: 41px;
    }

    .yeupsi-main-layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    }

    .yeupsi-importance-card {
        padding: 35px;
    }

    .yeupsi-process-card {
        padding: 35px 28px;
    }
}

@media (max-width: 991px) {

    .yeupsi-section {
        padding: 85px 0;
    }

    .yeupsi-heading {
        margin-bottom: 48px;
    }

    .yeupsi-heading h2 {
        font-size: 37px;
    }

    .yeupsi-main-layout {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin: 0 auto;
    }

    .yeupsi-location-card {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 767px) {

    .yeupsi-benefit-grid {
        grid-template-columns: 1fr;
    }

    .yeupsi-importance-card,
    .yeupsi-process-card {
        padding: 30px 25px;
    }

    .yeupsi-card-heading h3 {
        font-size: 29px;
    }

    .yeupsi-location-card {
        padding: 32px 28px;
    }
}

@media (max-width: 575px) {

    .yeupsi-section {
        padding: 70px 0;
    }

    .yeupsi-heading {
        margin-bottom: 40px;
    }

    .yeupsi-heading h2 {
        font-size: 30px;
    }

    .yeupsi-heading p {
        font-size: 14px;
    }

    .yeupsi-importance-card,
    .yeupsi-process-card {
        padding: 27px 19px;
        border-radius: 22px;
    }

    .yeupsi-card-heading h3 {
        font-size: 25px;
    }

    .yeupsi-main-description {
        font-size: 13px;
    }

    .yeupsi-benefit-item {
        grid-template-columns: 39px minmax(0, 1fr);
        min-height: 62px;
        padding: 10px 12px;
    }

    .yeupsi-benefit-item span {
        width: 39px;
        height: 39px;
    }

    .yeupsi-process-heading h3 {
        font-size: 26px;
    }

    .yeupsi-process-item {
        grid-template-columns: 43px minmax(0, 1fr);
        padding: 15px;
    }

    .yeupsi-process-number {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .yeupsi-location-card {
        padding: 27px 21px;
        border-radius: 22px;
    }

    .yeupsi-location-content h3 {
        font-size: 24px;
    }

    .yeupsi-location-list span {
        min-height: 37px;
        padding: 7px 12px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .yeupsi-benefit-item,
    .yeupsi-process-item,
    .yeupsi-location-list span {
        transition: none;
    }
}

/* =========================================
   Battery Replacement Service Section
   Unique Prefix: yebr-
========================================= */

.yebr-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 16%,
            rgba(0, 104, 176, 0.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 93% 84%,
            rgba(45, 179, 255, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f4f9fc 0%,
            #ffffff 48%,
            #eef6fb 100%
        );
}

.yebr-section .container {
    position: relative;
    z-index: 3;
}

/* =========================================
   Background Decoration
========================================= */

.yebr-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}

.yebr-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yebr-shape-left {
    top: 140px;
    left: -155px;
    width: 320px;
    height: 320px;
    background: rgba(0, 104, 176, 0.04);
}

.yebr-shape-right {
    right: -135px;
    bottom: 100px;
    width: 285px;
    height: 285px;
    border: 55px solid rgba(0, 104, 176, 0.035);
}

/* =========================================
   Heading
========================================= */

.yebr-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.yebr-heading-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    padding: 9px 18px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.13);
    border-radius: 50px;
    background: rgba(0, 104, 176, 0.055);
}

.yebr-heading h2 {
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1px;
}

.yebr-heading h2 span {
    color: var(--ye-blue);
}

.yebr-heading p {
    max-width: 670px;
    margin: 0 auto;
    color: #687b8b;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================
   Main Grid
========================================= */

.yebr-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(370px, 0.98fr);
    gap: 28px;
    align-items: stretch;
}

/* =========================================
   Warning Signs Card
========================================= */

.yebr-signs-card {
    position: relative;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9fc 100%
        );
    box-shadow:
        0 22px 55px rgba(8, 40, 67, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yebr-signs-card::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;
    width: 245px;
    height: 245px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.045);
}

.yebr-card-heading,
.yebr-sign-list,
.yebr-sign-note {
    position: relative;
    z-index: 2;
}

.yebr-small-label {
    display: block;
    margin-bottom: 11px;
    color: var(--ye-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yebr-card-heading h3 {
    margin: 0 0 17px;
    color: #0d273b;
    font-size: 34px;
    line-height: 1.28;
    font-weight: 900;
}

.yebr-card-heading h3 span {
    display: block;
    color: var(--ye-blue);
}

.yebr-card-heading p {
    margin: 0;
    color: #657989;
    font-size: 14px;
    line-height: 1.85;
}

/* Signs Grid */

.yebr-sign-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 27px;
}

.yebr-sign-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 104, 176, 0.08);
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.yebr-sign-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 104, 176, 0.19);
    box-shadow: 0 13px 27px rgba(8, 40, 67, 0.08);
}

.yebr-sign-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    border-radius: 13px;
    background: linear-gradient(
        135deg,
        #06243c,
        var(--ye-blue)
    );
}

.yebr-sign-item strong {
    color: #284357;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 900;
}

/* Important Note */

.yebr-sign-note {
    margin-top: 22px;
    padding: 19px 20px;
    border-left: 4px solid var(--ye-blue);
    border-radius: 0 16px 16px 0;
    background: rgba(0, 104, 176, 0.055);
}

.yebr-sign-note span {
    display: block;
    margin-bottom: 5px;
    color: var(--ye-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.yebr-sign-note p {
    margin: 0;
    color: #536b7d;
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================
   Evaluation Process Card
========================================= */

.yebr-process-card {
    position: relative;
    padding: 42px 35px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(55, 184, 255, 0.20),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #03101c 0%,
            #082d49 54%,
            #020a11 100%
        );
    box-shadow: 0 27px 65px rgba(4, 29, 47, 0.23);
}

.yebr-process-card::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -110px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(73, 190, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 32px rgba(62, 184, 255, 0.025),
        0 0 0 65px rgba(62, 184, 255, 0.015);
}

.yebr-process-heading,
.yebr-process-list {
    position: relative;
    z-index: 2;
}

.yebr-process-label {
    display: block;
    margin-bottom: 10px;
    color: #4ebaff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yebr-process-heading h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
}

.yebr-process-heading h3 span {
    display: block;
    color: #43b7fb;
}

.yebr-process-heading p {
    margin: 0;
    color: rgba(222, 237, 247, 0.68);
    font-size: 13px;
    line-height: 1.8;
}

/* Process Steps */

.yebr-process-list {
    display: grid;
    gap: 13px;
    margin-top: 27px;
}

.yebr-process-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: flex-start;
    gap: 14px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.yebr-process-item:hover {
    transform: translateX(5px);
    border-color: rgba(61, 180, 255, 0.26);
    background: rgba(44, 168, 247, 0.09);
}

.yebr-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        #0875c3,
        #36b5ff
    );
    box-shadow: 0 11px 22px rgba(0, 131, 221, 0.24);
}

.yebr-process-item h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 900;
}

.yebr-process-item p {
    margin: 0;
    color: rgba(218, 234, 245, 0.64);
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================
   Applications
========================================= */

.yebr-applications-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
    gap: 35px;
    align-items: center;
    margin-top: 28px;
    padding: 38px 42px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 20px 50px rgba(8, 40, 67, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yebr-applications-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: linear-gradient(
        to bottom,
        #06243c,
        var(--ye-blue),
        #35b4ff
    );
}

.yebr-applications-content,
.yebr-applications-list {
    position: relative;
    z-index: 2;
}

.yebr-applications-label {
    display: block;
    margin-bottom: 9px;
    color: var(--ye-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yebr-applications-content h3 {
    margin: 0 0 13px;
    color: #0d273b;
    font-size: 28px;
    line-height: 1.32;
    font-weight: 900;
}

.yebr-applications-content h3 span {
    display: block;
    color: var(--ye-blue);
}

.yebr-applications-content p {
    margin: 0;
    color: #687b8b;
    font-size: 13px;
    line-height: 1.8;
}

.yebr-applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yebr-applications-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 15px;
    color: #274458;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    border: 1px solid rgba(0, 104, 176, 0.09);
    border-radius: 50px;
    background: #f3f8fb;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.yebr-applications-list span:hover {
    color: #ffffff;
    border-color: var(--ye-blue);
    background: var(--ye-blue);
    transform: translateY(-2px);
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {

    .yebr-heading h2 {
        font-size: 41px;
    }

    .yebr-main-grid {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.9fr);
    }

    .yebr-signs-card {
        padding: 35px;
    }

    .yebr-process-card {
        padding: 35px 28px;
    }
}

@media (max-width: 991px) {

    .yebr-section {
        padding: 85px 0;
    }

    .yebr-heading {
        margin-bottom: 48px;
    }

    .yebr-heading h2 {
        font-size: 37px;
    }

    .yebr-main-grid {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin: 0 auto;
    }

    .yebr-applications-card {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 767px) {

    .yebr-sign-list {
        grid-template-columns: 1fr;
    }

    .yebr-signs-card,
    .yebr-process-card {
        padding: 30px 25px;
    }

    .yebr-card-heading h3 {
        font-size: 29px;
    }

    .yebr-applications-card {
        padding: 32px 28px;
    }
}

@media (max-width: 575px) {

    .yebr-section {
        padding: 70px 0;
    }

    .yebr-heading {
        margin-bottom: 40px;
    }

    .yebr-heading h2 {
        font-size: 30px;
    }

    .yebr-heading p {
        font-size: 14px;
    }

    .yebr-signs-card,
    .yebr-process-card {
        padding: 27px 19px;
        border-radius: 22px;
    }

    .yebr-card-heading h3 {
        font-size: 25px;
    }

    .yebr-sign-item {
        grid-template-columns: 39px minmax(0, 1fr);
        min-height: 62px;
        padding: 10px 12px;
    }

    .yebr-sign-number {
        width: 39px;
        height: 39px;
    }

    .yebr-process-heading h3 {
        font-size: 26px;
    }

    .yebr-process-item {
        grid-template-columns: 43px minmax(0, 1fr);
        padding: 15px;
    }

    .yebr-process-number {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .yebr-applications-card {
        padding: 27px 21px;
        border-radius: 22px;
    }

    .yebr-applications-content h3 {
        font-size: 24px;
    }

    .yebr-applications-list span {
        min-height: 37px;
        padding: 7px 12px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .yebr-sign-item,
    .yebr-process-item,
    .yebr-applications-list span {
        transition: none;
    }
}

/* =========================================
   UPS Maintenance Service Section
   Unique Prefix: yeupsm-
========================================= */

.yeupsm-section {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(0, 104, 176, 0.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 93% 84%,
            rgba(48, 181, 255, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f4f9fc 0%,
            #ffffff 49%,
            #eef6fb 100%
        );
}

.yeupsm-section .container {
    position: relative;
    z-index: 3;
}

/* =========================================
   Background
========================================= */

.yeupsm-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}

.yeupsm-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yeupsm-shape-left {
    top: 140px;
    left: -155px;
    width: 325px;
    height: 325px;
    background: rgba(0, 104, 176, 0.04);
}

.yeupsm-shape-right {
    right: -135px;
    bottom: 90px;
    width: 285px;
    height: 285px;
    border: 55px solid rgba(0, 104, 176, 0.035);
}

/* =========================================
   Main Heading
========================================= */

.yeupsm-heading {
    max-width: 810px;
    margin: 0 auto 60px;
    text-align: center;
}

.yeupsm-heading-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    padding: 9px 18px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.13);
    border-radius: 50px;
    background: rgba(0, 104, 176, 0.055);
}

.yeupsm-heading h2 {
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1px;
}

.yeupsm-heading h2 span {
    color: var(--ye-blue);
}

.yeupsm-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #687b8b;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================
   Top Layout
========================================= */

.yeupsm-top-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: 28px;
    align-items: stretch;
}

/* =========================================
   Importance Card
========================================= */

.yeupsm-importance-card {
    position: relative;
    padding: 43px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9fc 100%
        );
    box-shadow:
        0 22px 55px rgba(8, 40, 67, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeupsm-importance-card::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;
    width: 245px;
    height: 245px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.045);
}

.yeupsm-card-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 11px;
    color: var(--ye-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeupsm-importance-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 19px;
    color: #0d273b;
    font-size: 34px;
    line-height: 1.28;
    font-weight: 900;
}

.yeupsm-importance-card h3 span {
    display: block;
    color: var(--ye-blue);
}

.yeupsm-importance-card > p {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    color: #657989;
    font-size: 14px;
    line-height: 1.9;
}

/* Highlight Strip */

.yeupsm-highlight-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 27px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(0, 104, 176, 0.08);
}

.yeupsm-highlight-strip > div {
    padding: 18px 16px;
    background: #ffffff;
}

.yeupsm-highlight-strip strong {
    display: block;
    margin-bottom: 5px;
    color: #15364e;
    font-size: 13px;
    font-weight: 900;
}

.yeupsm-highlight-strip span {
    display: block;
    color: #788b99;
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================
   Applications Card
========================================= */

.yeupsm-applications-card {
    position: relative;
    padding: 42px 35px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(55, 184, 255, 0.2),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #03101c 0%,
            #082d49 54%,
            #020a11 100%
        );
    box-shadow: 0 27px 65px rgba(4, 29, 47, 0.23);
}

.yeupsm-applications-card::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -105px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(73, 190, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 32px rgba(62, 184, 255, 0.025),
        0 0 0 65px rgba(62, 184, 255, 0.015);
}

.yeupsm-applications-heading,
.yeupsm-application-list {
    position: relative;
    z-index: 2;
}

.yeupsm-dark-label {
    display: block;
    margin-bottom: 10px;
    color: #4ebaff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeupsm-applications-heading h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
}

.yeupsm-applications-heading h3 span {
    display: block;
    color: #43b7fb;
}

.yeupsm-applications-heading p {
    margin: 0;
    color: rgba(222, 237, 247, 0.68);
    font-size: 13px;
    line-height: 1.8;
}

/* Application List */

.yeupsm-application-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.yeupsm-application-item {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 62px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.yeupsm-application-item:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 180, 255, 0.26);
    background: rgba(44, 168, 247, 0.09);
}

.yeupsm-application-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #0875c3,
        #36b5ff
    );
}

.yeupsm-application-item strong {
    color: rgba(241, 248, 253, 0.9);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 800;
}

/* =========================================
   Maintenance Checking Card
========================================= */

.yeupsm-checking-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
    gap: 36px;
    align-items: center;
    margin-top: 28px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 30px;
    background: #ffffff;
    box-shadow:
        0 21px 52px rgba(8, 40, 67, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeupsm-checking-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: linear-gradient(
        to bottom,
        #06243c,
        var(--ye-blue),
        #35b4ff
    );
}

.yeupsm-checking-content,
.yeupsm-check-grid {
    position: relative;
    z-index: 2;
}

.yeupsm-checking-content h3 {
    margin: 0 0 14px;
    color: #0d273b;
    font-size: 30px;
    line-height: 1.32;
    font-weight: 900;
}

.yeupsm-checking-content h3 span {
    display: block;
    color: var(--ye-blue);
}

.yeupsm-checking-content p {
    margin: 0;
    color: #687b8b;
    font-size: 13px;
    line-height: 1.85;
}

/* Checking Items */

.yeupsm-check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
}

.yeupsm-check-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 104, 176, 0.08);
    border-radius: 15px;
    background: #f5f9fc;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.yeupsm-check-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 104, 176, 0.18);
    background: #ffffff;
    box-shadow: 0 11px 23px rgba(8, 40, 67, 0.07);
}

.yeupsm-check-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--ye-blue);
    font-size: 8px;
    font-weight: 900;
    border-radius: 10px;
    background: rgba(0, 104, 176, 0.09);
}

.yeupsm-check-item strong {
    color: #294458;
    font-size: 11px;
    line-height: 1.45;
    font-weight: 800;
}

/* =========================================
   Benefits Card
========================================= */

.yeupsm-benefits-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
    gap: 40px;
    align-items: center;
    margin-top: 28px;
    padding: 42px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #06243c 0%,
            #083957 55%,
            var(--ye-blue) 150%
        );
    box-shadow: 0 24px 58px rgba(4, 31, 51, 0.2);
}

.yeupsm-benefits-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.yeupsm-benefits-heading,
.yeupsm-benefits-content {
    position: relative;
    z-index: 2;
}

.yeupsm-benefits-label {
    display: block;
    margin-bottom: 10px;
    color: #5ec3ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeupsm-benefits-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.32;
    font-weight: 900;
}

.yeupsm-benefits-heading h3 span {
    display: block;
    color: #54bfff;
}

.yeupsm-benefits-content {
    padding-left: 28px;
    border-left: 2px solid rgba(76, 190, 255, 0.3);
}

.yeupsm-benefits-content p {
    margin: 0 0 16px;
    color: rgba(226, 239, 248, 0.72);
    font-size: 14px;
    line-height: 1.9;
}

.yeupsm-benefits-content p:last-child {
    margin-bottom: 0;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {

    .yeupsm-heading h2 {
        font-size: 41px;
    }

    .yeupsm-top-layout {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.92fr);
    }

    .yeupsm-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    .yeupsm-section {
        padding: 85px 0;
    }

    .yeupsm-heading {
        margin-bottom: 48px;
    }

    .yeupsm-heading h2 {
        font-size: 37px;
    }

    .yeupsm-top-layout {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin: 0 auto;
    }

    .yeupsm-checking-card,
    .yeupsm-benefits-card {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin-right: auto;
        margin-left: auto;
    }

    .yeupsm-benefits-content {
        padding-top: 22px;
        padding-left: 0;
        border-top: 2px solid rgba(76, 190, 255, 0.3);
        border-left: 0;
    }
}

@media (max-width: 767px) {

    .yeupsm-highlight-strip {
        grid-template-columns: 1fr;
    }

    .yeupsm-checking-card {
        padding: 34px 28px;
    }

    .yeupsm-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yeupsm-benefits-card {
        padding: 35px 28px;
    }
}

@media (max-width: 575px) {

    .yeupsm-section {
        padding: 70px 0;
    }

    .yeupsm-heading {
        margin-bottom: 40px;
    }

    .yeupsm-heading h2 {
        font-size: 30px;
    }

    .yeupsm-heading p {
        font-size: 14px;
    }

    .yeupsm-importance-card,
    .yeupsm-applications-card {
        padding: 27px 20px;
        border-radius: 22px;
    }

    .yeupsm-importance-card h3 {
        font-size: 25px;
    }

    .yeupsm-applications-heading h3 {
        font-size: 25px;
    }

    .yeupsm-application-list {
        grid-template-columns: 1fr;
    }

    .yeupsm-checking-card {
        padding: 28px 21px;
        border-radius: 22px;
    }

    .yeupsm-checking-content h3 {
        font-size: 25px;
    }

    .yeupsm-check-grid {
        grid-template-columns: 1fr;
    }

    .yeupsm-benefits-card {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .yeupsm-benefits-heading h3 {
        font-size: 25px;
    }

    .yeupsm-benefits-content p {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .yeupsm-application-item,
    .yeupsm-check-item {
        transition: none;
    }
}

/* =========================================
   UPS AMC Service Section
   Unique Prefix: yeamc-
========================================= */

.yeamc-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 16%,
            rgba(0, 104, 176, 0.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 93% 84%,
            rgba(45, 179, 255, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f4f9fc 0%,
            #ffffff 49%,
            #eef6fb 100%
        );
}

.yeamc-section .container {
    position: relative;
    z-index: 3;
}

/* =========================================
   Background Decorations
========================================= */

.yeamc-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 104, 176, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}

.yeamc-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yeamc-shape-left {
    top: 145px;
    left: -160px;
    width: 325px;
    height: 325px;
    background: rgba(0, 104, 176, 0.04);
}

.yeamc-shape-right {
    right: -135px;
    bottom: 95px;
    width: 285px;
    height: 285px;
    border: 55px solid rgba(0, 104, 176, 0.035);
}

/* =========================================
   Section Heading
========================================= */

.yeamc-heading {
    max-width: 810px;
    margin: 0 auto 60px;
    text-align: center;
}

.yeamc-heading-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    padding: 9px 18px;
    color: var(--ye-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 104, 176, 0.13);
    border-radius: 50px;
    background: rgba(0, 104, 176, 0.055);
}

.yeamc-heading h2 {
    margin: 0 0 18px;
    color: #0b1d2f;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1px;
}

.yeamc-heading h2 span {
    color: var(--ye-blue);
}

.yeamc-heading p {
    max-width: 690px;
    margin: 0 auto;
    color: #687b8b;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================
   Top Layout
========================================= */

.yeamc-top-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* =========================================
   Importance Card
========================================= */

.yeamc-importance-card {
    position: relative;
    padding: 43px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9fc 100%
        );
    box-shadow:
        0 22px 55px rgba(8, 40, 67, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeamc-importance-card::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;
    width: 245px;
    height: 245px;
    border-radius: 50%;
    background: rgba(0, 104, 176, 0.045);
}

.yeamc-card-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 11px;
    color: var(--ye-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeamc-importance-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 19px;
    color: #0d273b;
    font-size: 34px;
    line-height: 1.28;
    font-weight: 900;
}

.yeamc-importance-card h3 span {
    display: block;
    color: var(--ye-blue);
}

.yeamc-importance-card > p {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    color: #657989;
    font-size: 14px;
    line-height: 1.9;
}

/* Risk Grid */

.yeamc-risk-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 27px;
}

.yeamc-risk-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 104, 176, 0.08);
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.yeamc-risk-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 104, 176, 0.19);
    box-shadow: 0 13px 27px rgba(8, 40, 67, 0.08);
}

.yeamc-risk-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    border-radius: 13px;
    background: linear-gradient(
        135deg,
        #06243c,
        var(--ye-blue)
    );
}

.yeamc-risk-item strong {
    color: #284357;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 900;
}

/* =========================================
   Included Card
========================================= */

.yeamc-included-card {
    position: relative;
    padding: 42px 35px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(55, 184, 255, 0.2),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #03101c 0%,
            #082d49 54%,
            #020a11 100%
        );
    box-shadow: 0 27px 65px rgba(4, 29, 47, 0.23);
}

.yeamc-included-card::before {
    content: "";
    position: absolute;
    right: -105px;
    bottom: -110px;
    width: 255px;
    height: 255px;
    border: 1px solid rgba(73, 190, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 32px rgba(62, 184, 255, 0.025),
        0 0 0 65px rgba(62, 184, 255, 0.015);
}

.yeamc-included-heading,
.yeamc-included-list,
.yeamc-contract-note {
    position: relative;
    z-index: 2;
}

.yeamc-dark-label {
    display: block;
    margin-bottom: 10px;
    color: #4ebaff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.yeamc-included-heading h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
}

.yeamc-included-heading h3 span {
    display: block;
    color: #43b7fb;
}

.yeamc-included-heading p {
    margin: 0;
    color: rgba(222, 237, 247, 0.68);
    font-size: 13px;
    line-height: 1.8;
}

/* Included Items */

.yeamc-included-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.yeamc-included-item {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.05);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.yeamc-included-item:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 180, 255, 0.26);
    background: rgba(44, 168, 247, 0.09);
}

.yeamc-included-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    border-radius: 13px;
    background: linear-gradient(
        135deg,
        #0875c3,
        #36b5ff
    );
}

.yeamc-included-item h4 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 900;
}

.yeamc-included-item p {
    margin: 0;
    color: rgba(218, 234, 245, 0.62);
    font-size: 11px;
    line-height: 1.65;
}

/* Contract Notice */

.yeamc-contract-note {
    margin-top: 22px;
    padding: 18px 19px;
    border-left: 4px solid #45b8ff;
    border-radius: 0 16px 16px 0;
    background: rgba(62, 184, 255, 0.09);
}

.yeamc-contract-note span {
    display: block;
    margin-bottom: 6px;
    color: #56c0ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.yeamc-contract-note p {
    margin: 0;
    color: rgba(224, 238, 247, 0.72);
    font-size: 12px;
    line-height: 1.75;
}

/* =========================================
   UPS Systems Card
========================================= */

.yeamc-systems-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
    gap: 40px;
    align-items: center;
    margin-top: 28px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, 0.09);
    border-radius: 30px;
    background: #ffffff;
    box-shadow:
        0 21px 52px rgba(8, 40, 67, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yeamc-systems-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: linear-gradient(
        to bottom,
        #06243c,
        var(--ye-blue),
        #35b4ff
    );
}

.yeamc-systems-content,
.yeamc-systems-grid {
    position: relative;
    z-index: 2;
}

.yeamc-systems-content h3 {
    margin: 0 0 14px;
    color: #0d273b;
    font-size: 30px;
    line-height: 1.32;
    font-weight: 900;
}

.yeamc-systems-content h3 span {
    display: block;
    color: var(--ye-blue);
}

.yeamc-systems-content p {
    margin: 0;
    color: #687b8b;
    font-size: 13px;
    line-height: 1.85;
}

/* System Grid */

.yeamc-systems-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.yeamc-system-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 80px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 104, 176, 0.08);
    border-radius: 18px;
    background: #f5f9fc;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.yeamc-system-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 104, 176, 0.18);
    background: #ffffff;
    box-shadow: 0 13px 28px rgba(8, 40, 67, 0.08);
}

.yeamc-system-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        #06243c,
        var(--ye-blue)
    );
    box-shadow: 0 10px 21px rgba(0, 104, 176, 0.18);
}

.yeamc-system-item small {
    display: block;
    margin-bottom: 4px;
    color: #8494a0;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.yeamc-system-item h4 {
    margin: 0;
    color: #17364d;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 900;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199px) {

    .yeamc-heading h2 {
        font-size: 41px;
    }

    .yeamc-top-layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    }

    .yeamc-included-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

    .yeamc-section {
        padding: 85px 0;
    }

    .yeamc-heading {
        margin-bottom: 48px;
    }

    .yeamc-heading h2 {
        font-size: 37px;
    }

    .yeamc-top-layout {
        grid-template-columns: 1fr;
        max-width: 790px;
        margin: 0 auto;
    }

    .yeamc-included-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yeamc-systems-card {
        grid-template-columns: 1fr;
        max-width: 790px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 767px) {

    .yeamc-risk-grid,
    .yeamc-included-list,
    .yeamc-systems-grid {
        grid-template-columns: 1fr;
    }

    .yeamc-importance-card,
    .yeamc-included-card {
        padding: 32px 27px;
    }

    .yeamc-systems-card {
        padding: 34px 28px;
    }
}

@media (max-width: 575px) {

    .yeamc-section {
        padding: 70px 0;
    }

    .yeamc-heading {
        margin-bottom: 40px;
    }

    .yeamc-heading h2 {
        font-size: 30px;
    }

    .yeamc-heading p {
        font-size: 14px;
    }

    .yeamc-importance-card,
    .yeamc-included-card {
        padding: 27px 20px;
        border-radius: 22px;
    }

    .yeamc-importance-card h3 {
        font-size: 25px;
    }

    .yeamc-included-heading h3 {
        font-size: 25px;
    }

    .yeamc-risk-item {
        grid-template-columns: 39px minmax(0, 1fr);
        min-height: 62px;
        padding: 10px 12px;
    }

    .yeamc-risk-item span {
        width: 39px;
        height: 39px;
    }

    .yeamc-included-item {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 13px;
    }

    .yeamc-included-item > span {
        width: 40px;
        height: 40px;
    }

    .yeamc-systems-card {
        padding: 28px 21px;
        border-radius: 22px;
    }

    .yeamc-systems-content h3 {
        font-size: 25px;
    }

    .yeamc-system-item {
        grid-template-columns: 46px minmax(0, 1fr);
        min-height: 72px;
        padding: 12px 14px;
    }

    .yeamc-system-number {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .yeamc-risk-item,
    .yeamc-included-item,
    .yeamc-system-item {
        transition: none;
    }
}

.whatsapp-float {
      position: fixed;
      width: 55px;
      height: 55px;
      bottom: 45px;
      right: 15px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 26px;
      box-shadow: 0 4px 15px rgba(0,0,0,.2);
      z-index: 1000;
      transition: transform .3s ease;
      text-decoration: none !important;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
    }
    
    @media (max-width:768px) {
        .whatsapp-float {
    display: none !important;
}
    }
