/* ========================================
   LUPUZO - IBM-INSPIRED THEME
   Enterprise Corporate IT Website
   ======================================== */

/* CSS Variables */
:root {
    /* IBM-inspired Color Palette */
    --primary-dark: #0f1a2e;
    --primary-blue: #1a2b4a;
    --accent-blue: #0f62fe;
    --accent-cyan: #33b1ff;
    --accent-purple: #9b7bff;
    --accent-light: #a7c6ff;
    --white: #ffffff;
    --gray-100: #f4f4f4;
    --gray-200: #e0e0e0;
    --gray-300: #c6c6c6;
    --gray-400: #a8a8a8;
    --gray-500: #8d8d8d;
    --gray-600: #6f6f6f;
    --gray-700: #525252;
    --gray-800: #393939;
    --gray-900: #262626;
    --gray-950: #161616;

    /* Typography */
    --font-family:
        "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --section-padding: 80px;
    --container-max-width: 1320px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md:
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg:
        0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(15, 98, 254, 0.3);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.ls-wide {
    letter-spacing: 0.05em;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   IBM-STYLE SEARCH BAR
   ======================================== */
.ibm-search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.ibm-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #0f62fe;
    transition: all 0.2s ease;
}

.ibm-search-wrapper:focus-within {
    border-color: #0353e9;
    box-shadow: 0 0 0 2px rgba(15, 98, 254, 0.2);
}

.ibm-search-icon {
    position: absolute;
    left: 12px;
    color: #525252;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.ibm-search-wrapper:focus-within .ibm-search-icon {
    color: #0f62fe;
}

.ibm-search-input {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-family);
    color: #161616;
    outline: none;
}

.ibm-search-input::placeholder {
    color: #6f6f6f;
    font-weight: 400;
}

.ibm-search-clear {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    padding: 4px;
    color: #525252;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

.ibm-search-clear.visible {
    opacity: 1;
    visibility: visible;
}

.ibm-search-clear:hover {
    color: #0f62fe;
}

.ibm-search-clear:focus {
    outline: none;
    color: #0f62fe;
}

/* Search bar in navbar adjustments */
.navbar .ibm-search-container {
    max-width: 280px;
}

.navbar .ibm-search-wrapper {
    border-width: 1px;
}

.navbar .ibm-search-input {
    padding: 8px 36px 8px 36px;
    font-size: 0.9rem;
}

.navbar .ibm-search-icon {
    font-size: 1rem;
    left: 10px;
}

.navbar .ibm-search-clear {
    right: 8px;
    font-size: 1rem;
}

/* Mobile Search Bar */
.mobile-search-bar {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 16px;
    z-index: 1040;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-search-bar .ibm-search-container {
    max-width: 100%;
}

.mobile-search-bar .ibm-search-wrapper {
    border-width: 2px;
}

.mobile-search-bar .ibm-search-input {
    padding: 14px 44px 14px 44px;
    font-size: 1rem;
}

.mobile-search-bar .ibm-search-icon {
    font-size: 1.2rem;
    left: 12px;
}

.mobile-search-bar .ibm-search-clear {
    right: 12px;
    font-size: 1.2rem;
}

/* Header Search Takeover Mode */
.navbar.search-active .navbar-menu-btn,
.navbar.search-active .skills-brand,
.navbar.search-active .skills-header-icons {
    display: none !important;
}

.navbar.search-active .mobile-search-container {
    display: flex !important;
    width: 100%;
    padding: 0 8px;
}

.navbar.search-active .mobile-search-container .ibm-search-container {
    max-width: 100%;
    width: 100%;
}

.navbar.search-active .mobile-search-container .ibm-search-wrapper {
    border-width: 2px;
}

.navbar.search-active .mobile-search-container .ibm-search-input {
    padding: 10px 40px 10px 40px;
    font-size: 1rem;
}

/* Mobile search container (hidden by default) */
.mobile-search-container {
    display: none;
}

/* Close button for search */
.search-close-btn {
    background: transparent;
    border: none;
    padding: 8px;
    color: #161616;
    font-size: 1.25rem;
    cursor: pointer;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-btn:hover {
    color: #0f62fe;
}

/* ========================================
   LOADING ANIMATION - Fast Spinner
   ======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.page-loader.ng-hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: #0f62fe;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    padding: 0;
}

.skills-navbar {
    min-height: 56px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: none;
    transition:
        background var(--transition-medium),
        border-color var(--transition-medium);
}

.skills-navbar.navbar-scrolled {
    background: #ffffff;
    border-top-color: #e0e0e0;
    border-bottom-color: #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.skills-navbar .navbar-menu-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    color: #161616;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.skills-navbar .navbar-menu-btn:hover {
    color: #0f62fe;
}

.skills-navbar .navbar-menu-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(51, 177, 255, 0.14);
}

.skills-navbar .container-fluid {
    padding-left: 0.75rem !important;
    padding-right: 0 !important;
}

/* ================================================
   TOP HEADER BAR — fully responsive
   ================================================ */
.top-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1032;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 22, 38, 0.08);
    transition: top 0.25s ease;
}

/* Inner layout: side-by-side on desktop, stacked on small screens */
.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
    min-height: 40px;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

/* Left: email + phone */
.top-header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.top-header-contact span {
    color: #454f6b;
    font-size: 0.82rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.top-header-contact span i {
    font-size: 0.78rem;
    color: #0f62fe;
}

.top-header-divider {
    color: #d0d5e0;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Right: quick links */
.top-header-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
}

.top-header-link {
    color: #454f6b;
    text-decoration: none;
    font-size: 0.82rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.top-header-link:hover {
    color: #0f62fe;
    background: rgba(15, 98, 254, 0.06);
}

.top-header-hidden {
    top: -44px; /* slightly more than min-height to fully hide */
}

.top-header-bar.top-header-hidden + .skills-navbar,
.skills-navbar.navbar-scrolled {
    top: 0;
}

.skills-navbar.navbar-scrolled {
    background: #ffffff;
    border-top-color: #e0e0e0;
    border-bottom-color: #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ---- Responsive: small phones (< 480px) ---- */
/* Hide phone number, keep email + links on one line */
@media (max-width: 479px) {
    .top-header-inner {
        padding: 0 0.75rem;
        min-height: 38px;
    }

    /* Hide the divider + phone number span on very small screens */
    .top-header-contact .top-header-divider,
    .top-header-contact span:last-child {
        display: none;
    }

    .top-header-contact span {
        font-size: 0.75rem;
    }

    .top-header-link {
        font-size: 0.75rem;
        padding: 0.15rem 0.35rem;
    }

    /* Hide API + Review links on very small phones */
    .top-header-links a:nth-child(3),
    .top-header-links a:nth-child(4) {
        display: none;
    }
}

body.has-top-header .skills-navbar {
    top: 40px;
}

/* Do NOT hide the top header bar — it must always be visible */
/* body.has-top-header .top-header-bar { display: none !important; } */

.skills-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #161616;
}

.skills-header-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skills-icon-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    color: #161616;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.skills-icon-btn:hover {
    color: #0f62fe;
}

.skills-icon-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(51, 177, 255, 0.14);
}

/* Hide utility icons on desktop, show on mobile */
.skills-header-icons {
    display: flex;
}

@media (min-width: 992px) {
    .skills-header-icons {
        display: none;
    }

    .skills-brand {
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .top-header-bar {
        display: flex;
    }

    .skills-navbar {
        top: 40px; /* stay below the 40px top-header-bar on mobile too */
    }

    .skills-brand {
        margin: 0 auto;
    }

    .skills-header-icons {
        display: flex;
    }

    .skills-navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.skills-brand-main {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.skills-brand-sub {
    font-size: 0.95rem;
    font-weight: 600;
    color: #525252;
}

.skills-nav-list .nav-link {
    color: #393939;
    font-size: 0.88rem;
    font-weight: 400;
    padding: 0.65rem 0.9rem;
    border-bottom: 2px solid transparent;
}

.skills-nav-list .nav-link.active,
.skills-nav-list .nav-link:hover {
    color: #161616;
    border-bottom-color: #0f62fe;
}

.skills-nav-list .dropdown-toggle[aria-expanded="true"] {
    color: #161616;
    border-bottom-color: #0f62fe;
}

.skills-nav-list .skills-mega-item > .nav-link.active {
    border: 1px solid #8ab6f9;
    border-bottom: 2px solid #0f62fe;
}

.skills-nav-list .skills-mega-item > .dropdown-toggle[aria-expanded="true"] {
    border: 1px solid #8ab6f9;
    border-bottom: 2px solid #0f62fe;
}

.skills-nav-list .dropdown-toggle::after {
    margin-left: 0.4rem;
    font-size: 0.75rem;
}

.skills-mega-item {
    position: static;
}

.skills-mega-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #f4f4f4;
    border: 0;
    border-top: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1.1rem 0.75rem 1.2rem;
    margin-top: 0;
    z-index: 1050;
    max-width: none;
    transform: none !important;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
}

.skills-mega-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 1rem 1.75rem;
    width: min(1200px, calc(100vw - 32px));
    margin: 0 auto;
    align-items: start;
}

.skills-mega-col {
    min-width: 0;
}

.skills-mega-col h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #161616;
}

.skills-mega-col h6 i {
    font-size: 0.75rem;
    margin-left: 0.2rem;
}

.skills-mega-col a {
    display: block;
    color: #525252;
    font-size: 0.9rem;
    line-height: 1.45;
    text-decoration: none;
    margin-bottom: 0.45rem;
    padding: 0.1rem 0.35rem;
    margin-left: -0.35rem;
}

.skills-mega-col a:hover {
    color: #0f62fe;
    background: rgba(15, 98, 254, 0.08);
}

/* Category header links in mega menu */
.category-header-link {
    display: block;
    text-decoration: none;
    margin-bottom: 0.7rem;
    margin-left: -0.35rem;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.category-header-link:hover {
    background: rgba(15, 98, 254, 0.08);
}

.category-header-link h6 {
    margin-bottom: 0 !important;
}

.category-header-link:hover h6 {
    color: #0f62fe;
}

/* Mobile sidebar category title links */
.category-title-link {
    display: block;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.category-title-link .category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    transition: var(--transition-fast);
}

.category-title-link:hover .category-title {
    color: #0f62fe;
}

.category-title-link .category-title i {
    font-size: 0.875rem;
}

.skills-auth {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-left: auto;
}

.skills-login {
    color: #161616;
    text-decoration: none;
    font-size: 0.88rem;
}

.skills-signup {
    background: #0f62fe;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0 1.1rem;
    min-height: 55px;
    display: inline-flex;
    align-items: center;
}

.skills-signup:hover {
    color: #fff;
    background: #0353e9;
}

main {
    padding-top: 96px; /* 40px top-header-bar + 56px navbar */
}

.btn-primary {
    background: var(--accent-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--transition-fast);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1rem 0;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    font-size: 0.9rem;
}

.cookie-consent-text i {
    font-size: 1.25rem;
    color: #0f62fe;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-link {
    color: #0f62fe;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        flex-direction: column;
    }
}

/* Accessibility Page Styles */
.accessibility-card {
    transition: all 0.3s ease;
}

.accessibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.accessibility-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.visual-icon {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.hearing-icon {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #388e3c;
}

.motor-icon {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
}

.cognitive-icon {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    color: #0097a7;
}

.accessibility-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.accessibility-list li i {
    font-size: 1.1rem;
}

.wcag-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #0f62fe;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wcag-badge:hover {
    background: #0353e9;
    transform: translateY(-2px);
}

/* Assistive Technology Cards */
.assistive-tech-card {
    transition: all 0.3s ease;
}

.assistive-tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 98, 254, 0.15) !important;
    border-color: #0f62fe !important;
}

