:root {
    --primary-color: #2D5BFF;
    --primary-dark: #1A3CCF;
    --secondary-color: #2D5BFF;
    --accent-color: #FF6B35;
    --dark-color: #1E2A38;
    --light-color: #F8FAFC;
    --white: #ffffff;

    --gradient-primary: linear-gradient(135deg, #2D5BFF 0%, #1A3CCF 100%);
    --gradient-secondary: linear-gradient(135deg, #1A3CCF 0%, #2D5BFF 100%);
    --gradient-accent: linear-gradient(135deg, #2D5BFF 0%, #8A2BE2 100%);
    --gradient-start: #2D5BFF;
    --gradient-end: #8A2BE2;

    --whatsapp-color: #25D366;
    --whatsapp-dark: #128C7E;
    --gradient-whatsapp: linear-gradient(135deg, #25D366 0%, #128C7E 100%);

    --shadow-light: 0 2px 10px rgba(45, 91, 255, 0.08);
    --shadow-medium: 0 4px 20px rgba(45, 91, 255, 0.12);
    --shadow-heavy: 0 8px 30px rgba(45, 91, 255, 0.15);
    --shadow-strong: 0 20px 50px rgba(45, 91, 255, 0.15);
    --shadow: 0 10px 30px rgba(45, 91, 255, 0.1);
    --shadow-whatsapp: 0 10px 40px rgba(37, 211, 102, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-base: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
        "Apple Color Emoji", "Segoe UI Emoji";
    --font-display: var(--font-base);
}

.text-truncate-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Social Media Sharing Styles */
.social-sharing {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(45, 91, 255, 0.1);
}

.sharing-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.sharing-title i {
    color: var(--primary-color);
}

.sharing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    color: white;
    position: relative;
    overflow: hidden;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.share-btn:active {
    transform: translateY(0);
}

.share-btn i {
    font-size: 1rem;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.facebook:hover {
    background: #166FE5;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.twitter:hover {
    background: #1A91DA;
    box-shadow: 0 4px 20px rgba(29, 161, 242, 0.3);
}

.share-btn.threads {
    background: #000000;
}

.share-btn.threads:hover {
    background: #1A1A1A;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.share-btn.whatsapp {
    background: var(--whatsapp-color);
}

.share-btn.whatsapp:hover {
    background: var(--whatsapp-dark);
    box-shadow: var(--shadow-whatsapp);
}

.share-btn.telegram {
    background: #0088CC;
}

.share-btn.telegram:hover {
    background: #0077B5;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
}

.share-btn.linkedin {
    background: #0077B5;
}

.share-btn.linkedin:hover {
    background: #00669C;
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.3);
}

.share-btn.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    position: relative;
}

.share-btn.instagram:hover {
    background: linear-gradient(45deg, #E67424, #C2196A, #702D9E, #4049C3);
    box-shadow: 0 4px 20px rgba(221, 42, 123, 0.3);
}

.share-btn.snapchat {
    background: #FFFC00;
    color: #000;
}

.share-btn.snapchat:hover {
    background: #F5E600;
    box-shadow: 0 4px 20px rgba(255, 252, 0, 0.3);
}

.share-btn.copy-link {
    background: var(--dark-color);
}

.share-btn.copy-link:hover {
    background: #151D2A;
    box-shadow: 0 4px 20px rgba(30, 42, 56, 0.3);
}

.share-btn.copied {
    background: #28A745;
}

.share-btn.copied:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-sharing {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .sharing-buttons {
        gap: 0.5rem;
    }
    
    .share-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .share-btn span {
        display: none;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .sharing-buttons {
        justify-content: center;
    }
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.head-section {
    background: linear-gradient(120deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.head-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.head-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.head-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.search-container {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
}

.head-search-box {
    text-align: right;
    width: 100%;
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.head-search-box:focus {
    outline: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.head-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
}

.head-bg-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.head-bg-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

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

    .head-section p {
        font-size: 1rem;
    }
}

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;
    }
}

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: linear-gradient(135deg, var(--light-color) 0%, #f0f4f9 100%);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    -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;
}

/* 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 {
        order: 1;
    }

    .header .logo {
        order: 2;
    }

    .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: var(--gradient-accent);
    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(45, 91, 255, 0.5);
    outline-offset: 2px;
}

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-accent);
    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(45, 91, 255, 0.06);
}

.nav-user-dropdown .dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--primary-color);
}

.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%,
            var(--primary-color),
            var(--gradient-end),
            var(--primary-color));
    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, var(--primary-color), var(--gradient-end));
    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: var(--gradient-accent);
    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%,
            var(--primary-color),
            var(--gradient-end),
            var(--primary-color));
    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: var(--accent-color);
}

.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  */
.hero-section {
    padding: 80px 0;
    overflow: hidden;
}

.hero-content {
    padding: 30px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(0) scale(1) rotateX(0);
}

.hero-title.slide-out {
    opacity: 0;
    transform: translateY(-50px) scale(0.8) rotateX(90deg);
}

.hero-title.slide-in {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
    animation: titleBounce 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 10px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.6;
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0) rotateY(0);
}

.hero-subtitle.slide-out {
    opacity: 0;
    transform: translateX(-100px) rotateY(-45deg);
}

.hero-subtitle.slide-in {
    opacity: 1;
    transform: translateX(0) rotateY(0);
    animation: subtitleSlide 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-buttons {
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(0) scale(1);
}

.hero-buttons.slide-out {
    opacity: 0;
    transform: translateY(50px) scale(0.7);
}

.hero-buttons.slide-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: buttonsFloat 1.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s both;
}

.hero-buttons .btn {
    padding: 12px 30px;
    border-radius: 30px;
    margin-right: 15px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.hero-buttons .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;
}

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

.btn-primary {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border: none;
}

.btn-outline-primary {
    border: 2px solid #2575fc;
    color: #2575fc;
}

.btn-outline-primary:hover {
    background: #2575fc;
    color: white;
}

.hero-carousel {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    perspective: 1000px;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1) rotateY(0) rotateX(0);
}

.swiper-slide-active img {
    animation: imageReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide:hover img {
    transform: scale(1.1) rotateY(5deg) rotateX(2deg);
    filter: brightness(1.1) contrast(1.1);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.swiper-slide:hover .slide-content {
    transform: translateY(0);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #2575fc;
    transform: scale(1.3);
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 24px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

.floating-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -30px;
    right: -30px;
    opacity: 0.7;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.floating-shape-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -30px;
    left: -30px;
    opacity: 0.7;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

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

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes titleBounce {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3) rotateX(90deg);
    }

    50% {
        opacity: 0.8;
        transform: translateY(10px) scale(1.1) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

@keyframes subtitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-150px) rotateY(-90deg) scale(0.5);
    }

    60% {
        opacity: 0.7;
        transform: translateX(20px) rotateY(10deg) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0) scale(1);
    }
}

@keyframes buttonsFloat {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.5) rotateZ(-10deg);
    }

    40% {
        opacity: 0.6;
        transform: translateY(-10px) scale(1.1) rotateZ(5deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateZ(0);
    }
}

@keyframes imageReveal {
    0% {
        opacity: 0;
        transform: scale(1.3) rotateY(-45deg) rotateX(15deg);
        filter: blur(10px) brightness(0.5);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.95) rotateY(10deg) rotateX(-5deg);
        filter: blur(2px) brightness(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotateY(0) rotateX(0);
        filter: blur(0) brightness(1);
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.06));
    overflow: hidden;
}

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

.services-heading {
    max-width: 640px;
    margin: 0 auto 3rem;
}

.services-heading p {
    color: #4a5568;
}

.service-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 65px rgba(15, 23, 42, 0.16);
}

.service-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__media img {
    transform: scale(1.08);
}

.service-card__body {
    padding: 1.9rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card__title {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.service-card__excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.service-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.6rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 20px 35px rgba(102, 126, 234, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 45px rgba(102, 126, 234, 0.35);
}

.service-card__icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .service-card__body {
        padding: 1.6rem;
    }
}

@media (max-width: 575px) {
    .services-heading {
        margin-bottom: 2.5rem;
    }

    .service-card__title {
        font-size: 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-card__link,
    .service-card__media img {
        transition: none;
    }
}

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

    .swiper {
        height: 350px;
        margin-top: 40px;
    }
}

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

    .hero-buttons .btn {
        margin-bottom: 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Articles */

.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;
    }
}

/* card */
.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;
    -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 {
    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%;
    object-fit: cover;
    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 i {
    margin-right: 8px;
}

.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;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-form-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.contact-form-section .section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 20px auto;
    border-radius: 2px;
}

.contact-form-section .contact-form-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-section .contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: ContactPulse 4s ease-in-out infinite;
}

