/* Continue in next part... */


/* ========================================
   8. SKILLS SECTION
======================================== */

#skills {
    background: linear-gradient(180deg, var(--dark-navy) 0%, #0d1b3a 100%);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.skill-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 149, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 149, 0, 0.15);
}

.skill-number {
    font-size: clamp(40px, 6vw, 54px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-orange);
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.skill-card h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 20px;
    font-weight: 700;
}

.skill-card ul {
    list-style: none;
    padding: 0;
}

.skill-card li {
    color: var(--gray);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.6;
}

.skill-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b00 100%);
    border-radius: 4px;
}

.skill-card li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 11px;
}


/* ========================================
   9. SERVICES SECTION
======================================== */

#services {
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    padding: 45px 35px;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.8) 0%, rgba(10, 17, 40, 0.9) 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ff7a00 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 149, 0, 0.3);
    box-shadow: 0 25px 60px rgba(255, 149, 0, 0.25);
}

.service-card.highlight {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a00 100%);
    border-color: var(--primary-orange);
}

.service-card.highlight::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 149, 0, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.service-card.highlight .service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.service-card i {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-orange);
}

.service-card.highlight i {
    color: var(--white);
}

.service-content h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}


/* ========================================
   10. PARTNERS SECTION
======================================== */

#partners {
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--light-navy) 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.partner-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(255, 149, 0, 0.3);
}

.partner-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-card:hover img {
    filter: grayscale(0%);
}


/* ========================================
   11. CONTACT SECTION
======================================== */

#contact {
    background: linear-gradient(135deg, #0a1128 0%, #1a2744 50%, #0a1128 100%);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-info h3 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-info p {
    color: var(--gray);
    font-size: clamp(14px, 2vw, 17px);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    background: rgba(255, 149, 0, 0.1);
    border-color: var(--primary-orange);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-orange);
    min-width: 40px;
    text-align: center;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 16px);
    transition: color 0.3s;
}

.contact-item:hover a {
    color: var(--primary-orange);
}