.assistive-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f0fe 100%);
    color: #0f62fe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.assistive-tech-card:hover .assistive-icon {
    background: linear-gradient(135deg, #0f62fe 0%, #0353e9 100%);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .skills-mega-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 1rem;
    }
}

/* ========================================
   MOBILE SIDEBAR OFFCANVAS
   ======================================== */
.skills-sidebar {
    background: #ffffff;
    border: none;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
}

.skills-sidebar .offcanvas-header {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #e0e0e0;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.skills-sidebar .offcanvas-body {
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* Level 1: Main Menu */
.skills-sidebar-nav {
    width: 100%;
    padding: 0;
    transition: transform 0.3s ease;
}

/* Level 2 & 3: Overlay Levels */
.skills-sidebar-level {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10;
    overflow-y: auto;
}

.skills-sidebar-level.active {
    transform: translateX(0);
}

.skills-sidebar .btn-close-custom {
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.skills-sidebar .btn-close-custom i {
    font-size: 1.5rem;
    line-height: 1;
    color: #161616 !important;
    font-weight: 700;
}

.skills-sidebar .btn-close-custom:hover {
    background: rgba(15, 98, 254, 0.1);
}

.skills-sidebar .btn-close-custom:hover i {
    color: #0f62fe !important;
}

.skills-sidebar .offcanvas-body {
    padding: 0;
    overflow-y: auto;
}

.skills-sidebar-nav {
    width: 100%;
    padding: 0;
}

.skills-sidebar-item {
    border-bottom: 1px solid #e0e0e0;
}

.skills-sidebar-nav > .nav-item:last-child {
    border-bottom: none;
}

.skills-sidebar-nav .nav-link {
    color: #161616;
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
    background: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.skills-sidebar-nav .nav-link:hover {
    background: #f4f4f4;
    color: #161616;
}

.skills-sidebar-nav .dropdown-toggle {
    position: relative;
}

.skills-sidebar-nav .dropdown-toggle::after {
    display: none;
}

.skills-sidebar-nav .dropdown-toggle .arrow-icon {
    font-size: 1rem;
    color: #525252;
}

.skills-sidebar-nav .dropdown-toggle[aria-expanded="true"] .arrow-icon {
    transform: rotate(90deg);
    color: #0f62fe;
}

.skills-sidebar-dropdown {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 1060;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.skills-sidebar-dropdown.show {
    transform: translateX(0);
}

.skills-sidebar-dropdown-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f4f4f4;
}

.skills-sidebar-back-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    color: #161616;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.skills-sidebar-back-btn:hover {
    color: #0f62fe;
}

.skills-sidebar-back-title {
    font-size: 1rem;
    font-weight: 600;
    color: #161616;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.skills-sidebar-content {
    padding: 1rem 1.5rem;
}

.category-title {
    font-size: 1rem;
    font-weight: 700;
    color: #161616;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #161616;
    font-size: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 400;
}

.category-link:last-child {
    border-bottom: none;
}

.category-link:hover {
    color: #0f62fe;
    background: transparent;
}

.category-link .arrow-icon {
    font-size: 1rem;
    color: #525252;
}

.skills-sidebar-content h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #161616;
    margin: 1.5rem 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.skills-sidebar-content h6:first-child {
    margin-top: 0.75rem;
}

.skills-sidebar-content a:not(.category-link) {
    display: block;
    color: #525252;
    font-size: 1rem;
    padding: 0.5rem 0;
    text-decoration: none;
    border-bottom: none;
    font-weight: 400;
}

.skills-sidebar-content a:not(.category-link):hover {
    color: #0f62fe;
    background: transparent;
}

.skills-sidebar-auth {
    padding: 1.25rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.skills-sidebar-auth .skills-login {
    color: #161616;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

.skills-sidebar-auth .skills-login:hover {
    background: #f4f4f4;
    color: #161616;
}

.skills-sidebar-auth .skills-signup {
    background: #0f62fe;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    text-align: center;
    min-height: auto;
}

.skills-sidebar-auth .skills-signup:hover {
    background: #0353e9;
    color: #fff;
}

/* ========================================
   FULL SCREEN LANGUAGE SELECTOR MODAL
   ======================================== */
.language-modal .modal-content {
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    height: 100vh;
}

.language-modal .modal-header {
    background: #161616;
    color: #ffffff;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.language-modal .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.language-modal .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.language-modal .modal-body {
    padding: 2rem 1rem;
    overflow-y: auto;
    background: #f8f9fa;
}

/* Country Cards */
.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-card:hover {
    border-color: #0f62fe;
    box-shadow: 0 8px 24px rgba(15, 98, 254, 0.15);
    transform: translateY(-4px);
}

.country-card.active {
    border-color: #0f62fe;
    background: rgba(15, 98, 254, 0.05);
}

.flag-img {
    width: 48px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
}

.country-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #161616;
    margin-bottom: 0.25rem;
}

.country-lang {
    font-size: 0.75rem;
    color: #525252;
}

/* Responsive */
@media (max-width: 768px) {
    .country-card {
        padding: 1rem 0.5rem;
    }

    .flag-img {
        width: 40px;
        height: 30px;
    }

    .country-name {
        font-size: 0.8rem;
    }

    .country-lang {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .language-modal .modal-body {
        padding: 1rem 0.5rem;
    }

    .country-card {
        padding: 0.875rem 0.5rem;
        border-radius: 8px;
    }

    .flag-img {
        width: 36px;
        height: 27px;
    }

    .country-name {
        font-size: 0.75rem;
    }

    .country-lang {
        font-size: 0.65rem;
    }
}

/* ========================================
   ACCOUNT SIDEBAR
   ======================================== */
.account-sidebar {
    background: #ffffff;
    border: none;
    width: 400px !important;
    max-width: 100vw !important;
}

.account-sidebar .offcanvas-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e0e0e0;
    background: #161616;
    color: #ffffff;
}

.account-sidebar .offcanvas-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.account-sidebar .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.account-sidebar .offcanvas-body {
    padding: 1.25rem;
    overflow-y: auto;
}

/* Portal List */
.portal-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portal-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: #161616;
    transition: all 0.25s ease;
}

.portal-item:hover {
    background: #ffffff;
    border-color: #0f62fe;
    box-shadow: 0 4px 12px rgba(15, 98, 254, 0.15);
    transform: translateX(4px);
}

.portal-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
}

.portal-icon.client {
    background: linear-gradient(135deg, #0f62fe 0%, #0353e9 100%);
}

.portal-icon.employee {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

.portal-icon.investor {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
}

.portal-icon.support {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.portal-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portal-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #161616;
}

.portal-desc {
    font-size: 0.75rem;
    color: #525252;
}

.portal-item .bi-chevron-right {
    color: #525252;
    font-size: 0.875rem;
}

.portal-item:hover .bi-chevron-right {
    color: #0f62fe;
}

/* Quick Actions */
.quick-actions h6,
.quick-links h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #161616;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-actions .btn {
    font-size: 0.9rem;
    padding: 0.625rem 1rem;
    text-align: left;
    display: flex;
    align-items: center;
}

/* Quick Links Grid */
.quick-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.quick-link-sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #161616;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.quick-link-sm:hover {
    background: #0f62fe;
    color: #ffffff;
    border-color: #0f62fe;
}

.quick-link-sm i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.quick-link-sm span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 576px) {
    .account-sidebar {
        width: 100% !important;
    }

    .portal-item {
        padding: 0.75rem;
    }

    .portal-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .portal-name {
        font-size: 0.9rem;
    }

    .portal-desc {
        font-size: 0.7rem;
    }

    .quick-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.tracking-widest {
    letter-spacing: 0.3em;
}

.hero-section {
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-fullscreen {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
}

.contact-hero {
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.1),
        rgba(51, 177, 255, 0.05)
    );
}