@keyframes ContactPulse {

    0%,
    100% {
        transform: scale(1);
    }

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

.contact-form-section .modern-input {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}


.contact-form-section .modern-input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.contact-form-section .form-floating label {
    color: #6c757d;
    transition: all 0.3s ease;
    padding: 1rem 1.25rem;
}

.contact-form-section .form-floating>.form-control:focus~label,
.contact-form-section .form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-color);
    top: -1rem;
    left: 0.75rem;
    position: absolute;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact-form-section .btn-submit {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form-section .btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-form-section .btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form-section .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.contact-form-section .why-choose-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form-section .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-form-section .feature-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: translateX(5px);
}

.contact-form-section .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form-section .feature-content h6 {
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.contact-form-section .feature-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.contact-form-section .social-section {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.contact-form-section .social-links {
    display: flex;
    gap: 10px;
}

.contact-form-section .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-form-section .social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.contact-form-section .social-link.facebook:hover {
    background: #1877f2;
}

.contact-form-section .social-link.twitter:hover {
    background: #1da1f2;
}

.contact-form-section .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-form-section .social-link.whatsapp:hover {
    background: #25D366;
}


/* Responsive */
@media (max-width: 768px) {
    .contact-form-section .hero-title {
        font-size: 2.5rem;
    }

    .contact-form-section .contact-form-card {
        padding: 25px;
    }

    .contact-form-section .why-choose-card {
        margin-top: 30px;
    }
}

/* 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 (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;
    }
}

.info-section .feature-box i,
.reviews-section a i {
    margin-right: 8px;
    margin-left: unset;
}

/* Rtl  */
html:lang(ar) {
    .contact-form-section .form-floating>label {
        right: 0 !important;
    }

    .contact-form-section .contact-form-card::before {
        left: -50%;
        right: unset;
    }

    .contact-form-section .form-floating>.form-control:focus~label,
    .contact-form-section .form-floating>.form-control:not(:placeholder-shown)~label {
        right: 0.75rem;
        left: unset !important;
    }

    .contact-form-section .feature-icon {
        margin-left: 15px;
        margin-right: 0;
    }

    .about-title::after {
        right: 0;
        left: unset;
    }

    .about-section,
    .hero .hero-content {
        text-align: right;
    }

    .about-page-wrapper .service-card li,
    .about-page-wrapper .sector-card li,
    .about-page-wrapper .area-card li {
        padding-left: 0;
        padding-right: 28px;
    }

    .about-page-wrapper .service-card li:before,
    .about-page-wrapper .sector-card li:before,
    .about-page-wrapper .area-card li:before {
        left: auto;
        right: 0;
    }
    .faq-container,
    .about-page-wrapper,
    .reviews-section,
    .info-section,
    .hero-section,
    .services-section,
    .contact-form-section,
    .main-sidebar,
    .sidebar,
    .footer,
    header,
    .article-deatiels,
    .aricles-page {
        direction: rtl;
    }

    .footer .footer-column h3::after {
        bottom: 0;
        left: unset;
        right: 0;
    }

    .hero-title:after,
    .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;
    }

    .info-section .feature-box i,
    .reviews-section a i,
    .article-deatiels .widget-header i {
        margin-left: 8px;
        margin-right: unset;
    }

    .head-search-box {
        text-align: left;
    }

    .head-search-icon {
        right: 20px;
        left: unset;
    }

}

.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 20px 0;
    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: 100px;
    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;
}

