:root {
    --primary-color: #1335eb;
    --primary-light: #4c6ef5;
    --primary-dark: #0f2ac0;
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --accent-color: #10b981;
    --dark-color: #0f172a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --primary-gradient: linear-gradient(135deg, #1335eb 0%, #0f2ac0 100%);
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --hover-gradient: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;

    /* Typography Standards */
    --h1-size: clamp(1.8rem, 3vw, 2.2rem);
    --h2-size: clamp(1.5rem, 2.5vw, 1.75rem);
    --h3-size: 1.25rem;
    --body-size: 0.95rem;
    --small-size: 0.85rem;
}

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

body {
    font-family: 'Readex Pro', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Logo Styling */
#logo-svg {
    width: 110px;
    height: auto;
}

#logo-svg path,
#logo-svg rect {
    fill: var(--dark-color);
}

.container {
    padding-right: 40px !important;
    padding-left: 40px !important;
}

/* Header Styles */
.sticky-top {
    z-index: 1020;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-shadow {
    box-shadow: var(--shadow-md);
}

header a {
    transition: all 0.3s ease;
}

header .nav-link {
    font-weight: 400;
    /* Lighter weight for nav */
    padding: 0.5rem 1rem;
    color: var(--dark-color);
}

header .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown-menu {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px;
    text-align: right;
    min-width: 240px;
    margin-top: 10px !important;
    background-color: var(--white);
    transform-origin: top center;
}

.dropdown-item {
    border-radius: var(--border-radius-md);
    padding: 10px 15px;
    /* Standardized side padding */
    font-weight: 400;
    /* Lighter weight */
    color: var(--dark-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    /* Increased gap slightly */
    margin-bottom: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    /* Ensure consistent line height */
}

/* Remove margin from icon to rely on gap */
.dropdown-item i {
    margin-left: 0 !important;
    /* Force override bootstrap me-2 if easier, but gap handles it well usually */
    margin-right: 0 !important;
    font-size: 1.2rem;
    color: #94a3b8;
    /* Muted color for hierarchy */
    transition: color 0.2s ease;
}

.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #f1f5f9;
    /* Light gray/blue hover */
    color: var(--primary-color);
}

.dropdown-item:hover i {
    color: var(--primary-color);
    /* Active color on hover */
}

/* Buttons */
.btn {
    border-radius: var(--border-radius-md);

    .btn {
        border-radius: var(--border-radius-md);
        padding: 12px 32px;
        font-weight: 500;
        /* Slightly lighter than previous 600 */
        transition: all 0.3s ease;
    }
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--hover-gradient);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-color), #059669);
    border: none;
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header and Mobile Menu Buttons */
header .btn,
.offcanvas .btn {
    padding: 8px 20px;
    font-size: var(--small-size);
}

