/* =========================================================
   WSCCEG Global Styles
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #003366;
    --secondary-color: #c41e3a;
    --text-color: #333;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --font-main: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* =========================================================
   Top Bar
   ========================================================= */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85em;
    font-weight: 500;
}
.top-bar .container {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
.contact-info span { margin-right: 0; }
.contact-info a { color: var(--white); }
.contact-info a:hover { color: #ffc0c0; }

/* =========================================================
   Header & Nav
   ========================================================= */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.logo img { height: 110px; width: auto; max-width: 310px; object-fit: contain; }

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.95em;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}
.nav-links a i { font-size: 0.85em; }
.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('../images/hero-home.png');
    background-size: cover;
    background-position: center;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
.hero-content h1 {
    font-size: 3.2em;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-content p { font-size: 1.3em; margin-bottom: 35px; opacity: 0.92; }

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}
.btn:hover {
    background-color: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

/* =========================================================
   Stats Bar
   ========================================================= */
.stats-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item { padding: 10px; }
.stat-number {
    font-size: 2.8em;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 8px;
    display: block;
}
.stat-accent { color: #ff6b6b; }

/* =========================================================
   Sections
   ========================================================= */
section { padding: 80px 0; }

section h2 {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}
section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* =========================================================
   Cards & Grid
   ========================================================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.27), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.card img { transition: transform 0.5s ease; }
.card:hover img { transform: scale(1.04); }
.card h3 { margin-bottom: 12px; color: var(--primary-color); font-weight: 700; }
.card i { font-size: 2em; color: var(--secondary-color); margin-bottom: 18px; display: block; }

/* =========================================================
   Vision / Strategy Section
   ========================================================= */
.vision-strategy { background-color: var(--white); }
.content-block { margin-bottom: 40px; }

/* =========================================================
   CTA Band
   ========================================================= */
.cta-band {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005599 100%);
    color: var(--white);
    text-align: center;
    padding: 70px 20px;
}
.cta-band h2 { color: var(--white); font-size: 2.2em; }
.cta-band h2::after { background-color: var(--secondary-color); }
.cta-band p { font-size: 1.15em; margin-bottom: 30px; opacity: 0.9; }
.btn-outline {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 15px;
    transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--primary-color); }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border-top: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
}
.testimonial-card p { font-style: italic; color: #555; line-height: 1.7; }
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 14px;
}
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.author-avatar i { color: var(--white); font-size: 1.1em; }
.author-name { font-weight: 700; color: var(--primary-color); font-size: 0.95em; }
.author-title { font-size: 0.82em; color: #777; }

/* =========================================================
   Contact Form
   ========================================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}
.contact-info-col h2 { text-align: left; }
.contact-info-col h2::after { margin-left: 0; }
.contact-info-list { list-style: none; margin: 25px 0; }
.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1em;
}
.contact-info-list li i { color: var(--secondary-color); width: 20px; font-size: 1.1em; }

.contact-form-col .card { padding: 35px; }
.contact-form-col h3 { font-size: 1.4em; color: var(--primary-color); margin-bottom: 25px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9em; margin-bottom: 6px; color: #444; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 0.95em;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 5px; }
.form-submit .btn { border: none; cursor: pointer; font-family: var(--font-main); width: 100%; text-align: center; padding: 14px; font-size: 1em; }

/* Status messages */
.form-msg {
    display: none;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95em;
}
.form-msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-msg.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Map container */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 30px;
}
.map-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.93);
    padding: 14px 28px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   Job Cards
   ========================================================= */
.job-card { border-left: 5px solid var(--secondary-color); }
.job-card:hover { transform: translateX(6px) translateY(-4px); box-shadow: var(--shadow-hover); }

/* =========================================================
   Team Profiles
   ========================================================= */
