@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-color: #2f337c;
    --secondary-color: #4b50a8;
    --dark-color: #1a252f;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2f337c 0%, #2c2f79 100%);
    --gradient-secondary: linear-gradient(135deg, #2f337c 0%, #2c2f79 100%);
    --gradient-accent: linear-gradient(135deg, #2f337c 0%, #2c2f79 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer ul {
    columns: 2; 
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 40px;
    list-style: none;
    padding: 0;
}
.faq-answer li {
    margin-bottom: 8px;
}

body.rtl,
html.rtl {
  font-family: "Rubik";

}
body.rtl .main-sidebar {
    left: auto;
    right: -100%;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.rtl .main-sidebar.active {
    right: 0;
    left: auto;
}

body.rtl .main-sidebar .sidebar-content {
    left: auto;
    right: 0;
    transform: translateX(100%);
}

body.rtl .main-sidebar.active .sidebar-content {
    transform: translateX(0);
}

@media (hover: none) {
    .btn:hover,
    .button:hover,
    .nav-link:hover,
    .card:hover,
    a:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}
.cv-auto {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

html {
    scroll-behavior: auto;
}
@media (min-width: 1024px) and (hover: hover) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    html {
        scroll-behavior: auto !important;
    }

    .main-sidebar,
    .main-sidebar .sidebar-content,
    .main-sidebar .sidebar-overlay {
        transition-duration: 0.001ms !important;
    }
}

@media (max-width: 768px) {
    .glass,
    .blur,
    [class*="glass"],
    [class*="blur"] {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}
@media (min-width: 769px) {
    .contact-section .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
    }
}
@media (max-width: 768px) {
    .contact-section .contact-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .contact-section .contact-info {
        order: 1;
        width: 100%;
    }
    .contact-section .contact-form-wrapper {
        order: 2;
        width: 100%;
    }
}
body.rtl .main-sidebar .nav-icon {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .main-sidebar .nav-link:hover {
    transform: translateX(-10px);
}
body.rtl .main-sidebar .nav-arrow {
    transform: rotate(-135deg);
}

body.rtl .main-sidebar .nav-link:hover .nav-arrow {
    transform: rotate(-135deg) translateX(-5px);
}
body.rtl .main-sidebar .sidebar-user-block .dropdown-item:hover {
    transform: translateX(-4px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-base);
    direction: ltr;
    background: var(--primary-color);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #1a1a2e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: var(--font-display);
}

.app-content {
    margin-top: 90px;
}
.section-title {
    margin: 0 auto 48px auto;
    text-align: center;
    position: relative;
}

.section-title .section-title__tagline-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
}

.section-title .section-title__tagline {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
}

.section-title .section-title__tagline-border {
    width: 40px;
    border: 1px dashed var(--secondary-color);
}

.section-title .section-title__shape-1,
.section-title .section-title__shape-2 {
    position: absolute;
    top: -4px;
}

.section-title .section-title__shape-1 {
    left: 8px;
    transform: rotate(180deg);
}

.section-title .section-title__shape-2 {
    right: 8px;
}

.section-title .section-title__shape-1 i,
.section-title .section-title__shape-2 i {
    font-size: 14px;
    color: var(--secondary-color);
    animation: truck-move 2s linear infinite;
}

.section-title .section-title__shape-1 i {
    display: inline-block;
    transform: scaleX(-1) !important;
}

.section-title .section-title__shape-1 {
    left: 8px;
    animation: truck-move 2s linear infinite;
}

.section-title .section-title__title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 10px;
}

.section-title .char {
    display: inline-block;
    opacity: 0;
    color: var(--secondary-color);
    transform: translateY(90%) rotateX(-40deg);
    transform-origin: center;
    animation: TitlefadeUp 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    animation-play-state: paused;
}

@media (max-width: 767px) {
    .section-title .section-title {
        margin-top: 120px;
    }

    .section-title .section-title__tagline {
        font-size: 16px;
    }
}

/* Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 999;
    overflow: visible;
    transition: height 0.35s ease;
}

.header.stacked {
    height: 140px;
}

.header.stacked .header-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.header.scrolled {
    height: 90px;
}

.header.scrolled .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    transition: gap 0.35s ease;
}

.header .desktop-nav {
    display: none;
}

@media (min-width: 769px) {
    .header .desktop-nav {
        display: block;
    }

    .header .desktop-nav ul {
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
}

.header .desktop-nav ul li a:hover,
.header .desktop-nav ul li a:focus,
.header .desktop-nav ul li a.active {
    color: var(--primary-color);
}

.scrolled .desktop-nav ul {
    margin: 0 !important;
}

.header .desktop-nav ul li a {
    font-size: 1em;
    font-weight: 700;
    transition: var(--transition);
    color: var(--secondary-color);
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header .logo img {
    height: 90px;
}

.header .logo:hover {
    transform: scale(1.05);
}

.user-menu {
    position: relative;
    margin-left: 12px;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease,
        transform 0.2s ease;
}

.user-toggle:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.12);
}

.user-avatar,
.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.user-name {
    font-size: 14px;
    color: #333;
}

.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #888;
    transition: transform 0.2s ease;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow: hidden;
    z-index: 1100;
}

.user-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #333;
}

.user-dropdown .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.06);
}

.user-dropdown .dropdown-divider,
.nav-user-dropdown .dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.user-dropdown .logout-item {
    margin: 0;
}

.nav-user {
    position: relative;
}

.nav-user-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.nav-user-toggle:hover {
    background: rgba(0, 0, 0, 0.035);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-user-toggle:focus-visible {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.nav-user-toggle .nav-user-avatar {
    box-shadow: 0 0 0 2px #fff, 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-user-name {
    font-size: 14px;
    color: #333;
}

.nav-caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #888;
    transition: transform 0.2s ease;
}

.nav-user-toggle[aria-expanded="true"] .nav-caret {
    transform: rotate(180deg);
}

.nav-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: saturate(120%) blur(6px);
    padding: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow: hidden;
    z-index: 5000;
}

.nav-user-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 14px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transform: rotate(45deg);
}

.user-dropdown.open,
.nav-user-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #222;
    font-size: 14px;
    line-height: 1.2;
    transition: background 0.15s ease;
}

.user-dropdown .dropdown-item:hover,
.nav-user-dropdown .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.06);
}

.nav-user-dropdown .dropdown-item i {
    width: 18px;
    text-align: center;
    color: #667eea;
}

.nav-lang {
    position: relative;
    margin-left: 8px;
}

.nav-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nav-lang-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.nav-lang-code {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.nav-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-lang-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.nav-lang-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
}

.lang-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.nav-lang.active .nav-lang-dropdown,
.nav-user.active .nav-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-user-dropdown .logout-item {
    margin: 0;
}
.nav-user-dropdown .logout-item button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #b00020;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-user-name {
        display: none;
    }
}

.nav-user-dropdown .dropdown-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px 12px;
    background: linear-gradient(
        180deg,
        rgba(102, 126, 234, 0.06),
        rgba(118, 75, 162, 0.04)
    );
}

.nav-user-dropdown .profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: conic-gradient(
        from 180deg at 50% 50%,
        #667eea,
        #764ba2,
        #667eea
    );
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85),
        0 6px 16px rgba(0, 0, 0, 0.12);
}

.nav-user-dropdown .profile-info {
    flex: 1;
    min-width: 0;
}

.nav-user-dropdown .profile-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
}

.nav-user-dropdown .profile-email {
    font-size: 12px;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-dropdown .dropdown-item,
.nav-user-dropdown .logout-item button {
    position: relative;
    overflow: hidden;
}

.nav-user-dropdown .dropdown-item::after,
.nav-user-dropdown .logout-item button::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    background: radial-gradient(
        120px 60px at var(--mx, 50%) var(--my, 50%),
        rgba(102, 126, 234, 0.12),
        transparent 60%
    );
}

.nav-user-dropdown .dropdown-item:hover::after,
.nav-user-dropdown .logout-item button:hover::after {
    opacity: 1;
}

.language-switcher-mobile .language-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1.5rem;
}

.language-switcher-mobile.active .language-dropdown {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.language-switcher-mobile .lang-flag {
    width: 24px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.language-switcher-mobile .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.language-switcher-mobile .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-switcher-mobile .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.language-switcher-mobile .nav-icon {
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
}

.mobile-header-right {
    display: none;
}

@media (max-width: 768px) {
    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .lang-toggle {
        background: none;
        border: none;
        padding: 8px;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lang-toggle:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .mobile-lang-flag {
        width: 24px;
        height: 16px;
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 991.98px) {
        .nav-lang {
            display: none;
        }
    }

    @media (min-width: 992px) {
        .lang-toggle {
            display: none;
        }
    }

    .mobile-lang-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: transparent;
        border: none;
        padding: 0;
        transition: transform 0.2s ease;
    }

    .mobile-lang-toggle:hover {
        transform: scale(1.1);
    }

    .mobile-lang-toggle:active {
        transform: scale(0.95);
    }

    .mobile-flag {
        width: 28px;
        height: 18px;
        border-radius: 12px;
        object-fit: cover;
        transition: all 0.2s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-lang-toggle:hover .mobile-flag {
        transform: scale(1.05);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    .menu-toggle {
        display: flex !important;
    }

    .desktop-nav {
        display: none !important;
    }

    .header {
        height: 90px;
    }

    .header.stacked,
    .header.scrolled {
        height: 90px;
    }

    .header .header-container,
    .header.stacked .header-container,
    .header.scrolled .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
}

.menu-toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.menu-toggle:hover::before {
    left: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.line {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle:hover .line1 {
    transform: translateY(-2px) rotate(5deg);
}

.menu-toggle:hover .line2 {
    transform: scaleX(0.8);
}

.menu-toggle:hover .line3 {
    transform: translateY(2px) rotate(-5deg);
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.header-bg .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.header-bg .shape1 {
    width: 60px;
    height: 60px;
    background: #ff6b6b;
    top: -30px;
    left: 10%;
    animation-delay: 0s;
}

.header-bg .shape2 {
    width: 40px;
    height: 40px;
    background: #4ecdc4;
    top: -20px;
    right: 20%;
    animation-delay: 2s;
}

.header-bg .shape3 {
    width: 80px;
    height: 80px;
    background: #ffd93d;
    top: -40px;
    right: 5%;
    animation-delay: 4s;
}

.main-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
    pointer-events: none;
}

.main-sidebar.active {
    left: 0;
    visibility: visible;
    pointer-events: auto;
}

.main-sidebar .sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.main-sidebar.active .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

.main-sidebar .sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    contain: layout paint;
}

.main-sidebar .sidebar-user-block {
    margin: 12px 12px 0;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.main-sidebar .sidebar-user-block .dropdown-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 4px 10px;
}

.main-sidebar .sidebar-user-block .profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: conic-gradient(
        from 180deg at 50% 50%,
        #667eea,
        #764ba2,
        #667eea
    );
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85),
        0 6px 16px rgba(0, 0, 0, 0.12);
}

.main-sidebar .sidebar-user-block .profile-info {
    flex: 1;
    min-width: 0;
}

.main-sidebar .sidebar-user-block .profile-name {
    font-weight: 800;
    color: #ffffff;
    font-size: 15px;
}

.main-sidebar .sidebar-user-block .profile-email {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-sidebar .sidebar-user-block .dropdown-divider {
    height: 1px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.22);
}

.main-sidebar .sidebar-user-block .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.main-sidebar .sidebar-user-block .dropdown-item i {
    width: 18px;
    text-align: center;
    color: #ffd93d;
}

.main-sidebar .sidebar-user-block .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.main-sidebar .sidebar-user-block .logout-item button {
    background: transparent;
    border: none;
    color: #ffe1e1;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}

.main-sidebar.active .sidebar-content {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.main-sidebar .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-sidebar .sidebar-logo img {
    height: 70px;
}

.main-sidebar .close-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: var(--gradient-secondary);
}

.main-sidebar .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.main-sidebar .close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.main-sidebar .close-line1 {
    transform: translate(-50%, -50%) rotate(45deg);
}

.main-sidebar .close-line2 {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.main-sidebar .nav-menu {
    list-style: none;
    padding: 20px 0;
    flex: 1;
}

.main-sidebar .nav-item {
    margin-bottom: 5px;
}

.main-sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-sidebar .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.main-sidebar .nav-link:hover::before {
    left: 0;
}

.main-sidebar .nav-link:hover {
    transform: translateX(10px);
}

.main-sidebar .nav-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    position: relative;
}

.main-sidebar .nav-text {
    flex: 1;
    font-weight: 500;
    font-size: 16px;
}

.main-sidebar .nav-arrow {
    width: 8px;
    height: 8px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.main-sidebar .nav-link:hover .nav-arrow {
    transform: rotate(45deg) translateX(5px);
}

.main-sidebar .sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.1);
}

.main-sidebar .social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.main-sidebar .social-link {
    width: 40px;
    height: 40px;
    color: var(--light-color);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.main-sidebar .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.main-sidebar .social-icon {
    width: 20px;
    height: 20px;
    background: white;
}

.menu-toggle.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .line2 {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .line3 {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero  */
.contact,
.hero {
    background: var(--gradient-accent);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.contact::before,
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(75, 80, 168, 0.4) 0%,
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(47, 51, 124, 0.4) 0%,
            transparent 25%
        );
    z-index: 1;
}
.contact .container,
.hero .container {
    z-index: 2;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
}

