/**
 * TARQEYAH PORTFOLIO - OPTIMIZED INDEX PAGE STYLES
 * Performance-Enhanced Premium Design
 */

/* ========== GLOBAL STYLES ========== */
body {
    padding-top: 90px;
}

/* ========== HERO SECTION ========== */
.tarqeyah-hero-supreme {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.tarqeyah-hero-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.tarqeyah-hero-gradient-orbs .tarqeyah-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    will-change: transform;
}

.tarqeyah-orb-hero-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4d61f4, transparent);
    top: -200px;
    left: -200px;
    animation: tarqeyahOrbFloatHero1 20s ease-in-out infinite;
}

.tarqeyah-orb-hero-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #cb89ff, transparent);
    bottom: -150px;
    right: -150px;
    animation: tarqeyahOrbFloatHero2 25s ease-in-out infinite;
}

.tarqeyah-orb-hero-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #d7fe7c, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: tarqeyahOrbFloatHero3 30s ease-in-out infinite;
}

@keyframes tarqeyahOrbFloatHero1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, -100px); }
}

@keyframes tarqeyahOrbFloatHero2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-80px, 80px); }
}

@keyframes tarqeyahOrbFloatHero3 {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(calc(-50% + 60px), calc(-50% - 60px)); }
}

.tarqeyah-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 100px 20px;
}

.tarqeyah-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tarqeyah-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.tarqeyah-badge-icon {
    font-size: 18px;
    animation: tarqeyahBadgeIconSpin 3s ease-in-out infinite;
}

@keyframes tarqeyahBadgeIconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.tarqeyah-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.tarqeyah-title-line {
    display: block;
    color: var(--text-white);
}

.tarqeyah-title-line .tarqeyah-word {
    display: inline-block;
    margin: 0 12px;
}

.tarqeyah-title-gradient {
    background: linear-gradient(135deg, #4d61f4, #cb89ff, #d7fe7c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tarqeyahGradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes tarqeyahGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tarqeyah-hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.tarqeyah-hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.tarqeyah-hero-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tarqeyah-hero-cta-primary:hover {
    transform: translateY(-3px);
}

.tarqeyah-hero-cta-primary .tarqeyah-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    z-index: 0;
}

.tarqeyah-hero-cta-primary .tarqeyah-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
}

.tarqeyah-hero-cta-primary .tarqeyah-cta-icon {
    transition: transform 0.3s ease;
}

.tarqeyah-hero-cta-primary:hover .tarqeyah-cta-icon {
    transform: translateX(5px);
}

.tarqeyah-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tarqeyah-hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-lime);
    transform: translateY(-3px);
}

.tarqeyah-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.tarqeyah-stat-item {
    text-align: center;
}

.tarqeyah-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-lime);
    margin-bottom: 8px;
}

.tarqeyah-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tarqeyah-stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.tarqeyah-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.tarqeyah-scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.tarqeyah-scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-lime);
    border-radius: 2px;
    animation: tarqeyahScrollWheel 2s ease-in-out infinite;
}

@keyframes tarqeyahScrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.5; }
}

.tarqeyah-scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== PORTFOLIO SECTION ========== */
.tarqeyah-portfolio-supreme {
    position: relative;
    padding: 120px 20px;
    background: var(--text-white);
}