.contact-container {
    background: rgba(26, 39, 68, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(30px, 5vw, 50px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-container > p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: clamp(13px, 1.5vw, 15px);
}

.message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: none;
    align-items: center;
    gap: 12px;
    font-size: clamp(13px, 1.5vw, 15px);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.success {
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid #4CAF50;
    color: #4CAF50;
}

.message.error {
    background: rgba(244, 67, 54, 0.15);
    border: 2px solid #f44336;
    color: #f44336;
}

.message i {
    font-size: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: clamp(13px, 1.5vw, 15px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a00 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* ========================================
   12. FOOTER
======================================== */

footer {
    background: #050a14;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-weight: 800;
}

.footer-about p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 14px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 149, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 18px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.social-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}


/* ========================================
   13. MOBILE & iOS OPTIMIZATIONS
======================================== */

/* iOS Safari Fixes */
@supports (-webkit-touch-callout: none) {
    .hero-image img {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    input, textarea {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* Fix for iOS input zoom */
@media screen and (max-width: 768px) {
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* Better tap targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .tab-btn,
    .stat-box,
    .about-stat,
    .country-card,
    .sector-card,
    .skill-card,
    .service-card,
    .partner-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links a {
        padding: 15px 0;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ========================================
   14. RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 30px;
        gap: 25px;
        transition: left 0.4s;
        align-items: flex-start;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        padding: 100px 5% 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .experience-tabs {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .countries-grid,
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        position: static;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .countries-grid,
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}/* 
 * Amr Farag Portfolio - Main Stylesheet
 * Easy to edit and maintain
 */

/* ========================================
   1. VARIABLES & RESET
======================================== */

:root {
    --primary-orange: #FF9500;
    --dark-navy: #0a1128;
    --light-navy: #1a2744;
    --white: #ffffff;
    --gray: #8892a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-navy);
    color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body, html {
    overflow-x: hidden;
    width: 100%;
}


/* ========================================
   2. ANIMATED BACKGROUND
======================================== */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

.bg-animation span {
    position: absolute;
    display: block;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    animation: twinkle 3s infinite ease-in-out;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

.bg-animation span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.bg-animation span:nth-child(2) { left: 20%; top: 60%; animation-delay: 0.5s; }
.bg-animation span:nth-child(3) { left: 30%; top: 80%; animation-delay: 1s; }
.bg-animation span:nth-child(4) { left: 40%; top: 30%; animation-delay: 1.5s; }
.bg-animation span:nth-child(5) { left: 50%; top: 70%; animation-delay: 2s; }
.bg-animation span:nth-child(6) { left: 60%; top: 40%; animation-delay: 2.5s; }
.bg-animation span:nth-child(7) { left: 70%; top: 85%; animation-delay: 0.3s; }
.bg-animation span:nth-child(8) { left: 80%; top: 50%; animation-delay: 0.8s; }
.bg-animation span:nth-child(9) { left: 90%; top: 25%; animation-delay: 1.3s; }
.bg-animation span:nth-child(10) { left: 15%; top: 45%; animation-delay: 1.8s; }


/* ========================================
   3. NAVIGATION
======================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 10px 5%;
    background: rgba(10, 17, 40, 0.98);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.6);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}


/* ========================================
   4. HERO SECTION
======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.05) 0%, transparent 100%);
    transform: skewX(-15deg);
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.2) 0%, rgba(255, 149, 0, 0.05) 100%);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.hero h1 {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 580px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 550px;
}

.stat-box {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, rgba(255, 149, 0, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 149, 0, 0.2);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.stat-box h3 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-orange);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-box p {
    font-size: clamp(11px, 1.5vw, 13px);
    color: var(--gray);
    margin: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    width: clamp(250px, 40vw, 420px);
    height: clamp(250px, 40vw, 420px);
}

.image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-orange);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
    25% {border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;}
    50% {border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;}
    75% {border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;}
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}


/* ========================================
   5. SECTION COMMON STYLES
======================================== */

section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header .label {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    color: var(--gray);
    font-size: clamp(14px, 2vw, 18px);
    max-width: 600px;
    margin: 0 auto;
}


/* ========================================
   6. ABOUT SECTION
======================================== */

#about {
    position: relative;
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--light-navy) 100%);
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 149, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(26, 39, 68, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(30px, 5vw, 60px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.about-content p {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    margin-top: 45px;
}

.about-stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15) 0%, rgba(255, 149, 0, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.about-stat:hover::before {
    left: 100%;
}

.about-stat:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.25) 0%, rgba(255, 149, 0, 0.1) 100%);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
}

.about-stat h3 {
    font-size: clamp(32px, 5vw, 46px);
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-weight: 800;
}

.about-stat p {
    font-size: clamp(13px, 1.5vw, 16px);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}


/* ========================================
   7. EXPERIENCE SECTION (Countries & Sectors)
======================================== */

#experience {
    background: linear-gradient(180deg, var(--dark-navy) 0%, #0d1b3a 100%);
    position: relative;
    overflow: hidden;
}

#experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 149, 0, 0.05) 0%, transparent 70%);
}

.experience-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 149, 0, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a00 100%);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
}

.experience-content {
    display: none;
}

.experience-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.countries-grid,
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.country-card,
.sector-card {
    position: relative;
    padding: 30px 25px;
    background: rgba(26, 39, 68, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}

.country-card::before,
.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.1), transparent);
    transition: left 0.6s;
}

.country-card:hover::before,
.sector-card:hover::before {
    left: 100%;
}

.country-card:hover,
.sector-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.2);
    background: rgba(255, 149, 0, 0.1);
}