.hero .hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--light-color);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    display: inline-block;
}

.hero .text-gradient {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-weight: 900;
}

.hero .hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    padding-left: 1rem;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

.hero .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.2s;
}
.hero .hero-buttons .btn i {
    margin-left: 10px;
}
.hero .hero-buttons .btn {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-primary {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: white;
}

.hero .hero-buttons .btn-primary:hover::before {
    opacity: 1;
}

.hero .hero-buttons .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid #4f46e5;
}

.hero .hero-buttons .btn-outline-primary:hover {
    color: white;
    border-color: transparent;
}

.hero .hero-buttons .btn-outline-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero .hero-buttons .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.4s ease;
    background: linear-gradient(45deg, #7c3aed, #4f46e5);
    opacity: 0;
}

.hero .hero-buttons .btn-outline-primary::before {
    transform: scaleX(0);
    transform-origin: right;
    opacity: 1;
}

.hero .hero-buttons .btn i {
    transition: transform 0.3s ease;
}

.hero .hero-buttons .btn:hover i {
    transform: translateX(5px);
}

.hero .hero-images {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
    animation: fadeInRight 1s ease-out forwards;
    animation-delay: 1s;
}

.hero .container-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 250px;
    animation: containerFloat 6s ease-in-out infinite;
    z-index: 2;
}