/* Hero Section */
/* Hero Section */
.hero {
    background-color: var(--primary-color);
    /* Base Gradient */
    background-image:
        /* Radial fade for the grid */
        radial-gradient(circle at 50% 50%, transparent 0%, var(--primary-dark) 100%),
        /* Vertical Lines */
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        /* Horizontal Lines */
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        /* Deep Blue Gradient Base */
        linear-gradient(135deg, #1335eb 0%, #0f2ac0 100%);
    background-size: 100% 100%, 50px 50px, 50px 50px, 100% 100%;
    background-position: center center;
    position: relative;
    overflow: hidden;
    padding: 160px 0 120px;
    text-align: center;
    color: white;
    z-index: 1;
}

/* Remove old blobs */
.hero::before,
.hero::after {
    display: none;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
    /* Clean white text for better contrast */
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: -20px;
}

.hero p {
    font-size: 1.35rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Custom Premium Buttons */
.btn-custom {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/*Refined Glass Button - Cleaner */
.btn-outline-light.btn-custom {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-outline-light.btn-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: white;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: var(--shadow-md); */
}

.stat-number {
    font-size: clamp(1.5rem, 2.2vw, 1.8rem);
    font-weight: 600;
    /* Slightly lighter */
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: var(--small-size);
    color: #64748b;
    font-weight: 500;
}

/* Features Section */
#features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

#features h2 {
    font-size: var(--h2-size);
    font-weight: 600;
    /* Lighter section heading */
    color: var(--primary-color);
    margin-bottom: 4rem;

    position: relative;
    display: inline-block;
}

#features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

.feature-box {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(30, 58, 138, 0.05);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-box i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.feature-box:hover i {
    background: var(--secondary-gradient);
    transform: rotateY(180deg);
}

.feature-box h5 {
    font-size: var(--h3-size);
    font-weight: 600;
    /* Lighter heading */
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-box p {
    font-size: var(--body-size);
    color: #6b7280;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.pricing-section h2 {
    font-size: var(--h2-size);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-color);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    border-radius: 34px;
    transition: .4s;
}

.slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    right: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
    box-shadow: var(--shadow-sm);
}

input:checked+.slider {
    background: var(--primary-gradient);
}

input:checked+.slider::before {
    transform: translateX(-28px);
}

.pricing-card {
    background: white;
    border: 2px solid rgba(30, 58, 138, 0.05);
    border-radius: var(--border-radius-xl);
    padding: 40px 30px;
    text-align: right;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.recommended {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
    /* transform: scale(1.05); */
    /* z-index: 2; */
}

.pricing-card.recommended:hover {
    transform: translateY(-10px);
}

.pricing-card.recommended::before {
    background: var(--secondary-gradient);
    transform: scaleX(1);
}

.recommended .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-card h4 {
    font-size: var(--h3-size);
    font-weight: 600;
    /* Lighter heading */
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    /* Strong but not 900 */
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.pricing-card.recommended .pricing-price {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card p {
    color: #6b7280;
    font-size: var(--body-size);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.recommended .btn-outline-primary {
    background: var(--secondary-gradient);
    border: none;
    color: white;
}

.recommended .btn-outline-primary:hover {
    background: linear-gradient(135deg, #d97706, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

#contact::after {
    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.05'%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");
}

#contact .container {
    position: relative;
    z-index: 1;
}

#contact h2 {
    font-size: var(--h2-size);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#contact p {
    font-size: 1.05rem;
    /* Match Hero p */
    margin-bottom: 3rem;
    opacity: 0.9;
}

#contact .btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 16px 48px;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
}

#contact .btn-primary:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    color: #4b5563;
    padding: 80px 0 0;
    font-size: var(--small-size);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1rem;
    /* Intentionally explicit */
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer ul li {
    margin-bottom: 15px;
}

/* Contact Links in Footer */
.contact-link {
    color: #4b5563 !important;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-link:hover {
    color: var(--primary-color) !important;
    transform: translateX(-5px);
}

.contact-link .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(30, 58, 138, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-link:hover .icon-box {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    background: #ffffff;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

/* Navbar Toggler Focus Fix */
.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 200px 0 160px;
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

    .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }
}

/* Services Section (New Design) */
.services-wrapper {
    background: #fff;
    border-radius: var(--border-radius-xl);
    /* Rounded corners as requested */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* display: flex; REMOVED to fix grid width issue */
    border: 1px solid #cfe2ff;
    /* Added blue border as requested */
}

.services-sidebar {
    background: #e3f2fd;
    /* Light blue background */
    padding: 0;
    /* Remove padding to let active tab fill width */
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Decorative circle effect */
.services-sidebar::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.service-nav-link {
    display: block;
    padding: 20px 30px;
    color: #1e3a8a;
    /* Dark blue text */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none !important;
    background: transparent;
    border-radius: 0;
    /* Sharp corners */
    text-align: right;
    width: 100%;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.service-nav-link:hover {
    color: #0d6efd;
    background: rgba(255, 255, 255, 0.3);
}

.service-nav-link.active {
    background: #0d6efd;
    /* Bright blue active background */
    color: white;
    font-weight: 800;
}

.services-content {
    padding: 60px;
    background: white;
}

.service-list-item {
    margin-bottom: 15px;
    position: relative;
    padding-right: 20px;
    font-weight: 600;
    color: #1e293b;
    font-size: var(--body-size);
}

.service-list-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 1px;
}

.service-link-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
    margin-top: 30px;
    transition: gap 0.3s;
    font-size: 1rem;
}

.service-link-more:hover {
    gap: 15px;
    color: var(--primary-dark);
}

/* Offcanvas RTL Fixes */
html[dir="rtl"] .offcanvas.offcanvas-end-rtl {
    right: 0;
    left: auto;
    transform: translateX(100%);
}

html[dir="rtl"] .offcanvas.offcanvas-end-rtl.show {
    transform: none;
}

.offcanvas {
    z-index: 1050;
    background-color: var(--white) !important;
    /* Force white background */
    color: var(--dark-color);
}

.offcanvas-header {
    padding: 30px 1rem;
    /* Fine-tuned (30px) for pixel-perfect match */
    align-items: center;
}

.offcanvas-backdrop {
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Mobile Menu Specifics */
@media (max-width: 991.98px) {
    .offcanvas {
        width: 85% !important;
        max-width: 350px;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Success Stories Section */
.success-stories {
    /* padding: 80px 0; */
    background: #fff;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--border-radius-xl);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Optional: adds subtle definition */
}

@media (min-width: 992px) {
    .case-study-card {
        flex-direction: row;
        align-items: stretch;
        min-height: 450px;
    }

    .case-study-content {
        width: 50%;
        padding: 60px 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .case-study-image {
        width: 50%;
        background-size: cover;
        background-position: center center;
        /* More explicit anchoring */
        background-repeat: no-repeat;
        min-height: 100%;
    }
}

.case-study-yellow {
    background-color: #fffbeb;
}

.case-study-blue {
    background-color: #e0f2fe;
}

.case-study-heading {
    font-size: var(--h2-size);
    /* Use consistent h2 size or maybe slightly smaller? User wants headers unified. var(--h2-size) should be fine or maybe 1.6rem override if needed. Let's stick to consistent h2 */
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #000;
}

.case-study-text {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: var(--body-size);
    line-height: 1.8;
    opacity: 0.9;
}

.btn-link-arrow {
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid #0284c7;
    width: fit-content;
    transition: all 0.3s ease;
    color: #0284c7;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-link-arrow:hover {
    background: #0284c7;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .case-study-image {
        min-height: 300px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .case-study-content {
        padding: 40px 30px;
    }
}

/* Mobile Submenu Styles */
.mobile-sub-menu {
    background-color: #f8fafc;
    border-radius: var(--border-radius-md);
    padding: 8px;
    margin-top: 10px;
    margin-right: 0 !important;
    /* Reset previous margin */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.mobile-sub-menu::before {
    display: none;
    /* Remove previous vertical line */
}

/* Styling for links inside the mobile submenu */
.mobile-sub-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    /* Consistent with standard spacing */
    border-radius: var(--border-radius-md);
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
    text-decoration: none;
    background-color: transparent;
    gap: 12px;
}

.mobile-sub-menu li a:hover,
.mobile-sub-menu li a:focus {
    background-color: rgba(30, 58, 138, 0.05);
    /* Very light primary hover */
    color: var(--primary-color);
}

.mobile-sub-menu li a i {
    font-size: 1.1rem;
    color: #94a3b8;
    transition: color 0.2s;
}

.mobile-sub-menu li a:hover i {
    color: var(--primary-color);
}

/* Footer Logo Specific Size */
.footer-bottom #logo-svg {
    width: 75px;
}