/*
Modern Design Enhancement
Created: 2025
Description: Contemporary, premium design overrides with glassmorphism, vibrant colors, and smooth animations
*/

/* ============================================================================= 
   MODERN COLOR SCHEME & VARIABLES
============================================================================= */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warm-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --cool-gradient: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --border-color: rgba(0, 0, 0, 0.08);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

/* ============================================================================= 
   MODERN TYPOGRAPHY
============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* ============================================================================= 
   GLASSMORPHISM EFFECTS
============================================================================= */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

/* ============================================================================= 
   MODERN HEADER/SIDEBAR
============================================================================= */
.header {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: var(--shadow-xl);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-picture-block {
    background: var(--primary-gradient) !important;
    position: relative;
    overflow: hidden;
}

.profile-picture-block::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.my-photo {
    background: var(--primary-gradient) !important;
    padding: 5px !important;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.my-photo:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
}

.my-photo img {
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.site-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.03em;
}

/* ============================================================================= 
   MODERN NAVIGATION
============================================================================= */
.header-main-menu li a {
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin: 5px 0;
}

.header-main-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-main-menu li a:hover::before,
.header-main-menu li a.active::before {
    transform: scaleY(1);
}

.header-main-menu li a:hover,
.header-main-menu li a.active {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, rgba(102, 126, 234, 0.03) 100%);
    transform: translateX(-3px);
    color: #667eea;
}

.header-main-menu li a i {
    background: var(--primary-gradient) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-main-menu li a:hover i {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* ============================================================================= 
   MODERN CONTENT PAGES
============================================================================= */
.sub-page .sub-page-inner {
    background: transparent;
    padding: 50px;
}

.content-pages {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* ============================================================================= 
   MODERN START PAGE / HOME
============================================================================= */
.start-page .sub-page-inner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.start-page .mask {
    display: none;
}

.title-block {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-block h2 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.title-block .cd-words-wrapper b {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    font-weight: 700;
}

.home-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.home-buttons a.bt-submit {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.home-buttons a.bt-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.home-buttons a.bt-submit i {
    font-size: 18px;
}

/* ============================================================================= 
   MODERN SECTION CARDS
============================================================================= */
.special-block-bg {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

.special-block-bg:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.3);
}

/* ============================================================================= 
   MODERN BUTTONS
============================================================================= */
.bt-submit,
.btn.bt-submit {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bt-submit::before,
.btn.bt-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bt-submit:hover::before,
.btn.bt-submit:hover::before {
    width: 300px;
    height: 300px;
}

.bt-submit:hover,
.btn.bt-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* ============================================================================= 
   MODERN CARDS & SERVICES
============================================================================= */
.service-block {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.service-block:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.4);
    background: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.service-icon img {
    filter: brightness(0) invert(1);
    width: 35px;
    height: 35px;
}

/* ============================================================================= 
   MODERN PORTFOLIO ITEMS
============================================================================= */
.portfolio-item {
    margin-bottom: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-img {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-img img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-data {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-data {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
}

/* ============================================================================= 
   MODERN BLOG CARDS
============================================================================= */
.blog-article {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-article:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.3);
}

.article-img {
    overflow: hidden;
    position: relative;
}

.article-img img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-article:hover .article-img img {
    transform: scale(1.1) rotate(2deg);
}

.article-link a {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-article:hover .article-link a {
    transform: rotate(90deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

/* ============================================================================= 
   MODERN TESTIMONIALS
============================================================================= */
.testimonial-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.9);
}

.testimonial-avatar img {
    border-radius: 50%;
    border: 4px solid;
    border-color: transparent;
    border-image: var(--primary-gradient) 1;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* ============================================================================= 
   MODERN PRICING TABLES
============================================================================= */
.pricing-table {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-table:hover::before {
    transform: scaleX(1);
}

.pricing-table:hover,
.pricing-table.featured-plan {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(102, 126, 234, 0.4);
}

.pricing-table.featured-plan {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
}

.pricing-table.featured-plan h4,
.pricing-table.featured-plan .p-name,
.pricing-table.featured-plan .p-price {
    color: #ffffff;
}

/* ============================================================================= 
   MODERN SKILLS & PROGRESS BARS
============================================================================= */
.progress {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50px;
    height: 12px;
    overflow: visible;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    background: var(--primary-gradient);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================================================= 
   MODERN TIMELINE
============================================================================= */
.timeline {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 20px 0 0 20px;
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline:hover::before {
    transform: scaleY(1);
}

.timeline:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.timeline-icon {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--primary-gradient);
    padding: 5px;
}

.timeline-icon img {
    border-radius: 12px;
}

/* ============================================================================= 
   MODERN CONTACT FORM
============================================================================= */
.form-contact-me input,
.form-contact-me textarea {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.form-contact-me input:focus,
.form-contact-me textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

/* ============================================================================= 
   MODERN SECTION TITLES  
============================================================================= */
.section-head h4 {
    position: relative;
    padding-left: 25px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-head h4::before {
    background: var(--primary-gradient);
    width: 5px;
    height: 100%;
    border-radius: 10px;
}

.section-head h4 span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-main-page h4 {
    font-size: 42px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.title-main-page h4::before {
    border-color: #667eea;
    border-width: 6px 6px 0 6px;
    opacity: 0.8;
}

/* ============================================================================= 
   MODERN COUNTER BLOCKS
============================================================================= */
.counter-block {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-block:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.counter-block i {
    font-size: 48px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================================= 
   MODERN SOCIAL MEDIA LINKS
============================================================================= */
.social-media-links li a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-media-links li a:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* ============================================================================= 
   MODERN FILTER BUTTONS
============================================================================= */
.filter-tabs button {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    margin: 5px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.filter-tabs button:hover,
.filter-tabs button.active {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* ============================================================================= 
   RESPONSIVE ANIMATIONS
============================================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================================= 
   MODERN SCROLLBAR
============================================================================= */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f91 100%);
}

/* ============================================================================= 
   MOBILE RESPONSIVENESS
============================================================================= */
@media only screen and (max-width: 768px) {
    .title-block h2 {
        font-size: 32px;
    }
    
    .title-main-page h4 {
        font-size: 28px;
    }
    
    .section-head h4 {
        font-size: 24px;
    }
    
    .home-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .home-buttons a.bt-submit {
        width: 100%;
        max-width: 300px;
    }
}
home-buttons a.bt-submit {
        width: 100%;
        max-width: 300px;
    }
}