.hero .truck-img {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    max-width: 100%;
    animation: moveRight 8s linear infinite;
    z-index: 1;
}
.footer .banner-one__line-shpae1,
.footer .banner-one__line-shpae2,
.hero .banner-one__line-shpae1,
.hero .banner-one__line-shpae2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(34deg);
    z-index: 0;
    backdrop-filter: blur(5px);
    border-radius: 20px;
}
.footer .banner-one__line-shpae1,
.hero .banner-one__line-shpae1 {
    top: -300px;
    bottom: -300px;
    right: -5px;
    width: 250px;
}
.footer .banner-one__line-shpae2,
.hero .banner-one__line-shpae2 {
    top: 310px;
    bottom: -150px;
    right: 452px;
    width: 100px;
}

/* Contact  */
.contact-hero .section-title .section-title__tagline,
.contact-hero .section-title .section-title__shape-1 i,
.contact-hero .section-title .section-title__shape-2 i,
.contact-hero .section-title .char {
    color: var(--white);
}
.contact-hero .section-title .section-title__tagline-border {
    background: var(--white);
}
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url("../imgs/bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(47, 51, 124, 0.3) 0%,
        rgba(75, 80, 168, 0.2) 100%
    );
    z-index: 1;
}

.contact-hero .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.contact-hero .shape {
    position: absolute;
    opacity: 0.1;
    animation: contactFloat 6s ease-in-out infinite;
}

.contact-hero .shape-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    animation-delay: 0s;
}

.contact-hero .shape-2 {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: var(--white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 2s;
}

.contact-hero .shape-3 {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: var(--white);
    transform: rotate(45deg);
    animation-delay: 4s;
}

@keyframes contactFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}
.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(
        45deg,
        var(--light-color) 0%,
        var(--white) 50%,
        var(--light-color) 100%
    );
}

.contact-section .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-section .contact-form-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.contact-section .contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(47, 51, 124, 0.15);
}

.contact-section .contact-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-accent);
    border-radius: 25px 25px 0 0;
}

.contact-section .form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.contact-section .form-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.contact-section .form-subtitle {
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-section .form-group {
    margin-bottom: 32px;
    position: relative;
}

.contact-section .form-group::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.03),
        rgba(59, 130, 246, 0.02)
    );
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.contact-section.form-group:hover::before {
    opacity: 1;
}

.contact-section .form-field {
    position: relative;
}

.contact-section .form-field label.floating-label {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        #fafbfc 40%,
        #fafbfc 60%,
        transparent 60%
    );
    padding: 0 0.5rem;
    z-index: 2;
}

.form-control:focus + label.floating-label,
.form-control:not(:placeholder-shown) + label.floating-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    left: 0.8rem;
    color: #fff;
    font-weight: 600;
    background: var(--gradient-accent);
    padding: 2px 10px;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.form-control:hover {
    border-color: #c7d2fe;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-0.5px);
}

.form-control.textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(47, 51, 124, 0.3);
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(47, 51, 124, 0.5);
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.submit-btn:active::after {
    width: 300px;
    height: 300px;
}
.contact-hero {
    height: 100vh;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    animation: pulse-info-icon 2s infinite;
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
}

