/* ========== RESET & VARIABLES START ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Light Mode Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #1a1a1a;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --accent: #ff6b35;
    --accent-hover: #ff8c42;
    --border: #333;
    --nav-bg: rgba(10, 10, 10, 0.95);
}

/* Dark Mode (default) */
body.light-mode {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --accent: #ff6b35;
    --accent-hover: #e55a2a;
    --border: #ddd;
    --nav-bg: rgba(245, 245, 245, 0.95);
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}
/* ========== RESET & VARIABLES END ========== */

/* ========== RTL SUPPORT START ========== */
body.rtl {
    direction: rtl;
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

body.rtl .nav-links {
    gap: 1.5rem;
}

body.rtl .btn-outline {
    margin-left: 0;
    margin-right: 1rem;
}

body.rtl .contact-details i {
    margin-right: 0;
    margin-left: 1rem;
}

body.rtl .timeline-item {
    border-left: none;
    border-right: 4px solid var(--accent);
}

body.rtl .timeline-item:hover {
    transform: translateX(-5px);
}

body.rtl .project-links a:hover {
    transform: translateX(-3px);
}

body.rtl .social-links-home {
    justify-content: flex-end;
}
/* ========== RTL SUPPORT END ========== */

/* ========== CUSTOM SCROLLBAR START ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}
/* ========== CUSTOM SCROLLBAR END ========== */

/* ========== NAVIGATION BAR STYLES START ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: 0.3s;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-btn {
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 40px;
    color: #fff !important;
}

.nav-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.icon-btn {
    background: transparent;
    border: 1px solid var(--accent);
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--accent);
    font-size: 1.1rem;
    transition: 0.3s;
}

.icon-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* ========== NAVIGATION BAR STYLES END ========== */

/* ========== HERO / HOME SECTION STYLES START ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 8% 4rem;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.typed-container {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#typed {
    color: var(--accent);
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    animation: pulse 0.5s ease;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--accent);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 350px;
    height: 350px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
    transition: 0.3s;
    animation: float 3s ease-in-out infinite;
}

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

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 70px rgba(255, 107, 53, 0.5);
}

/* Follow me section in Home */
.social-links-home {
    margin-top: 2rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-links-home span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.social-links-home a {
    color: var(--text-primary);
    background: var(--bg-card);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid var(--border);
    font-size: 1.2rem;
}

.social-links-home a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: #fff;
}
/* ========== HERO / HOME SECTION STYLES END ========== */

/* ========== GENERAL SECTION STYLES START ========== */
section {
    padding: 5rem 8%;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}
/* ========== GENERAL SECTION STYLES END ========== */

/* ========== ABOUT SECTION NEW DESIGN START ========== */
.about-content-new {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-left {
    flex: 1.2;
}

.about-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.about-description strong {
    color: var(--accent);
    font-weight: 600;
}

.about-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    position: relative;
}

.about-quote i {
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.about-quote p {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1rem;
}

.about-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid var(--border);
}

.about-feature:hover {
    transform: translateX(5px);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .about-tagline {
        font-size: 1.4rem;
    }
    .about-feature:hover {
        transform: translateX(0);
    }
    body.rtl .about-feature:hover {
        transform: translateX(0);
    }
    body.rtl .about-quote {
        border-left: none;
        border-right: 4px solid var(--accent);
    }
}
/* ========== ABOUT SECTION STYLES END ========== */

/* ========== SKILLS SECTION STYLES START ========== */
/* ========== SKILLS SECTION NEW DESIGN START ========== */
.skills-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.skills-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--border);
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-primary);
    transition: 0.3s;
}

.tab-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skills-content-wrapper {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.skills-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
}

.skills-header p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-badge {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    transition: 0.3s;
}

.skill-badge:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.soft-skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.soft-skill-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.soft-skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.soft-skill-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: inline-block;
}