@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);
    }

    .footer .footer-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer {
        padding-top: 40px;
    }

    .footer .mobile-separator {
        display: block;
    }
}

@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;
    }
}

/* About & Review Section */
.bg-light {
    background-color: #fff !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-pill {
    font-size: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 2rem !important;
}

.info-section .counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2575fc;
    margin-bottom: 15px;
    line-height: 1;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.counter-number:hover {
    transform: translateY(-2px);
    color: #764ba2;
}

/* Add styling for achievements section icons */
section.py-5 .fa-3x {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

section.py-5 .fa-3x:hover {
    transform: scale(1.1);
}

.info-section .about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
}

.info-section .about-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    border-radius: 2px;
}

.info-section .about-text {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
}

.info-section .feature-box {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.info-section .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-section .feature-box i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-section .feature-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.info-section .about-image-container {
    position: relative;
}

.info-section .about-image-wrapper {
    position: relative;
    display: inline-block;
}

.info-section .about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.info-section .about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.3);
}

.info-section .badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.info-section .badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.info-section .about-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-section .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-section .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-section .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.info-section .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .info-section .about-section-title {
        font-size: 2rem;
        text-align: center;
    }

    .info-section .about-text {
        text-align: center;
    }

    .info-section .about-badge {
        top: 10px;
        right: 10px;
        padding: 1rem;
    }

    .info-section .about-stats {
        bottom: 10px;
        left: 10px;
        padding: 1rem;
    }

    .info-section .badge-number {
        font-size: 1.5rem;
    }

    .info-section .stat-number {
        font-size: 1.2rem;
    }
}