@keyframes pulse-info-icon {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-text {
    color: var(--secondary-color);
    line-height: 1.6;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--secondary-color);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.contact-hero .form-group {
    margin-bottom: 14px;
}
.contact-hero .form-field {
    position: relative;
}
.contact-hero .form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dbe3ff;
    background: rgba(255, 255, 255, 0.95);
    outline: none;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease;
}
.contact-hero select.form-control {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #4b50a8 50%),
        linear-gradient(135deg, #4b50a8 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px),
        calc(100% - 13px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}
.contact-hero .form-control.textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-hero .form-control:focus {
    border-color: #4b50a8;
    box-shadow: 0 0 0 4px rgba(75, 80, 168, 0.12);
    background: #fff;
}
.contact-hero .floating-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 14px;
    padding: 0 6px;
    color: #64748b;
    pointer-events: none;
    background: transparent;
    transition: all 0.15s ease;
}
.contact-hero .form-control:focus + .floating-label,
.contact-hero .form-control:not(:placeholder-shown) + .floating-label {
    top: -8px;
    transform: none;
    font-size: 12px;
    color: #2f337c;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(75, 80, 168, 0.15);
}
.contact-hero .loading {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top-color: #fff;
    border-radius: 50%;
    animation: contactSpin 1s linear infinite;
}
/* Success Message */
.success-message {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
    animation: slideDown 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper,
    .info-card {
        padding: 25px;
    }

    .contact-section {
        padding: 60px 0;
    }
}

/* FAQS */
.faqs {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

.faqs .container {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.faqs header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.faqs h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.faqs .subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.faqs .search-box {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.faqs .search-box input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    background: var(--gradient-accent);
    color: var(--light-color);
}

.faqs .search-box input::placeholder {
    color: var(--light-color);
}

.faqs .search-box input:focus {
    outline: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px) scale(1.01);
}

.faqs .search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.faqs .faq-item {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: white;
    transform: translateZ(0);
}

.faqs .faq-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.faqs .faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.faqs .faq-question::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-accent);
    transition: all 0.4s ease;
}

.faqs .faq-question:hover::before {
    width: 8px;
}

.faqs .faq-question span {
    padding-left: 15px;
    z-index: 1;
}

.faqs .faq-question i {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    font-size: 1.3rem;
    color: var(--secondary-color);
    z-index: 1;
}

.faqs .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.6s ease;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

.faqs .faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faqs .faq-item.active .faq-question {
    background: var(--gradient-accent);
    color: var(--light-color);
}

.faqs .faq-item.active .faq-question i {
    transform: rotate(180deg) scale(1.2);
    color: var(--light-color);
}

.faqs .category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faqs .category-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.faqs .category-btn.active {
    background: var(--gradient-accent);
    color: var(--light-color);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
}

.faqs .no-results {
    text-align: center;
    padding: 30px;
    color: var(--secondary-color);
    display: none;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .faqs h1 {
        font-size: 2.5rem;
    }

    .faqs .container {
        padding: 25px;
    }

    .faqs .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }

    .faqs .category-btn {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .faqs h1 {
        font-size: 2rem;
    }

    .faqs .subtitle {
        font-size: 1.1rem;
    }

    .faqs .search-box input {
        padding: 15px 20px;
    }

    .faqs .faq-question {
        padding: 15px;
    }

    .faqs .faq-item.active .faq-answer {
        padding: 15px;
    }
}

/* Login */
.login-page {
    padding-top: 0;
    display: flex;
    align-items: center;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(75, 80, 168, 0.4) 0%,
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(47, 51, 124, 0.4) 0%,
            transparent 25%
        );
    z-index: 1;
}

.login-page .container {
    z-index: 2;
}

.login-page .banner-one__line-shpae1,
.login-page .banner-one__line-shpae2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(34deg);
    z-index: 0;
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.login-page .banner-one__line-shpae1 {
    top: -300px;
    bottom: -300px;
    right: -5px;
    width: 250px;
}

.login-page .banner-one__line-shpae2 {
    top: 310px;
    bottom: -150px;
    right: 452px;
    width: 100px;
}

.login-page .login-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    margin: 2rem auto;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.login-page .login-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--border-radius) + 2px);
    background: linear-gradient(
        135deg,
        rgba(47, 51, 124, 0.35),
        rgba(75, 80, 168, 0.35)
    );
    z-index: -1;
}

.login-page .login-container:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.login-page .login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-page .login-header h1 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.login-page .form-group {
    margin-bottom: 1.8rem;
}

.login-page .form-field {
    position: relative;
}

.login-page .form-field label.floating-label {
    position: absolute;
    top: 50%;
    inset-inline-start: 2.5rem;
    transform: translateY(-50%);
    color: #8a94a6;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.18s ease;
    background: #fff;
    border-radius: 8px;
    padding: 5px 10px;
}

.login-page .form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: #fff;
    color: #1f2d3d;
}

.login-page .form-control:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(47, 51, 124, 0.15);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.login-page .form-control:focus + label.floating-label,
.login-page .form-control:not(:placeholder-shown) + label.floating-label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    inset-inline-start: 0.6rem;
    color: var(--primary-color);
}

.login-page .form-control::placeholder {
    color: #9aa4b2;
    opacity: 1;
    font-size: 0.95rem;
}

.login-page .input-with-icon {
    position: relative;
}

.login-page .input-with-icon .form-control {
    padding-inline-start: 2.5rem;
}

.login-page .input-icon {
    position: absolute;
    top: 50%;
    inset-inline-start: 0.75rem;
    transform: translateY(-50%);
    color: #8a94a6;
    pointer-events: none;
    display: inline-flex;
}

.login-page .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.login-page .btn-login {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem;
    width: 100%;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.login-page .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-page .custom-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.login-page .custom-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.login-page .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #b7bfd1;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #fff;
}

.login-page .custom-check input:checked + .checkmark {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(47, 51, 124, 0.15);
}

.login-page .checkmark svg {
    color: #fff;
    display: none;
}

.login-page .custom-check input:checked + .checkmark svg {
    display: block;
}

.login-page .login-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.login-page .login-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.login-page .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.25rem 0;
}

.login-page .password-wrapper {
    position: relative;
}

.login-page .toggle-password {
    position: absolute;
    top: 50%;
    inset-inline-end: 0.75rem;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.login-page .toggle-password:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.04);
}

.login-page .spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: Logginspin 0.9s linear infinite;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08) inset;
}

@keyframes Logginspin {
    to {
        transform: rotate(360deg);
    }
}

.login-page .btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

/* Articles */
.search-wrap {
    max-width: 500px;
    margin: 0 auto 28px auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-color);
    border-radius: 14px;
    box-shadow: var(--shadow-medium);
    padding: 10px 14px;
    position: relative;
}

.search-wrap .icon {
    color: var(--white);
    display: inline-flex;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    padding: 10px 8px;
    font-size: 1rem;
    color: var(--white);
}

