/* Custom CSS for Khalid - Software Developer Website */

/* Root Variables - Premium Green/Teal Brand Identity */
:root {
    --primary-color: #10B981;
    --primary-light: #34D399;
    --primary-dark: #059669;
    --primary-darker: #047857;
    --secondary-color: #14B8A6;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --info-color: #06B6D4;
    --light-color: #FFFFFF;
    --dark-color: #1F2937;
    --accent-color: #8B5CF6;
    --gray-light: #F0FDF4;
    --gray-medium: #E5E7EB;
    --gray-dark: #6B7280;
    
    /* Premium Gradient System */
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #14B8A6 50%, #8B5CF6 100%);
    --gradient-hero: linear-gradient(135deg, #047857 0%, #10B981 35%, #14B8A6 70%, #8B5CF6 100%);
    --gradient-card: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    --gradient-button: linear-gradient(135deg, #10B981 0%, #14B8A6 50%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #F0FDF4 0%, #E5E7EB 100%);
    
    /* Enhanced Typography */
    --font-family-arabic: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Premium Shadow System */
    --shadow-sm: 0 2px 8px rgba(16, 185, 129, 0.08);
    --shadow-md: 0 8px 25px rgba(16, 185, 129, 0.12), 0 2px 8px rgba(20, 184, 166, 0.08);
    --shadow-lg: 0 20px 40px rgba(16, 185, 129, 0.15), 0 8px 16px rgba(20, 184, 166, 0.1);
    --shadow-xl: 0 25px 50px rgba(16, 185, 129, 0.25), 0 12px 24px rgba(139, 92, 246, 0.15);
    --shadow-2xl: 0 40px 80px rgba(16, 185, 129, 0.3), 0 16px 32px rgba(139, 92, 246, 0.2);
    
    /* Text Shadows */
    --text-shadow: 0 2px 4px rgba(4, 120, 87, 0.3);
    --text-shadow-light: 0 1px 2px rgba(4, 120, 87, 0.2);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-arabic);
    line-height: 1.7;
    color: var(--dark-color);
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--light-color) 50%, var(--gray-light) 100%);
    font-weight: 400;
    padding-bottom: 120px;
    overflow-x: hidden;
}

.rtl {
    direction: rtl;
    text-align: right;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-color);
}

/* Text shadows for better contrast on gradient backgrounds */
.hero-title, .section-title, .gradient-bg h1, .gradient-bg h2, .gradient-bg h3 {
    text-shadow: var(--text-shadow);
    color: #FFFFFF;
}

.gradient-bg p, .gradient-bg .lead {
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.display-5 {
    font-weight: 700;
}

/* Premium Navigation */
.navbar {
    background: transparent !important;
    box-shadow: none;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: var(--text-shadow-light);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: var(--text-shadow-light);
    transition: all 0.3s ease;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

/* Navigation */
.bg-gradient-primary, .gradient-bg {
    background: var(--gradient-primary) !important;
}

/* Custom Animated Hamburger */
.custom-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.custom-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: hamburgerShimmer 2s infinite;
    z-index: 1;
}

@keyframes hamburgerShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.custom-toggler:focus {
    box-shadow: none;
}

.custom-toggler-icon {
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-toggler-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
    z-index: 2;
}

/* Offcanvas Menu */
.offcanvas-start {
    background: var(--gradient-primary);
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    direction: ltr;
    width: 320px;
    z-index: 1050;
}

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

.offcanvas-logo {
    text-align: left;
}

.menu-logo {
    max-width: 60px;
    height: auto;
    filter: brightness(0) invert(1);
}

.offcanvas-body {
    padding: 0;
}

/* LTR Navigation - عكس الاتجاه: النص ثم الأيقونة من اليسار */
.offcanvas .navbar-nav .nav-link {
    padding: 1rem 1.5rem !important;
    text-align: left !important;
    direction: ltr !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0.8rem !important;
}

.offcanvas .navbar-nav .nav-link span {
    order: 1 !important;
}

.offcanvas .navbar-nav .nav-link i {
    order: 2 !important;
    flex-shrink: 0 !important;
}

.navbar-nav {
    padding: 1rem 0;
}

.navbar-nav .nav-item {
    margin-bottom: 0.5rem;
}

.navbar-nav .nav-link {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    direction: rtl !important;
    text-align: right !important;
    flex-direction: row-reverse !important;
    justify-content: flex-start !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding-right: 2rem;
    transform: translateX(-5px);
}

.navbar-nav .nav-link i {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    margin-left: 0.8rem;
    margin-right: 0;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    color: white;
    transform: scale(1.1);
}

.navbar-nav .nav-link span {
    text-align: right !important;
    white-space: nowrap;
    flex: 1;
    font-weight: 600;
}

.navbar-nav .nav-link:hover i {
    color: white;
    transform: scale(1.1);
}

.offcanvas-contact {
    margin-top: auto;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px 20px 0 0;
}

.offcanvas-contact h6 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: right;
    direction: rtl;
}