.hero-visual {
    display: grid;
    gap: 1.25rem;
    padding: 1rem;
}

.hero-visual-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 98, 254, 0.12);
    box-shadow: 0 18px 55px rgba(15, 98, 254, 0.08);
}

.hero-visual-card h4 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
}

.hero-visual-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon-badge {
    width: 52px;
    height: 52px;
    background: rgba(15, 98, 254, 0.14);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .hero-visual {
        gap: 1rem;
    }
}

.hero-fullscreen .hero-content {
    padding: 0;
}

.hero-title {
    font-size: clamp(2.75rem, 4vw, 4.5rem);
    line-height: 1.05;
    font-weight: var(--font-weight-bold);
    margin-top: 1.2rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 680px;
    margin-top: 1.25rem;
}

.hero-compact .hero-content {
    padding-top: 40px;
}

.hero-premium {
    padding: 20px 0 40px 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.07;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(15, 98, 254, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(51, 177, 255, 0.1) 0%,
            transparent 40%
        );
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        background:
            radial-gradient(
                circle at 20% 50%,
                rgba(15, 98, 254, 0.15) 0%,
                transparent 50%
            ),
            radial-gradient(
                circle at 80% 20%,
                rgba(51, 177, 255, 0.1) 0%,
                transparent 40%
            );
    }
    100% {
        background:
            radial-gradient(
                circle at 30% 60%,
                rgba(15, 98, 254, 0.2) 0%,
                transparent 50%
            ),
            radial-gradient(
                circle at 70% 30%,
                rgba(51, 177, 255, 0.15) 0%,
                transparent 40%
            );
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 24s linear infinite;
    opacity: 0.95;
    z-index: 1;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }
    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 98, 254, 0.08);
    border: 1px solid rgba(15, 98, 254, 0.2);
    border-left: 3px solid #0f62fe;
    padding: 0.6rem 1.25rem;
    color: #0f62fe;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    font-size: 0.9rem;
    color: #0f62fe;
    opacity: 0.8;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f62fe;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.25rem;
    padding: 0.4rem 0.8rem;
    background: rgba(15, 98, 254, 0.05);
    border-radius: 2px;
}

.section-label::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #0f62fe;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #161616;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}

.hero-title strong {
    font-weight: 600;
    color: #0f62fe;
}

.hero-title-typed .typed-text {
    display: inline-block;
    min-width: 10ch;
    white-space: nowrap;
}

.typed-caret {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    margin-left: 4px;
    transform: translateY(2px);
    border-right: 2px solid var(--gray-800);
    animation: caretBlink 0.9s steps(1, end) infinite;
}

@keyframes caretBlink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #525252;
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    border-radius: 0;
    padding: 0.875rem 1.5rem;
    background: #0f62fe;
    border-color: #0f62fe;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-btn-primary:hover {
    background: #0353e9;
    border-color: #0353e9;
}