.search-input::placeholder {
    color: var(--white);
}

.search-input:focus {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
    border-radius: 12px;
}

.aricles-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
}

.aricles-page .articles-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 28px;
}

@media (min-width: 576px) {
    .aricles-page .article-card {
        grid-column: span 6;
    }
}

@media (min-width: 992px) {
    .aricles-page .article-card {
        grid-column: span 4;
    }
}

@media (max-width: 575.98px) {
    .aricles-page .article-card {
        grid-column: span 12;
    }
}

.aricles-page .article-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(17, 24, 39, 0.06);
    transform-style: preserve-3d;
    perspective: 800px;
}

.aricles-page .article-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.16),
        rgba(118, 75, 162, 0.12)
    );
    opacity: 0;
    transition: var(--transition);
}

.aricles-page .article-card:hover {
    transform: translateY(-8px) rotate3d(1, -1, 0, 0.8deg) scale(1.005);
    box-shadow: var(--shadow-medium);
}

.aricles-page .article-card:hover::after {
    opacity: 1;
}

.aricles-page .article-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(180deg, #f6f8fb, #eef2fb);
}

.aricles-page .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.aricles-page .article-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.05) 60%,
        rgba(0, 0, 0, 0.18)
    );
    opacity: 0.6;
    transition: var(--transition);
}

.aricles-page .article-date-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.78rem;
    box-shadow: var(--shadow-light);
}

.aricles-page .article-card:hover .article-thumb img {
    transform: scale(1.08) translateZ(0);
}

.aricles-page .article-card:hover .article-thumb::before {
    opacity: 0.95;
}

.aricles-page .article-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.aricles-page .article-title {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.06rem;
    line-height: 1.35;
}

.aricles-page .article-desc {
    color: #5f6b7a;
    display: -webkit-box;
    line-clamp: 3; /* standard property for compatibility */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aricles-page .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--white);
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.read-more:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-medium);
}

.aricles-page .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

.aricles-page .reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.aricles-page .no-results {
    text-align: center;
    color: var(--secondary-color);
    padding: 24px 0;
}

.aricles-page .load-more-wrap {
    text-align: center;
    margin: 26px 0 48px;
}

.aricles-page .btn-load-more {
    background: var(--gradient-primary);
    color: var(--white);
    border: 0;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.aricles-page .btn-load-more[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.aricles-page .muted {
    color: #8a94a6;
    font-size: 0.9rem;
}

/* Articles Deatiels */
.article-deatiels {
    /* padding-top: 0; */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.article-deatiels .main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    padding: 3rem 0;
}

.article-deatiels .article-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: relative;
}

.article-deatiels .article-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.article-deatiels .article-image {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.article-deatiels .article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

.article-deatiels .article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.2;
}

.article-deatiels .article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-deatiels .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-deatiels .article-content {
    padding: 3rem;
}

.article-deatiels .article-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.article-deatiels .sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-deatiels .sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}

.article-deatiels .sidebar-widget:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.article-deatiels .widget-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.article-deatiels .widget-content {
    padding: 1.5rem;
}

.article-deatiels .toc-list {
    list-style: none;
}

.article-deatiels .toc-item {
    margin-bottom: 0.8rem;
}

.article-deatiels .toc-link {
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.article-deatiels .toc-link:hover {
    background: var(--light-color);
    border-left-color: var(--dark-color);
    transform: translateX(5px);
}

.article-deatiels .toc-link.active {
    background: var(--light-color);
    border-left-color: var(--dark-color);
    color: var(--primary-color);
    font-weight: 600;
}

.article-deatiels .related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.article-deatiels .related-post:last-child {
    border-bottom: none;
}

.article-deatiels .related-post:hover {
    background: #f8f9fa;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.article-deatiels .related-post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-deatiels .related-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.article-deatiels .related-post-content a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-deatiels .related-post-content a:hover {
    color: var(--primary-color);
}

.article-deatiels .related-post-meta {
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 1024px) {
    .article-deatiels .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-deatiels .sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .article-deatiels .nav-links {
        display: none;
    }

    .article-deatiels .article-title {
        font-size: 2rem;
    }

    .article-deatiels .article-content {
        padding: 2rem;
    }
}

.article-deatiels .article-section {
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: visible;
}

.article-deatiels .article-section::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-accent);
    border-radius: calc(var(--border-radius) + 5px);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.article-deatiels .article-section:hover::before {
    opacity: 0.1;
}

.article-deatiels .sidebar-widget {
    animation: slideInRight 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.article-deatiels .sidebar-widget::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
}

.article-deatiels .sidebar-widget:hover::before {
    left: 100%;
}

.article-deatiels .sidebar-widget:nth-child(2) {
    animation-delay: 0.1s;
}

.article-deatiels .sidebar-widget:nth-child(3) {
    animation-delay: 0.2s;
}

.article-deatiels .sidebar-widget:nth-child(4) {
    animation-delay: 0.3s;
}

.article-deatiels .toc-list {
    position: relative;
}

.article-deatiels .toc-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--primary-color),
        var(--secondary-color)
    );
    border-radius: 2px;
    opacity: 0.2;
}

.article-deatiels .toc-link {
    position: relative;
    overflow: hidden;
}

.article-deatiels .toc-link::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.article-deatiels .toc-link:hover::before {
    width: 100%;
}

.article-deatiels .toc-link:hover {
    color: var(--white);
    transform: translateX(10px);
}

.article-deatiels .related-post {
    position: relative;
    overflow: hidden;
}

.article-deatiels .related-post::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(47, 51, 124, 0.1),
        transparent
    );
    transition: left 0.4s ease;
}

.article-deatiels .related-post:hover::after {
    left: 100%;
}

.article-deatiels .related-post-image {
    transition: var(--transition);
    filter: grayscale(20%);
}

.article-deatiels .related-post:hover .related-post-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.article-deatiels .article-hero {
    position: relative;
    overflow: hidden;
}

.article-deatiels .article-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(47, 51, 124, 0.1),
        rgba(75, 80, 168, 0.1)
    );
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.article-deatiels .article-hero:hover::before {
    opacity: 1;
}

.article-deatiels .article-image {
    border-radius: 12px;
    overflow: hidden !important;
    transition: transform 0.6s ease;
}