.rating-summary {
    display: inline-block;
}

.rating-value {
    font-size: 3rem;
    font-weight: 700;
    color: #2575fc;
    display: block;
    line-height: 1;
}

.stars-large i {
    font-size: 1.5rem;
    margin: 0 2px;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.review-stars i {
    font-size: 0.9rem;
}

.review-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* About Page */
.about-page-wrapper {
    width: 100%;
}


.about-page-wrapper .about-hero {
    padding: 30px 0 80px;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-page-wrapper .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.about-page-wrapper .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-page-wrapper .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-page-wrapper .hero-right {
    text-align: center;
}

.about-page-wrapper .hero-image {
    position: relative;
    display: inline-block;
}

.about-page-wrapper .hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-page-wrapper .hero-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-page-wrapper .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-page-wrapper .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-page-wrapper .hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-page-wrapper .hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.about-page-wrapper .hero-btn {
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}

.about-page-wrapper .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 37, 133, 0.4);
}

.about-page-wrapper .hero-meta {
    display: flex;
    gap: 30px;
}

.about-page-wrapper .meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page-wrapper .meta-item strong {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.about-page-wrapper .meta-item small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-page-wrapper section {
    padding: 80px 0;
}

.about-page-wrapper .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-page-wrapper .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-page-wrapper .section-header h2::after,
.about-page-wrapper .section-header h2::before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    right: 50%;
    transform: translateX(50%);
    border-radius: 2px;
    height: 4px;
}

.about-page-wrapper .section-header h2::before {
    width: 120px;
    bottom: -10px;
}

.about-page-wrapper .section-header h2::after {
    width: 80px;
    bottom: -20px;
}

.about-page-wrapper .section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.about-page-wrapper .section-header.light h2,
.about-page-wrapper .section-header.light p {
    color: var(--white);
}

.about-page-wrapper .section-header.light h2::after {
    background: var(--white);
}

.about-page-wrapper .glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    height: 100%;
}

.about-page-wrapper .glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-page-wrapper .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-page-wrapper .glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-page-wrapper .mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-page-wrapper .about-overview {
    background: var(--white);
    width: 100%;
}

.about-page-wrapper .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-page-wrapper .overview-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-page-wrapper .overview-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-page-wrapper .overview-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.about-page-wrapper .stat {
    text-align: center;
}

.about-page-wrapper .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.about-page-wrapper .stat-label {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.about-page-wrapper .overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-page-wrapper .services-section {
    background: var(--light-gray);
}

.about-page-wrapper .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-page-wrapper .service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.about-page-wrapper .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-page-wrapper .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-page-wrapper .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-page-wrapper .service-card ul {
    list-style: none;
}

.about-page-wrapper .service-card li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.about-page-wrapper .service-card li {
    padding: 8px 0 8px 28px;
    position: relative;
    list-style: none;
}

.about-page-wrapper .service-card li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
}