.hero-btn-secondary {
    border-radius: 0;
    border: 1px solid #161616;
    background: transparent;
    color: #161616;
    padding: 0.875rem 1.5rem;
    font-weight: 400;
}

.hero-btn-secondary:hover {
    background: #161616;
    border-color: #161616;
    color: #ffffff;
}

.hero-trust {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    color: var(--gray-600);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.hero-trust-item i {
    color: var(--accent-blue);
}

/* Hero Image Styles */
.hero-image-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #000;
}

.hero-image-container::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(15, 98, 254, 0.2),
        transparent
    );
    animation: scanLine 4s linear infinite;
    z-index: 4;
    pointer-events: none;
}

@keyframes scanLine {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px rgba(15, 98, 254, 0.2);
}

.hero-visual {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    mix-blend-mode: luminosity;
    transition: all 0.6s ease;
}

.hero-image-container:hover .hero-visual {
    filter: brightness(1) contrast(1);
    mix-blend-mode: normal;
}

.hero-image-container.ibm-style .ibm-overlay {
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.4) 0%,
        transparent 60%
    );
    mix-blend-mode: overlay;
}

.hero-image-container.ibm-style .ibm-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.4;
}

.hero-image-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(15, 98, 254, 0.3);
    z-index: 5;
    pointer-events: none;
}

/* Products Grid Section */
.products-section {
    background: #ffffff;
    padding: 60px 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
    padding: 1.25rem;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.product-card:hover {
    border-color: #0f62fe;
    background: #ffffff;
}

.product-title {
    font-size: 1rem;
    font-weight: 400;
    color: #161616;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.875rem;
    color: #525252;
    line-height: 1.4;
    margin-bottom: 0;
}

.product-icon {
    font-size: 2rem;
    color: #0f62fe;
    line-height: 1;
}

.product-arrow {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    font-size: 1.25rem;
    color: #0f62fe;
    transition: transform 0.2s ease;
}

.product-card:hover .product-arrow {
    transform: translateX(4px);
}

/* Technology Stack Section */
.tech-stack-section {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.tech-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.tech-slider {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.tech-slider:hover {
    animation-play-state: paused;
}

.tech-logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.tech-logo-img:hover {
    transform: scale(1.15);
}

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

/* Stats Section */
.stats-section {
    background: #ffffff;
    padding: 60px 0;
}

.stat-item {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #161616;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Ensure stats grid displays properly */
.stats-section .row {
    display: flex;
    flex-wrap: wrap;
}

.stats-section .col-lg-3,
.stats-section .col-md-6 {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   DESIGN DEMONSTRATIONS
   ======================================== */

.testimonial-brand-slider .carousel-brand-logo {
    max-height: 48px;
    opacity: 0.85;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.testimonial-brand-slider .carousel-brand-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

.testimonial-brand-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-brand-scroll {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.testimonial-brand-scroll > div {
    scroll-snap-align: start;
}

.testimonial-brand-slider .brand-logo-button {
    border: none;
    background: transparent;
    padding: 0.75rem;
    border-radius: 0.85rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    min-width: 96px;
    min-height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-brand-slider .brand-logo-button.active,
.testimonial-brand-slider .brand-logo-button:hover {
    background: rgba(15, 98, 254, 0.08);
    box-shadow: 0 10px 22px rgba(15, 98, 254, 0.12);
    transform: translateY(-2px);
}

.testimonial-brand-slider .carousel-control {
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(15, 22, 38, 0.08);
    color: #0f62fe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.testimonial-brand-slider .carousel-control:hover {
    background: rgba(15, 98, 254, 0.12);
    transform: translateY(-1px);
}

.testimonial-brand-slider .carousel-control i {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .testimonial-brand-slider {
        grid-template-columns: 1fr;
    }

    .testimonial-brand-slider .carousel-control {
        width: 2.7rem;
        height: 2.7rem;
    }
}

.review-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.testimonial-brand-slider .carousel-control-prev,
.testimonial-brand-slider .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-brand-slider .carousel-control-prev-icon,
.testimonial-brand-slider .carousel-control-next-icon {
    background-color: rgba(15, 22, 38, 0.7);
    border-radius: 50%;
    padding: 0.4rem;
}

.testimonial-brand-slider .carousel-item {
    min-height: 120px;
}

.demo-card {
    transition: var(--transition-medium);
    border: 1px solid var(--gray-200);
}

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

.demo-image {
    height: 200px;
    overflow: hidden;
}

.demo-image img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.demo-content {
    background: var(--white);
}

.demo-content h6 {
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

.demo-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background: #0f1626;
}

.certifications-section .section-title,
.certifications-section .section-subtitle,
.certifications-section .section-label-light {
    color: #ffffff;
}

.certifications-section .section-label {
    color: #ffffff;
    gap: 1.2rem;
}

.certifications-section .section-label::before {
    background: #0f62fe;
}

.cert-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 1.25rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
}

.cert-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 5px;
    background: #ffffff;
    margin-bottom: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.cert-badge-icon img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
}

.cert-badge-label {
    display: none;
}

.cert-badge-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
    max-width: 120px;
}

.certifications-section .row {
    gap: 1rem;
}

@media (max-width: 767px) {
    .cert-badge {
        min-height: 120px;
        padding: 1rem;
    }
}

/* Blog Slider Section */
.blog-slider-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.blog-slider-section h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #161616;
}

.blog-carousel {
    position: relative;
}

.blog-slider-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    height: 100%;
}

.blog-slider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-slider-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-slider-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0f62fe;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-slider-content {
    padding: 20px;
}

.blog-slider-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #161616;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-slider-excerpt {
    font-size: 0.9rem;
    color: #525252;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-slider-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #6f6f6f;
    margin-bottom: 15px;
}

.blog-slider-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-slider-link {
    color: #0f62fe;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.blog-slider-link:hover {
    color: #0353e9;
    text-decoration: underline;
}

.blog-control {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.blog-carousel:hover .blog-control {
    opacity: 1;
}

.blog-control:hover {
    background: #ffffff;
}

.blog-control .carousel-control-prev-icon,
.blog-control .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(1) grayscale(100);
}

@media (max-width: 767px) {
    .blog-slider-section {
        padding: 40px 0;
    }

    .blog-slider-section h2 {
        font-size: 1.5rem;
    }

    .blog-control {
        display: none;
    }
}

/* Global Services Section */
.services-section-dark {
    background: linear-gradient(135deg, #161616 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.section-label-light {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f62fe;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.services-section-dark .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.service-card-light {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
}

.service-icon-light {
    font-size: 2rem;
    color: #0f62fe;
    margin-bottom: 0.75rem;
}

.service-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #161616;
    margin: 0;
}

@media (min-width: 577px) and (max-width: 1199px) {
    .services-section-dark .col-6,
    .services-section-dark .col-md-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 8px;
        padding-right: 8px;
    }

    .services-section-dark > .container > .row {
        flex-direction: column;
        text-align: center;
    }

    .services-section-dark .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-section-dark .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-description {
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    .service-card-light {
        min-height: 120px;
        padding: 1.25rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .services-section-dark {
        padding: 40px 0;
    }

    .services-section-dark > .container > .row {
        flex-direction: column;
    }

    .services-section-dark .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .services-section-dark .row.g-3 {
        margin-left: -6px;
        margin-right: -6px;
    }

    .section-label-light {
        font-size: 0.75rem;
    }

    .services-title {
        font-size: 1.5rem;
    }

    .service-card-light {
        min-height: 100px;
        padding: 0.75rem 0.5rem;
    }

    .service-icon-light {
        font-size: 1.25rem;
    }

    .service-name {
        font-size: 0.75rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    background: #ffffff;
    padding: 60px 0;
}

.portfolio-section h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #161616;
}

.project-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #161616;
    font-size: 1.25rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.project-link:hover {
    transform: scale(1.1);
    color: #0f62fe;
}

.project-content {
    padding: 20px;
}

.project-category {
    display: inline-block;
    font-size: 0.75rem;
    color: #0f62fe;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 500;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #161616;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 0.9rem;
    color: #525252;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .portfolio-section {
        padding: 40px 0;
    }

    .portfolio-section h2 {
        font-size: 1.5rem;
    }
}

/* Clients Section */
.clients-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.client-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.client-slider {
    display: flex;
    gap: 4rem;
    animation: clientScroll 35s linear infinite;
    width: max-content;
}

.client-slider:hover {
    animation-play-state: paused;
}

.client-logo-img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.client-logo-img:hover {
    transform: scale(1.1);
    opacity: 1;
}

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

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 80px 0;
}

.testimonials-section h2 {
    font-weight: 300;
    color: #161616;
}

/* IBM-style Testimonial Cards - 3 per slide on desktop, 2 on tablet, 1 on mobile */
.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-carousel .carousel-inner {
    background: #ffffff;
}

.testimonial-carousel .carousel-item {
    padding: 0;
}

@media (max-width: 991px) {
    .testimonial-carousel {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .testimonial-carousel .carousel-item .row {
        justify-content: center;
    }
    .testimonial-card-ibm {
        padding: 1.5rem;
    }
    .testimonial-text-ibm {
        font-size: 0.95rem;
    }
}

.testimonial-card-ibm {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card-ibm:hover {
    border-color: #0f62fe;
    box-shadow: 0 4px 12px rgba(15, 98, 254, 0.1);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: #0f62fe;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-text-ibm {
    font-size: 1rem;
    color: #393939;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-ibm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-avatar-ibm {
    width: 48px;
    height: 48px;
    background: #e0e0e0;
    color: #525252;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-info-ibm {
    text-align: left;
}

.testimonial-name-ibm {
    font-weight: 600;
    color: #161616;
    font-size: 0.9rem;
}

.testimonial-role-ibm {
    font-size: 0.8rem;
    color: #525252;
}

/* Testimonial Carousel Controls */
.testimonial-control {
    width: 44px;
    height: 44px;
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.testimonial-control:hover {
    background: #0f62fe;
    border-color: #0f62fe;
}

.testimonial-control .carousel-control-prev-icon,
.testimonial-control .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.testimonial-control.carousel-control-prev {
    left: -60px;
}

.testimonial-control.carousel-control-next {
    right: -60px;
}

.testimonial-logo-strip {
    padding: 1.5rem 0 0.5rem;
    border-top: 1px solid rgba(15, 98, 254, 0.08);
    border-bottom: 1px solid rgba(15, 98, 254, 0.08);
}

.testimonial-logo-strip .testimonial-logo {
    max-height: 40px;
    opacity: 0.65;
    filter: grayscale(100%);
    transition:
        opacity 0.3s ease,
        filter 0.3s ease,
        transform 0.3s ease;
}

.testimonial-logo-strip .testimonial-logo:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-2px);
}

.testimonial-featured {
    padding: 2rem;
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e6e6e6;
}

.testimonial-featured-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.testimonial-featured-text {
    font-size: 1rem;
    color: #525252;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.testimonial-featured-author {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 1rem;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #e9ecef;
}

.testimonial-name {
    font-weight: 700;
    color: #161616;
}

.testimonial-role {
    font-size: 0.95rem;
    color: #525252;
}

.testimonial-project-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid #e6e6e6;
}

.testimonial-project-logo {
    max-width: 160px;
}

.testimonial-project-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f62fe;
    margin-bottom: 1rem;
}