.contact-buttons {
    display: flex;
    gap: 0.8rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    justify-content: center;
    direction: rtl;
    flex-direction: row-reverse;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    width: 16px;
    text-align: center;
    margin-left: 0.5rem; /* الأيقونة على اليسار من النص */
}

.contact-btn span {
    text-align: right;
}

.offcanvas-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.footer-link:hover {
    color: white;
    padding-right: 0.5rem;
}

.footer-link i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-left: 0.5rem; /* الأيقونة على اليسار من النص */
}

.footer-link span {
    text-align: right;
    flex: 1;
}

.offcanvas-body {
    padding: 2rem 1.5rem;
}

.offcanvas .nav-link {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding-right: 1rem;
}

/* Compact Hero Section */
.hero-section {
    background: var(--gradient-primary);
    padding: 2rem 0 0rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Centered Logo Styling */
.logo-container {
    margin-bottom: 1rem;
    text-align: center;
}

.logo-centered {
    max-width: 80px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    margin: 0 auto;
    display: block;
}

/* AI Title with proper text shadow */
.ai-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
    color: #FFFFFF;
}

/* Ensure services section appears immediately after hero */
.services-section {
    margin-top: 0;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    margin-top: 6rem;
    padding-top: 4rem;
}

/* Logo Styling - Closer to header */
.logo-container {
    margin-bottom: 0.5rem;
    margin-top: 0;
    padding-top: 0;
}

.logo-centered {
    max-width: 100px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 6px 12px rgba(0,0,0,0.2));
    animation: gentle-float 4s ease-in-out infinite;
}

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

/* AI Title - White Color */
.ai-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.01em;
}

/* Animated Heart */
.love-message {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
}