.article-deatiels .article-hero:hover .article-image {
    transform: scale(1.05) rotate(1deg);
}

.article-deatiels .meta-item {
    transition: var(--transition);
}

.article-deatiels .meta-item:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-deatiels .related-post-image:hover,
.article-deatiels .article-image:hover {
    animation: none;
}

.article-deatiels .widget-header {
    position: relative;
    overflow: hidden;
}

.article-deatiels .widget-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: right 0.6s ease;
}

.article-deatiels .sidebar-widget:hover .widget-header::after {
    right: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .article-deatiels .article-hero {
        height: 300px;
    }

    .article-deatiels .article-title {
        font-size: 1.8rem;
    }

    .article-deatiels .article-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero {
        text-align: center;
        padding: 20px 0;
    }

    .hero .hero-content {
        text-align: center;
        margin-top: 40px;
    }

    .hero .hero-text {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        border-left: none;
    }

    .hero .hero-title {
        font-size: 2.8rem;
    }

    .hero .hero-buttons {
        justify-content: center;
    }

    .hero .hero-images {
        min-height: 350px;
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .hero .hero-title {
        font-size: 2rem;
    }

    .hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero .hero-text {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .hero .hero-buttons {
        margin-top: 0rem;
        gap: 0;
    }

    .hero .hero-buttons .btn {
        padding: 0.7rem 2.2rem;
    }

    .hero .hero-images {
        position: relative;
        height: auto;
        min-height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
    }

    .hero .container-img {
        display: none;
    }

    .hero .truck-img {
        position: static;
        display: block;
        width: 80%;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        transform: none;
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 480px) {
    .main-sidebar .sidebar-content {
        width: 280px;
    }

    .header-container {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .main-sidebar .sidebar-content {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .main-sidebar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .user-name {
        display: none;
    }

    .main-sidebar .nav-item.has-sub > .nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    #sidebarServicesToggle[aria-expanded="true"] .nav-arrow {
        transform: rotate(225deg);
    }

    .main-sidebar .nav-item .nav-submenu {
        list-style: none;
        margin: 0 0 5px;
        padding: 0 0 5px;
        background: rgba(0, 0, 0, 0.08);
        border-left: 2px solid rgba(255, 255, 255, 0.25);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-sidebar .nav-item .nav-submenu.open {
        max-height: 500px;
    }

    .main-sidebar .nav-item .nav-submenu .nav-link {
        padding: 12px 20px 12px 44px;
        opacity: 0.95;
    }
}
.stat-number.plus {
display: flex;
flex-direction: row-reverse;
text-align: center;
    align-items: center;
    justify-content: center;}
/* Rtl  */
html:lang(ar) {
    .stats-section {
        direction: rtl !important;
    }
    .stat-number.plus {
display: flex;
flex-direction:unset;
text-align: center;
    align-items: center;
    justify-content: center;}
    .
     .gallery-section .gallery-text p,
      .hero-text,
  .about-section p,
  .srv-desc,
  .mini-benefits__sub,
  .cta-text {
    text-align: justify;
    text-justify: inter-word;
  }


        .about-section,
    .hero .hero-content {
        text-align: right;
    }
    .main-sidebar,
    .sidebar,
    .contact-hero,
    .contact-section,
    .footer,
    .privacy,
    .hero .hero-content,
    .hero,
    .srv-content,
    header,
    .about-page,
    .article-deatiels,
    .aricles-page,
    .section-title,
    .login-page,
    .faqs {
        direction: rtl;
    }

    .contact-section .form-field label.floating-label {
        left: unset;
        right: 0;
    }
    .form-control:focus + label.floating-label,
    .form-control:not(:placeholder-shown) + label.floating-label {
        right: 0.8rem;
        left: unset;
    }
    .footer .footer-column h3::after {
        bottom: 0;
        left: unset;
        right: 0;
    }
    .privacy .icon svg {
        margin-left: 20px;
        margin-right: unset;
    }
    .hero .hero-buttons .btn i {
        margin-right: 10px;
        margin-left: unset;
    }
    .about-section .section-title {
        text-align: right;
    }

    .article-deatiels .toc-link::before {
        right: 0 !important;
        left: unset !important;
    }

    .article-deatiels .related-post::after {
        right: -100%;
    }

    .article-deatiels .related-post:hover::after {
        right: 100%;
    }

    .article-deatiels .toc-list::before {
        right: 0;
    }

    .article-deatiels .toc-link {
        margin-right: 20px;
        border-right: 3px solid transparent;
        border-left: unset;
    }

    .article-deatiels .toc-link.active,
    .article-deatiels .toc-link:hover {
        border-right-color: var(--dark-color);
        border-right-color: var(--dark-color);
        border-left-color: unset;
    }

    .faqs .search-box i {
        right: unset;
        left: 25px;
    }

    .sector-card i {
        margin-right: unset;
        margin-left: 15px;
    }
    .mini-benefits__item::after {
        right: auto;
    }
    .feature-card .spark {
        inset-inline-start: auto;
        inset-inline-end: 16px;
    }
}

/* About */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.sectors-section .section-title .section-title__tagline-border {
    border: 1px dashed var(--white);
}
.sectors-section .section-title .section-title__shape-1 i,
.sectors-section .section-title .section-title__shape-2 i,
.sectors-section .section-title .char,
.sectors-section .section-title h6,
.sectors-section .section-title .section-title__title {
    color: var(--white) !important;
    background: unset;
}
.about-section .section-title {
    text-align: left;
}
.about-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-image {
    width: 500px;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-main-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(102, 126, 234, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}

.about-image-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(47, 51, 124, 0.15);
    border-radius: 20px;
    transform: translate(15px, 15px);
    z-index: -1;
    transition: all 0.4s ease;
}

.about-main-image:hover .about-image-shadow {
    transform: translate(25px, 25px);
    background: rgba(47, 51, 124, 0.25);
}
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(0%) translateY(0%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.about-content {
    padding: 40px;
}
.about-content h6 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-content .lead {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.features-section {
    padding: 80px 0;
    background: var(--white);
}

/* Features */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(75, 80, 168, 0.12);
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease,
        border-color 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -50% -10% auto -10%;
    height: 180px;
    background: radial-gradient(
        420px 120px at 50% 0,
        rgba(102, 126, 234, 0.18),
        rgba(118, 75, 162, 0.14),
        transparent 70%
    );
    filter: blur(14px);
    opacity: 0.7;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(75, 80, 168, 0.25);
    background-color: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(75, 80, 168, 0.35);
    margin-bottom: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(6deg) scale(1.04);
    box-shadow: 0 16px 36px rgba(75, 80, 168, 0.45);
}

.feature-icon i {
    color: #fff;
    font-size: 24px;
}

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: #495057;
    line-height: 1.7;
    margin: 0;
}
.feature-card .spark {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
    top: 16px;
    inset-inline-start: 16px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.feature.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.5rem;
    animation: pulse-card-icon 2s infinite;
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
}

@keyframes pulse-card-icon {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.info-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-card-content {
    color: var(--secondary-color);
    line-height: 1.6;
}

.sectors-section {
    padding: 80px 0;
    background: var(--gradient-accent);
    color: var(--white);
}

.sector-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    height: 100%;
}

.sector-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.sector-card i {
    margin-right: 15px;
}

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes truck-move {
    0%,
    100% {
        transform: translateX(0);
    }

    25%,
    75% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(-10px);
    }
}

@keyframes TitlefadeUp {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes containerFloat {
    0%,
    100% {
        transform: translate(-50%, 0px);
    }

    50% {
        transform: translate(-50%, -20px);
    }
}

@keyframes moveRight {
    0%,
    100% {
        transform: translateX(-50%);
    }

    50% {
        transform: translateX(-45%);
    }
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Services */
.services {
    position: relative;
    display: block;
    padding: 50px 0;
    z-index: 1;
}

.srv-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 6px inset rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    background: transparent;
}

.srv-card:hover {
    transform: translateY(-5px);
}

.srv-image-wrap {
    position: relative;
    display: block;
}

.srv-image {
    position: relative;
    display: block;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='300' height='250' viewBox='0 0 300 250'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='300' height='250'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='300' height='250' viewBox='0 0 300 250'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='300' height='250'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    border-top-left-radius: 20px;
    z-index: 1;
    transition: var(--transition);
}

.srv-card:hover .srv-image {
    transform: scale(1.05);
}

.srv-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 37, 47, 0);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.srv-card:hover .srv-image::before {
    opacity: 1;
}

.srv-image img {
    width: 100%;
    height: 280px;
    border-top-left-radius: 20px;
    transition: transform 0.5s ease;
    display: block;
}

.srv-card:hover .srv-image img {
    transform: scale(1.05);
}

.srv-icon {
    position: absolute;
    top: 5px;
    right: 27px;
    width: 65px;
    height: 65px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.srv-card:hover .srv-icon {
    background: var(--dark-color);
    transform: rotateY(180deg);
}

.srv-icon i {
    font-size: 30px;
    color: var(--light-color);
    transition: color 0.3s ease;
}

.srv-content {
    position: relative;
    padding: 136px 20px 27px;
    background-color: var(--light-color);
    margin-top: -100px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: background-color 0.3s ease;
}

.srv-count {
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 50px;
    line-height: 0.8em;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--secondary-color);
    transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
}

.srv-card:hover .srv-count {
    color: var(--primary-color);
    -webkit-text-stroke: 1px var(--primary-color);
}

.srv-title {
    font-size: 22px;
    line-height: 1.2em;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.srv-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.srv-title a:hover {
    color: var(--primary-color);
}

.srv-desc {
    margin-bottom: 16px;
    color: var(--dark-color);
}

.srv-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-color);
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    transition: color 0.3s ease;
}

.srv-btn:hover {
    color: var(--secondary-color);
}

.srv-swiper {
    padding: 10px 10px 40px;
}

.srv-pagination {
    margin-top: 22px;
}

.srv-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cfd6ff;
    opacity: 1;
    margin: 0 6px;
    transition: transform 0.3s var(--transition),
        background-color 0.3s var(--transition),
        box-shadow 0.3s var(--transition);
}

.srv-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.2);
}