.testimonial-project-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #161616;
}

.testimonial-project-country {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #525252;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial-project-link {
    color: #0f62fe;
    font-weight: 700;
    text-decoration: none;
}

.testimonial-project-link:hover {
    text-decoration: underline;
}

/* Testimonial Indicators - Very Small */
.testimonial-indicators {
    bottom: -40px;
}

.testimonial-indicators button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #c6c6c6;
    background: transparent;
    margin: 0 4px;
    padding: 0;
}

.testimonial-indicators button.active {
    background: #0f62fe;
    border-color: #0f62fe;
}

@media (max-width: 991px) {
    .testimonial-control.carousel-control-prev,
    .testimonial-control.carousel-control-next {
        display: none;
    }
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    padding: 40px 0 80px 0;
}

.cta-box h2 {
    font-weight: 300;
    color: #161616;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    display: block;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

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

.hero-abstract {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.3) 0%,
        rgba(51, 177, 255, 0.2) 100%
    );
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-abstract::before,
.hero-abstract::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-abstract::before {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation: rotate 20s linear infinite;
}

.hero-abstract::after {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-style: dashed;
    animation: rotate 30s linear infinite reverse;
}

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

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

/* Apply page right-side hero visual */
.hero-apply-visual {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding-top: 1rem;
}

.hero-apply-illustration {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(15, 98, 254, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(51, 177, 255, 0.12),
            transparent 40%
        ),
        rgba(15, 98, 254, 0.06);
    box-shadow: 0 28px 80px rgba(15, 98, 254, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-apply-illustration::after {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border: 1px solid rgba(15, 98, 254, 0.12);
}

.hero-apply-icon {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(15, 98, 254, 0.12);
    z-index: 2;
}

.hero-apply-icon i {
    font-size: 4rem;
    color: var(--accent-blue);
}

.hero-apply-highlights {
    width: 100%;
    max-width: 360px;
    display: grid;
    gap: 1rem;
}

.hero-apply-box {
    background: #ffffff;
    border: 1px solid rgba(15, 98, 254, 0.12);
    border-radius: 24px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
}

.hero-apply-box h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.hero-apply-box p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .hero-apply-illustration {
        width: 260px;
        height: 260px;
    }
}

/* Premium Hero Visual (Dashboard + Floating Cards) */
.hero-visual-premium {
    z-index: 3;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.hero-dashboard {
    width: min(560px, 100%);
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.06)
    );
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.hero-dashboard::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(
            600px 240px at 15% 10%,
            rgba(51, 177, 255, 0.25),
            transparent 60%
        ),
        radial-gradient(
            600px 260px at 90% 30%,
            rgba(155, 123, 255, 0.18),
            transparent 60%
        );
    pointer-events: none;
}