.animated-heart {
    font-size: 1.4rem;
    color: #ff6b6b;
    animation: heartbeat 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.animated-heart:hover {
    transform: scale(1.2);
    color: #ff5252;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Clean Quote Card - White Background Design */
.clean-quote-card {
    margin: 2rem auto;
    max-width: 480px;
}

.quote-card-content {
    background: linear-gradient(145deg, #FFFFFF 0%, var(--gray-light) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.quote-icon {
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-text {
    margin-bottom: 2rem;
}

.main-quote {
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.5;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.agreement-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.agreement-question {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.clean-agree-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: var(--text-shadow);
}

.clean-agree-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
    background: var(--primary-dark);
}

.btn-heart {
    font-size: 0.9rem;
    color: #fbbf24;
}

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

.interactive-agree-btn.clicked .btn-ripple {
    width: 200px;
    height: 200px;
}

@keyframes glassShine {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes glassGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Portfolio Styles */
.portfolio-hero {
    padding: 1.5rem 0 2.5rem; /* تقليل المسافة العلوية بشكل كبير */
    position: relative;
    overflow: hidden;
    min-height: auto; /* إزالة min-height الثابت */
}

.portfolio-title {
    font-size: 2.5rem; /* تقليل حجم العنوان قليلاً */
    font-weight: 700;
    margin-bottom: 0.8rem; /* تقليل المسافة */
}

.portfolio-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem; /* تقليل المسافة السفلية */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem; /* تقليل المسافة أكثر */
    margin-top: 0; /* إزالة أي margin علوي */
}

.portfolio-logo {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

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

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

/* Horizontal Portfolio Stats */
.portfolio-stats-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item-horizontal {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item-horizontal .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    min-width: 80px;
}

.stat-item-horizontal .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Filter Section */
.filter-section {
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid transparent;
    color: #64748b;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Projects Grid - Smart Compact Design */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* New Clean Project Card Design */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* New Clean Project Card Content */
.project-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.project-category-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.project-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-link-section {
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link.active {
    background: var(--gradient-primary);
    color: white;
}

.project-link.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    color: white;
}

.project-link.inactive {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
}

.project-technologies {
    margin-top: auto;
}

.project-technologies h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.8rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Responsive adjustments for portfolio stats */
@media (max-width: 768px) {
    .portfolio-stats-horizontal {
        gap: 2rem;
    }
    
    .stat-item-horizontal {
        padding: 0.8rem 1.5rem;
    }
    
    .stat-item-horizontal .stat-number {
        font-size: 2rem;
        min-width: 60px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.project-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-info {
    color: white;
    width: 100%;
}

.project-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.project-info p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Project Details Card - Compact Design */
.project-details {
    padding: 1.2rem;
    background: white;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.project-description {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.project-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-technologies {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.tech-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #4338ca;
}

/* Modal Enhancements */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2.5rem;
    }
    
    .portfolio-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        margin: 0 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Blog Styles */
.blog-hero {
    padding: 2rem 0 3rem;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: float 5s infinite ease-in-out;
}

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

.blog-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    min-width: 100px;
    flex: 0 0 auto;
}

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

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Quick Filters */
.quick-filters-section {
    padding: 3rem 0;
    background: rgba(248, 250, 252, 0.5);
    backdrop-filter: blur(10px);
}

.filters-container {
    text-align: center;
}

.filters-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.filter-chips {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-chip {
    background: white;
    border: 2px solid transparent;
    color: #64748b;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.filter-chip i {
    font-size: 1.1rem;
}

.filter-chip:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.filter-chip.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Featured Article */
.featured-article-section {
    padding: 4rem 0;
    background: white;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.featured-article {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.featured-article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: white;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.featured-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.read-more-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Article Actions and Share Buttons */
.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.article-share-row {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.share-buttons-small {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.share-btn-small {
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Articles Grid */
.articles-grid-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
}

.category-badge.tech-trends {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.category-badge.programming {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.category-badge.ai {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.category-badge.business {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.category-badge.education {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.reading-time {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1rem 1.5rem;
    line-height: 1.4;
}

.article-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

.article-footer {
    padding: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.publish-date {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Article cards publish date override */
.article-card .publish-date {
    color: #64748b;
}

/* Featured article publish date override */
.featured-article .publish-date,
.featured-article .article-meta {
    color: white;
}

.article-tags {
    display: flex;
    gap: 0.3rem;
}

.article-tags .tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

.load-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Article Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 2rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 15px;
    flex-wrap: wrap;
}

.article-meta span {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-meta .article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.article-meta .tag {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-sources {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.article-sources h3 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.article-sources ul {
    list-style: none;
    padding: 0;
}

.article-sources li {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.article-sources li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-main-title {
        font-size: 2.5rem;
    }
    
    .blog-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-card {
        padding: 1.5rem 2rem;
        min-width: 200px;
    }
    
    .filter-chips {
        gap: 0.5rem;
    }
    
    .filter-chip {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .featured-article {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .featured-article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Blog Styles */
.blog-hero {
    background: var(--gradient-primary);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.blog-icon-wrapper {
    margin-bottom: 2rem;
}

.blog-icon {
    font-size: 4rem;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    animation: blogIconFloat 3s ease-in-out infinite;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

/* Blog Filter Section */
.blog-filter-section {
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-container {
    text-align: center;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-filter-btn {
    background: white;
    border: 2px solid rgba(99, 102, 241, 0.2);
    color: #64748b;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

.blog-filter-btn i {
    font-size: 1.1rem;
}

.blog-filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.blog-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Blog Articles Section */
.blog-articles-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.article-header {
    padding: 1.5rem;
    color: white;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    width: fit-content;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.article-footer {
    margin-top: auto;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.article-card:hover .read-more {
    gap: 1rem;
}

/* Article Modal Styles */
.article-modal-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.article-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-meta-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.article-meta-info i {
    color: var(--primary-color);
}

.article-tags-modal {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-modal {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-content h2 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-right: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    background: #f8fafc;
    border-right: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    color: #1e293b;
}

.article-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Blog Animations */
@keyframes blogIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Blog Featured Article */
.featured-article-section {
    padding: 2rem 0 4rem;
    background: white;
}

.featured-badge {
    text-align: center;
    margin-bottom: 2rem;
}

.featured-badge i {
    color: #fbbf24;
    margin-left: 0.5rem;
}

.featured-article {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.featured-article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-badge {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.category-badge.tech-trends {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-badge.programming {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-badge.ai {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-badge.business {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.category-badge.education {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.featured-tags .tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* Quick Filters */
.quick-filters-section {
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filters-container {
    text-align: center;
}

.filters-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.filter-chips {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-chip {
    background: white;
    border: 2px solid rgba(99, 102, 241, 0.2);
    color: #64748b;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

/* Articles Grid */
.articles-grid-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.article-card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.publish-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
}

.newsletter-form button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Stats */
.blog-hero {
    background: var(--gradient-primary);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.blog-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.blog-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Load More Button */
.load-more-container {
    margin-top: 3rem;
}

.load-more-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-main-title {
        font-size: 2.5rem;
    }
    
    .blog-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .filter-chips {
        gap: 0.8rem;
    }
    
    .filter-chip {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-card {
        margin: 0 1rem;
        min-height: 320px;
    }
}

/* Work in Progress Section Styles */
.work-in-progress-section {
    margin-top: 4rem;
    padding: 2rem 0 4rem 0; /* إضافة padding سفلي إضافي */
    border-top: 2px solid #f0f2f5;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-bottom: 120px; /* زيادة المسافة من شريط التطبيق */
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #495057;
    margin-bottom: 1rem;
}

.section-title i {
    color: #667eea;
    animation: rotate 2s linear infinite;
}

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

.pulse-indicator {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    margin: 0 auto;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.progress-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.progress-project-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradient-move 3s linear infinite;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.progress-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.progress-indicator {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 8px;
    border-radius: 4px;
    transition: width 0.8s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-text {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    font-weight: bold;
    color: #495057;
}

.status-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.status-badge i {
    font-size: 0.7rem;
}

.progress-project-card .project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.progress-project-card .project-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.progress-project-card .project-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tech-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.progress-project-card .project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.progress-project-card .project-link:hover {
    background: #667eea;
    color: white;
}

.progress-project-card .project-link.disabled {
    color: #6c757d;
    border-color: #dee2e6;
    cursor: not-allowed;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 120px; /* زيادة المسافة فوق شريط التطبيق */
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 1001; /* رفع z-index ليظهر فوق جميع العناصر */
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(0);
}

/* Mobile Optimizations for Progress Section */
@media (max-width: 768px) {
    .progress-projects-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .progress-project-card .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .back-to-top-btn {
        bottom: 100px; /* زيادة المسافة في الموبايل أيضاً */
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .portfolio-hero {
        padding: 1rem 0 1.5rem; /* تقليل padding أكثر في الموبايل */
    }
    
    .portfolio-title {
        font-size: 2rem; /* تقليل الخط في الموبايل */
    }
    
    .portfolio-logo {
        width: 60px;
        height: 60px;
    }
    
    .featured-article-content {
        padding: 2rem;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .newsletter-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-icon {
        font-size: 3rem;
    }
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Action Icons - Positioned under title */
.action-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.action-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Company Info Modal Styles */
.company-info-trigger {
    cursor: pointer !important;
}

.company-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.company-info-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.company-info-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.company-info-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.company-info-body {
    padding: 2rem;
    direction: rtl;
    text-align: right;
}

.company-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-right: 4px solid var(--primary-color);
}

.company-section:last-child {
    margin-bottom: 0;
}

.company-section h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-section p {
    margin: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
}

.company-section strong {
    color: #1f2937;
    font-weight: 600;
}

.company-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-section a:hover {
    color: #5b5fc7;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .company-info-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .company-info-header {
        padding: 1rem 1.5rem;
    }
    
    .company-info-header h4 {
        font-size: 1.1rem;
    }
    
    .company-info-body {
        padding: 1.5rem;
    }
    
    .company-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .company-section h5 {
        font-size: 1rem;
    }
    
    .company-section p {
        font-size: 0.9rem;
    }
}

/* Smart Service CTA Button */
.smart-service-cta {
    margin-top: 0.5rem;
    margin-bottom: 0rem;
    display: flex;
    justify-content: center;
}

.smart-cta-button {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3), 
                0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    max-width: 280px;
    width: 100%;
}

.smart-cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.4), 
                0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary-dark);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cta-icon {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
    }
}

.cta-text {
    flex: 1;
    text-align: right;
    direction: rtl;
}

.cta-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: inherit;
}

.cta-subtitle {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 500;
}

.cta-arrow {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.smart-cta-button:hover .cta-arrow {
    transform: translateX(-5px);
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
}

.smart-cta-button:hover .cta-shimmer {
    left: 100%;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .smart-service-cta {
        padding: 0 1rem;
    }
    
    .smart-cta-button {
        max-width: 260px;
        padding: 0.9rem 1.5rem;
    }
    
    .cta-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
    }
}

/* Navigation Icons */
.nav-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.nav-icon i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nav-icon span {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-icon:hover {
    color: white;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Enhanced Bottom App Bar with Floating Plus */
.enhanced-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
}

.bottom-nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem 1.5rem;
    margin: 0 auto;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-top: 2px solid rgba(99, 102, 241, 0.2);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #64748b;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    border-radius: 12px;
    min-width: 60px;
}

.nav-item i {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-item:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Floating Plus Button */
.floating-plus-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-plus-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A73E8 0%, #4285F4 50%, #1557B0 100%);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(26, 115, 232, 0.4),
        0 4px 12px rgba(66, 133, 244, 0.3);
    position: relative;
    z-index: 10;
    transform: translateY(-10px);
    overflow: hidden;
}

.floating-plus-btn:hover {
    transform: translateY(-14px) scale(1.08);
    background: linear-gradient(135deg, #4285F4 0%, #1A73E8 50%, #0D47A1 100%);
    box-shadow: 
        0 12px 35px rgba(26, 115, 232, 0.5),
        0 6px 18px rgba(66, 133, 244, 0.4);
}

.floating-plus-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
}

.floating-plus-btn.active {
    transform: translateY(-10px) rotate(45deg);
    background: linear-gradient(135deg, #ef4444, #f97316);
}

/* Circular Expanded Services Layout */
/* Floating Overlay for Background Dimming */
.floating-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-overlay.active {
    opacity: 1;
    visibility: visible;
}

.expanded-services {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    display: none;
    pointer-events: none;
    z-index: 15;
}

.expanded-services.active {
    display: block;
    animation: expandCircular 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-bubble {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    text-decoration: none;
}

.service-bubble.phone-bubble {
    background: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.service-bubble.whatsapp-bubble {
    background: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.service-bubble.email-bubble {
    background: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Circular positioning for 3 bubbles */
.service-bubble:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: bubbleAppear1 0.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.service-bubble:nth-child(2) {
    bottom: 30px;
    left: 20px;
    animation: bubbleAppear2 0.6s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.service-bubble:nth-child(3) {
    bottom: 30px;
    right: 20px;
    animation: bubbleAppear3 0.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.service-bubble:hover {
    transform: scale(1.15);
}

.service-bubble.phone-bubble:hover {
    background: #059669;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.service-bubble.whatsapp-bubble:hover {
    background: #1ea346;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.service-bubble.email-bubble:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

@keyframes expandCircular {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes bubbleAppear1 {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes bubbleAppear2 {
    0% {
        opacity: 0;
        transform: translateX(20px) translateY(20px) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes bubbleAppear3 {
    0% {
        opacity: 0;
        transform: translateX(-20px) translateY(20px) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

.keywords {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.keyword {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.keyword-separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 1rem;
    font-weight: 300;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.4;
}

.main-buttons .btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.main-buttons .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Motivational Section */
.motivational-section {
    background: var(--light-color);
}

.motivational-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.phrase-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease;
}

/* Service Landing Pages */
.service-landing-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.service-icon-large i {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: var(--text-shadow);
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.cta-buttons {
    margin: 3rem 0;
}

.cta-buttons .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .service-landing-section {
        padding: 2rem 0;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-grid {
    margin-top: 3rem;
}

.service-card {
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15), 0 10px 20px rgba(66, 133, 244, 0.1);
    border-color: rgba(26, 115, 232, 0.3);
    background: linear-gradient(145deg, #FFFFFF 0%, var(--gray-light) 5%, #FFFFFF 100%);
}

.service-icon {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.service-card p {
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Service Link Styling */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.service-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 20px;
}

.service-link .service-card {
    cursor: pointer;
}





/* Modern Service Cards */
.modern-services-grid {
    margin-top: 2rem;
}

.modern-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.modern-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 115, 232, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(40px);
    animation: modernFadeInUp 0.8s ease-out forwards;
}

.modern-service-card:nth-child(1) { animation-delay: 0.1s; }
.modern-service-card:nth-child(2) { animation-delay: 0.2s; }
.modern-service-card:nth-child(3) { animation-delay: 0.3s; }
.modern-service-card:nth-child(4) { animation-delay: 0.4s; }
.modern-service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card-inner {
    position: relative;
    z-index: 2;
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(26, 115, 232, 0.1), 
        rgba(66, 133, 244, 0.05), 
        rgba(26, 115, 232, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0);
}

.modern-service-card:hover .service-glow {
    opacity: 1;
    transform: scale(1);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
    transition: all 0.4s ease;
}

.service-icon-modern i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-title-modern {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-desc-modern {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.modern-service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.25);
    border-color: var(--primary-color);
}

.modern-service-card:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.4);
}

.modern-service-card:hover .service-icon-modern i {
    transform: scale(1.1);
}

.modern-service-card:hover .service-title-modern {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.modern-service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

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

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

/* Enhanced Service Landing Pages Animations */
.animate-heading {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

.interactive-feature {
    position: relative;
    overflow: hidden;
}

.interactive-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.interactive-feature:hover::before {
    left: 100%;
}

.interactive-feature:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

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

/* Fixed RTL Navigation Menu */
.offcanvas-body .nav-link {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: right !important;
    gap: 12px !important;
    padding: 12px 20px !important;
}

.offcanvas-body .nav-link i {
    order: 2 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.offcanvas-body .nav-link span {
    order: 1 !important;
    flex: 1 !important;
    text-align: right !important;
}

.contact-btn, .footer-link {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: right !important;
    gap: 12px !important;
}

.contact-btn i, .footer-link i {
    order: 2 !important;
}

.contact-btn span, .footer-link span {
    order: 1 !important;
    flex: 1 !important;
    text-align: right !important;
}

/* Call to Action */
.cta-section {
    background: var(--gradient-primary);
}

/* Buttons */
.btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #FFFFFF;
    text-shadow: var(--text-shadow);
    font-weight: 600;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-dark);
    border: none;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Forms */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.alert-info {
    background: #e3f2fd;
    color: #0d47a1;
}

.alert-success {
    background: #e8f5e8;
    color: #2e7d32;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 1rem 0;
        padding-bottom: 120px;
    }
    
    .hero-content {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .logo-centered {
        max-width: 80px;
    }
    
    .ai-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .interactive-quote-section {
        padding: 1.5rem 1rem;
        margin: 0.5rem 1rem 0;
        border-radius: 20px;
        max-width: 90%;
    }
    
    .typing-effect {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .agreement-section {
        gap: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .agreement-question {
        font-size: 1rem;
    }
    
    .interactive-agree-btn {
        padding: 6px 18px;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .action-icons {
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.2rem;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .services-section {
        padding-top: 1rem;
    }
    
    .nav-item {
        font-size: 0.75rem;
        min-width: 55px;
    }
    
    .nav-item i {
        font-size: 1.2rem;
    }
    
    .floating-plus-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .bottom-nav-container {
        padding: 0.8rem 1.5rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .logo-large {
        max-width: 80px;
    }
    
    .phrase-text {
        font-size: 1.1rem;
        min-height: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* Clean design - dark mode removed for brand consistency */

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.contact-icon:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border-width: 2px;
    }
    
    .card {
        border: 2px solid var(--dark-color);
    }
    
    .service-card {
        border-width: 2px;
    }
}

/* Override Bootstrap Success Color to Blue - Premium Brand Identity */
.text-success {
    color: var(--primary-color) !important;
}

.btn-success {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-success:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* Removed Partnership Banner Styles */
    margin: 0;
    font-weight: 500;
}

/* Mobile optimization */

