/* assets/css/style.css - ستایلی وێبسایتی سەرەکی */

/* ڕێسا و بنەماکان */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Arabic', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    direction: rtl;
}

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

/* دووگمەکان */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* هیدەری سەرەوە */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.nav-brand img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* بەشی Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    animation: fadeInRight 1s ease 0.6s both;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* بەشی خزمەتگوزاریەکان */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* بەشی پڕۆژەکان */
.projects {
    padding: 100px 0;
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    position: relative;
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

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

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.project-info p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.technology {
    background: #e2e8f0;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #475569;
}

.status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-completed {
    background: #dcfce7;
    color: #166534;
}

.status-ongoing {
    background: #fef3c7;
    color: #92400e;
}

.status-planned {
    background: #e0e7ff;
    color: #3730a3;
}

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

/* بەشی پەیوەندی */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* فووتەر */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* ئەنیمەیشنەکان */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ڕیسپۆنسیڤ - موبایل */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* ڕیسپۆنسیڤ - تابلێت */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ستایلە زیادەکان بۆ assets/css/style.css */

/* ستایلی scrolled header */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.header.scrolled .navbar {
    padding: 0.8rem 0;
}

/* Loading screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Animation classes */
.service-card.animate,
.project-card.animate,
.contact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Modern card hover effect */
.modern-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

/* Neon glow effect */
.neon-glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
    }
}

/* Typing animation */
.typing-animation {
    border-right: 2px solid;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: currentColor; }
}

/* Parallax sections */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
}

/* Skill bars */
.skill-bar {
    background: #e2e8f0;
    border-radius: 10px;
    padding: 3px;
    margin: 10px 0;
}

.skill-progress {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 20px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    transition: width 2s ease-in-out;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    display: flex;
    margin: 40px 0;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #dc2626;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.testimonial-quote {
    font-size: 3rem;
    color: #667eea;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    color: #64748b;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

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

.testimonial-info h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact form enhancements */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 15px 12px 5px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
}

.form-label {
    position: absolute;
    top: 15px;
    right: 12px;
    color: #64748b;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: 5px;
    font-size: 12px;
    color: #667eea;
}