.hero-dashboard-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-dashboard-dots {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.hero-dashboard-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.hero-dashboard-title {
    justify-self: center;
    color: rgba(255, 255, 255, 0.88);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.02em;
}

.hero-dashboard-pill {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(51, 177, 255, 0.12);
    border: 1px solid rgba(51, 177, 255, 0.22);
}

.hero-dashboard-pill i {
    color: var(--accent-cyan);
}

.hero-dashboard-body {
    position: relative;
    z-index: 1;
    padding: 1.1rem 1rem 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-dashboard-metric {
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 0.9rem;
    position: relative;
    overflow: hidden;
}

.hero-dashboard-metric .label {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hero-dashboard-metric .value {
    margin-top: 0.35rem;
    font-size: 1.65rem;
    font-weight: var(--font-weight-bold);
    color: rgba(255, 255, 255, 0.92);
}

.spark {
    position: absolute;
    left: -20%;
    top: 55%;
    width: 140%;
    height: 3px;
    border-radius: 999px;
    opacity: 0.8;
    filter: blur(0.2px);
    animation: sparkMove 3.2s ease-in-out infinite;
}

.spark-a {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(51, 177, 255, 0.7),
        transparent
    );
}

.spark-b {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(155, 123, 255, 0.65),
        transparent
    );
    animation-delay: 0.6s;
}

@keyframes sparkMove {
    0%,
    100% {
        transform: translateX(-10%) translateY(0);
        opacity: 0.55;
    }
    50% {
        transform: translateX(10%) translateY(-6px);
        opacity: 0.95;
    }
}

.hero-dashboard-chart {
    grid-column: 1 / -1;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 170px;
    position: relative;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
}

.chart-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 12%,
        rgba(51, 177, 255, 0.85) 12.5%,
        rgba(155, 123, 255, 0.75) 60%,
        rgba(51, 177, 255, 0.55) 88%,
        transparent 100%
    );
    clip-path: polygon(
        0% 72%,
        12% 64%,
        28% 70%,
        42% 52%,
        55% 58%,
        70% 38%,
        86% 46%,
        100% 28%,
        100% 100%,
        0% 100%
    );
    opacity: 0.85;
    animation: chartPulse 3.6s ease-in-out infinite;
}

.chart-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(
        circle at 40% 60%,
        rgba(51, 177, 255, 0.22),
        transparent 55%
    );
    filter: blur(10px);
    animation: glowDrift 7s ease-in-out infinite alternate;
}

@keyframes chartPulse {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.78;
    }
    50% {
        transform: translateY(-6px);
        opacity: 0.95;
    }
}

@keyframes glowDrift {
    0% {
        transform: translateX(-10%) translateY(0);
    }
    100% {
        transform: translateX(10%) translateY(-6px);
    }
}

.hero-float-card {
    position: absolute;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.92);
    width: min(280px, 85%);
    animation: floatCard 6.5s ease-in-out infinite;
    z-index: 2;
}

.hero-float-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        rgba(51, 177, 255, 0.22),
        rgba(155, 123, 255, 0.18)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 6px rgba(51, 177, 255, 0.06);
}

.hero-float-card .icon i {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 12px rgba(51, 177, 255, 0.35));
}

.hero-float-card .title {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
}

.hero-float-card .meta {
    margin-top: 0.1rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero-float-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(51, 177, 255, 0.28);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.55),
        0 0 0 6px rgba(51, 177, 255, 0.06);
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

.float-1 {
    top: 12%;
    left: -4%;
    animation-delay: 0.1s;
}
.float-2 {
    top: 54%;
    left: -8%;
    animation-delay: 0.7s;
}
.float-3 {
    top: 22%;
    right: -6%;
    animation-delay: 0.35s;
}
.float-4 {
    top: 66%;
    right: -2%;
    animation-delay: 1.05s;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.75;
    z-index: 0;
    pointer-events: none;
}

.orb-a {
    width: 220px;
    height: 220px;
    left: 10%;
    bottom: 8%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(51, 177, 255, 0.45),
        transparent 65%
    );
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-b {
    width: 260px;
    height: 260px;
    right: 8%;
    top: 6%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(155, 123, 255, 0.4),
        transparent 65%
    );
    animation: orbFloat 9.5s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-16px) translateX(10px);
    }
}

/* Enterprise Info Cards (IBM Style) */
.enterprise-info-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.38, 0.9);
    position: relative;
    border-radius: 0; /* IBM style uses sharp corners */
}

.enterprise-info-card:hover {
    border-color: #0f62fe;
    box-shadow: 0 10px 30px rgba(15, 98, 254, 0.1);
    transform: translateY(-4px);
}

.enterprise-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #0f62fe;
    transition: height 0.3s ease;
}

.enterprise-info-card:hover::before {
    height: 100%;
}

.enterprise-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: #0f62fe;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.enterprise-info-card:hover .enterprise-card-icon {
    background: #0f62fe;
    color: #ffffff;
}

.enterprise-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #161616;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.enterprise-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 0;
}

/* Enterprise Team Cards (IBM Style) */
.enterprise-team-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.38, 0.9);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.enterprise-team-card:hover {
    border-color: #0f62fe;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.enterprise-team-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f4;
}

.enterprise-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.enterprise-team-card:hover .enterprise-team-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.enterprise-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 98, 254, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enterprise-team-card:hover .enterprise-team-overlay {
    opacity: 1;
}

.enterprise-team-info {
    padding: 1.5rem;
    text-align: left;
    border-top: 1px solid #e0e0e0;
}

.enterprise-team-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #161616;
    margin-bottom: 0.25rem;
}

.enterprise-team-role {
    font-size: 0.875rem;
    color: #0f62fe;
    font-weight: 500;
}

.enterprise-team-description {
    font-size: 0.8125rem;
    color: #525252;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.enterprise-team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
}

.team-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #0f62fe;
    background: rgba(15, 98, 254, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Slider for Enterprise Cards */
@media (max-width: 991px) {
    .enterprise-slider-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 1.5rem !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0 !important; /* Managed by column padding */
    }

    .enterprise-slider-row::-webkit-scrollbar {
        height: 4px;
    }

    .enterprise-slider-row::-webkit-scrollbar-track {
        background: #f4f4f4;
    }

    .enterprise-slider-row::-webkit-scrollbar-thumb {
        background: #0f62fe;
    }

    .enterprise-slider-row > div {
        flex: 0 0 85% !important; /* Show 85% of one card to hint at next one */
        scroll-snap-align: start;
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-cta {
    background: linear-gradient(135deg, #0f1a2e 0%, #1a2b4a 100%);
}

/* Force 2 columns for stats on all screen sizes */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .stat-card {
        padding: 1rem 0.5rem !important;
    }
    .stat-label {
        font-size: 0.7rem !important;
    }
    .stat-number {
        font-size: 2rem !important;
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 0.65rem !important;
    }
    .stat-number {
        font-size: 1.75rem !important;
        width: 50px !important;
        height: 50px !important;
    }
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(15, 98, 254, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(51, 177, 255, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.section-dark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.section-gray {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.section-dark .section-subtitle {
    color: var(--gray-300);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.about-feature-text p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    height: 400px;
    background: #000;
}

.about-image::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(15, 98, 254, 0.15),
        transparent
    );
    animation: scanLine 6s linear infinite;
    z-index: 4;
    pointer-events: none;
}

.about-image.ibm-style img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.8);
    mix-blend-mode: luminosity;
    transition: all 0.5s ease;
}

.about-image.ibm-style:hover img {
    filter: grayscale(0%) brightness(1);
    mix-blend-mode: normal;
    transform: scale(1.02);
}

.ibm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.3) 0%,
        transparent 100%
    );
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.ibm-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 2;
}

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

.about-stats-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-stats-card .number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-blue);
    display: block;
}

.about-stats-card .label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.section-gray .service-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.service-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(15, 98, 254, 0.15);
    transform: translateY(-8px);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--accent-blue);
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
}

.service-link i {
    transition: var(--transition-fast);
}

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

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: var(--gray-900);
    color: var(--white);
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    z-index: 1;
}

.solution-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.solution-card:hover .solution-card-bg {
    transform: scale(1.1);
}

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

.solution-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.75rem;
}

