        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: RB;
            background-color: #fff;
            color: #333;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* ---------- Splash Screen ---------- */
        .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #0A092E;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            animation: splashStayThenSlide 1s ease-in-out forwards;
            pointer-events: none;
        }

        @keyframes splashStayThenSlide {
            0% { transform: translateY(0); }
            50% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }

        .splash-logo {
            width: 5000px;
            height: 2000px;
            object-fit: fit;
        }

        /* ---------- Header ---------- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background-color 0.4s ease, box-shadow 0.3s ease;
            background-color: transparent;
            color: white;
        }

        header.scrolled {
            background-color: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            color: #0A092E;
        }

        .logo-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height:-webkit-fill-available;
        }

        .logo {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.4s ease;
        }

        .logo-light {
            opacity: 1;
        }

        .logo-dark {
            opacity: 0;
        }

        header.scrolled .logo-light {
            opacity: 0;
        }

        header.scrolled .logo-dark {
            opacity: 1;
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-left a, .nav-right a {
            text-decoration: none;
            color: inherit;
            font-weight: 600;
            transition: color 0.3s;
            font-size: 1rem;
        }

        .nav-left a:hover, .nav-right a:hover {
            color: #b5602a;
        }

        .lang-switch {
            background: none;
            border: 1px solid currentColor;
            padding: 5px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            color: inherit;
            transition: 0.3s;
            text-decoration: none;
        }
        .lang-switch:hover {
            background-color: #B5602A;
            border-color: #B5602A;
            color: #0A092E;
        }
        .contact-btn-header {
            background-color: #B5602A;
            color: #fff !important;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            text-decoration: none;
        }
        .contact-btn-header:hover {
            background-color: #0A092E;
            color: white !important;
        }

        /* ---------- Hero Section ---------- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
	background-image: url('../images/main-bg.avif');
	background-size: cover;
    background-position: center;
    background-attachment: fixed;  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 9, 46, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 20px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 20px;
            font-family: 'Cairo', sans-serif;
            background: linear-gradient(180deg, #fff 0%, #fff 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideGradient 3s infinite alternate;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            font-weight: 400;
            background: linear-gradient(180deg, #fff 0%, #fff 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideGradient 3s infinite alternate-reverse;
        }

        @keyframes slideGradient {
            0% { background-position: 0% 0%; }
            100% { background-position: 0% 100%; }
        }

        /* ---------- General Sections ---------- */
        section {
            padding: 160px 5%;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            color: #0A092E;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #ae5720;
            margin-bottom: 50px;
            font-weight: 400;
        }
        .section-title span {
            color: #B5602A;
        }
        
        .gold-text {
            color: #D4AF37;
        }

        /* About Section */
        .about {
            background-color: #0a092e;
            color: white;
        }
        .about .section-title {
            color: white;
        }
        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        .about-content.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .animated-title {
            background: linear-gradient(90deg, #c8682c, #fff, #B5602A);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shine 4s linear infinite;
        }
        @keyframes shine {
            to { background-position: 200% center; }
        }

        /* Values Section */
        .values {
            background-color: #fff;
            text-align: center;
        }
        .value-cards {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .value-card {
            font-size: 2.5rem;
            font-weight: 900;
                opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .value-card.visible {
    opacity: 1;
    transform: translateY(0);
}
        .value-card:nth-child(1) { color: #e07937; }
        .value-card:nth-child(2) { color: #ae5720; }
        .value-card:nth-child(3) { color: #81390a; }
        
        .value-card:nth-child(1) {
    transition-delay: 0.1s;
}

.value-card:nth-child(2) {
    transition-delay: 0.3s;
}

.value-card:nth-child(3) {
    transition-delay: 0.5s;
}
        .values-description {
            max-width: 1500px;
            margin: 0 auto 50px;
            font-size: 1.2rem;
            color: #B5602A;
            line-height: 1.7;
        }

        .values-description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.values-description.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
        .stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
        }
        .stat-icon {
            font-size: 3rem;
            color: #ae5720;
            margin-bottom: 10px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #0A092E;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #333;
        }

        /* Stats items with staggered animation */
.stats .stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stats .stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for stat items */
.stats .stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stats .stat-item:nth-child(2) {
    transition-delay: 0.3s;
}

.stats .stat-item:nth-child(3) {
    transition-delay: 0.5s;
}

        /* Separator */
        .separator {
            position: relative;
            height: 300px;
            /* replaced inline svg with a placeholder image url */
	          background-image: url('../images/seperater.jpg');
            background-size: cover;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 10px rgba(0,0,0);
        }
        .separator::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
        }
        .separator span {
            position: relative;
            z-index: 2;
        }

        /* Projects Slider - مصحح بالكامل */
        .projects {
            background: white;
            padding: 80px 5%;
        }
        
        .slider-container {
            position: relative;
            max-width: 700px;  /* زيادة الحجم */
            margin: 40px auto 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
        }
        
        .project-card {
            width: 100%;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .project-card img {
            width:100%;
            height: 500px;  /* تكبير الارتفاع */
            object-fit: cover;
            display: block;
        }
        
        .project-name {
            position: absolute;
            bottom: 0;
            right: 0;
            background: #b5602a;
            color: #fff;
            padding: 15px 35px;
            font-weight: bold;
            font-size: 1.5rem;
            border-top-left-radius: 30px;
            box-shadow: -5px -5px 20px rgba(0,0,0,0.2);
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #b5602a;
            color: #fff;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.8rem;
            z-index: 10;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .slider-btn:hover {
            background: #0A092E;
            color: #fff;
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-btn.prev {
            left: 20px;
        }
        
        .slider-btn.next {
            right: 20px;
        }

        /* Subsidiaries Section */
        .subsidiaries {
            background-color: #FAFAF7;
        }
        .subsidiaries-container {
            display: flex;
            gap: 30px;
            max-width: 2000px;
            margin: 0 auto;
            min-height: 450px;
        }
        .subsidiaries-list {
            flex: 1;
            display: flex;
            flex-direction: column;
			justify-content: space-evenly
        }
        .subsidiary-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            color: #c8682c;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .subsidiary-item.active {
            background-color: #ae5720;
            color: white;
            border-color: #b5602a;
        }
        .subsidiary-item:hover {
            background-color: #0A092E;
            color: white;
        }
        .subsidiary-item .placeholder-logo {
            width: 40px;
            height: 40px;
            background: #c8682c;
            border-radius: 50%;
            display: inline-block;
        }
        
        .subsidiary-center {
            flex: 1.5;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 450px;
            width: 100%;
        }
        .subsidiary-center img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.4s ease;
        }
        
        .subsidiary-info {
            flex: 1;
            background: #fff;
            color: #0a092e;
            padding: 30px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 450px;
            transition: opacity 0.4s ease;
        }
        .subsidiary-info h3 {
            color: #b5602a;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        .subsidiary-info p {
            line-height: 1.8;
        }

        /* Contact Section */
        .contact {
            /* replaced inline svg with a placeholder image url */
            background: #fff;
            background-size: cover;
            color: white;
        }
        .contact-container {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .contact-form {
            flex: 1;
            background: #0A092E;
            padding: 40px;
            border-radius: 20px;
        }
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #fff;
            border-radius: 8px;
            color: white;
            font-family: inherit;
        }
        .contact-form option {
            background: #0A092E;
        }
        .contact-form button {
            background: #fff;
            color: #0A092E;
            border: none;
            padding: 15px 30px;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.3s;
        }
        .contact-form button:hover {
            background: #b5602a;
        }
        .contact-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            color: #b5602a;
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.2rem;
        }
        .contact-info-item i {
            font-size: 2rem;
            width: 40px;
        }
        .contact-info-item a {
            color: #b5602a;
            text-decoration: none;
        }
        .map {
            margin-top: 50px;
            width: 100%;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
        }
        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background-color: #0A092E;
            color: white;
            padding: 60px 5% 30px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4 {
            color: #e07937;
            margin-bottom: 20px;
        }
        .footer-col a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-col a:hover {
            color: #D4AF37;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
		
		.slider {
    display: flex;
    width: 100%;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    direction: ltr;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #B5602A;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0A092E;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #0A092E;
}


/* Projects Section Mobile Fixes */
@media (max-width: 768px) {
    .prj-track {
        gap: 15px;
        padding: 0 4% 12px;
    }
    
    .prj-card {
        width: 280px;
        height: 400px;
    }
    
    .prj-img {
        height: 100%;
    }
    
    .prj-name {
        font-size: 1rem;
    }
    
    .prj-base {
        padding: 15px 18px 20px;
    }
    
    .prj-hover {
        padding: 20px 18px 24px;
    }
    
    .prj-h-name {
        font-size: 1rem;
    }
    
    .prj-h-desc {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .prj-h-btn {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .nav-left a, 
    .nav-right a,
    .contact-btn-header,
    .lang-switch,
    .btn-primary,
    .btn-secondary,
    .slider-btn,
    .acc-trigger,
    .ct-submit,
    .ct-social-btn,
    .ct-wa-badge,
    .city-group {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Increase tap targets */
    .nav-left a, 
    .nav-right a {
        padding: 8px 0;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .city-dot {
        r: 12;
        cursor: pointer;
    }
    
    /* Fix scrolling on touch */
    .prj-track {
        -webkit-overflow-scrolling: touch;
    }
}

    /* -------------------------------company sec ------------------------------ */

    

  * { margin:0; padding:0; box-sizing:border-box; }
  body { background:#f0f0f0; font-family:'Cairo',sans-serif; }

  .subs-section {
    background: #fff;
    padding: 80px 5% 100px;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    overflow: hidden;
    position: relative;
  }
.subs-section::after {
    content: '';
    position: absolute;
    inset: 0;

	background-image: url('../images/company-bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.25;

    pointer-events: none;
    z-index: 0;
}

  .subs-header { text-align: center; margin-bottom: 60px; position: relative; }
  .subs-header h2 { font-size: 2.6rem; font-weight: 900; color: #0A092E; margin-bottom: 10px; }
  .subs-header h2 span { color: #B5602A; }
  .subs-header p { font-size: 1rem; color: #ae5720; font-weight: 400; }

.accordion-wrap {
    max-width: 750px;
    margin-right: 0;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
  }

  .acc-item {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid rgba(181,96,42,0.12);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(10,9,46,0.05);
    transition: box-shadow 0.4s, border-color 0.4s, transform 0.3s;
    transform-origin: top center;
  }
  .acc-item:hover { box-shadow: 0 8px 32px rgba(181,96,42,0.1); border-color: rgba(181,96,42,0.3); }
  .acc-item.open { border-color: rgba(181,96,42,0.45); box-shadow: 0 12px 40px rgba(181,96,42,0.13); }

  .acc-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    position: relative;
    z-index: 1;
  }
  .acc-trigger::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(to left, #B5602A, #e07937);
    transition: width 0.55s cubic-bezier(0.4,0,0.2,1);
    border-radius: 2px;
  }
  .acc-item.open .acc-trigger::after { width: 100%; }

  /* Logo box — transparent bg, bigger size */
  .acc-logo-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: transparent;
    border: 1.5px solid rgba(181,96,42,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border 0.4s, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
    padding: 4px;
  }
  .acc-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* makes white bg transparent visually */
  }
  .acc-logo-box .logo-placeholder {
    font-size: 20px; font-weight: 900; color: #B5602A;
  }
  .acc-item.open .acc-logo-box {
    border-color: #B5602A;
    transform: scale(1.08) rotate(-3deg);
  }

  .acc-title-block { flex: 1; text-align: right; }
  .acc-title-block h3 { font-size: 1.3rem; font-weight: 900; color: #0A092E; margin: 0 0 4px; transition: color 0.35s; }
  .acc-title-block .acc-tag { font-size: 0.8rem; font-weight: 700; color: #ae5720; letter-spacing: 0.3px; }
  .acc-item.open .acc-title-block h3 { color: #B5602A; }

  .acc-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(181,96,42,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, border-color 0.3s;
    background: #FDF4EE;
  }
  .acc-arrow svg { width: 15px; height: 15px; stroke: #B5602A; fill: none; transition: stroke 0.3s; }
  .acc-item.open .acc-arrow { transform: rotate(180deg); background: #B5602A; border-color: #B5602A; }
  .acc-item.open .acc-arrow svg { stroke: #fff; }

  .acc-body { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1); }
  .acc-body-inner { padding: 0 28px 36px; padding-right: 106px; }

  .acc-divider {
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(181,96,42,0.2), transparent);
    margin-bottom: 24px;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.5s 0.1s ease;
  }
  .acc-item.open .acc-divider { transform: scaleX(1); }

  .acc-desc {
    font-size: 0.97rem; color: #555; line-height: 1.9; margin-bottom: 28px;
    font-weight: 400; max-width: 600px;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.4s 0.18s, transform 0.4s 0.18s;
  }
  .acc-item.open .acc-desc { opacity: 1; transform: translateY(0); }

  .acc-services-title {
    font-size: 0.999rem; font-weight: 700; color: rgba(181,96,42,0.81);
    text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 14px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.35s 0.25s, transform 0.35s 0.25s;
  }
  .acc-item.open .acc-services-title { opacity: 1; transform: translateY(0); }

  .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; margin-bottom: 24px; }
  .service-pill {
    display: flex; align-items: center; gap: 10px;
    background: #FAFAF7; border: 1px solid rgba(181,96,42,0.12);
    border-radius: 10px; padding: 11px 14px; cursor: default;
    opacity: 0; transform: translateX(16px);
    transition: background 0.2s, border 0.2s, opacity 0.35s, transform 0.35s;
  }
  .service-pill:hover { background: #FDF4EE; border-color: rgba(181,96,42,0.35); }
  .acc-item.open .service-pill:nth-child(1) { opacity:1; transform:translateX(0); transition-delay:0.28s; }
  .acc-item.open .service-pill:nth-child(2) { opacity:1; transform:translateX(0); transition-delay:0.32s; }
  .acc-item.open .service-pill:nth-child(3) { opacity:1; transform:translateX(0); transition-delay:0.36s; }
  .acc-item.open .service-pill:nth-child(4) { opacity:1; transform:translateX(0); transition-delay:0.40s; }
  .acc-item.open .service-pill:nth-child(5) { opacity:1; transform:translateX(0); transition-delay:0.44s; }
  .acc-item.open .service-pill:nth-child(6) { opacity:1; transform:translateX(0); transition-delay:0.48s; }
  .acc-item.open .service-pill:nth-child(7) { opacity:1; transform:translateX(0); transition-delay:0.52s; }
  .acc-item.open .service-pill:nth-child(8) { opacity:1; transform:translateX(0); transition-delay:0.56s; }

  .service-dot { width:7px; height:7px; border-radius:50%; background:#B5602A; flex-shrink:0; box-shadow:0 0 0 2px rgba(181,96,42,0.15); }
  .service-pill span { font-size:0.87rem; color:#444; font-weight:600; }

  .acc-highlights {
    display:flex; flex-wrap:wrap; gap:8px; margin-top:18px;
    opacity:0; transform:translateY(8px);
    transition: opacity 0.4s 0.55s, transform 0.4s 0.55s;
  }
  .acc-item.open .acc-highlights { opacity:1; transform:translateY(0); }
  .highlight-tag {
    background:#FDF4EE; border:1px solid rgba(181,96,42,0.22); color:#ae5720;
    font-size:0.78rem; font-weight:700; padding:5px 14px; border-radius:20px;
    transition: background 0.2s, transform 0.2s;
  }
  .highlight-tag:hover { background:rgba(181,96,42,0.12); transform:translateY(-1px); }

  .acc-number { font-size:0.75rem; font-weight:900; color:rgba(181,96,42,0.35); min-width:22px; text-align:center; transition:color 0.3s; }
  .acc-item.open .acc-number { color:#B5602A; }


    /* ──----------------------------------- MAP ---------------------------------------------------── */

    * { margin:0; padding:0; box-sizing:border-box; }
    body { font-family:'Cairo',sans-serif; background:#060624; }

    /* ── Section ── */
    .map-section {
      background:#0a092e;
      padding:80px 5%;
      direction:rtl;
    }

    /* ── Titles ── */
    .section-title {
      font-size:3rem; font-weight:900; color:#fff;
      text-align:center; margin-bottom:8px;
    }
    .section-title span { color:#e07937; }
    .section-subtitle-1 {
      text-align:center; font-size:1rem;
      color:rgba(255,255,255,0.45); margin-bottom:50px; font-weight:400;
    }

    /* ── Layout ── */
    .map-layout {
      display:flex; align-items:center; gap:40px;
      max-width:1150px; margin:0 auto;
      flex-direction:row-reverse; /* map visually on left */
    }

    /* ── Map ── */
    .map-wrap {
      flex:0 0 550px;
    }
    .map-wrap svg {
      width:100%; height:auto; display:block;
      filter:drop-shadow(0 20px 60px rgba(0,0,0,0.6));
    }

    /* city dots */
    .city-group { cursor:pointer; }

    .city-dot {
      fill:#C46A2B; transition:fill 0.2s;
      filter:drop-shadow(0 0 5px rgba(196,106,43,0.7));
    }
    .city-group.active .city-dot,
    .city-group:hover  .city-dot {
      fill:#fff;
      filter:drop-shadow(0 0 8px rgba(255,255,255,0.9));
    }

    .pulse {
      fill:none; stroke:#C46A2B; stroke-width:1.4;
      animation:pulse 2.4s ease-out infinite;
    }
    .city-group.active .pulse { stroke:#fff; }
    @keyframes pulse {
      0%   { r:10; opacity:0.7; }
      100% { r:30; opacity:0; }
    }

    /* city name BELOW the dot */
    .city-label {
      font-family:'Cairo',sans-serif;
      font-size:13px; font-weight:700;
      fill:#b5602a;
      pointer-events:none;
    }
    .city-group.active .city-label,
    .city-group:hover  .city-label { fill:#ae5720; }

    /* ── Info Panel ── */
    .info-panel {
      flex:1; min-height:360px;
      display:flex; align-items:center; justify-content:center;
    }

    .city-card {
      width:100%;
      background:rgba(255,255,255,0.04);
      border:1px solid rgba(255,255,255,0.1);
      border-radius:20px; overflow:hidden;
      opacity:0; transform:translateY(16px);
      transition:opacity 0.4s ease, transform 0.4s ease;
      backdrop-filter:blur(10px);
    }
    .city-card.visible { opacity:1; transform:translateY(0); }

    .city-card-img {
      width:100%; height:200px; object-fit:cover; display:block;
      border-bottom:1px solid rgba(255,255,255,0.08);
    }
    .city-card-body { padding:24px 28px; }
    .city-card-name {
      font-size:1.8rem; font-weight:900; color:#fff; margin-bottom:6px;
    }
    .city-card-tag {
      display:inline-block;
      background:rgba(181,96,42,0.25); color:#C46A2B;
      font-size:0.8rem; font-weight:700;
      padding:3px 12px; border-radius:20px;
      border:1px solid rgba(181,96,42,0.4);
      margin-bottom:16px;
    }
    .city-card-desc {
      font-size:0.95rem; color:rgba(255,255,255,0.65);
      line-height:1.9; font-weight:400;
    }

    /* placeholder */
    .placeholder {
      text-align:center; color:rgba(255,255,255,1); padding:60px 20px;
    }
    .placeholder-icon { font-size:3rem; margin-bottom:12px; opacity:0.4; }
    .placeholder p { font-size:1.5rem; }

    /* ── Responsive ── */
    @media (max-width:768px) {
      .map-layout { flex-direction:column; }
      .map-wrap   { flex:none; width:100%; max-width:400px; margin:0 auto; }
      .info-panel { width:100%; min-height:280px; }
    }


/*=================================== Contact us============================================================ */


@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');
*{box-sizing:border-box;margin:0;padding:0;}

.ct-section{
  background:#FAFAF7;
  font-family:'Cairo',sans-serif;
  direction:rtl;
  padding:90px 5% 100px;
  position:relative;
  overflow:hidden;
}
/* subtle dot grid */
.ct-section::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(rgba(181,96,42,0.07) 1px,transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
}

/* ── Header ── */
.ct-header{text-align:center;margin-bottom:60px;position:relative;}
.ct-header h2{font-size:2.6rem;font-weight:900;color:#0A092E;margin-bottom:10px;}
.ct-header h2 span{color:#B5602A;}
.ct-header p{color:#ae5720;font-size:1rem;font-weight:400;}

/* ── Main grid ── */
.ct-grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:28px;
  max-width:1100px;
  margin:0 auto;
  position:relative;
}

/* ══ LEFT COLUMN ══ */
.ct-left{display:flex;flex-direction:column;gap:20px;}

/* info card */
.ct-info-card{
  background:#0A092E;
  border-radius:24px;
  padding:40px 36px;
  position:relative;
  overflow:hidden;
  flex:1;
}
.ct-info-card::before{
  content:'';position:absolute;
  top:-80px;left:-80px;
  width:280px;height:280px;border-radius:50%;
  background:rgba(181,96,42,0.07);pointer-events:none;
}
.ct-info-card::after{
  content:'';position:absolute;
  bottom:-50px;right:-50px;
  width:200px;height:200px;border-radius:50%;
  background:rgba(181,96,42,0.05);pointer-events:none;
}

.ct-tagline{
  font-size:1.5rem;font-weight:900;color:#fff;
  line-height:1.45;margin-bottom:8px;
  position:relative;z-index:1;
}
.ct-tagline span{color:#e07937;}
.ct-tagline-sub{
  font-size:0.9rem;color:rgba(255,255,255,0.4);
  font-weight:400;margin-bottom:36px;
  position:relative;z-index:1;
}

/* contact rows */
.ct-contact-row{
  display:flex;align-items:center;gap:16px;
  margin-bottom:20px;position:relative;z-index:1;
  text-decoration:none;
}
.ct-contact-row:last-of-type{margin-bottom:0;}
.ct-icon-box{
  width:44px;height:44px;border-radius:12px;
  background:rgba(181,96,42,0.15);
  border:1px solid rgba(181,96,42,0.3);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:background 0.3s,transform 0.3s;
}
.ct-contact-row:hover .ct-icon-box{
  background:rgba(181,96,42,0.3);
  transform:scale(1.08);
}
.ct-icon-box svg{width:18px;height:18px;stroke:#B5602A;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.ct-contact-text{flex:1;}
.ct-contact-label{font-size:0.72rem;font-weight:700;color:rgba(255,255,255,0.35);letter-spacing:1px;text-transform:uppercase;margin-bottom:2px;}
.ct-contact-value{font-size:0.95rem;font-weight:700;color:#fff;transition:color 0.3s;}
.ct-contact-row:hover .ct-contact-value{color:#e07937;}

/* divider */
.ct-info-divider{
  height:1px;
  background:linear-gradient(to left,transparent,rgba(255,255,255,0.08),transparent);
  margin:24px 0;position:relative;z-index:1;
}

/* social row */
.ct-social{display:flex;gap:10px;position:relative;z-index:1;margin-top:4px;}
.ct-social-btn{
  width:40px;height:40px;border-radius:10px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;cursor:pointer;
  transition:background 0.3s,border-color 0.3s,transform 0.3s;
}
.ct-social-btn:hover{
  background:rgba(181,96,42,0.2);
  border-color:rgba(181,96,42,0.5);
  transform:translateY(-3px);
}
.ct-social-btn svg{width:16px;height:16px;fill:#fff;transition:fill 0.3s;}
.ct-social-btn:hover svg{fill:#e07937;}

/* map card */
.ct-map-card{
  border-radius:20px;overflow:hidden;
  border:1.5px solid rgba(10,9,46,0.07);
  box-shadow:0 4px 20px rgba(10,9,46,0.06);
  height:190px;flex-shrink:0;
}
.ct-map-card iframe{width:100%;height:100%;border:none;display:block;}

/* ══ RIGHT COLUMN — FORM ══ */
.ct-form-card{
  background:#fff;
  border-radius:24px;
  padding:48px 44px;
  border:1.5px solid rgba(10,9,46,0.07);
  box-shadow:0 4px 24px rgba(10,9,46,0.06);
  transition:box-shadow 0.4s;
}
.ct-form-card:hover{box-shadow:0 12px 48px rgba(181,96,42,0.1);}

.ct-form-title{
  font-size:1.4rem;font-weight:900;color:#0A092E;
  margin-bottom:6px;
}
.ct-form-sub{font-size:0.88rem;color:#ae5720;font-weight:400;margin-bottom:32px;}

/* field groups */
.ct-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
.ct-field{margin-bottom:16px;}
.ct-label{
  display:block;font-size:0.75rem;font-weight:700;
  color:rgba(10,9,46,0.45);letter-spacing:0.8px;
  text-transform:uppercase;margin-bottom:8px;
}
.ct-input,.ct-select,.ct-textarea{
  width:100%;
  background:#FAFAF7;
  border:1.5px solid rgba(10,9,46,0.09);
  border-radius:12px;
  padding:14px 16px;
  font-family:'Cairo',sans-serif;
  font-size:0.93rem;
  color:#0A092E;
  outline:none;
  transition:border-color 0.3s,background 0.3s,box-shadow 0.3s;
  -webkit-appearance:none;
}
.ct-input:focus,.ct-select:focus,.ct-textarea:focus{
  border-color:#B5602A;
  background:#fff;
  box-shadow:0 0 0 3px rgba(181,96,42,0.08);
}
.ct-input::placeholder,.ct-textarea::placeholder{color:rgba(10,9,46,0.25);}
.ct-textarea{resize:none;height:110px;line-height:1.7;}
.ct-select{cursor:pointer;color:rgba(10,9,46,0.5);}
.ct-select.filled{color:#0A092E;}

/* submit */
.ct-submit{
  width:100%;margin-top:8px;
  background:#0A092E;
  color:#fff;
  border:none;
  border-radius:14px;
  padding:16px 24px;
  font-family:'Cairo',sans-serif;
  font-size:1rem;font-weight:700;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:background 0.35s,transform 0.2s,box-shadow 0.3s;
  position:relative;overflow:hidden;
}
.ct-submit::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(181,96,42,0.0),rgba(181,96,42,0.18));
  opacity:0;transition:opacity 0.35s;
}
.ct-submit:hover{background:#B5602A;transform:translateY(-2px);box-shadow:0 8px 28px rgba(181,96,42,0.3);}
.ct-submit:hover::before{opacity:1;}
.ct-submit:active{transform:translateY(0);}
.ct-submit svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform 0.3s;}
.ct-submit:hover svg{transform:translateX(-4px);}

/* success state */
.ct-success{
  display:none;
  flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:40px 20px;gap:16px;
}
.ct-success-icon{
  width:64px;height:64px;border-radius:50%;
  background:rgba(181,96,42,0.1);
  border:2px solid rgba(181,96,42,0.3);
  display:flex;align-items:center;justify-content:center;
}
.ct-success-icon svg{width:28px;height:28px;stroke:#B5602A;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.ct-success h3{font-size:1.3rem;font-weight:900;color:#0A092E;}
.ct-success p{font-size:0.9rem;color:#888;font-weight:400;}

/* whatsapp floating hint */
.ct-wa-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#25D366;
  border-radius:20px;
  padding:8px 18px;
  text-decoration:none;margin-top:18px;
  transition:transform 0.3s,box-shadow 0.3s;
  position:relative;z-index:1;
}
.ct-wa-badge:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(37,211,102,0.3);}
.ct-wa-badge svg{width:18px;height:18px;fill:#fff;flex-shrink:0;}
.ct-wa-badge span{font-size:0.85rem;font-weight:700;color:#fff;}

@media(max-width:780px){
  .ct-grid{grid-template-columns:1fr;}
  .ct-form-card{padding:32px 24px;}
  .ct-row{grid-template-columns:1fr;}
}


/* Mobile Responsive Header */
@media (max-width: 768px) {

  @media (max-width: 768px) {
    /* All section titles */
    .section-title {
        font-size: 1.8rem !important;
    }
    
    /* Hero title */
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    /* About section */
    .about-content {
        font-size: 0.95rem !important;
    }
    
    /* Value cards */
    .value-card {
        font-size: 1.5rem !important;
    }
    
    .values-description {
        font-size: 0.95rem !important;
    }
    
    /* Stats numbers */
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    /* Subsidiaries section */
    .subs-header h2 {
        font-size: 1.8rem !important;
    }
    
    /* Contact section */
    .ct-header h2 {
        font-size: 1.8rem !important;
    }
    
    /* Map section */
    .map-section .section-title {
        font-size: 1.8rem !important;
    }
    
    /* City card name */
    .city-card-name {
        font-size: 1.3rem !important;
    }
}
    header {
        padding: 10px 4%;
    }
    
    /* Make logo smaller */
    .logo-container {
        position: relative;
        left: 0;
        transform: none;
        width: auto;
        min-width: 700px;  /* Minimum width */
        max-width: 900px;  /* Maximum width */
        flex-shrink: 0;
    }
    
    .logo {
        width: 100%;
        height: auto;
        object-fit: contain; 
    }
    
    /* Hide normal navigation links on mobile */
    .nav-left, .nav-right {
        display: none;
    }
    
    /* Hamburger menu button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
        flex-shrink: 0; 
    }
    
    .hamburger span {
        width: 100%;
        height: 2px;
        background-color: white;
        border-radius: 2px;
        transition: 0.3s;
    }
    
    header.scrolled .hamburger span {
        background-color: #0A092E;
    }
    
    /* Mobile menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background-color: #0A092E;
        padding: 80px 30px 30px;
        transition: 0.3s;
        z-index: 1000;
    }
    
    header.scrolled .mobile-menu {
        background-color: white;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 15px 0;
        font-size: 1.1rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    header.scrolled .mobile-menu a {
        color: #0A092E;
        border-bottom-color: rgba(0,0,0,0.1);
    }
    
    .mobile-menu .contact-btn {
        background-color: #B5602A;
        color: white !important;
        text-align: center;
        border-radius: 30px;
        margin-top: 20px;
        padding: 12px;
    }
    
    .mobile-menu .lang-btn {
        border: 1px solid #B5602A;
        text-align: center;
        border-radius: 30px;
        margin-top: 10px;
        padding: 12px;
    }
    
    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

/* Show hamburger only on mobile */
@media (min-width: 769px) {
    .hamburger, .mobile-menu, .menu-overlay {
        display: none !important;
    }
}


/* Animated hamburger icon */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Ensure smooth scrolling is enabled */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adds padding for fixed header */
}

/* For browsers that support it */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
} 
/* 
/* ── Projects Section ── 
.projects-new {
  background: #FAFAF7;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}
.projects-new::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(181,96,42,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* header 
.prj-head {
  padding: 0 6%;
  margin-bottom: 44px;
}
.prj-head h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #0A092E;
  margin-bottom: 8px;
}
.prj-head h2 span { color: #B5602A; }
.prj-head p {
  font-size: 0.95rem;
  color: #ae5720;
  font-weight: 400;
  line-height: 1.7;
}

/* track 
.prj-track {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 6% 12px;
  cursor: grab;
  user-select: none;
}
.prj-track:active { cursor: grabbing; }
.prj-track::-webkit-scrollbar { display: none; }

/* progress bar 
.prj-bar-wrap { padding: 12px 6% 0; }
.prj-bar {
  height: 2px;
  background: rgba(10,9,46,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.prj-bar-fill {
  height: 100%;
  background: linear-gradient(to left, #e07937, #B5602A);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── card ── 
.prj-card {
  flex-shrink: 0;
  width: 320px;
  height: 460px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(10,9,46,0.07);
  box-shadow: 0 4px 20px rgba(10,9,46,0.07);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1),
              box-shadow 0.4s, border-color 0.4s;
}
/* last card breathing room 
.prj-card:last-child { margin-left: 6vw; }

.prj-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}

/* always-visible bottom label 
.prj-base {
  position: absolute; bottom: 0; right: 0; left: 0;
  padding: 20px 22px 24px;
  background: linear-gradient(to top,
    rgba(10,9,46,0.92) 0%,
    rgba(10,9,46,0.5) 55%,
    transparent 100%);
  z-index: 2;
  transition: opacity 0.3s;
}
.prj-num-tag {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 7px;
}
.prj-num {
  font-size: 0.63rem; font-weight: 700;
  color: rgba(255,255,255,0.55);
  background: rgba(10,9,46,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2px 10px;
  letter-spacing: 1.4px;
}
.prj-tag-badge {
  font-size: 0.63rem; font-weight: 700; color: #e07937;
  background: rgba(181,96,42,0.15);
  border: 1px solid rgba(181,96,42,0.3);
  border-radius: 20px; padding: 2px 10px;
}
.prj-name {
  font-size: 1.25rem; font-weight: 900;
  color: #fff; line-height: 1.3;
}
.prj-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  font-weight: 600; margin-top: 5px;
}
.prj-loc svg {
  width: 11px; height: 11px;
  stroke: rgba(181,96,42,0.8); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* hover overlay 
.prj-hover {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top,
    rgba(10,9,46,0.97) 0%,
    rgba(10,9,46,0.88) 55%,
    rgba(10,9,46,0.72) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 26px 22px 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
}
.prj-card:hover .prj-hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.prj-card:hover .prj-base   { opacity: 0; }
.prj-card:hover .prj-img    { transform: scale(1.06); }
.prj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(181,96,42,0.18);
  border-color: rgba(181,96,42,0.4);
}

.prj-h-tag {
  font-size: 0.63rem; font-weight: 700; color: #e07937;
  background: rgba(181,96,42,0.15);
  border: 1px solid rgba(181,96,42,0.3);
  border-radius: 20px; padding: 3px 12px;
  display: inline-block; margin-bottom: 10px;
  align-self: flex-start;
}
.prj-h-name {
  font-size: 1.2rem; font-weight: 900;
  color: #fff; margin-bottom: 9px; line-height: 1.3;
}
.prj-h-desc {
  font-size: 0.83rem; color: rgba(255,255,255,0.62);
  line-height: 1.8; font-weight: 400; margin-bottom: 16px;
}
.prj-h-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.prj-h-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.76rem; color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.prj-h-loc svg {
  width: 11px; height: 11px;
  stroke: rgba(181,96,42,0.8); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.prj-h-btn {
  display: flex; align-items: center; gap: 6px;
  background: #B5602A; border-radius: 18px;
  padding: 7px 15px;
  font-size: 0.76rem; font-weight: 700; color: #fff;
  cursor: pointer; border: none;
  font-family: 'Cairo', sans-serif;
  transition: background 0.2s, transform 0.2s;
}
.prj-h-btn:hover { background: #e07937; transform: scale(1.04); }
.prj-h-btn svg {
  width: 12px; height: 12px; stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
*/