.sectors-section {
    background: var(--white);
}

.about-page-wrapper .sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.about-page-wrapper .sector-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.about-page-wrapper .sector-card:hover {
    transform: translateY(-5px);
}

.about-page-wrapper .sector-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-page-wrapper .sector-card ul {
    list-style: none;
}

.about-page-wrapper .sector-card li {
    padding: 6px 0 6px 28px;
    position: relative;
    list-style: none;
}

.about-page-wrapper .sector-card li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
}


.about-page-wrapper .why-securevision {
    color: var(--white);
}

.about-page-wrapper .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-page-wrapper .why-card {
    background: var(--gradient-secondary);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-page-wrapper .why-card:hover {
    transform: translateY(-5px);
    background: var(--gradient-primary);
}

.about-page-wrapper .why-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-page-wrapper .why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-areas {
    background: var(--white);
}

.about-page-wrapper .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-page-wrapper .area-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.about-page-wrapper .area-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--dark);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.about-page-wrapper .area-card ul {
    list-style: none;
}

.about-page-wrapper .area-card li {
    padding: 8px 0 8px 28px;
    position: relative;
    list-style: none;
}

.about-page-wrapper .area-card li:before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
}

.about-page-wrapper .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.about-page-wrapper .achievement-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-page-wrapper .achievement-card:hover {
    transform: scale(1.05);
}

.about-page-wrapper .achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.about-page-wrapper .process-section {
    background: var(--white);
}

.about-page-wrapper .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-page-wrapper .process-card {
    background: var(--gradient-secondary);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.about-page-wrapper .process-card:hover {
    transform: translateY(-5px);
    background: var(--gradient-primary);
}

.about-page-wrapper .process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(15, 2, 6, 0.3);
}

.about-page-wrapper .process-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.about-page-wrapper .keywords-section {
    background: var(--light-gray);
}

.about-page-wrapper .keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.about-page-wrapper .keywords-cloud span {
    background: var(--gradient-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-page-wrapper .keywords-cloud span:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.about-page-wrapper .keywords-footer {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-page-wrapper .keywords-footer img {
    vertical-align: middle;
    margin-right: 8px;
    width: 28px;
    height: 28px;
    object-fit: contain;

}

@media (max-width: 992px) {
    .about-page-wrapper .overview-content {
        grid-template-columns: 1fr;
    }

    .about-page-wrapper .cta-content {
        grid-template-columns: 1fr;
    }

    .about-page-wrapper .hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-page-wrapper .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-page-wrapper .cta-list {
        grid-template-columns: 1fr;
    }

    .about-page-wrapper .hero-content h1 {
        font-size: 2rem;
    }

    .about-page-wrapper .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-page-wrapper .process-number {
        right: -7px;
    }

    .about-page-wrapper section {
        padding: 60px 0;
    }

    .about-page-wrapper .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-page-wrapper .hero-content p {
        font-size: 1rem;
    }

    .about-page-wrapper .section-header h2 {
        font-size: 1.8rem;
    }

    .about-page-wrapper .cta-content {
        padding: 30px;
    }
}

/* Faq */
.faq-container {
    min-height: 100vh;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faq-hero {
    background: var(--gradient-secondary);
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}


.faq-subtitle {
    font-size: 1.3rem;
    color: #cbcbcb;
    margin-bottom: 40px;
    font-weight: 400;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1.1rem;
    background: #ffffff;
    color: #334155;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-secondary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    background: #ffffff;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: white;
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 80px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f1f5f9;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: #e2e8f0;
}

.faq-item[data-category="general"] {
    border-left: 4px solid #667eea;
}

.faq-item[data-category="pricing"] {
    border-left: 4px solid #f093fb;
}

.faq-item[data-category="support"] {
    border-left: 4px solid #4ade80;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover .faq-question::before {
    left: 100%;
}

.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.faq-icon::after {
    transform: rotate(90deg);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(45deg, #4ade80, #22c55e);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 30px;
}

.answer-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    padding-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.faq-item.active .answer-text {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 25px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background:var(--gradient-primary);
}