.solution-description {
    font-size: 0.95rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

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

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 98, 254, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay a {
    color: var(--white);
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition-fast);
}

.project-card:hover .project-overlay a {
    transform: scale(1);
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    font-size: 0.8rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.project-description {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ========================================
   TECHNOLOGY STACK
   ======================================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.tech-item:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.tech-item:hover .tech-icon {
    color: var(--accent-blue);
}

.tech-name {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    font-size: 0.9rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Stats grid - force 2 columns always */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-fast);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
}

.section:not(.section-dark) .why-card {
    background: #ffffff;
    border-color: rgba(15, 98, 254, 0.1);
}

.section:not(.section-dark) .why-card:hover {
    background: #ffffff;
}

.section:not(.section-dark) .why-card .why-title {
    color: var(--gray-900);
}

.section:not(.section-dark) .why-card .why-description {
    color: var(--gray-600);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.why-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-description {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.testimonial-quote {
    font-size: 1.5rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue);
    opacity: 0.3;
    display: block;
    margin-bottom: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-600);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--accent-blue);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info h3::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(15, 98, 254, 0.08);
    border: 1px solid rgba(15, 98, 254, 0.15);
    padding: 1rem;
    border-radius: 16px;
    min-height: 120px;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(15, 98, 254, 0.15);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-card h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.highlight-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.1);
}

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

.form-control::placeholder {
    color: var(--gray-400);
}

/* ========================================
   AUTHENTICATION STYLES
   ======================================== */

.auth-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 98, 254, 0.08);
    padding: 2.5rem 2rem;
    margin: 0 auto;
    border: 1px solid rgba(15, 98, 254, 0.08);
    width: 420px;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    min-height: 420px;
    overflow-y: auto;
}

.auth-page .col-lg-6:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.auth-form {
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-label {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition-medium);
}

.auth-form .form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.1);
}

.auth-form .form-check {
    margin-top: 0.5rem;
}

.auth-form .form-check-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.auth-form .btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    margin-top: 1rem;
}

.auth-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.auth-footer-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

.text-link {
    color: var(--accent-blue);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: var(--transition-fast);
}

.text-link:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ========================================
   AUTHENTICATION VISUAL STYLES
   ======================================== */

.auth-page {
    min-height: calc(100vh - 120px);
    padding: 4rem 0;
    background: linear-gradient(
        180deg,
        rgba(245, 249, 255, 1),
        rgba(255, 255, 255, 1)
    );
}

.auth-page .row {
    min-height: 100vh;
    align-items: center;
}

.auth-simple-card {
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 98, 254, 0.06);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(15, 98, 254, 0.08);
    background: #fff;
    position: relative;
}

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

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
}

.auth-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-control {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
}

.auth-form .form-check-label {
    color: var(--gray-600);
}

.auth-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.auth-footer-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

.auth-card .btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2f73ff, #4aa3ff);
    border: none;
}