.srv-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.4);
    box-shadow: 0 4px 12px rgba(75, 80, 168, 0.4);
}
/* Footer  */
.privacy .container {
    padding: 50px 20px;
}
.privacy h5 {
    color: var(--secondary-color);
}
.privacy .icon svg {
    margin-right: 20px;
    color: var(--secondary-color);
}

.footer {
    background: var(--gradient-accent);
    color: var(--light-color);
    padding: 30px 0 0;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 45px;
}
.footer .footer-column {
    position: relative;
}

.footer .footer-column h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer .footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--light-color);
    opacity: 0.8;
}

.footer .footer-logo {
    max-width: 180px;
    margin-bottom: 0px;
}

.footer .footer-about-text {
    line-height: 1.7;
    color: rgba(236, 240, 241, 0.85);
    margin-bottom: 25px;
}

.footer .social-media-links {
    display: flex;
    gap: 20px;
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.footer .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links-list li {
    margin-bottom: 20px;
}

.footer .footer-links-list a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-links-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer .footer-links-list a .link-icon {
    font-size: 14px;
    width: 16px;
}

.footer .contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer .contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer .contact-info-list .contact-icon {
    font-size: 18px;
    margin-top: 3px;
}

.footer .contact-info-list span {
    color: var(--light-color);
    line-height: 1.6;
}

.footer .contact-info-list a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer .contact-info-list a:hover {
    color: var(--white);
}

.footer .footer-bottom-bar {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    color: rgba(236, 240, 241, 0.7);
}

.footer .footer-bottom-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    margin: 0 !important;
    padding: 0 !important;
}

.footer .footer-bottom-bar p {
    margin: 0;
}