.team-profile {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.team-profile h3 { color: var(--primary-color); margin-bottom: 6px; }
.team-role { color: var(--secondary-color); font-weight: 700; margin-bottom: 15px; display: block; }
.team-details ul { list-style: disc; margin-left: 20px; margin-top: 10px; }
.team-details ul li { margin-bottom: 5px; }

/* =========================================================
   Insight / Case Study
   ========================================================= */
.insight-card img { height: 200px; width: 100%; object-fit: cover; }

/* =========================================================
   Footer
   ========================================================= */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    margin-bottom: 18px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    display: inline-block;
    font-size: 1em;
    letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 10px; font-size: 0.95em; }
.footer-col a:hover { color: #ccc; }
.footer-col i { margin-right: 8px; color: #ff9999; }
.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.88em;
    opacity: 0.75;
}

/* =========================================================
   Scroll Animations
   ========================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 10px 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 12px 25px;
        border-bottom: none;
        border-top: 1px solid #f0f0f0;
        width: 100%;
    }
    .nav-links a:hover { background: #f9f9f9; }

    header { position: sticky; top: 0; }

    .hero-content h1 { font-size: 2em; }
    .hero-content p { font-size: 1em; }
    .hero { height: 480px; }

    section h2 { font-size: 1.8em; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-number { font-size: 2.2em; }

    .top-bar .container { justify-content: center; flex-direction: column; text-align: center; gap: 6px; }

    .job-card { flex-direction: column !important; gap: 15px; }

    .content-block { flex-direction: column !important; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.6em; }
    .btn { padding: 12px 22px; font-size: 0.88em; }
}

/* =========================================================
   Nav CTA Button
   ========================================================= */
.nav-cta-btn {
    background: var(--secondary-color);
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 6px;
    font-weight: 700 !important;
    border-bottom: none !important;
    transition: background 0.2s, transform 0.2s !important;
    white-space: nowrap;
}
.nav-cta-btn:hover { background: #a01830 !important; transform: translateY(-1px); color: #fff !important; }

/* =========================================================
   Section Eyebrow & Subtitle
   ========================================================= */
.section-eyebrow {
    text-align: center;
    font-size: 0.78em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05em;
    max-width: 600px;
    margin: -20px auto 50px;
    line-height: 1.7;
}

/* =========================================================
   Enterprise Hero
   ========================================================= */
.hero-enterprise {
    background: linear-gradient(135deg, #001a33 0%, #003366 55%, #004080 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-enterprise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-enterprise-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.hero-enterprise-left { flex: 1.2; min-width: 300px; }
.hero-enterprise-right { flex: 1; min-width: 280px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 0.8em;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.hero-tag i { color: #4ade80; font-size: 0.85em; }

.hero-enterprise-left h1 {
    font-size: 3em;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}
.hero-accent { color: #ff6b6b; }
.hero-sub {
    font-size: 1.1em;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95em;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

/* Metric cards on hero */
.hero-metric-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-metric-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: background 0.3s;
}
.hero-metric-card:hover { background: rgba(255,255,255,0.12); }
.hmc-number {
    display: block;
    font-size: 2.4em;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.hmc-label {
    font-size: 0.78em;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    line-height: 1.3;
}

/* =========================================================
   Client Logos Trust Strip
   ========================================================= */
.client-logos-strip {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #eef1f6;
}
.client-logos-label {
    text-align: center;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    font-weight: 600;
    margin-bottom: 28px;
}
.client-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.client-logo-slot {
    width: 150px;
    height: 58px;
    background: #f8fafc;
    border: 1.5px dashed #dde3ea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72em;
    color: #bbb;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: opacity 0.2s, border-color 0.2s;
}
.client-logo-slot:hover { opacity: 1; border-color: #bbb; }

/* =========================================================
   Stats Bar — 6 columns
   ========================================================= */
.stats-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}
.stats-grid-6 .stat-item {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 32px 10px;
    text-align: center;
}
.stats-grid-6 .stat-item:last-child { border-right: none; }

/* =========================================================
   Services Section
   ========================================================= */
.services-section { padding: 90px 0; background: #f8fafc; }
.services-grid { margin-top: 10px; }
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,51,102,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,51,102,0.14); }
.service-card-accent { height: 5px; }
.accent-blue { background: linear-gradient(90deg, #003366, #00519e); }
.accent-red  { background: linear-gradient(90deg, #c41e3a, #e63956); }
.accent-teal { background: linear-gradient(90deg, #006b6b, #00a3a3); }
.service-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25em;
    margin-bottom: 20px;
}
.icon-bg-blue { background: #e8f0fa; color: #003366; }
.icon-bg-red  { background: #fdeaed; color: #c41e3a; }
.icon-bg-teal { background: #e6f4f4; color: #006b6b; }
.service-card h3 { font-size: 1.2em; font-weight: 800; color: var(--primary-color); margin-bottom: 10px; }
.service-card p { color: #666; font-size: 0.93em; line-height: 1.65; margin-bottom: 20px; }
.service-metrics { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
.service-metrics li { display: flex; align-items: center; gap: 10px; font-size: 0.875em; font-weight: 600; color: #444; }
.service-metrics li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--secondary-color); flex-shrink: 0; }
.service-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.88em;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
    border-top: 1px solid #f0f2f5;
    padding-top: 18px;
}
.service-card-link:hover { color: var(--secondary-color); gap: 14px; }

/* =========================================================
   Why Egypt
   ========================================================= */
.why-egypt { padding: 90px 0; background: linear-gradient(135deg, #001a33 0%, #003366 100%); }
.why-egypt h2 { color: #fff; font-size: 2em; }
.why-egypt h2::after { background: #ff6b6b; }
.why-egypt-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 1em;
    margin: -20px auto 50px;
    max-width: 560px;
}
.egypt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.egypt-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}
.egypt-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.egypt-card-number { font-size: 2.6em; font-weight: 800; color: #ff6b6b; display: block; line-height: 1; margin-bottom: 8px; }
.egypt-card-label { font-size: 1em; font-weight: 700; color: #fff; margin-bottom: 10px; display: block; }
.egypt-card-desc { font-size: 0.82em; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* =========================================================
   Certifications Strip
   ========================================================= */
.certs-strip { padding: 70px 0; background: #fff; }
.certs-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.cert-badge {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    border: 2px solid #eef1f6;
    border-radius: 14px;
    padding: 26px 28px;
    min-width: 130px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
}
.cert-badge:hover { border-color: var(--primary-color); box-shadow: 0 6px 24px rgba(0,51,102,0.09); transform: translateY(-3px); }
.cert-badge i { font-size: 2em; color: var(--primary-color); }
.cert-badge strong { font-size: 0.87em; color: var(--primary-color); font-weight: 700; text-align: center; }
.cert-badge span { font-size: 0.72em; color: #aaa; text-align: center; }

/* =========================================================
   Testimonial Stars
   ========================================================= */
.testimonial-stars { color: #f59e0b; margin-bottom: 14px; font-size: 0.85em; letter-spacing: 2px; }

/* =========================================================
   Responsive additions
   ========================================================= */
@media (max-width: 1024px) {
    .stats-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .stats-grid-6 .stat-item { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
    .hero-enterprise-left h1 { font-size: 2.4em; }
}
@media (max-width: 768px) {
    .stats-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .hero-enterprise { padding: 60px 0; }
    .hero-enterprise-left h1 { font-size: 2em; }
    .hero-enterprise-right { display: none; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .egypt-grid { grid-template-columns: 1fr 1fr; }
    .certs-grid { gap: 12px; }
    .cert-badge { min-width: 110px; padding: 20px 18px; }
}
@media (max-width: 480px) {
    .hero-enterprise-left h1 { font-size: 1.7em; }
    .egypt-grid { grid-template-columns: 1fr; }
    .stats-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .client-logos-grid { gap: 12px; }
    .client-logo-slot { width: 130px; height: 50px; font-size: 0.68em; }
}
