/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default focus outlines */
*:focus {
    outline: none !important;
}

/* Custom focus styles for better accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3) !important;
}

/* Mobile touch styles */
.nav-link,
.project-link,
.footer-btn,
.skill-card,
.logo {
    -webkit-tap-highlight-color: transparent; /* Remove default mobile tap highlight */
    -webkit-touch-callout: none; /* Disable callout */
    -webkit-user-select: none; /* Disable text selection */
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: inherit; /* Maintain border radius */
}

/* Mobile touch active states */
.nav-link:active,
.project-link:active,
.footer-btn:active,
.logo:active {
    transform: scale(0.98); /* Slight scale down on touch */
    transition: transform 0.1s ease;
}

.skill-card:active {
    transform: scale(0.98) translateY(-2px);
    transition: transform 0.1s ease;
}

/* Ensure buttons maintain their styles on mobile */
@media (max-width: 768px) {
    .nav-link,
    .project-link,
    .footer-btn,
    .logo {
        border-radius: 30px !important; /* Force border radius on mobile */
        -webkit-appearance: none; /* Remove default mobile styling */
        -moz-appearance: none;
        appearance: none;
    }
    
    .skill-card {
        border-radius: 25px !important; /* Force border radius on mobile */
    }
}

@media (max-width: 480px) {
    .nav-link,
    .project-link,
    .footer-btn,
    .logo {
        border-radius: 30px !important; /* Force border radius on mobile */
    }
    
    .skill-card {
        border-radius: 25px !important; /* Force border radius on mobile */
    }
}

/* Local Persian Font Declarations */
@font-face {
    font-family: 'Vazir';
    src: url('assets/fonts/Vazir-Thin-FD.woff2') format('woff2'),
         url('assets/fonts/Vazir-Thin-FD.woff') format('woff'),
         url('assets/fonts/Vazir-Thin-FD.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('assets/fonts/Vazir-Light-FD.woff2') format('woff2'),
         url('assets/fonts/Vazir-Light-FD.woff') format('woff'),
         url('assets/fonts/Vazir-Light-FD.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('assets/fonts/Vazir-Regular-FD.woff2') format('woff2'),
         url('assets/fonts/Vazir-Regular-FD.woff') format('woff'),
         url('assets/fonts/Vazir-Regular-FD.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('assets/fonts/Vazir-Medium-FD.woff2') format('woff2'),
         url('assets/fonts/Vazir-Medium-FD.woff') format('woff'),
         url('assets/fonts/Vazir-Medium-FD.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('assets/fonts/Vazir-Bold-FD.woff2') format('woff2'),
         url('assets/fonts/Vazir-Bold-FD.woff') format('woff'),
         url('assets/fonts/Vazir-Bold-FD.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('assets/fonts/Vazir-Black-FD.woff2') format('woff2'),
         url('assets/fonts/Vazir-Black-FD.woff') format('woff'),
         url('assets/fonts/Vazir-Black-FD.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Persian Font Import - Multiple sources for better compatibility */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

body {
    font-family: 'Vazir', 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #0f0f0f 70%, #2f2053 85%, #42307e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    min-height: 100vh; /* Ensure background covers full viewport height */
}

/* Matrix Rain Background */
.matrix-rain {
    display: none;
}

/* Fixed Header - Completely Separated */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
    border-radius: 0 0 25px 25px;
}

.fixed-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-top {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.4);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    z-index: 10;
    animation: logoNeonGlitch 30s ease-in-out infinite;
    text-transform: uppercase;
    text-align: center;
}

@keyframes logoNeonGlitch {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
        opacity: 1;
    }
    7% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
        opacity: 0.8;
    }
    18% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
        opacity: 0.6;
    }
    33% {
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.9);
        opacity: 0.9;
    }
    47% {
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
        opacity: 0.7;
    }
    61% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
        opacity: 1;
    }
    73% {
        box-shadow: 0 0 3px rgba(59, 130, 246, 0.3);
        opacity: 0.5;
    }
    82% {
        box-shadow: 0 0 18px rgba(59, 130, 246, 0.8);
        opacity: 0.8;
    }
    91% {
        box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
        opacity: 0.9;
    }
    96% {
        box-shadow: 0 0 6px rgba(59, 130, 246, 0.4);
        opacity: 0.6;
    }
}

@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo:hover {
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}

.logo:hover::after {
    opacity: 0.8;
    animation-duration: 1.5s;
}

.logo:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.nav-link i {
    font-size: 18px;
}

/* Hero Section - Coding Section Completely Separated */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px; /* Only header height since announcement bar is removed */
    padding-bottom: 80px; /* Increased from 50px to 80px to prevent cutoff */
    overflow: visible; /* Ensure content is not cut off */
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 3;
    position: relative;
}

/* Code Snippet Section - Completely Separated and Optimized Width */
.code-snippet {
    background: transparent; /* Removed separate background to match site theme */
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 25px;
    padding: 12px; /* Reduced from 24px to 12px (50% reduction) */
    margin: 0 auto;
    max-width: 900px; /* Optimized width */
    width: 100%;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: visible; /* Ensure content is not cut off */
    min-height: auto; /* Allow natural height */
    height: auto; /* Ensure full height is displayed */
}