.footer .mobile-separator {
    display: none;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0)
    );
    margin: 20px 0;
    border: 0;
}
.mini-benefits {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    margin-bottom: 24px;
}
.mini-benefits__wrap {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: visible;
}
.mini-benefits__item {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    justify-items: center;
    text-align: center;
    gap: 16px;
    padding: 10px 8px;
    border-radius: 0;
    transition: none;
    color: inherit;
}
.mini-benefits__icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
    background: transparent;
    box-shadow: none;
}
.mini-benefits__icon i {
    font-size: 38px;
    color: #4b50a8;
    filter: none;
}
.mini-benefits__title {
    margin: 0;
    font-weight: 800;
    font-size: 20px;
    color: #1a252f;
    letter-spacing: 0.2px;
}
.mini-benefits__sub {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    color: #4b50a8;
    opacity: 0.9;
    letter-spacing: 0.2px;
    max-width: 32ch;
}
.mini-benefits__item {
    position: static;
    overflow: visible;
}
.mini-benefits__item::after {
    content: none;
}
html:not([dir="rtl"]) .mini-benefits__item::after {
    left: auto;
}
/* Gallery */
.gallery-section {
    position: relative;
    padding: 60px 0;
    background: var(--gradient-accent);
    overflow: hidden;
}

.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 20% 20%,
            rgba(47, 51, 124, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(75, 80, 168, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(231, 76, 60, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}
.gallery-section .gallery-images .swiper-slide img {
    width: 100%;
}
.gallery-bg {
    position: absolute;
    inset: auto auto -60px -60px;
    width: 48vw;
    max-width: 720px;
    opacity: 0.08;
    filter: blur(4px) saturate(1.05);
    transform: rotate(-6deg);
    z-index: 0;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.gallery-card img {
    max-width: 100%;
    display: block;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.08)
    );
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
}
.gallery-card:hover::after {
    opacity: 1;
}
.mini-benefits__item:hover::after {
    top: auto;
    opacity: 1;
}
/* CTA  */
.cta {
    padding: 64px 0;
    position: relative;
    background: var(--light-color);
    color: var(--dark-color);
    overflow: hidden;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(75, 80, 168, 0.35) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(47, 51, 124, 0.35) 0%,
            transparent 30%
        );
    z-index: 1;
}
.cta .container {
    position: relative;
    z-index: 2;
}
.cta .section-title__title {
    color: var(--dark-color);
}
.cta-text {
    max-width: 900px;
    margin: 8px auto 28px;
    text-align: center;
    color: var(--dark-color);
    font-size: 1.15rem;
    line-height: 1.9;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta .btn i {
    margin-inline-start: 8px;
}
.cta .btn-cta {
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
        background 0.25s ease, color 0.25s ease;
}
.cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}
.cta .btn-cta:active {
    transform: translateY(-1px) scale(0.98);
}

.cta .btn-cta-whatsapp {
    background: var(--gradient-accent);
    color: #fff;
}
.cta .btn-cta-whatsapp:hover {
    filter: brightness(1.03);
}

.cta .btn-cta-call {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}
.cta .btn-cta-call:hover {
    color: #fff;
    border-color: transparent;
    background: var(--gradient-secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 991.98px) {
    .services {
        padding: 40px 0;
    }

    .srv-icon {
        right: 18px;
        width: 56px;
        height: 56px;
    }

    html[dir="rtl"] .srv-icon {
        left: 18px;

    }

    .srv-content {
        padding: 120px 18px 24px;
    }

    .srv-count {
        top: 38px;
        font-size: 44px;
    }
    .about-image-container {
        height: 400px;
        margin-bottom: 40px;
    }

    .about-image {
        height: 300px;
    }

    .about-image-2 {
        left: 90px;
    }

    .about-image-3 {
        left: 170px;
    }
    .mini-benefits {
        margin-top: 16px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-main-image img {
    object-fit: unset;
}

}

@media (max-width: 576px) {
    .about-image {
        width: 160px;
    }
    .cta {
        padding: 48px 0;
    }
    .cta-text {
        font-size: 1rem;
    }
    .services {
        padding: 40px 0;
    }

    .srv-icon {
        right: 14px;
        width: 50px;
        height: 50px;
    }

    html[dir="rtl"] .srv-icon {
        left: 14px;
    }

    .srv-content {
        padding: 110px 15px 22px;
    }

    .srv-count {
        top: 45px;
        left: 16px;
        font-size: 40px;
    }

    html[dir="rtl"] .srv-count {
        right: 16px;
        left: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --shadow-strong: 0 12px 28px rgba(0, 0, 0, 0.12);
        --shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .main-sidebar .sidebar-content {
        width: 85vw;
        max-width: 360px;
        min-width: 280px;
    }

    .header {
        backdrop-filter: none;
        box-shadow: var(--shadow-light);
    }

    .main-sidebar .sidebar-overlay {
        backdrop-filter: none;
    }

    .header-bg .floating-shape {
        animation: none !important;
        opacity: 0.08;
    }
    .main-sidebar .nav-link:hover {
        transform: translateX(6px);
    }
    .feature-card {
        padding: 22px 18px;
    }
    .feature-icon {
        width: 54px;
        height: 54px;
    }
    .feature-card h4 {
        font-size: 1.08rem;
    }
    .login-page {
        padding: 24px 16px;
        padding-inline: 16px;
    }
    .login-page .container {
        padding: 0;
    }
    .login-page .login-container {
        padding: 2rem;
        margin: 16px auto;
        max-width: 420px;
        width: 100%;
    }
    .mini-benefits__wrap {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
        border-radius: 0;
    }
    .mini-benefits__item {
        grid-template-columns: 1fr;
        padding: 8px;
        gap: 14px;
    }
    .mini-benefits__icon {
        width: 52px;
        height: 52px;
        border-radius: 0;
    }
    .gallery-section {
        padding: 40px 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .footer .footer-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer {
        padding-top: 40px;
    }

    .footer .mobile-separator {
        display: block;
    }
    .about-image {
        height: 250px;
    }

    .about-image-2 {
        left: 70px;
    }

    .about-image-3 {
        left: 135px;
    }
    .contact-section .contact-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        grid-template-columns: none !important;
    }
    .contact-section .contact-info {
        order: 1 !important;
        width: 100% !important;
    }
    .contact-section .contact-form-wrapper {
        order: 2 !important;
        width: 100% !important;
    }
}

@media (max-width: 380px) {
    .login-page {
        padding-inline: 12px;
    }
    .login-page .login-container {
        padding: 1.25rem;
    }
}
@media (max-width: 1024px) {
    .article-deatiels .main-content {
        grid-template-columns: 1fr !important;
    }
    .article-deatiels .article-section {
        order: 1 !important;
    }
    .article-deatiels .sidebar {
        order: 2 !important;
    }
}