.soft-skill-card span {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .skills-tabs {
        gap: 0.8rem;
    }
    .tab-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    .skills-content-wrapper {
        padding: 1.5rem;
    }
    .skills-header h3 {
        font-size: 1.25rem;
    }
    .soft-skills-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
/* ========== SKILLS SECTION STYLES END ========== */

/* ========== PROJECTS SECTION STYLES START ========== */
/* ========== PROJECTS SECTION NEW DESIGN START ========== */
.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-mini-title {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.projects-header .section-title {
    margin-bottom: 1rem;
}

.projects-header .section-title::after {
    display: none;
}

.projects-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.projects-grid-new {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.project-card-new {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.project-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.project-card-new.reverse {
    flex-direction: row-reverse;
}

.project-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: 0.5s;
}

.project-img img:hover {
    transform: scale(1.05);
}

.project-card-content {
    flex: 1;
}

.project-card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.project-card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    background: rgba(255, 107, 53, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.project-link:hover {
    gap: 12px;
    color: var(--accent-hover);
}

.projects-footer {
    text-align: center;
    margin-top: 4rem;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    transition: 0.3s;
}

.view-all-link:hover {
    gap: 15px;
    color: var(--accent);
}

@media (max-width: 992px) {
    .project-card-new,
    .project-card-new.reverse {
        flex-direction: column;
    }
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-card-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-card-new {
        padding: 1.5rem;
    }
}
/* ========== PROJECTS SECTION STYLES END ========== */

/* ========== EXPERIENCE SECTION STYLES START ========== */
/* ========== EXPERIENCE SECTION NEW DESIGN START ========== */
.experience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-mini-title {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.experience-header .section-title {
    margin-bottom: 1rem;
}

.experience-header .section-title::after {
    display: none;
}

.experience-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.experience-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.experience-left {
    flex: 1;
    text-align: right;
    padding-right: 1rem;
}

.exp-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.exp-company {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

.experience-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30px;
}

.exp-dot {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.exp-line {
    flex: 1;
    width: 2px;
    background: var(--border);
    margin-top: 5px;
    min-height: 60px;
}

.experience-item:last-child .exp-line {
    display: none;
}

.experience-right {
    flex: 1;
    padding-left: 1rem;
}

.exp-date {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.exp-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.exp-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.exp-tech span {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: 0.3s;
}

.exp-tech span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* RTL Support for Experience */
body.rtl .experience-left {
    text-align: left;
    padding-right: 0;
    padding-left: 1rem;
}

body.rtl .experience-right {
    padding-left: 0;
    padding-right: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .experience-item {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
        position: relative;
        padding-left: 1.5rem;
    }
    
    .experience-left {
        text-align: left;
        padding-right: 0;
    }
    
    .experience-center {
        display: none;
    }
    
    .experience-right {
        padding-left: 0;
    }
    
    .exp-date {
        display: inline-block;
    }
    
    .experience-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 10px;
        height: 10px;
        background: var(--accent);
        border-radius: 50%;
    }
    
    body.rtl .experience-item {
        padding-left: 0;
        padding-right: 1.5rem;
    }
    
    body.rtl .experience-item::before {
        left: auto;
        right: 0;
    }
    
    body.rtl .experience-left {
        text-align: right;
    }
}
/* ========== EXPERIENCE SECTION STYLES END ========== */

/* ========== CONTACT SECTION STYLES START ========== */
.contact-container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details i {
    color: var(--accent);
    margin-right: 1rem;
}

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

.social-links a {
    color: var(--text-primary);
    background: var(--bg-card);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px) rotate(360deg);
    color: #fff;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}
/* ========== CONTACT SECTION STYLES END ========== */

/* ========== FOOTER STYLES START ========== */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}
/* ========== FOOTER STYLES END ========== */

/* ========== ANIMATIONS START ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ========== ANIMATIONS END ========== */

/* ========== TOAST NOTIFICATION START ========== */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 2000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* ========== TOAST NOTIFICATION END ========== */

/* ========== RESPONSIVE STYLES START ========== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: 0.3s;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }

    section {
        padding: 3rem 5%;
    }

    body.rtl .btn-outline {
        margin-right: 0;
    }

    .social-links-home {
        justify-content: center;
    }
}
/* ========== TESTIMONIALS SECTION UPDATED ========== */
.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-mini-title {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.testimonials-header .section-title {
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.testimonials-header .section-title::after {
    display: none;
}

.testimonials-container {
    max-width: 750px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: 0.3s;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.12);
}

.testimonial-content {
    margin-bottom: 1.8rem;
    position: relative;
}

.testimonial-content i {
    font-size: 2.2rem;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1rem;
    display: inline-block;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
}

.client-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 53, 0.12);
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 0.8rem;
}

.client-platform i {
    font-size: 0.7rem;
    color: #f5b042;
    margin: 0;
}

.client-platform span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.testimonial-client h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.client-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* RTL Support */
body.rtl .testimonial-content i {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.8rem;
    }
    .testimonials-header .section-title {
        font-size: 1.8rem;
    }
    .testimonial-content p {
        font-size: 0.95rem;
    }
}
/* ========== TESTIMONIALS SECTION END ========== */
/* ========== CONTACT SECTION NEW DESIGN START ========== */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-mini-title {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.contact-header .section-title {
    margin-bottom: 1rem;
}

.contact-header .section-title::after {
    display: none;
}

.contact-desc {
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form-new {
    flex: 1.2;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.form-group-new {
    margin-bottom: 1.5rem;
}

.form-group-new label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: 0.3s;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.btn-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    gap: 12px;
}

.contact-info-new {
    flex: 0.9;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.contact-info-new h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--accent);
}

.info-text span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.info-text p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.availability-box {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    margin-top: 0.3rem;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.availability-text span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #22c55e;
    display: block;
    margin-bottom: 0.3rem;
}

.availability-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-form-new,
    .contact-info-new {
        padding: 1.5rem;
    }
    .info-item {
        gap: 0.8rem;
    }
}
/* ========== CONTACT SECTION NEW DESIGN END ========== */
/* ========== RESPONSIVE STYLES END ========== */

.tab-content {
    display: none !important;
}

.tab-content.active {
    display: block !important;
}