.code-snippet pre {
    margin: 0;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 12px; /* Reduced from 13px to 12px */
    line-height: 1.4; /* Reduced from 1.5 to 1.4 */
    color: #ffffff;
    text-align: left;
    direction: ltr;
    overflow: visible; /* Ensure content is not cut off */
}

.code-snippet code {
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Code Syntax Highlighting */
.keyword {
    color: #f87171;
    font-weight: bold;
}

.class-name {
    color: #34d399;
    font-weight: bold;
}

.property {
    color: #60a5fa;
}

.string {
    color: #fbbf24;
}

.method {
    color: #a78bfa;
}

/* Container for other sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px; /* Top padding to account for fixed header */
    position: relative;
    z-index: 3;
}

/* Projects Section */
.projects {
    margin-bottom: 100px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.project-card:hover .project-preview img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.project-content {
    margin-bottom: 20px;
}

.project-title {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.project-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6; /* Fixed text color instead of gradient */
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
    color: #60a5fa; /* Lighter blue on hover */
}

.project-preview {
    margin-top: 20px;
}

.project-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

/* Skills Section */
.skills {
    margin-bottom: 100px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.skill-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.skill-card:hover .skill-icon {
    transform: scale(1.2) rotate(5deg);
    transition: transform 0.3s ease;
}

.skill-icon {
    font-size: 40px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.skill-name {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.skill-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.skill-level {
    font-size: 14px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: transparent; /* Remove separate background to use main site background */
    padding: 80px 0;
    position: relative;
    z-index: 3;
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-section {
    position: relative;
}

.footer-title {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.footer-text {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 16px;
}

.footer-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(59, 130, 246, 0.1);
    font-weight: 500;
}

.footer-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}



.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
}

.copyright {
    color: #888888;
    font-size: 14px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 15px 20px;
    }
    
    .fixed-header {
        height: auto;
        margin-bottom: 20px;
    }
    
    .top-gradient-bg {
        top: 10px;
        right: 10px;
        width: 150px;
        height: 150px;
    }
    
    .nav-links {
        gap: 8px;
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: center;
        width: 100%;
        overflow-x: auto; /* Allow horizontal scroll if needed */
        padding: 5px 0;
        display: flex;
        align-items: center;
    }
    
    .nav-link {
        font-size: 14px; /* Increased from 12px to 14px */
        padding: 10px 12px; /* Increased from 8px 10px to 10px 12px */
        white-space: nowrap; /* Prevent text wrapping */
        flex-shrink: 0; /* Prevent shrinking */
        min-width: auto; /* Allow natural width */
    }
    
    .nav-link i {
        font-size: 17px; /* Increased from 15px to 17px */
    }
    
    .hero {
        padding-top: 120px;
        min-height: 80vh;
    }
    
    .code-snippet {
        padding: 8px; /* Reduced from 15px to 8px (50% reduction) */
        margin: 0 10px;
        margin-top: 80px; /* Increased from 30px to 80px for more space */
        max-width: 95%;
        border-radius: 20px;
    }
    
    .code-snippet pre {
        font-size: 11px; /* Reduced from 12px to 11px */
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-buttons {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .project-card,
    .skill-card {
        border-radius: 20px;
        padding: 25px;
    }
    
    .logo {
        font-size: 19.8px; /* Reduced by 10% from 22px */
        padding: 10.8px 19.8px; /* Reduced by 10% from 12px 22px */
    }
    

}

@media (max-width: 480px) {
    .nav-links {
        gap: 6px; /* Reduced from 8px to 6px */
        padding: 3px 0;
    }
    
    .nav-link {
        font-size: 13px; /* Increased from 11px to 13px */
        padding: 9px 10px; /* Increased from 7px 8px to 9px 10px */
    }
    
    .nav-link i {
        font-size: 15px; /* Increased from 13px to 15px */
    }
    
    .code-snippet {
        padding: 6px; /* Reduced from 12px to 6px (50% reduction) */
        max-width: 98%;
        border-radius: 18px;
    }
    
    .code-snippet pre {
        font-size: 10px; /* Reduced from 11px to 10px */
    }
    
    .skill-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .skill-icon {
        font-size: 30px;
    }
    
    .skill-name {
        font-size: 18px;
    }
    
    .project-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns even on very small screens */
        gap: 15px;
    }
    

}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 1s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #a855f7, #3b82f6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3b82f6, #a855f7);
}

/* Selection */
::selection {
    background: rgba(147, 51, 234, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(147, 51, 234, 0.3);
    color: #ffffff;
}
/* Blog Section */
.blog-preview, .blog-list {
  margin-top: 60px;
  margin-bottom: 60px;
}

.blog-card {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(59,130,246,0.2);
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-date {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Tools Slider */
.tools-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.tools-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
}

.tool-card {
  min-width: 250px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(59,130,246,0.2);
}

.tool-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #3b82f6;
}

.tools-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.tools-controls button {
  background: rgba(59,130,246,0.2);
  border: none;
  color: white;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
}

.tools-controls button:hover {
  background: rgba(59,130,246,0.4);
}
/* حذف اسکرول بار افقی فقط در بخش ابزارها */
/* حذف اسکرول بار افقی فقط برای اسلایدر ابزارها */
.tools-slider {
    overflow-x: hidden;
}

.tools-slider::-webkit-scrollbar {
    display: none;
}


