:root {
  --body-font: "Open Sans", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --theme-color: #FF6B35;
  --theme-color2: #D94E1D;
  --theme-color3: #4CAF50;
  --theme-color4: #29862d;
  --khung: 50px;
  --bg: 80px;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
  top: 0 !important;
  overflow-x: hidden;
}

a {
  color:  var(--color-dark);
  display: inline-block;
  text-decoration: none;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}
.bg{background: linear-gradient(90deg, #ff885d12 0%, #ffa98914 100%), #FFF;padding: var(--bg) 0 !important}
/* end reset */
.wrap-menu {
    background-color: #f8f9fa;
}

        /* ==============================
           DESKTOP NAVBAR STYLES
           ============================== */
           .wrap-menu .navbar {
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            padding: 0;
            height: 80px;
            position: relative;
            z-index: 100;
        }

        .wrap-menu .container-custom {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            position: relative;
        }

        .wrap-menu .navbar-brand img {
            height: 36px;
        }

        .wrap-menu .nav-link {
            color: #334155;
            font-weight: 700;
            font-size: 15px;
            padding: 28px 15px !important;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s;
            cursor: pointer;
            position: relative;
        }

        .wrap-menu .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--theme-color);
            transition: width 0.3s ease;
            border-radius: 3px 3px 0 0;
        }

        .wrap-menu .nav-link:hover {
            color: var(--theme-color);
        }

        .wrap-menu .nav-link:hover::after {
            width: 80%;
        }

        .wrap-menu .nav-link i {
            font-size: 11px;
            margin-top: 2px;
            color: #94a3b8;
            transition: transform 0.3s;
        }
        
        .wrap-menu .nav-item:hover .nav-link i {
            transform: rotate(180deg);
            color: var(--theme-color);
        }

        .wrap-menu .badge-new {
            background: #ff4646;
            color: #fff;
            font-size: 9px;
            font-weight: 800;
            padding: 3px 6px;
            border-radius: 6px;
            position: absolute;
            top: 14px;
            right: -5px;
            line-height: 1;
            box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);
        }

        .wrap-menu .nav-item {
            position: static;
        }

        .wrap-menu .btn-login {
            background: linear-gradient(90deg, var(--theme-color), #0056d2);
            color: #fff;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0, 104, 255, 0.2);
        }

        .wrap-menu .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 104, 255, 0.3);
            color: #fff;
        }

        /* ==============================
           MEGA MENU GENERAL
           ============================== */
           .wrap-menu .mega-menu-wrapper {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            border-top: 1px solid #f1f5f9;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 99;
            padding: 30px 0 40px 0;
            border-radius: 0 0 20px 20px;
        }

        .wrap-menu .nav-item:hover .mega-menu-wrapper {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .wrap-menu .mega-content {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ==============================
           HOSTING & LOGISTICS CARD STYLES
           ============================== */
           .wrap-menu .host-card {
            display: flex;
            gap: 16px;
            padding: 20px;
            border-radius: 16px;
            transition: all 0.2s ease;
            height: 100%;
            border: 1px solid transparent;
            text-decoration: none;
        }

        .wrap-menu .host-card:hover {
            background-color: #f8fafc;
            border-color: #e2e8f0;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.03);
        }

        .wrap-menu .host-icon {
            width: 52px;
            height: 52px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border: 1px solid #f1f5f9;
            font-size: 24px;
            color: var(--theme-color);
        }
        
        .wrap-menu .host-icon img { width: 30px; height: 30px; }
        .wrap-menu .host-info { flex-grow: 1; }
        .wrap-menu .host-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
        .wrap-menu .host-title {font-size: 16px;font-weight: 800;color: #0f172a;margin: 0;font-family: var(--heading-font);}
        .wrap-menu .host-badge {background: #ff4646;color: white;font-size: 10px;padding: 3px 8px;border-radius: 20px;font-weight: 700;text-transform: uppercase;}
        .wrap-menu .host-desc {font-size: 13.5px;color: #64748b;margin-bottom: 12px;line-height: 1.5;font-weight: 500;margin-top: 1px !important;}
        
        /* Speed bar & Features */
        .wrap-menu .speed-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #64748b; margin-bottom: 10px; font-weight: 600; }
        .wrap-menu .speed-track { width: 100px; height: 6px; background: #e2e8f0; border-radius: 10px; overflow: hidden; }
        .wrap-menu .speed-bar {height: 100%;background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));border-radius: 10px;}

        /* ==============================
           LOGISTICS SPECIFIC STYLES
           ============================== */
           /* Tracking Box */
           .wrap-menu .logistics-track-box {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 16px;
            padding: 30px;
            color: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
        }
        .wrap-menu .logi-track-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .wrap-menu .logi-track-desc { font-size: 14px; opacity: 0.8; margin-bottom: 20px; line-height: 1.5; }
        .wrap-menu .logi-input-group { position: relative; display: flex; background: rgba(255,255,255,0.1); border-radius: 8px; padding: 4px; border: 1px solid rgba(255,255,255,0.1); }
        .wrap-menu .logi-input { background: transparent; border: none; color: #fff; padding: 10px 15px; width: 100%; outline: none; font-size: 14px; }
        .wrap-menu .logi-input::placeholder { color: rgba(255,255,255,0.5); }
        .wrap-menu .logi-btn { background: var(--theme-color); color: #fff; border: none; padding: 8px 15px; border-radius: 6px; cursor: pointer; font-weight: 600; transition: background 0.2s; }
        .wrap-menu .logi-btn:hover { background: #2563eb; }
        
        .wrap-menu .logi-support-link { margin-top: 25px; font-size: 13px; color: #94a3b8; display: flex; align-items: center; gap: 8px; }
        .wrap-menu .logi-support-link i { color: #22d3ee; }

        /* Logistics Icons Customization */
        .wrap-menu .host-icon.ship { color: #0284c7; background: #e0f2fe; border-color: #bae6fd; }
        .wrap-menu .host-icon.plane { color: #d97706; background: #fef3c7; border-color: #fde68a; }
        .wrap-menu .host-icon.truck { color: #059669; background: #d1fae5; border-color: #a7f3d0; }
        .wrap-menu .host-icon.box { color: #7c3aed; background: #ede9fe; border-color: #ddd6fe; }

        /* ==============================
           DOMAIN MENU STYLES
           ============================== */
           .wrap-menu .domain-layout { display: flex; gap: 40px; }
           .wrap-menu .domain-intro-box { background: linear-gradient(145deg, #eff6ff, #dbeafe); border-radius: 16px; padding: 30px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
           .wrap-menu .domain-intro-title {font-size: 24px;font-weight: 800;col;color: #060f25;gin-bottom: 10px;}
           .wrap-menu .domain-intro-desc {color: #3b3b3b;font-weight: 600;margin-bottom: 25px;font-size: 15px;}
           .wrap-menu .domain-search-mock { background: #fff; padding: 8px; border-radius: 10px; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15); display: flex; gap: 10px; }
           .wrap-menu .mock-input { flex-grow: 1; border: none; background: transparent; padding-left: 10px; font-size: 14px; color: #94a3b8; display: flex; align-items: center; }
           .wrap-menu .mock-btn {background: var(--theme-color);color: white;border: none;border-radius: 8px;padding: 8px 15px;font-size: 14px;font-weight: 600;}
           .wrap-menu .domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
           .wrap-menu .domain-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 15px 20px; display: flex; flex-direction: column; align-items: flex-start; transition: all 0.3s; position: relative; overflow: hidden; }
           .wrap-menu .domain-item:hover {border-color: var(--theme-color);box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);transform: translateY(-3px);}
           .wrap-menu .domain-ext { font-size: 20px; font-weight: 800; color: #0f172a; margin-bottom: 5px; }
           .wrap-menu .domain-dot { color: #2563eb; }
           .wrap-menu .domain-prices { display: flex; flex-direction: column; }
           .wrap-menu .price-new { font-weight: 700; color: #dc2626; font-size: 15px; }
           .wrap-menu .price-old { font-size: 12px; color: #94a3b8; text-decoration: line-through; }
           .wrap-menu .badge-hot {position: absolute;top: 0;right: 0;background: var(--theme-color3);color: white;font-size: 9px;font-weight: 800;padding: 2px 8px;border-bottom-left-radius: 8px;}
           .wrap-menu .domain-transfer-link { display: inline-block; margin-top: 25px; font-weight: 700; color: #2563eb; text-decoration: none; font-size: 14px; }
           .wrap-menu .domain-transfer-link:hover { text-decoration: underline; }

        /* ==============================
           BLOG / NEWS MENU STYLES
           ============================== */
           .wrap-menu .blog-layout { display: flex; gap: 30px; }
           .wrap-menu .blog-sidebar { flex: 0 0 300px; background: #f8fafc; border-radius: 12px; padding: 20px; border: 1px solid #e2e8f0; }
           .wrap-menu .blog-featured-card { text-decoration: none; display: block; color: inherit; }
           .wrap-menu .blog-feat-img { width: 100%; height: 160px; border-radius: 8px; overflow: hidden; margin-bottom: 15px; position: relative; }
           .wrap-menu .blog-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
           .wrap-menu .blog-featured-card:hover .blog-feat-img img { transform: scale(1.08); }
           .wrap-menu .blog-tag {background: var(--theme-color);color: #fff;font-size: 10px;font-weight: 700;padding: 4px 8px;border-radius: 4px;position: absolute;top: 10px;left: 10px;text-transform: uppercase;}
           .wrap-menu .blog-feat-title { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 8px; line-height: 1.4; transition: color 0.2s; }
           .wrap-menu .blog-featured-card:hover .blog-feat-title {color: var(--theme-color);}
           .wrap-menu .blog-feat-meta { font-size: 12px; color: #64748b; display: flex; align-items: center; gap: 5px; }
           .wrap-menu .blog-grid { flex-grow: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
           .wrap-menu .blog-cat-group { margin-bottom: 10px; }
           .wrap-menu .blog-cat-header { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; padding-bottom: 8px; border-bottom: 2px solid #f1f5f9; }
           .wrap-menu .blog-cat-header i {color: var(--theme-color);background: rgb(231 252 255);width: 28px;height: 28px;display: flex;align-items: center;justify-content: center;border-radius: 6px;font-size: 13px;}
           .wrap-menu .blog-sub-list { list-style: none; padding: 0; margin: 0; }
           .wrap-menu .blog-sub-item { margin-bottom: 8px; }
           .wrap-menu .blog-sub-link { text-decoration: none; color: #64748b; font-size: 14px; font-weight: 500; display: block; padding: 5px 0 5px 12px; position: relative; transition: all 0.2s ease; }
           .wrap-menu .blog-sub-link::before { content: ''; position: absolute; left: 0; top: 13px; width: 4px; height: 4px; background: #cbd5e1; border-radius: 50%; transition: all 0.2s; }
           .wrap-menu .blog-sub-link:hover {color: var(--theme-color);transform: translateX(5px);}
           .wrap-menu .blog-sub-link:hover::before {background: var(--theme-color);width: 6px;height: 6px;top: 12px;}
           .wrap-menu .blog-view-all { margin-top: 10px; display: inline-flex; align-items: center; font-size: 13px; font-weight: 700; color: #2563eb; text-decoration: none; gap: 5px; }
           .wrap-menu .blog-view-all:hover { text-decoration: underline; }

           /* Generic Promo Banner */
           .wrap-menu .menu-promo-banner {
            margin-top: 30px;
            background: linear-gradient(90deg, #1e40af, #3b82f6);
            border-radius: 12px;
            padding: 12px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
        }

        .wrap-menu .promo-btn {
            background: #ffffff;
            color: #1e40af;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            transition: transform 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        .wrap-menu .promo-btn:hover { transform: scale(1.05); background: #f8fafc; }

        /* ==============================
           MOBILE MENU STYLES
           ============================== */
           .wrap-menu .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #fff;
            z-index: 9999;
            display: none;
            flex-direction: column;
            overflow-y: auto;
        }
        
        .wrap-menu .mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #f1f5f9;
            background: #fff;
            position: sticky; top: 0; z-index: 10;
        }
        
        .wrap-menu .mobile-close-btn { font-size: 24px; color: #334155; cursor: pointer; padding: 5px; }
        .wrap-menu .mobile-content { padding: 20px; flex-grow: 1; }
        .wrap-menu .mobile-nav-list { list-style: none; padding: 0; margin: 0; }
        .wrap-menu .mobile-nav-item { border-bottom: 1px solid #f1f5f9; }
        .wrap-menu .mobile-nav-link { display: flex; justify-content: space-between; padding: 18px 0; font-weight: 700; cursor: pointer; color: #0f172a; font-size: 16px; }
        .wrap-menu .mobile-submenu { display: none; padding-bottom: 15px; background: #f8fafc; margin: 0 -20px; padding: 10px 20px; box-shadow: inset 0 2px 6px rgba(0,0,0,0.03); }
        .wrap-menu .navbar-toggler { border: none; font-size: 24px; color: #334155; }

        .wrap-menu .mobile-submenu .host-card { border-bottom: 1px dashed #cbd5e1; padding: 15px 0; border-radius: 0; background: transparent; }
        .wrap-menu .mobile-submenu .host-card:hover { transform: none; box-shadow: none; }
        .wrap-menu .mobile-submenu .host-card:last-child { border-bottom: none; }
        
        .wrap-menu .mobile-domain-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed #cbd5e1; }
        .wrap-menu .mobile-domain-ext { font-weight: 800; font-size: 16px; }
        .wrap-menu .mobile-domain-price { color: #dc2626; font-weight: 700; }

        /* Mobile Nested Level 3 */
        .wrap-menu .mobile-lvl3-title { font-weight: 700; color: #1e293b; margin-top: 15px; margin-bottom: 8px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
        .wrap-menu .mobile-lvl3-list { list-style: none; padding-left: 20px; border-left: 2px solid #e2e8f0; margin-left: 5px; }
        .wrap-menu .mobile-lvl3-link { display: block; padding: 6px 0; color: #64748b; font-size: 14px; text-decoration: none; }
        
        .wrapheader {
            background-color: var(--theme-color); /* Elegant Dark Navy */
            color: #ffffff;
            position: relative;
            z-index: 1000;
        }

        .wrapheader .top-bar-premium {
            padding: 10px 0;
            font-size: 0.875rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .wrapheader .contact-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            margin-right: 24px;
        }

        .wrapheader .contact-link i {
            margin-right: 8px;
            color: #ffffff; /* Soft blue accent */
            font-size: 1.1rem;
        }

        .wrapheader .contact-link:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }

        .wrapheader .lang-dropdown {
            position: relative;
            cursor: pointer;
            padding: 0 15px;
            display: inline-flex;
            align-items: center;
            user-select: none;
        }

        .wrapheader .lang-dropdown i.globe {
            margin-right: 8px;
            color: #ffffff;
        }

        .wrapheader .lang-dropdown i.chevron {
            margin-left: 6px;
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .wrapheader .lang-dropdown.active i.chevron {
            transform: rotate(180deg);
        }

        .wrapheader .lang-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: #ffffff;
            color: #1e293b;
            min-width: 140px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            padding: 8px;
            margin-top: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 1001;
        }

        .wrapheader .lang-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .wrapheader .lang-item {
            padding: 8px 12px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background 0.2s;
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
        }

        .wrapheader .lang-item:hover {
            background: #eafcff;
            color: var(--theme-color2);
        }

        .wrapheader .social-group {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 20px;
            padding-left: 20px;
            border-left: 1px solid rgba(255,255,255,0.2);
        }

        .wrapheader .social-link {
            color: rgba(255, 255, 255, 0.8);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .wrapheader .social-link:hover {
            background: #ffffff;
            color: var(--theme-color);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .wrapheader .divider-vertical {
            width: 1px;
            height: 16px;
            background: rgba(255,255,255,0.2);
            margin: 0 10px;
        }
        .account-dropdown-wrapper {
            position: relative;
        }
        .account-dropdown-wrapper .btn-account-toggle {
            background: var(--theme-color);
            border: 1px solid var(--theme-color);
            padding: 10px 20px;
            border-radius: 12px;
            font-weight: 600;
            color: var(--text-main);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: #ffffff;
        }

        .account-dropdown-wrapper .btn-account-toggle:hover, .account-dropdown-wrapper .btn-account-toggle.active {
            border-color: var(--theme-color2);
            color: #ffffff;
            background: var(--theme-color2);
        }

        .account-dropdown-wrapper .btn-account-toggle i:last-child {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .account-dropdown-wrapper .btn-account-toggle.active i:last-child {
            transform: rotate(180deg);
        }

        /* Login Card - Hidden by Default */
        .account-dropdown-wrapper .login-card-dropdown {
            position: absolute;
            top: calc(100% + 15px); /* Hiện ngay dưới nút */
            right: 0;
            width: 400px;
            background: #ffffff;
            padding: 32px;
            border-radius: 24px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(0, 0, 0, 0.05);
            
            /* Animation Setup */
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.95);
            transform-origin: top right;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .account-dropdown-wrapper .login-card-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        /* Form Styling */
        .account-dropdown-wrapper .login-card-dropdown h2 {
            font-weight: 800;
            font-size: 22px;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .account-dropdown-wrapper .login-card-dropdown .subtitle {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .account-dropdown-wrapper .form-label {
            font-weight: 600;
            font-size: 13px;
            margin-bottom: 8px;
        }

        .account-dropdown-wrapper .form-control {
            border-radius: 12px;
            padding: 12px 16px;
            border: 1.5px solid #f1f5f9;
            background: #f8fafc;
            font-size: 14px;
            transition: all 0.2s;
        }

        .account-dropdown-wrapper .form-control:focus {
            box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
            border-color: var(--theme-color);
            background: #fff;
        }

        .account-dropdown-wrapper .btn-login {
            background: var(--theme-color);
            color: white;
            border: none;
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            margin-top: 10px;
            transition: all 0.3s;
        }

        .account-dropdown-wrapper .btn-login:hover {
            background: var(--theme-color2);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
        }

        .account-dropdown-wrapper .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 20px 0;
            color: #cbd5e1;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .account-dropdown-wrapper .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #e2e8f0;
        }

        .account-dropdown-wrapper .divider span { padding: 0 10px; }

        .account-dropdown-wrapper .btn-google {
            width: 100%;
            border: 1px solid #e2e8f0;
            background: white;
            padding: 12px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.2s;
            margin-bottom: 4px;
        }

        .account-dropdown-wrapper .btn-google:hover { background: #f8fafc; }
         .wrapslider {
            background-color: #020617; /* Rich Dark Navy */
            color: #ffffff;
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100vh;
            min-height: 700px;
        }

        /* --- Background Effects --- */
        .wrapslider .ambient-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
            top: -20%;
            left: -10%;
            z-index: 0;
            pointer-events: none;
        }

        /* --- Swiper Setup --- */
        .wrapslider .main-swiper {
            width: 100%;
            height: 100%;
        }

        .wrapslider .swiper-slide {
            background: transparent;
            overflow: hidden;
        }

        .wrapslider .container-fluid-custom {
            padding: 0 5vw;
            height: 100%;
        }

        /* --- Content Layout (Left) --- */
        .wrapslider .content-wrapper {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            padding-right: 2rem;
        }

        .wrapslider .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #bfdbfe;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            width: fit-content;
        }

        .wrapslider .badge-dot {
            width: 8px;
            height: 8px;
            background-color: var(--theme-color);
            border-radius: 50%;
            box-shadow: 0 0 10px #3b82f6;
        }

        .wrapslider h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .wrapslider .text-gradient {
            background: var(--theme-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: gradientMove 5s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .wrapslider p.desc {
            font-size: 1.125rem;
            color: #94a3b8;
            line-height: 1.7;
            max-width: 550px;
            margin-bottom: 2.5rem;
        }

        /* Buttons */
        .wrapslider .btn-group-custom {
            display: flex;
            gap: 15px;
        }

        .wrapslider .btn-primary-glow {
            padding: 16px 32px;
            background: #ffffff;
            color: #0f172a;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            border: none;
            white-space: nowrap;
        }

        .wrapslider .btn-primary-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
        }

        .wrapslider .btn-secondary-outline {
            padding: 16px 32px;
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .wrapslider .btn-secondary-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
            color: #ffffff;
        }

        /* --- 3D Visual Layout (Right) --- */
        .wrapslider .visual-wrapper {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1500px;
            z-index: 5;
        }

        .wrapslider .card-3d-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            aspect-ratio: 4/3;
            transform-style: preserve-3d;
            transform: rotateY(-10deg) rotateX(5deg);
        }

        .wrapslider .main-img-card {
            position: absolute;
            width: 90%;
            height: 90%;
            top: 5%;
            left: 5%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 
                -30px 30px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
            transform: translateZ(20px);
            background: #1e293b;
        }

        .wrapslider .main-img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Floating Elements */
        .wrapslider .float-element {
            position: absolute;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            z-index: 20;
            transform-style: preserve-3d;
        }

        .wrapslider .float-top-right {
            top: 0;
            right: 0;
            transform: translateZ(60px) translateX(20px);
        }

        .wrapslider .float-bottom-left {
            bottom: 10%;
            left: -10%;
            transform: translateZ(80px);
            padding: 16px;
            min-width: 200px;
        }

        .wrapslider .icon-box {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
        }

        .wrapslider .gradient-1 { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
        .wrapslider .gradient-2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
        .wrapslider .gradient-3 { background: linear-gradient(135deg, #10b981, #3b82f6); }

        /* --- Controls --- */
        .wrapslider .nav-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(5px);
        }

        .wrapslider .nav-circle:hover {
            background: white;
            color: #020617;
            border-color: white;
        }

        .wrapslider .swiper-controls {
            position: absolute;
            bottom: 40px;
            left: 5vw;
            z-index: 20;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .wrapslider .swiper-pagination {
            position: static !important;
            width: auto !important;
        }
        
        .wrapslider .swiper-pagination-bullet {
            width: 30px;
            height: 3px;
            border-radius: 2px;
            background: rgba(255,255,255,0.3);
            margin: 0 4px !important;
            opacity: 1;
            transition: all 0.3s;
        }

        .wrapslider .swiper-pagination-bullet-active {
            background: var(--theme-color);
            width: 50px;
        }
        .wrap-gioithieu {
            background-color: #ffffff;
            /* Subtle background pattern for depth */
            background-image: linear-gradient(135deg, #fffbf9 0%, #ffffff 100%);
            padding: var(--khung) 0;
            overflow: hidden; 
            position: relative;
        }

        /* Decorative Background Blob */
        .wrap-gioithieu::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(244,87,37,0.03) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        /* Typography & Colors */
        .wrap-gioithieu .text-orange {
            color: #F45725 !important;
        }
        
        .wrap-gioithieu .text-dark-blue {
            color: #0E1D34;
        }

        .wrap-gioithieu .sub-title {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            color: #ff6b35;
            background: #ff6b3517;
            padding: 8px 16px;
            border-radius: 30px;
        }

        .wrap-gioithieu h2.main-title {
            font-size: 46px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 25px;
            color: #0E1D34;
            position: relative;
            z-index: 1;
        }

        .wrap-gioithieu h2.main-title span.highlight {
            position: relative;
            display: inline-block;
            color: var(--theme-color);
        }

        .wrap-gioithieu p.description {
            color: #555;
            line-height: 1.9;
            font-size: 16px;
            margin-bottom: 35px;
            max-width: 95%;
        }

        /* Image Composition Left */
        .wrap-gioithieu .img-composition {
            position: relative;
            padding-left: 30px; 
            z-index: 1;
        }

        /* Dotted Pattern behind image */
        .wrap-gioithieu .pattern-grid {
            position: absolute;
            bottom: -40px;
            left: -10px;
            width: 150px;
            height: 150px;
            background-image: radial-gradient(var(--theme-color) 1.5px, transparent 1.5px);
            background-size: 15px 15px;
            opacity: 0.4;
            z-index: -1;
            animation: patternFloat 5s infinite ease-in-out alternate;
        }

        @keyframes patternFloat {
            0% { transform: translateY(0); }
            100% { transform: translateY(-10px); }
        }

        .wrap-gioithieu .main-img-wrap {
            position: relative;
            border-radius: 20px; /* Softer corners */
            overflow: hidden;
            margin-right: 40px; 
            box-shadow: 0 20px 40px rgba(14, 29, 52, 0.1);
            border: 5px solid #fff; /* White border frame */
        }

        .wrap-gioithieu .main-img-wrap img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }
        
        .wrap-gioithieu .main-img-wrap:hover img {
            transform: scale(1.05);
        }

        .wrap-gioithieu .circle-img-wrap {
            position: absolute;
            top: -50px;
            right: 0px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            border: 10px solid #ffffff;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            z-index: 2;
        }

        .wrap-gioithieu .circle-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Experience Badge Redesigned */
        .wrap-gioithieu .exp-badge {
            position: absolute;
            bottom: 30px;
            left: 0px;
            background: var(--theme-color);
            color: white;
            padding: 25px 25px;
            z-index: 3;
            border-radius: 15px;
            box-shadow: 4px 9px 20px rgb(180 203 237);
            text-align: center;
            min-width: 140px;
            border: 4px solid #fff;
        }

        .wrap-gioithieu .exp-badge .nb {
            font-size: 38px;
            font-weight: 800;
            margin: 0;
            line-height: 1;
        }

        .wrap-gioithieu .exp-badge span {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        /* Features List */
        .wrap-gioithieu .features-list {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
            gap: 15px 0;
        }

        .wrap-gioithieu .feature-item {
            width: 50%;
            display: flex;
            align-items: center;
            font-weight: 700;
            color: #0E1D34;
            font-size: 17px;
        }

        .wrap-gioithieu .check-icon {
            width: 24px;
            height: 24px;
            background-color: #ff6b3517;
            color: var(--theme-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 12px;
        }

        /* CTA Area */
        .wrap-gioithieu .cta-area {
            display: flex;
            align-items: center;
            gap: 35px;
            margin-bottom: 60px; 
        }

        .wrap-gioithieu .btn-custom {
            background: var(--theme-color);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .wrap-gioithieu .btn-custom::before {
            content: '';
            position: absolute;
            top: 0; left: 0; bottom: 0; right: 0;
            background: #0E1D34;
            z-index: -1;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease-out;
            border-radius: 50px;
        }

        .wrap-gioithieu .btn-custom:hover {
            color: #fff;
            box-shadow: 0 10px 25px rgba(14, 29, 52, 0.3);
        }

        .wrap-gioithieu .btn-custom:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .wrap-gioithieu .btn-custom i {
            margin-left: 10px;
        }

        .wrap-gioithieu .phone-box {
            display: flex;
            align-items: center;
        }

        .wrap-gioithieu .phone-icon {
            width: 55px;
            height: 55px;
            background-color: transparent;
            border: 2px solid #e5e5e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--theme-color);
            margin-right: 15px;
            font-size: 20px;
            transition: all 0.3s;
        }

        .wrap-gioithieu .phone-box:hover .phone-icon {
            border-color: var(--theme-color);
            background-color: var(--theme-color);
            color: #fff;
            transform: rotateY(180deg);
        }

        .wrap-gioithieu .phone-text span {
            display: block;
            font-size: 13px;
            color: #888;
            font-weight: 600;
        }

        .wrap-gioithieu .phone-text a {
            font-size: 20px;
            font-weight: 800;
            color: #0E1D34;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .wrap-gioithieu .phone-text a:hover {
            color: #F45725;
        }

        /* Floating Bottom Card */
        .wrap-gioithieu .bottom-card {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            margin-top: -30px;
            z-index: 5;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            margin-left: auto;
            width: 100%;
            max-width: 900px;
            left: 50px;
            border-bottom: 4px solid var(--theme-color);
        }

        .wrap-gioithieu .bottom-card-item {
            display: flex;
            align-items: flex-start;
            padding: 10px;
            transition: transform 0.3s;
        }
        
        .wrap-gioithieu .bottom-card-item:hover {
            transform: translateY(-5px);
        }

        .wrap-gioithieu .icon-box {
            min-width: 70px;
            height: 70px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 30px;
            color: var(--theme-color);
            transition: 0.3s;
        }
        .wrap-gioithieu .bottom-card-item:hover .icon-box {
            background: var(--theme-color2);
            color: #fff;
        }

        .wrap-gioithieu .bottom-card-content h4 {
            font-size: 20px;
            font-weight: 800;
            color: #0E1D34;
            margin-bottom: 10px;
        }

        .wrap-gioithieu .bottom-card-content p {
            font-size: 15px;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }
        
        /* Vertical Separator for Bottom Card */
        .wrap-gioithieu .vertical-sep {
            border-right: 1px solid #eee;
        }
        .wrapdv {
            color: #334155;
            padding: var(--khung) 0;
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        .wrapdv .content-layer {
            position: relative;
            z-index: 10;
        }

        /* Decorative Elements */
        .wrapdv .bg-ornament {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
            filter: blur(80px);
        }
        
        .wrapdv .ornament-1 {
            top: -20%;
            right: -10%;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
        }
        
        .wrapdv .ornament-2 {
            bottom: -20%;
            left: -10%;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
        }

        /* --- TYPOGRAPHY --- */
        .wrapdv .section-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            background: #ffffff;
            color: var(--theme-color);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(79, 70, 229, 0.1);
        }

        .wrapdv .main-title {
            font-size: clamp(2.25rem, 4vw, 3.5rem);
            font-weight: 800;
            color: #0F172A;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .wrapdv .sub-description {
            font-size: 1.125rem;
            line-height: 1.7;
            color: #64748B;
            margin-bottom: 40px;
            font-weight: 400;
        }

        /* --- BUTTON --- */
        .wrapdv .btn-premium {
            background: #05070e;
            color: #ffffff;
            padding: 16px 36px;
            border-radius: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.4);
            border: 1px solid transparent;
        }

        .wrapdv .btn-premium:hover {
            background: var(--theme-color);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 20px 40px -12px rgba(67, 56, 202, 0.5);
        }

        /* --- STATS --- */
        .wrapdv .stats-container {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(226, 232, 240, 0.8);
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .wrapdv .stat-item h4 {
            font-size: 2rem;
            font-weight: 800;
            color: #0F172A;
            margin: 0;
            line-height: 1;
        }

        .wrapdv .stat-item span {
            font-size: 0.85rem;
            color: #5b5b5b;
            font-weight: 600;
            margin-top: 8px;
            display: block;
        }

        /* --- CARDS --- */
        .wrapdv .service-card {
            background: #ffffff;
            padding: 40px 32px;
            border-radius: 24px;
            border: 1px solid rgb(209 208 207 / 30%);
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            overflow: hidden; /* For hot badge positioning */
        }

        .wrapdv .service-card:hover {
            transform: translateY(-8px);
            border: 1px solid rgba(249, 115, 22, 0.3);
            box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08);
            z-index: 2;
        }

        /* --- HOT CARD STYLES (NEW) --- */
        .wrapdv .service-card.hot-card {
            border: 1px solid rgba(249, 115, 22, 0.3); /* Viền cam nhẹ */
            background: linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 100%); /* Nền ấm nhẹ */
        }

        .wrapdv .hot-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, #F97316 0%, #DB2777 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
            display: flex;
            align-items: center;
            gap: 6px;
            animation: softPulse 3s infinite;
        }

        @keyframes softPulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
        }

        .wrapdv .icon-box {
            width: 64px;
            height: 64px;
            background: rgb(249 115 22 / 68%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--theme-color);
            margin-bottom: 24px;
            transition: all 0.4s ease;
        }
        .wrapdv .icon-box img{max-width: 100%;padding: 10px;}
        /* Icon color for HOT card */
        .wrapdv .hot-card .icon-box {
            background: rgb(249 115 22 / 68%);
            color: #EA580C;
        }

        .wrapdv .service-card:hover .icon-box {
            background: var(--theme-color);
            color: #ffffff;
            transform: rotate(-5deg) scale(1.1);
        }
        
        /* Hover state for HOT card icon */
        .wrapdv .hot-card:hover .icon-box {
            background: linear-gradient(135deg, #F97316 0%, #DB2777 100%);
        }

        .wrapdv .card-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #1E293B;
            margin-bottom: 12px;
        }

        .wrapdv .card-text {
            font-size: 0.95rem;
            color: #64748B;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .wrapdv .learn-more {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--theme-color);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            opacity: 0.8;
            transition: all 0.3s;
        }
        
        /* Link color for HOT card */
        .wrapdv .hot-card .learn-more {
            color: #EA580C;
        }

        .wrapdv .service-card:hover .learn-more {
            opacity: 1;
            gap: 10px;
        }
        /* CSS Scoping */
        .wrap-quytrinh {
            padding: var(--khung) 0;
            overflow: hidden;
            position: relative;
        }
        .wrap-quytrinh * {
            box-sizing: border-box;
        }

        /* Header Styling */
        .wrap-quytrinh .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .wrap-quytrinh .sub-title {
            color: var(--theme-color);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            background: #ff6b3517;
            padding: 8px 16px;
            border-radius: 30px;
        }

        .wrap-quytrinh h2 {
            font-size: 48px;
            font-weight: 800;
            color: #111111;
            margin: 0;
            line-height: 1.2;
        }

        .wrap-quytrinh h2 .highlight {
            color: var(--theme-color);
            position: relative;
            display: inline-block;
        }

        /* Card Container */
        .wrap-quytrinh .process-card-wrapper {
            position: relative;
            /* padding-top: 30px; */ /* Space for the floating badge */
            height: 100%;
            transition: transform 0.3s ease;
        }

        /* Card Main Style - Clean White */
        .wrap-quytrinh .card-main {
            background: #ffffff;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            height: 100%;
            padding: 40px 30px;
            border-top-right-radius: 0; /* Cut corner */
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border-bottom: 3px solid transparent;
            transition: all 0.4s ease;
        }

        /* Hover: Lift and Red Border */
        .wrap-quytrinh .process-card-wrapper:hover .card-main {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgb(210 210 210 / 15%);
            border-bottom: 3px solid var(--theme-color);
        }

        /* Corner Bite - Must match section background color */
        .wrap-quytrinh .corner-bite {
            position: absolute;
            top: -1px;
            right: -1px;
            width: 80px;
            height: 80px;
            background: #f2f3f5; /* MATCH SECTION BACKGROUND */
            border-bottom-left-radius: 24px;
            z-index: 5;
            pointer-events: none;
        }
        
        /* Badge Number */
        .wrap-quytrinh .badge-float {
            position: absolute;
            top: 0;
            right: 0;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color) 100%);
            color: white;
            font-size: 24px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            z-index: 10;
            /* box-shadow: 0 8px 20px rgb(15 201 230 / 23%); */
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .wrap-quytrinh .process-card-wrapper:hover .badge-float {
            transform: scale(1.1) rotate(5deg);
        }

        /* Content Layer */
        .wrap-quytrinh .card-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Icon Styling - Circle Background */
        .wrap-quytrinh .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgb(249 115 22 / 68%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--theme-color);
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }
        .wrap-quytrinh .icon-box img{max-width: 100%;padding: 10px}
        .wrap-quytrinh .process-card-wrapper:hover .icon-box {
            background-color: var(--theme-color);
            color: #ffffff;
            transform: rotateY(180deg);
        }

        /* Line Separator */
        .wrap-quytrinh .separator-line {
            width: 50px;
            height: 3px;
            background: #eee;
            margin-bottom: 20px;
            border-radius: 2px;
            transition: width 0.3s ease, background 0.3s ease;
        }
        
        .wrap-quytrinh .process-card-wrapper:hover .separator-line {
            width: 80px;
            background: var(--theme-color);
        }

        /* Text Styling */
        .wrap-quytrinh h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        .wrap-quytrinh p {
            font-size: 15px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 0;
        }

        /* Background Pattern Decoration (Optional visual noise) */
        .wrap-quytrinh .card-main::before {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, #f3835b17 0%, rgb(255 255 255 / 0%) 70%);
            border-radius: 50%;
            z-index: 0;
            transition: transform 0.5s ease;
        }
        
        .wrap-quytrinh .process-card-wrapper:hover .card-main::before {
            transform: scale(1.5);
        }

        /* GSAP Initial State */
        .wrap-quytrinh .gsap-card {
            opacity: 0; 
            transform: translateY(50px);
            visibility: hidden;
        }
        .backtotop {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f8fafc;
            color: #0f172a;
            overflow-x: hidden;
        }

        .backtotop .section-demo {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
        }

        .backtotop .hero-gradient {
            background: radial-gradient(circle at top right, #fdfcfb 0%, #e2d1c3 100%);
        }

        .backtotop h1 {
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #0f172a;
        }

        .backtotop .text-luxury {
            color: #64748b;
            line-height: 1.8;
            max-width: 600px;
        }

        /* THE COMPONENT: BACK TO TOP PROGRESS BUTTON */
        .backtotop .scroll-progress-container {
            position: fixed;
            bottom: 40px;
            right: 40px;
            height: 70px;
            width: 70px;
            z-index: 9999;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .backtotop .scroll-progress-container.is-active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        /* SVG Progress Ring */
        .backtotop .progress-svg {
            position: absolute;
            top: 0;
            left: 0;
            transform: rotate(-90deg);
        }

        .backtotop .progress-circle-bg {
            fill: rgba(15, 23, 42, 0.05);
            stroke: rgba(15, 23, 42, 0.1);
            stroke-width: 2;
        }

        .backtotop .progress-circle-bar {
            fill: none;
            stroke: var(--theme-color); /* Gold */
            stroke-width: 3;
            stroke-linecap: round;
            stroke-dasharray: 307.8; /* 2 * PI * r (approx) */
            stroke-dashoffset: 307.8;
            transition: stroke-dashoffset 0.1s linear;
        }

        /* The Button Core */
        .backtotop .button-core {
            height: 52px;
            width: 52px;
            background: #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 18px;
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .backtotop .scroll-progress-container:hover .button-core {
            background: var(--theme-color);
            color: #ffffff;
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgb(15 201 230 / 29%);
        }

        .backtotop .scroll-progress-container:hover .arrow-icon {
            animation: bounceArrow 0.6s infinite alternate;
        }

        @keyframes bounceArrow {
            from { transform: translateY(0); }
            to { transform: translateY(-4px); }
        }

        /* Content Placeholder styles */
        .backtotop .card-custom {
            border: none;
            border-radius: 24px;
            background: #ffffff;
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            padding: 40px;
            transition: transform 0.4s ease;
        }
        
        .backtotop .card-custom:hover {
            transform: translateY(-10px);
        }

        .backtotop .badge-luxury {
            background: rgba(251, 191, 36, 0.1);
            color: #b45309;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            display: inline-block;
        }
        .wrapfaq {
            background-color: #fcfdfe;
            color: #0f172a;
            padding: var(--khung) 0;
            overflow-x: hidden;
        }
        /* Badge & Header */
        .wrapfaq .faq-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            background: #ff6b3517;
            color: var(--theme-color);
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            border: 1px solid #ff6b3517;
        }

        .wrapfaq .main-title {
            font-weight: 800;
            font-size: 3rem;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        /* Search Bar High-End */
        .wrapfaq .search-container {
            position: relative;
            max-width: 720px;
            margin: 40px auto 0;
            z-index: 10;
        }

        .wrapfaq .search-input {
            width: 100%;
            padding: 12px 32px 12px 70px;
            border-radius: 30px;
            border: 1px solid rgba(0,0,0,0.05);
            background: #ffffff;
            box-shadow: 0 20px 50px -12px rgba(0,0,0,0.08);
            font-size: 1.15rem;
            transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
        }

        .wrapfaq .search-input:focus {
            outline: none;
            border-color: var(--theme-color);
            box-shadow: 0 30px 60px -15px rgba(79, 70, 229, 0.15);
        }

        .wrapfaq .search-icon {
            position: absolute;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--theme-color);
            font-size: 1.4rem;
        }

        /* Sidebar Nav */
        .wrapfaq .nav-card {
            background: #ffffff;
            padding: 12px;
            border-radius: 28px;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.03);
        }

        .wrapfaq .nav-item-btn {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 18px 24px;
            margin-bottom: 6px;
            border: none;
            background: transparent;
            border-radius: 20px;
            color: #475569;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
        }

        .wrapfaq .nav-item-btn:hover {
            background: #ff6b3517;
            color: var(--theme-color);
        }

        .wrapfaq .nav-item-btn.active {
            background: var(--theme-color);
            color: #ffffff;
            /* box-shadow: 0 12px 24px -6px rgba(79, 70, 229, 0.4); */
        }

        /* --- CONTACT 3 KHUNG DỌC --- */
        .wrapfaq .contact-stack {
            margin-top: 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .wrapfaq .contact-box {
            display: flex;
            align-items: center;
            padding: 20px 25px;
            border-radius: 24px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
            border: 1px solid rgba(0,0,0,0.04);
            background: white;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
        }

        .wrapfaq .contact-box .icon-box {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
        }

        /* Style từng nút liên hệ */
        .wrapfaq .contact-box.phone { border-left: 4px solid #10b981; }
        .wrapfaq .contact-box.phone .icon-box { background: rgba(16, 185, 129, 0.1); color: #10b981; }
        
        .wrapfaq .contact-box.zalo { border-left: 4px solid #2563eb; }
        .wrapfaq .contact-box.zalo .icon-box { background: rgba(37, 99, 235, 0.1); color: #2563eb; }

        .wrapfaq .contact-box.mess { border-left: 4px solid #db2777; }
        .wrapfaq .contact-box.mess .icon-box { background: rgba(219, 39, 119, 0.1); color: #db2777; }

        .wrapfaq .contact-box:hover {
            transform: translateX(10px);
            box-shadow: 0 20px 50px -12px rgba(0,0,0,0.08);
            background: #ffffff;
        }
        
        .wrapfaq .contact-box h6 { margin: 0; font-weight: 700; color: #0f172a; font-size: 0.95rem; }
        .wrapfaq .contact-box span {font-size: 13px;color: #6d6d6d;}

        /* Content Area */
        .wrapfaq .content-card {
            background: #ffffff;
            padding: 60px;
            border-radius: 48px;
            box-shadow: 0 20px 50px -12px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.02);
        }

        .wrapfaq .faq-group { display: none; }
        .wrapfaq .faq-group.active { display: block; animation: slideIn 0.5s ease; }

        /* Custom Accordion */
        .wrapfaq .custom-acc-item {
            border: none;
            background: #f8fafc;
            border-radius: 24px !important;
            margin-bottom: 20px;
            transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
            border: 1px solid transparent;
        }

        .wrapfaq .custom-acc-item:hover {
            background: #ffffff;
            border-color: rgba(79, 70, 229, 0.15);
            box-shadow: 0 15px 30px rgba(0,0,0,0.04);
        }

        .wrapfaq .custom-acc-btn {
            background: transparent !important;
            padding: 21px 30px;
            font-weight: 700;
            color: #0f172a;
            box-shadow: none !important;
        }

        .wrapfaq .custom-acc-btn:not(.collapsed) {
            color: var(--theme-color);
        }

        .wrapfaq .accordion-body {
            padding: 0 32px 32px;
            color: #475569;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Flatten Search Effect */
        .wrapfaq.is-searching .faq-group { display: block !important; }
        .wrapfaq.is-searching .faq-group h3 { display: none; }
        .wrapfaq.is-searching .custom-acc-item { margin-bottom: 15px; border: 1px solid #f1f5f9; }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .wrap-banggia {
            padding: var(--khung) 0;
            color: #4a4a4a;
            position: relative;
        }
        
        /* Container */
        .wrap-banggia .container-custom {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        .wrap-banggia .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .wrap-banggia .section-title h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 15px;
            color: #1b1b1b;
        }

        .wrap-banggia .section-title h2 span {
            background: var(--theme-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .wrap-banggia .section-title p {
            font-size: 18px;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Card Styles */
        .wrap-banggia .pricing-item {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px 30px;
            transition: all 0.3s ease-in-out;
            position: relative;
            border: 1px solid #edf2f9;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .wrap-banggia .pricing-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--theme-color);
        }

        /* Recommended / Active Card */
        .wrap-banggia .pricing-item.recommended {
            border: 2px solid var(--theme-color);
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
        }
        
        .wrap-banggia .badge-popular {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--theme-color3);
            color: #fff;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 10;
        }

        /* Card Header */
        .wrap-banggia .pricing-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px dashed #e0e0e0;
        }

        .wrap-banggia .plan-name {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--theme-color);
            margin-bottom: 15px;
            display: inline-block;
            background: #ff6b3517;
            padding: 6px 16px;
            border-radius: 50px;
            font-family: var(--heading-font);
        }

        .wrap-banggia .pricing-item.recommended .plan-name {
            background: var(--theme-color);
            color: #fff;
        }

        .wrap-banggia .price-tag {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            color: #212529;
            line-height: 1;
        }

        .wrap-banggia .price-tag .currency {
            font-size: 20px;
            font-weight: 800;
            margin-top: 5px;
            color: #272727;
            font-family: var(--heading-font);
            margin-left: 4px;
        }

        .wrap-banggia .price-tag .amount {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .wrap-banggia .plan-desc {
            margin-top: 15px;
            color: #6c757d;
            font-size: 15px;
            font-weight: 500;
        }

        /* Feature List - Strict 2 Icons Rule */
        .wrap-banggia .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            flex-grow: 1;
        }

        .wrap-banggia .feature-list li {
            margin-bottom: 16px;
            font-size: 15px;
            display: flex;
            align-items: flex-start;
            color: #4a4a4a;
            line-height: 1.4;
        }

        .wrap-banggia .feature-list li .icon-box {
            margin-right: 12px;
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* Check Icon Style */
        .wrap-banggia .icon-check {
            background-color: rgba(25, 135, 84, 0.1);
            color: #198754;
        }

        /* Close Icon Style */
        .wrap-banggia .icon-close {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }

        /* Text Styles within List */
        .wrap-banggia .feature-list li.disabled {
            color: #adb5bd;
            text-decoration: line-through;
        }

        .wrap-banggia strong {
            color: #212529;
            font-weight: 700;
        }

        /* Buttons */
        .wrap-banggia .btn-action {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .wrap-banggia .btn-outline-custom {
            background: transparent;
            color: var(--theme-color);
            border-color: var(--theme-color);
        }

        .wrap-banggia .btn-outline-custom:hover {
            background: var(--theme-color);
            color: #fff;
            transform: translateY(-2px);
        }

        .wrap-banggia .btn-fill-custom {
            background: var(--theme-color3);
            color: #fff;
            box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
        }

        .wrap-banggia .btn-fill-custom:hover {
            background: var(--theme-color4);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
            color: #fff;
        }
        .premium-testimonials {
        padding: var(--khung) 0px;
        overflow: hidden;
        position: relative;
    }
    /* Background blobs */
    .premium-testimonials .blob {
        position: absolute;
        width: 500px;
        height: 500px;
        /* Mã màu #6366f1 chuyển sang rgba */
        background: radial-gradient(circle, #ff6b3517 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }

    /* Header Styling */
    .premium-testimonials .section-header {
        position: relative;
        z-index: 10;
        margin-bottom: 60px;
    }

    .premium-testimonials .badge-sub {
        display: inline-block;
        padding: 6px 16px;
        background: white;
        border: 1px solid #ff6b3517;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        color: var(--theme-color); /* Thay cho var(--primary) */
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }

    .premium-testimonials .title-display {
        font-weight: 800;
        font-size: clamp(2.5rem, 5vw, 3.8rem);
        letter-spacing: -2px;
        line-height: 1.1;
        color: #0f172a; /* Thay cho var(--bg-dark) */
    }

    /* Swiper & Card Styles */
    .premium-testimonials .swiper-container {
        padding: 40px 20px 0px 20px !important;
        overflow: visible !important;
    }

    .premium-testimonials .testi-card-new {
        background: rgba(255, 255, 255, 0.7); /* Thay cho var(--glass) */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 40px;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.4s ease;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
        position: relative;
    }

    .premium-testimonials .testi-card-new:hover {
        transform: translateY(-12px);
        border-color: var(--theme-color); /* Thay cho var(--primary-light) */
        box-shadow: 0 40px 80px rgba(99, 102, 241, 0.1);
        background: #ffffff;
    }

    .premium-testimonials .quote-mark {
        position: absolute;
        top: 40px;
        right: 40px;
        font-size: 40px;
        color: #6366f1; /* Thay cho var(--primary) */
        opacity: 0.1;
    }

    .premium-testimonials .stars {
        color: #fbbf24;
        margin-bottom: 25px;
        font-size: 14px;
        display: flex;
        gap: 5px;
    }

    .premium-testimonials .feedback-text {
        font-size: 1.25rem;
        line-height: 1.6;
        color: #334155;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .premium-testimonials .user-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .premium-testimonials .user-avatar {
        width: 60px;
        height: 60px;
        border-radius: 20px;
        object-fit: cover;
        rotate: -5deg;
        transition: 0.3s;
    }

    .premium-testimonials .testi-card-new:hover .user-avatar {
        rotate: 0deg;
        border-radius: 50%;
    }

    .premium-testimonials .user-name {
        font-weight: 700;
        font-size: 1.1rem;
        color: #0f172a; /* Thay cho var(--bg-dark) */
        margin: 0;
    }

    .premium-testimonials .user-tag {
        font-size: 0.85rem;
        color: #64748b; /* Thay cho var(--text-muted) */
    }

    /* Custom Navigation */
    .premium-testimonials .nav-wrapper {
        display: flex;
        gap: 15px;
        margin-top: 40px;
    }

    .premium-testimonials .nav-btn {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: 1px solid #e2e8f0;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        color: #0f172a; /* Thay cho var(--bg-dark) */
    }

    .premium-testimonials .nav-btn:hover {
        background: var(--theme-color); /* Thay cho var(--primary) */
        color: white;
        border-color: var(--theme-color); /* Thay cho var(--primary) */
    }

    /* Pagination */
    .premium-testimonials .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #cbd5e1;
        opacity: 1;
    }
    
    .premium-testimonials .swiper-pagination-bullet-active {
        width: 30px;
        border-radius: 10px;
        background: #6366f1 !important; /* Thay cho var(--primary) */
    }
    .wrapformlh{
            padding: var(--khung) 0;
            overflow: hidden;
            color: #1e293b;
        }
        .wrapformlh .contact-card-wrapper {
            background: #ffffff;
            border-radius: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .wrapformlh .info-side {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            padding: 60px;
            height: 100%;
            position: relative;
        }

        .wrapformlh .info-side::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 50%;
            filter: blur(40px);
        }

        .wrapformlh .contact-label {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(99, 102, 241, 0.15);
            color: white;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .wrapformlh .info-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .wrapformlh .info-desc {
            color: #94a3b8;
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 48px;
        }

        .wrapformlh .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 32px;
            transition: transform 0.3s ease;
        }

        .wrapformlh .contact-item:hover {
            transform: translateX(10px);
        }

        .wrapformlh .icon-box {
            width: 54px;
            height: 54px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 20px;
            color: var(--theme-color);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .wrapformlh .contact-item:hover .icon-box {
            background: var(--theme-color);
            color: #ffffff;
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        .wrapformlh .item-content h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .wrapformlh .item-content p {
            color: #94a3b8;
            margin-bottom: 0;
            font-size: 15px;
        }

        .wrapformlh .form-side {
            padding: 60px;
        }

        .wrapformlh .form-group {
            margin-bottom: 24px;
        }

        .wrapformlh .form-label {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 8px;
            color: #334155;
        }

        .wrapformlh .form-control {
            border: 2px solid #f1f5f9;
            border-radius: 14px;
            padding: 14px 20px;
            font-size: 15px;
            color: #1e293b;
            transition: all 0.3s ease;
            background-color: #f8fafc;
        }

        .wrapformlh .form-control:focus {
            background-color: #ffffff;
            border-color: var(--theme-color);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
            outline: none;
        }

        .wrapformlh textarea.form-control {
            min-height: 150px;
            resize: none;
        }

        .wrapformlh .submit-btn {
            background: var(--theme-color);
            color: #ffffff;
            border: none;
            padding: 18px 36px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 16px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
        }

        .wrapformlh .submit-btn:hover {
            transform: translateY(-3px);
            background: var(--theme-color2);
            box-shadow: 0 20px 30px -10px #ff6b3517;
        }

        .wrapformlh .submit-btn:active {
            transform: translateY(0);
        }

        .wrapformlh .social-links {
            margin-top: 60px;
            display: flex;
            gap: 15px;
        }

        .wrapformlh .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .wrapformlh .social-btn:hover {
            background: #ffffff;
            color: #0f172a;
            transform: translateY(-5px);
        }
        .wrapfooter {
            background-color: #ffffff;
            overflow-x: hidden;margin-top: 10px;
        }

        .wrapfooter footer {
            background-color: #0f172a;
            color: #f8fafc;
            position: relative;
            padding-top: 120px;
            padding-bottom: 40px;
        }

        /* Premium Newsletter Floating Card */
        .wrapfooter .newsletter-section {
            position: relative;
            z-index: 10;
            margin-bottom: -80px;
        }

        .wrapfooter .newsletter-card {
            background: #1e293b;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 2rem;
            padding: 3rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .wrapfooter .newsletter-title {
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f8fafc;
            font-size: 2.25rem;
            line-height: 1.2;
        }

        .wrapfooter .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 1rem 1.5rem;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .wrapfooter .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--theme-color);
            box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
            color: #ffffff;
        }

        .wrapfooter .btn-subscribe {
            background: var(--theme-color);
            color: #ffffff;
            font-weight: 700;
            border-radius: 28px;
            padding: 1rem 2.5rem;
            border: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .wrapfooter .btn-subscribe:hover {
            background: var(--theme-color2);
            transform: translateY(-3px);
        }

        /* Main Footer Content */
        .wrapfooter .footer-brand-text {
            color: #94a3b8;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .wrapfooter .footer-heading {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #ffffff;
            position: relative;
        }
    
        .wrapfooter .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--theme-color);
        }

        .wrapfooter .footer-links {
            list-style: none;
            padding: 0;
        }

        .wrapfooter .footer-links li {
            margin-bottom: 1rem;
        }

        .wrapfooter .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .wrapfooter .footer-links a:hover {
            color: var(--theme-color);
            transform: translateX(5px);
        }

        .wrapfooter .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            color: #f8fafc;
            text-decoration: none;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .wrapfooter .social-icon:hover {
            background: var(--theme-color);
            color: white;
            transform: translateY(-5px) rotate(8deg);
            border-color: var(--theme-color);
        }

        .wrapfooter .contact-info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .wrapfooter .contact-icon {
            color: var(--theme-color);
            font-size: 1.25rem;
        }

        /* Bottom Bar */
        .wrapfooter .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 2rem;
            margin-top: 4rem;
        }

        .wrapfooter .copyright {
            color: #64748b;
            font-size: 0.9rem;
        }

        .wrapfooter .legal-links a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.9rem;
            margin-left: 1.5rem;
            transition: color 0.3s ease;
        }

        .wrapfooter .legal-links a:hover {
            color: #f8fafc;
        }

        /* Abstract Background Decor */
        .wrapfooter .footer-glow {
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(15, 23, 42, 0) 70%);
            pointer-events: none;
        }
        .wrapfooter input.form-control::placeholder {
            color: white; /* Chọn màu xám sáng hoặc màu trắng mờ */
            opacity: 1; /* Bắt buộc: Firefox mặc định giảm độ mờ, dòng này giúp màu hiển thị chuẩn */
        }
        .wrap-giaodien {
            padding: var(--khung) 0;
            color: #0f172a;
            position: relative;
        }

        .wrap-giaodien::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.4;
            pointer-events: none;
        }

        .wrap-giaodien .container { 
            position: relative; 
            z-index: 2; 
        }

        .wrap-giaodien .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }

        .wrap-giaodien .section-header .badge-ui {
            background: #f1f5f9;
            color: #0f172a;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 1px solid #e2e8f0;
            margin-bottom: 20px;
            display: inline-block;
        }

        .wrap-giaodien .section-header h2 {
            font-weight: 800;
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.2;
            margin-bottom: 20px;
            color: #0f172a;
            letter-spacing: -1.5px;
        }

        .wrap-giaodien .section-header p {
            color: #64748b;
            font-size: 18px;
            line-height: 1.6;
        }

        .wrap-giaodien .template-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 24px;
            padding: 16px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .wrap-giaodien .template-card:hover {
            transform: translateY(-8px);
            border-color: #cbd5e1;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        }

        .wrap-giaodien .preview-frame {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background: #f8fafc;
            aspect-ratio: 16/11;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .wrap-giaodien .preview-frame::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 24px;
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(4px);
            z-index: 2;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            padding-left: 12px;
            background-image: radial-gradient(circle, #ff5f56 2px, transparent 2.5px), 
            radial-gradient(circle, #ffbd2e 2px, transparent 2.5px), 
            radial-gradient(circle, #27c93f 2px, transparent 2.5px);
            background-size: 12px 12px, 12px 12px, 12px 12px;
            background-position: 8px center, 22px center, 36px center;
            background-repeat: no-repeat;
        }

        .wrap-giaodien .preview-frame img {
            width: 100%;
            height: auto;
            object-fit: cover;
            object-position: top;
            transition: transform 5s ease-in-out;
            padding-top: 24px;
        }

        .wrap-giaodien .template-card:hover .preview-frame img {
            transform: translateY(calc(-100% + 300px));
        }

        .wrap-giaodien .card-info {
            padding: 24px 8px 8px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .wrap-giaodien .tag-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .wrap-giaodien .tag-meta span {
            font-size: 12px;
            font-weight: 600;
            color: var(--theme-color);
            letter-spacing: 0.5px;
        }

        .wrap-giaodien .card-title a {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0f172a;
            line-height: 1.3;
        }
        .wrap-giaodien .card-title a:hover{color: var(--theme-color2)}
        .wrap-giaodien .feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 25px;
        }

        .wrap-giaodien .feature-item {
            background: #f8fafc;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
        }

        .wrap-giaodien .card-action {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        .wrap-giaodien .price {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
        }

        .wrap-giaodien .price span {
            font-size: 13px;
            color: #64748b;
            font-weight: 400;
        }

        .wrap-giaodien .btn-view {
            padding: 10px 20px;
            border-radius: 12px;
            background: #1a1a1a;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wrap-giaodien .btn-view:hover {
            background: var(--theme-color);
            color: #fff;
        }

        .wrap-giaodien .btn-view i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .wrap-giaodien .btn-view:hover i {
            transform: translateX(4px);
        }

        .wrap-giaodien .floating-badge {
            position: absolute;
            top: 35px;
            right: 25px;
            z-index: 10;
            background: var(--theme-color3);
            color: #fff;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .wraptitle .text-reveal-stagger {
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #212121;
    font-family: var(--heading-font);
}

.wraptitle .text-reveal-stagger .highlight-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 4px;
    --highlight-scale: 0;
}

.wraptitle .text-reveal-stagger .highlight-text::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--theme-color);
    border-radius: 4px;
    transform: scaleX(var(--highlight-scale));
    transform-origin: left center;
    will-change: transform;
}

.wraptitle .text-reveal-stagger .highlight-text,
.wraptitle .text-reveal-stagger .highlight-text .word,
.wraptitle .text-reveal-stagger .highlight-text .char {
    color: #ffffff !important;
    position: relative;
    z-index: 2;
    -webkit-text-fill-color: #ffffff !important;
    margin-top: 2px;
}
.wrapnews {
        color: #0f172a;
        overflow-x: hidden;
        padding: var(--khung) 0;
        width: 100%;
        position: relative;
    }
    .wrapnews .badge-trending {
        background: #ffffff;
        color: #6366f1;
        padding: 10px 20px;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 28px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        border: 1px solid rgba(99, 102, 241, 0.1);
    }

    .wrapnews .section-title {
        font-size: clamp(2.5rem, 6vw, 3.8rem);
        font-weight: 800;
        letter-spacing: -0.05em;
        line-height: 1;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .wrapnews .news-card {
        display: block;
        background: #ffffff;
        border-radius: 28px;
        text-decoration: none !important;
        height: 100%;
        border: 1px solid rgba(255, 255, 255, 1);
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
    }

    .wrapnews .news-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px -12px rgba(0,0,0,0.08);
        border-color: rgba(99, 102, 241, 0.15);
    }

    .wrapnews .img-wrapper {
        position: relative;
        aspect-ratio: 16/11;
        overflow: hidden;
        margin: 12px;
        border-radius: 20px;
    }

    .wrapnews .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .wrapnews .news-card:hover .img-wrapper img {
        transform: scale(1.08);
    }

    .wrapnews .category-tag {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        padding: 8px 16px;
        border-radius: 12px;
        font-size: 0.65rem;
        font-weight: 800;
        color: #6366f1;
        z-index: 2;
        letter-spacing: 0.5px;
    }

    .wrapnews .card-body-content {
        padding: 20px 32px 32px 32px;
    }

    .wrapnews .meta-info {
        font-size: 0.8rem;
        color: #64748b;
        margin-bottom: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .wrapnews .news-h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.4;
        margin-bottom: 25px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.3s ease;
    }

    .wrapnews .news-card:hover .news-h3 {
        color: #6366f1;
    }

    .wrapnews .author-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
        border-top: 1px solid #f1f5f9;
    }

    .wrapnews .author-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .wrapnews .author-info img {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .wrapnews .author-name {
        font-size: 0.9rem;
        font-weight: 700;
        color: #334155;
    }

    .wrapnews .btn-circle {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #f8fafc;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0f172a;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .wrapnews .news-card:hover .btn-circle {
        background: #6366f1;
        color: white;
        transform: rotate(-45deg);
    }

    .wrapnews .gsap-reveal {
        opacity: 0;
        transform: translateY(40px);
        will-change: transform, opacity;
    }
        /* responsive */
        @media (max-width: 1200px) {}

        @media (max-width: 1000px) {

        }

        @media (max-width: 992px) {
            .wrap-giaodien { padding: 60px 0; }
            .wrap-giaodien .section-header h2 { font-size: 30px; }
            .wrap-giaodien .card-title { font-size: 20px; }
            .wrapfooter .newsletter-card {
                padding: 2rem;
            }
            .wrapfooter .newsletter-title {
                font-size: 1.75rem;
                margin-bottom: 1.5rem;
                text-align: center;
            }
            .wrapfooter .footer-heading {
                margin-top: 2.5rem;
            }
            .wrapformlh .info-side, .wrapformlh .form-side {
                padding: 40px;
            }
            .wrapformlh .info-title {
                font-size: 32px;
            }
            .premium-testimonials .testi-card-new { padding: 50px; }
        .premium-testimonials .feedback-text { font-size: 1.1rem; }
            .wrap-banggia .pricing-item { margin-bottom: 20px; }
            .wrap-banggia .badge-popular { right: -32px; top: 15px; }
            .wrapfaq .main-title { font-size: 2.2rem; }
            .wrapfaq .content-card { padding: 30px; border-radius: 30px; margin-top: 40px; }
            .wrap-quytrinh .process-card-wrapper {
                margin-bottom: 30px;
            }
            .wrapdv .col-lg-5 {
                position: relative;
            }
            .wrapdv .sticky-content {
                position: sticky;
                top: 120px;
                padding-right: 40px;
            }
            .wrapdv .stagger-col {
                margin-top: 80px;
            }
            .wrap-gioithieu {
                padding: 60px 0;
            }
            .wrap-gioithieu .main-title {
                font-size: 36px;
            }
            .wrap-gioithieu .circle-img-wrap {
                width: 140px;
                height: 140px;
                top: -20px;
                right: -10px;
            }
            .wrap-gioithieu .bottom-card {
                margin-top: 40px;
                left: 0;
                margin-left: 0;
                padding: 30px 20px;
            }
            .wrap-gioithieu .vertical-sep {
                border-right: none;
                border-bottom: 1px solid #eee;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
            .wrap-gioithieu .img-composition {
                margin-bottom: 60px;
                padding-left: 10px;
            }
            .wrap-gioithieu .cta-area {
                flex-wrap: wrap;
                gap: 20px;
            }
             .wrapslider {
                height: auto; 
                min-height: 100vh; 
                padding: 100px 0 60px 0; /* Thêm padding top/bottom */
            }

            .wrapslider .container-fluid-custom {
                padding: 0 20px; /* Padding ngang an toàn */
            }

            .wrapslider .content-wrapper {
                text-align: center;
                align-items: center;
                padding-right: 0;
                margin-bottom: 60px; /* Tách biệt khối chữ và ảnh */
                height: auto;
            }

            .wrapslider h1 {
                font-size: 2.8rem; /* Giảm size chữ */
                margin-bottom: 1rem;
            }

            .wrapslider p.desc {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .wrapslider .btn-group-custom {
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
            }

            /* Reset 3D effects on mobile for clean look */
            .wrapslider .visual-wrapper {
                perspective: none;
                height: auto;
                padding: 0 10px;
                margin-bottom: 40px;
            }

            .wrapslider .card-3d-container {
                transform: none !important;
                max-width: 100%;
                aspect-ratio: 4/3;
            }

            .wrapslider .main-img-card {
                position: relative;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                transform: none !important;
                box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            }

            /* Điều chỉnh vị trí các thẻ nổi trên mobile để không bị cắt */
            .wrapslider .float-element {
                transform: none !important; /* Tắt 3D transform */
                padding: 8px 12px;
            }

            .wrapslider .float-top-right {
                top: -10px;
                right: -10px;
            }

            .wrapslider .float-bottom-left {
                bottom: -10px;
                left: -10px;
                min-width: auto;
            }

            /* Đưa control xuống dưới cùng và giữa */
            .wrapslider .swiper-controls {
                position: relative;
                bottom: auto;
                left: auto;
                justify-content: center;
                margin-top: 20px;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
           .wrapdv { padding: 60px 0; }
            .wrapdv .main-title { font-size: 2.5rem; }
            .wrapdv .stats-container { gap: 24px; }
            .wrapdv .sticky-content { padding-right: 0; margin-bottom: 40px; }
            .wrapdv .service-card { padding: 30px; }
        }

        @media (max-width: 576px) {
           .wrapdv .stat-item { flex: 1 1 40%; }
       }