/* Statistics counter */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Interactive elements */
.interactive-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.interactive-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;
    z-index: -1;
}

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

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1e293b;
        --text-color: #f1f5f9;
        --card-bg: #334155;
    }
    
    body.dark-mode {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .dark-mode .service-card,
    .dark-mode .project-card,
    .dark-mode .modern-card {
        background: var(--card-bg);
        color: var(--text-color);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .nav-toggle {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .service-card,
    .project-card {
        border: 2px solid #000;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Screen reader only text */
.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;
}




/* ===============================
   ICON BASE CLASS - کلاسی بنەڕەتی ئایکۆن (سپی)
   =============================== */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  color: white;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
}

/* ===============================
   ICON SIZES - قەبارەی ئایکۆنەکان
   =============================== */
.icon-small {
  width: 16px;
  height: 16px;
}

.icon-medium {
  width: 24px;
  height: 24px;
}

.icon-large {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 48px;
  height: 48px;
}

/* ===============================
   COMMON ICONS - ئایکۆنە باوەکان (سپی و مۆدێرن)
   =============================== */
.icon-home {
  color: white;
}
.icon-home::before {
  content: "⌂";
  font-size: 18px;
}

.icon-user {
  color: white;
}
.icon-user::before {
  content: "👤";
  filter: grayscale(100%) brightness(200%);
}

.icon-email {
  color: white;
}
.icon-email::before {
  content: "✉";
  font-size: 16px;
}

.icon-phone {
  color: white;
}
.icon-phone::before {
  content: "☎";
  font-size: 16px;
}

.icon-location {
  color: white;
}
.icon-location::before {
  content: "📍";
  filter: grayscale(100%) brightness(200%);
}

.icon-search {
  color: white;
}
.icon-search::before {
  content: "🔍";
  filter: grayscale(100%) brightness(200%);
}

.icon-edit {
  color: white;
}
.icon-edit::before {
  content: "✎";
  font-size: 16px;
}

.icon-delete {
  color: white;
}
.icon-delete::before {
  content: "🗑";
  filter: grayscale(100%) brightness(200%);
}

.icon-save {
  color: white;
}
.icon-save::before {
  content: "💾";
  filter: grayscale(100%) brightness(200%);
}

.icon-download {
  color: white;
}
.icon-download::before {
  content: "⬇";
  font-size: 18px;
}

.icon-upload {
  color: white;
}
.icon-upload::before {
  content: "⬆";
  font-size: 18px;
}

.icon-menu {
  color: white;
}
.icon-menu::before {
  content: "☰";
  font-size: 18px;
}

.icon-close {
  color: white;
}
.icon-close::before {
  content: "✕";
  font-size: 16px;
  font-weight: bold;
}

.icon-check {
  color: white;
}
.icon-check::before {
  content: "✓";
  font-size: 18px;
  font-weight: bold;
}

.icon-warning {
  color: white;
}
.icon-warning::before {
  content: "⚠";
  font-size: 18px;
}

.icon-info {
  color: white;
}
.icon-info::before {
  content: "ⓘ";
  font-size: 16px;
}

.icon-error {
  color: white;
}
.icon-error::before {
  content: "✕";
  font-size: 16px;
  font-weight: bold;
}

.icon-success {
  color: white;
}
.icon-success::before {
  content: "✓";
  font-size: 18px;
  font-weight: bold;
}

/* ===============================
   ARROW ICONS - ئایکۆنی تیر (سپی)
   =============================== */
.icon-arrow-up {
  color: white;
}
.icon-arrow-up::before {
  content: "↑";
  font-size: 18px;
  font-weight: bold;
}

.icon-arrow-down {
  color: white;
}
.icon-arrow-down::before {
  content: "↓";
  font-size: 18px;
  font-weight: bold;
}

.icon-arrow-left {
  color: white;
}
.icon-arrow-left::before {
  content: "←";
  font-size: 18px;
  font-weight: bold;
}

.icon-arrow-right {
  color: white;
}
.icon-arrow-right::before {
  content: "→";
  font-size: 18px;
  font-weight: bold;
}

/* ===============================
   SOCIAL MEDIA ICONS - لۆگۆی مۆدێرنی تۆڕە کۆمەڵایەتییەکان (سپی)
   =============================== */

/* ئایکۆنی یوتوب - Play Button */
.icon-youtube {
  background-color: transparent;
  color: white;
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-youtube::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

/* ئایکۆنی فەیسبووک - f Logo */
.icon-facebook {
  background-color: transparent;
  color: white;
  width: 24px;
  height: 24px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
}

.icon-facebook::before {
  content: "f";
}

/* ئایکۆنی تیلیگرام - Paper Plane */
.icon-telegram {
  background-color: transparent;
  color: white;
  width: 24px;
  height: 24px;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  transform: rotate(-45deg);
}

.icon-telegram::before {
  content: "✈";
  display: block;
  transform: rotate(45deg);
}

/* ئایکۆنی تیکتۆک - Musical Note */
.icon-tiktok {
  background-color: transparent;
  color: white;
  width: 24px;
  height: 24px;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  position: relative;
}

.icon-tiktok::before {
  content: "♪";
  font-weight: bold;
}

/* ئایکۆنی ئینستاگرام - Camera/Square */
.icon-instagram {
  background-color: transparent;
  color: white;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 6px;
  position: relative;
  box-sizing: border-box;
}

.icon-instagram::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.icon-instagram::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  background-color: white;
  border-radius: 50%;
}

/* ئایکۆنی تویتەر/X - Bird or X */
.icon-twitter {
  background-color: transparent;
  color: white;
  width: 24px;
  height: 24px;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
}

.icon-twitter::before {
  content: "X";
  font-family: Arial, sans-serif;
}

/* ئایکۆنی واتساپ - Phone with Chat */
.icon-whatsapp {
  background-color: transparent;
  color: white;
  width: 24px;
  height: 24px;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
}

.icon-whatsapp::before {
  content: "💬";
  filter: grayscale(100%) brightness(200%);
}

/* ئایکۆنی لینکدین - in Logo */
.icon-linkedin {
  background-color: transparent;
  color: white;
  width: 24px;
  height: 24px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  border: 2px solid white;
  border-radius: 3px;
  box-sizing: border-box;
}

.icon-linkedin::before {
  content: "in";
}

/* هۆڤەر ئیفێکت بۆ هەموو ئایکۆنەکان */
.icon-youtube:hover,
.icon-facebook:hover,
.icon-telegram:hover,
.icon-tiktok:hover,
.icon-instagram:hover,
.icon-twitter:hover,
.icon-whatsapp:hover,
.icon-linkedin:hover {
  opacity: 0.7;
  transform: scale(1.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* بۆ کە دەتانەوێت قەبارەیان گەورە بکەن */
.icon-large-social {
  transform: scale(1.5);
  margin: 8px;
}

/* ===============================
   CUSTOM ICON STYLES - ستایلی ئایکۆنی تایبەت (سپی)
   =============================== */
.icon-rounded {
  border-radius: 50%;
  padding: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-bordered {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 4px;
  border-radius: 4px;
}

.icon-colored {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 4px;
}

.icon-hover:hover {
  opacity: 0.7;
  transform: scale(1.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* هۆڤەر ئیفێکت بۆ هەموو ئایکۆنەکان */
.icon:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* ===============================
   ICON WITH TEXT - ئایکۆن لەگەڵ تێکست
   =============================== */
.icon-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-text .icon {
  flex-shrink: 0;
}


/* Modern Service Cards - کارتەکانی خزمەتگوزاری نوێ */
.modern-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.modern-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
}

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

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

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

.default-service-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 3rem;
    color: white;
}

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

.modern-service-card:hover .service-overlay {
    opacity: 1;
}

.service-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-price-overlay {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Responsive for Services */
@media (max-width: 768px) {
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
}

.service-image img,
.project-image img,
.course-image img {
    object-fit: contain;
    object-position: center;
    background: #f8fafc;
    padding: 10px;
}