.auth-card .btn-block:hover {
    background: linear-gradient(135deg, #1c59d6, #3a8cff);
}

@media (max-width: 991.98px) {
    .auth-page {
        padding: 2rem 0;
    }

    .auth-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .auth-card {
        padding: 2rem 1.5rem;
        width: auto;
        aspect-ratio: auto;
        min-height: auto;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-950);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
    color: var(--accent-blue);
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.newsletter-text {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    display: flex;
}

.newsletter-form .form-control {
    border-radius: 0;
    border: 1px solid var(--gray-700);
    background: var(--gray-900);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: var(--gray-500);
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    margin: 0;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ========================================
   CISCO-STYLE FOOTER
   ======================================== */
.cisco-footer {
    background: #f4f4f4;
    color: #161616;
    font-family: var(--font-family);
}

/* Top Row */
.footer-top {
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
}

.footer-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-main-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-main-nav a {
    color: #525252;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-main-nav a:hover {
    color: #0f62fe;
}

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

.footer-social a {
    color: #6f6f6f;
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #0f62fe;
}

/* Middle Row */
.footer-middle {
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
}

.footer-secondary-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-secondary-nav a {
    color: #525252;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-secondary-nav a:hover {
    color: #0f62fe;
}

/* Bottom Row */
.footer-bottom-bar {
    padding: 16px 0;
}

.footer-bottom-bar .copyright {
    color: #525252;
    font-size: 0.75rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-top-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main-nav {
        gap: 16px;
    }

    .footer-secondary-nav {
        gap: 16px;
    }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-aos] {
    opacity: 0;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* ========================================
   COUNTER ANIMATION
   ======================================== */
.counter {
    font-variant-numeric: tabular-nums;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1199px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }

    .skills-navbar {
        background: #ffffff;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-visual-premium {
        min-height: 520px;
    }

    .float-1,
    .float-2,
    .float-3,
    .float-4 {
        left: 6% !important;
        right: auto !important;
        width: min(360px, 92%);
    }

    .float-1 {
        top: 6%;
    }
    .float-2 {
        top: 76%;
    }
    .float-3 {
        top: 18%;
        left: 10% !important;
    }
    .float-4 {
        top: 88%;
        left: 10% !important;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding-top: 64px;
    }

    .hero-dashboard-body {
        grid-template-columns: 1fr;
    }

    .hero-dashboard-chart {
        height: 155px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-card {
        padding: 1.5rem 1rem;
    }

    .why-card .why-title {
        font-size: 0.85rem;
    }

    .why-card .why-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

/* Mobile stats grid */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .stat-card {
        padding: 1.5rem 0.5rem;
    }

    .stat-card .stat-label {
        font-size: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .why-grid {
        gap: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .stat-card {
        padding: 1rem 0.5rem;
    }

    .stat-card .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.02em;
    }

    .stat-card .stat-number {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .why-card {
        padding: 1rem 0.75rem;
    }

    .why-card .why-title {
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }

    .why-card .why-icon {
        font-size: 1.75rem;
        width: 60px;
        height: 60px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 575px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-primary {
    color: var(--accent-blue) !important;
}
.text-white {
    color: var(--white) !important;
}
.text-muted {
    color: var(--gray-500) !important;
}
.bg-dark {
    background-color: var(--primary-dark) !important;
}
.bg-light {
    background-color: var(--gray-100) !important;
}
.bg-primary {
    background-color: var(--accent-blue) !important;
}
.bg-primary-light {
    background-color: #0f62fe15 !important;
}

/* Hover Effects */
.hover-lift {
    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Button Variants */
.btn-white {
    background-color: var(--white);
    color: var(--accent-blue);
    border: 2px solid var(--white);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-fast);
}

.btn-white:hover {
    background-color: var(--gray-100);
    color: var(--accent-blue);
}

/* Badge Styling */
.badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 4px;
}

.badge.bg-primary-light {
    background-color: #0f62fe15 !important;
    color: var(--accent-blue) !important;
}

/* Min Height Utilities */
.min-vh-50 {
    min-height: 50vh;
}

/* Additional Spacing */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.py-lg-7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.mb-3 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.mb-5 {
    margin-bottom: 3rem;
}
.mt-3 {
    margin-top: 1rem;
}
.ms-2 {
    margin-left: 0.5rem;
}
.ms-3 {
    margin-left: 1rem;
}
.ms-md-3 {
    margin-left: 0;
}

@media (min-width: 768px) {
    .ms-md-3 {
        margin-left: 1rem;
    }
    .py-lg-7 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* Card Styling */
.card {
    border: none;
    border-radius: 0.5rem;
    transition: var(--transition-medium);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* ========================================
   SELECTION STYLING
   ======================================== */
::selection {
    background: var(--accent-blue);
    color: var(--white);
}

/* ========================================
   TEAM CAROUSEL
   ======================================== */
.team-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-carousel-container {
    flex: 1;
    overflow: hidden;
}

.team-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    width: 100%;
}

.team-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0;
}

.team-carousel-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
    flex-shrink: 0;
    z-index: 10;
}

.team-carousel-nav:hover:not(:disabled) {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.team-carousel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.team-carousel-nav i {
    font-size: 1.25rem;
}

.team-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.team-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-medium);
}

.team-dot:hover {
    background: var(--gray-400);
}

.team-dot.active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 5px;
}

/* Responsive adjustments for team carousel */
@media (max-width: 991px) {
    .team-carousel-slide .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .team-carousel-slide .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .team-carousel-nav {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   PORTFOLIO SECTION STYLES
   ======================================== */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.portfolio-filter-btn {
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-200);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 98, 254, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.25rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-content {
    padding: 1.25rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(15, 98, 254, 0.1);
    color: var(--accent-blue);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 20px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.portfolio-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ========================================
   TEAM SECTION STYLES
   ======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-200);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    margin-bottom: 1.25rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto;
    transition: var(--transition-medium);
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.team-card:hover .team-social {
    opacity: 1;
    bottom: -15px;
}

.team-social a {
    width: 32px;
    height: 32px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}

.team-name {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   PRICING SECTION STYLES
   ======================================== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pricing-toggle span.active {
    color: var(--accent-blue);
}

.pricing-save {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: #10b981;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 10px;
    margin-left: 0.5rem;
}

.pricing-switch {
    position: relative;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-300);
    border-radius: 30px;
    transition: var(--transition-medium);
}

.pricing-slider:before {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.pricing-switch input:checked + .pricing-slider {
    background: var(--accent-blue);
}

.pricing-switch input:checked + .pricing-slider:before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-medium);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-popular {
    border: 2px solid var(--accent-blue);
    transform: scale(1.02);
}

.pricing-popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    vertical-align: top;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-blue);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1.1rem;
}

.pricing-features li.disabled i {
    color: var(--gray-400);
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

/* ========================================
   AWARDS SECTION STYLES
   ======================================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

.award-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-medium);
}

.award-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.award-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.award-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.award-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.award-org {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.75rem;
}

.award-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ========================================
   PARTNERS SECTION STYLES
   ======================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-medium);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.partner-logo:hover i {
    color: var(--accent-blue);
}

.partner-logo span {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

.partners-cta {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.partners-cta p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

/* ========================================
   BLOG/INSIGHTS SECTION STYLES
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-medium);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-featured {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .blog-featured {
        grid-column: 1;
    }
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-featured .blog-image {
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--accent-blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 20px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-meta span {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    font-size: 0.9rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-featured .blog-title {
    font-size: 1.5rem;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.blog-link:hover {
    gap: 0.75rem;
}

/* ========================================
   FAQ SECTION STYLES
   ======================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    color: var(--accent-blue);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.faq-more {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-more p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

/* ========================================
   ADDITIONAL NAVIGATION OPTIONS
   ======================================== */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-link {
    padding: 0.4rem 0.8rem;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.quick-link:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* Utility for disabled list items */
.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-features li.disabled i.bi-x {
    color: var(--gray-400);
}

/* ========================================
   BLOG INDEX PAGE STYLES
   ======================================== */
.blog-index-page .page-hero {
    background: linear-gradient(
        135deg,
        var(--gray-900) 0%,
        var(--primary-blue) 100%
    );
    color: var(--white);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.blog-index-page .page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-index-page .page-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.blog-index-page .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Search & Categories */
.blog-search .input-group {
    box-shadow: var(--shadow-sm);
    border-radius: 50px;
    overflow: hidden;
}

.blog-search .input-group-text {
    background: var(--white);
    border: none;
    padding-left: 1.5rem;
    color: var(--gray-500);
}

.blog-search .form-control {
    border: none;
    padding: 0.75rem 1.5rem 0.75rem 0.5rem;
    font-size: 1rem;
}

.blog-search .form-control:focus {
    box-shadow: none;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

/* Featured Post */
.featured-post {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-medium);
}

.featured-post:hover {
    transform: translateY(-4px);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-content {
    padding: 3rem;
}

.blog-category-tag {
    display: inline-block;
    background: rgba(15, 98, 254, 0.1);
    color: var(--accent-blue);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
}

.author-role {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Blog Card (Index) */
.blog-card-index {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-index:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 20px;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.blog-author-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-initials {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-700);
}

.author-name-small {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
}

.blog-meta-small {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-meta-small span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* No Results */
.no-results {
    padding: 4rem 2rem;
    text-align: center;
}

.no-results h3 {
    margin: 1.5rem 0 0.5rem;
    color: var(--gray-700);
}

.no-results p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* Pagination */
.blog-pagination .pagination {
    gap: 0.5rem;
}

.blog-pagination .page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
}

.blog-pagination .page-link:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.blog-pagination .page-item.active .page-link {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.blog-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   BLOG POST PAGE STYLES
   ======================================== */
.post-header {
    background: linear-gradient(
        135deg,
        var(--gray-900) 0%,
        var(--primary-blue) 100%
    );
    color: var(--white);
    padding: 4rem 0 3rem;
}

.post-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.post-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.post-header .breadcrumb-item a:hover {
    color: var(--white);
}

.post-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.post-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.post-category-badge {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.post-meta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.author-info-large {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
}

.author-details-large {
    display: flex;
    flex-direction: column;
}

.author-details-large .author-name {
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
}

.author-details-large .author-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.post-details {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.post-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Featured Image */
.post-featured-image {
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}

.post-featured-image img {
    box-shadow: var(--shadow-xl);
}

/* Post Content */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.post-content h2 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin: 2.5rem 0 1rem;
}

.post-content h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content strong {
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

.post-content a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--primary-blue);
}

.post-content blockquote {
    border-left: 4px solid var(--accent-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-600);
}

/* Post Tags */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.tags-label {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-link {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.85rem;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.tag-link:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* Share Section */
.post-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.share-label {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-700);
}

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

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #000;
}

.share-btn.linkedin {
    background: #0a66c2;
}

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

.share-btn.copy {
    background: var(--gray-600);
}

/* Author Bio Card */
.author-bio-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.author-avatar-xl {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    margin: 0 auto;
}

.author-bio-card h4 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-role-text {
    color: var(--accent-blue);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.75rem;
}

.author-bio-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Blog CTA Card */
.blog-cta-card {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
}

.blog-cta-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.blog-cta-card p {
    opacity: 0.9;
    margin: 0;
}

.blog-cta-card .btn-light {
    background: var(--white);
    color: var(--accent-blue);
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 1.5rem;
}

.blog-cta-card .btn-light:hover {
    background: var(--gray-100);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-index-page .page-title {
        font-size: 2.2rem;
    }

    .blog-categories {
        justify-content: flex-start;
    }

    .featured-content {
        padding: 2rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-meta-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .blog-index-page .page-hero {
        padding: 4rem 0 3rem;
    }

    .blog-index-page .page-title {
        font-size: 1.8rem;
    }

    .featured-image {
        min-height: 250px;
    }

    .featured-content {
        padding: 1.5rem;
    }

    .featured-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.4rem;
    }

    .author-bio-card {
        padding: 1.5rem;
    }

    .blog-cta-card {
        padding: 1.5rem;
        text-align: center;
    }
}