.country-flag {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.country-card:hover .country-flag {
    filter: grayscale(0%);
}

.country-card h3,
.sector-card h3 {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.sector-icon {
    font-size: 36px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.sector-card:hover .sector-icon {
    transform: scale(1.2) rotate(10deg);
}


/* Continue in next part... */
/* 
 * Mobile Optimizations - Clean Compact Version
 * This creates a cleaner, more streamlined mobile experience
 */

@media (max-width: 768px) {
    
    /* REDUCE PADDING - Cut scrolling by 40% */
    section {
        padding: 50px 5% !important;
    }
    
    .hero {
        min-height: auto !important;
        padding: 90px 5% 40px !important;
    }
    
    /* HERO - More compact */
    .hero-badge {
        font-size: 11px !important;
        padding: 6px 15px !important;
    }
    
    .hero h1 {
        margin-bottom: 15px !important;
    }
    
    .hero p {
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        margin-top: 25px !important;
    }
    
    .stat-box {
        padding: 15px 10px !important;
    }
    
    .stat-box h3 {
        font-size: 24px !important;
        margin-bottom: 3px !important;
    }
    
    .stat-box p {
        font-size: 10px !important;
    }
    
    /* Hide hero image on mobile */
    .hero-image {
        display: none !important;
    }
    
    /* ABOUT - Compact */
    .about-content {
        padding: 25px 20px !important;
    }
    
    .about-content p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 12px !important;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        margin-top: 25px !important;
    }
    
    .about-stat {
        padding: 20px 10px !important;
    }
    
    .about-stat h3 {
        font-size: 28px !important;
    }
    
    .about-stat p {
        font-size: 11px !important;
    }
    
    /* EXPERIENCE - Simplified */
    .section-header {
        margin-bottom: 40px !important;
    }
    
    .section-header .label {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }
    
    .section-header h2 {
        font-size: 32px !important;
        margin-bottom: 8px !important;
    }
    
    .section-header p {
        font-size: 14px !important;
    }
    
    .experience-tabs {
        gap: 10px !important;
        margin-bottom: 25px !important;
    }
    
    .tab-btn {
        padding: 10px 25px !important;
        font-size: 13px !important;
    }
    
    .countries-grid,
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
    
    .country-card,
    .sector-card {
        padding: 15px 10px !important;
    }
    
    .country-flag {
        font-size: 32px !important;
        margin-bottom: 8px !important;
    }
    
    .country-card h3,
    .sector-card h3 {
        font-size: 13px !important;
    }
    
    .sector-icon {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }
    
    /* SKILLS - Compact grid */
    .skills-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .skill-card {
        padding: 25px 20px !important;
    }
    
    .skill-number {
        font-size: 36px !important;
        margin-bottom: 10px !important;
    }
    
    .skill-card h3 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    .skill-card ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 15px;
    }
    
    .skill-card li {
        font-size: 12px !important;
        margin-bottom: 0 !important;
        padding-left: 20px !important;
    }
    
    .skill-card li::before {
        width: 14px !important;
        height: 14px !important;
    }
    
    .skill-card li::after {
        font-size: 9px !important;
        left: 3px !important;
    }
    
    /* SERVICES - 2 column grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .service-card {
        padding: 20px 15px !important;
        gap: 12px !important;
    }
    
    .service-icon-wrapper {
        width: 50px !important;
        height: 50px !important;
    }
    
    .service-card i {
        font-size: 22px !important;
    }
    
    .service-content h3 {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
    
    /* PARTNERS - 2 columns */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .partner-card {
        padding: 25px 15px !important;
    }
    
    /* CONTACT - Streamlined */
    .contact-wrapper {
        gap: 25px !important;
    }
    
    .contact-info h3 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    
    .contact-info p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }
    
    .contact-details {
        gap: 12px !important;
    }
    
    .contact-item {
        padding: 12px 15px !important;
    }
    
    .contact-item i {
        font-size: 20px !important;
        min-width: 35px !important;
    }
    
    .contact-item a {
        font-size: 14px !important;
    }
    
    .contact-container {
        padding: 25px 20px !important;
    }
    
    .contact-container h3 {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }
    
    .contact-container > p {
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }
    
    .form-group {
        margin-bottom: 18px !important;
    }
    
    .form-group label {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
    
    .form-group textarea {
        min-height: 100px !important;
    }
    
    .submit-btn {
        padding: 14px !important;
        font-size: 14px !important;
    }
    
    /* FOOTER - Compact */
    footer {
        padding: 40px 5% 20px !important;
    }
    
    .footer-top {
        gap: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .footer-about h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    .footer-about p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    .footer-links h4 {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .footer-links li {
        margin-bottom: 8px !important;
    }
    
    .footer-links a {
        font-size: 13px !important;
    }
    
    .social-links {
        gap: 10px !important;
        margin-top: 12px !important;
    }
    
    .social-links a {
        width: 38px !important;
        height: 38px !important;
        font-size: 15px !important;
    }
    
    .footer-bottom {
        padding-top: 20px !important;
        font-size: 12px !important;
    }
    
    /* Remove ALL animation delays on mobile */
    [data-aos] {
        transition-duration: 0.3s !important;
    }
    
    [data-aos][data-aos-delay] {
        transition-delay: 0s !important;
    }
}

/* Extra small screens - even more compact */
@media (max-width: 375px) {
    section {
        padding: 40px 4% !important;
    }
    
    .hero-stats,
    .about-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .countries-grid,
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}