.tarqeyah-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tarqeyah-bg-pattern {
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(77, 97, 244, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(77, 97, 244, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.tarqeyah-portfolio-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.tarqeyah-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.tarqeyah-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(77, 97, 244, 0.1);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tarqeyah-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: tarqeyahBadgeDotPulse 2s ease-in-out infinite;
}

@keyframes tarqeyahBadgeDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.tarqeyah-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tarqeyah-title-highlight {
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tarqeyah-section-description {
    font-size: 18px;
    color: rgba(35, 35, 35, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.tarqeyah-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tarqeyah-portfolio-card {
    background: var(--text-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(77, 97, 244, 0.1);
}

.tarqeyah-portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(77, 97, 244, 0.2);
}

.tarqeyah-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f6f5f2, #e8e8e8);
}

.tarqeyah-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.tarqeyah-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 97, 244, 0.9), rgba(203, 137, 255, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tarqeyah-portfolio-card:hover .tarqeyah-card-overlay {
    opacity: 1;
}

.tarqeyah-overlay-link {
    width: 60px;
    height: 60px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.tarqeyah-overlay-link:hover {
    transform: scale(1.2);
}

.tarqeyah-card-content {
    padding: 30px;
}

.tarqeyah-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tarqeyah-tag {
    padding: 6px 14px;
    background: rgba(77, 97, 244, 0.1);
    border-radius: 20px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
}

.tarqeyah-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.tarqeyah-card-description {
    font-size: 15px;
    color: rgba(35, 35, 35, 0.7);
    line-height: 1.6;
}

.tarqeyah-portfolio-cta {
    text-align: center;
}

.tarqeyah-view-all-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tarqeyah-view-all-btn:hover {
    transform: translateY(-3px);
}

.tarqeyah-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tarqeyah-btn-icon {
    transition: transform 0.3s ease;
}

.tarqeyah-view-all-btn:hover .tarqeyah-btn-icon {
    transform: translateX(5px);
}

.tarqeyah-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
    transition: left 0.6s ease;
}

.tarqeyah-view-all-btn:hover .tarqeyah-btn-shine {
    left: 100%;
}

/* ========== EXPERTISE SECTION ========== */
.tarqeyah-expertise-supreme {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f6f5f2 0%, #ffffff 100%);
}

.tarqeyah-expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tarqeyah-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.tarqeyah-expertise-card {
    padding: 40px;
    background: var(--text-white);
    border-radius: 20px;
    border: 2px solid rgba(77, 97, 244, 0.1);
    transition: all 0.4s ease;
}

.tarqeyah-expertise-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(77, 97, 244, 0.15);
}

.tarqeyah-expertise-card .tarqeyah-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 32px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.tarqeyah-expertise-card:hover .tarqeyah-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.tarqeyah-expertise-card .tarqeyah-card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.tarqeyah-expertise-card .tarqeyah-card-description {
    font-size: 15px;
    color: rgba(35, 35, 35, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tarqeyah-card-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tarqeyah-tech-badge {
    padding: 8px 16px;
    background: rgba(77, 97, 244, 0.1);
    border-radius: 20px;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
}

/* ========== CLIENTS SECTION ========== */
.tarqeyah-clients-supreme {
    padding: 120px 20px;
    background: var(--text-white);
}

.tarqeyah-clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tarqeyah-clients-marquee {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.tarqeyah-marquee-content {
    display: flex;
    gap: 60px;
    animation: tarqeyahMarqueeScroll 30s linear infinite;
}

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

.tarqeyah-client-logo {
    min-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--text-white);
    border-radius: 16px;
    border: 2px solid rgba(77, 97, 244, 0.1);
    transition: all 0.3s ease;
}

.tarqeyah-client-logo:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(77, 97, 244, 0.15);
}

.tarqeyah-client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease;
}

.tarqeyah-client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ========== ACHIEVEMENTS SECTION ========== */
.tarqeyah-achievements-supreme {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    overflow: hidden;
}

.tarqeyah-achievements-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tarqeyah-bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 50%, rgba(77, 97, 244, 0.15), transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(203, 137, 255, 0.15), transparent 50%);
}

.tarqeyah-achievements-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.tarqeyah-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tarqeyah-achievement-card {
    position: relative;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.tarqeyah-achievement-card:hover {
    background: rgba(77, 97, 244, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-10px);
}

.tarqeyah-achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 36px;
    transition: transform 0.3s ease;
}

.tarqeyah-achievement-card:hover .tarqeyah-achievement-icon {
    transform: scale(1.1) rotate(10deg);
}

.tarqeyah-achievement-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-lime);
    margin-bottom: 12px;
}

.tarqeyah-achievement-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.tarqeyah-achievement-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(77, 97, 244, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tarqeyah-achievement-card:hover .tarqeyah-achievement-glow {
    opacity: 1;
}

/* ========== CTA SECTION ========== */
.tarqeyah-cta-supreme {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    overflow: hidden;
}

.tarqeyah-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tarqeyah-cta-gradient {
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 50%, rgba(215, 254, 124, 0.2), transparent 50%),
            radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
}

.tarqeyah-cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tarqeyah-cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
}

.tarqeyah-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
}

.tarqeyah-cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.tarqeyah-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tarqeyah-cta-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tarqeyah-cta-btn-primary:hover {
    transform: translateY(-3px);
}

.tarqeyah-cta-btn-primary .tarqeyah-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-white);
    z-index: 0;
}

.tarqeyah-cta-btn-primary .tarqeyah-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 700;
}

.tarqeyah-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-white);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tarqeyah-cta-btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .tarqeyah-hero-supreme {
        min-height: auto;
        padding: 80px 20px;
    }

    .tarqeyah-hero-title {
        font-size: 48px;
    }

    .tarqeyah-title-line .tarqeyah-word {
        margin: 0 6px;
    }

    .tarqeyah-hero-description {
        font-size: 16px;
    }

    .tarqeyah-hero-stats {
        gap: 30px;
    }

    .tarqeyah-stat-number {
        font-size: 36px;
    }

    .tarqeyah-stat-divider {
        display: none;
    }

    .tarqeyah-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .tarqeyah-expertise-grid {
        grid-template-columns: 1fr;
    }

    .tarqeyah-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tarqeyah-achievement-number {
        font-size: 42px;
    }

    .tarqeyah-cta-content {
        padding: 40px 30px;
    }

    .tarqeyah-cta-buttons {
        flex-direction: column;
    }

    .tarqeyah-cta-btn-primary,
    .tarqeyah-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .tarqeyah-section-title {
        font-size: 36px;
    }

    .tarqeyah-section-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tarqeyah-hero-title {
        font-size: 36px;
    }

    .tarqeyah-hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .tarqeyah-hero-cta-primary,
    .tarqeyah-hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .tarqeyah-achievements-grid {
        grid-template-columns: 1fr;
    }

    .tarqeyah-portfolio-card {
        border-radius: 16px;
    }

    .tarqeyah-card-image {
        height: 220px;
    }

    .tarqeyah-card-content {
        padding: 24px;
    }

    .tarqeyah-expertise-card {
        padding: 30px;
    }

    .tarqeyah-client-logo {
        min-width: 150px;
    }
}