
    :root {
      --charcoal: #1C1C1C;
      --steel: #4A4A4A;
      --concrete: #F5F5F5;
      --sky: #BFD8E5;
      --yellow: #F2C94C;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: var(--concrete);
      color: var(--charcoal);
      line-height: 1.6;
      overflow-x: hidden;
    }
    /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-top: 47px;
    }

    .video-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(28,28,28,0.7), rgba(74,74,74,0.5));
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      padding: 2rem;
    }

    .middle-image {
      margin-bottom: 2rem;
    }

    .middle-image img {
      height: 120px;
      filter: brightness(0) invert(1);
    }

    .slogan {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1.2;
    }

    .slogan-second-line {
      display: block;
      margin-top: 0.5rem;
    }

    .highlight {
      color: var(--yellow);
      position: relative;
    }

    /* Section Styles */
    .section-subtitle {
      color: var(--steel);
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--charcoal);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .title-line {
      width: 80px;
      height: 4px;
      background: var(--yellow);
      margin: 1rem 0 2rem 0;
    }

    /* About Section */
    .about-content p {
      color: var(--steel);
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
    }

    .section-button {
      display: inline-block;
      background: var(--charcoal);
      color: white;
      padding: 1rem 2.5rem;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s;
      margin-top: 1rem;
    }

    .section-button:hover {
      background: var(--yellow);
      color: var(--charcoal);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .about-video {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    /* Statistics Section */
    .statistics-section {
      background: var(--charcoal);
      color: white;
    }

    .stat {
      text-align: center;
      padding: 2rem;
      transition: transform 0.3s;
    }

    .stat:hover {
      transform: translateY(-10px);
    }

    .stat-icon {
      font-size: 3rem;
      color: var(--yellow);
      margin-bottom: 1rem;
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--yellow);
      margin-bottom: 0.5rem;
    }

    .stat p {
      color: var(--concrete);
      font-size: 1.1rem;
    }

    /* Vision Section */
    .vision-section {
      background: linear-gradient(135deg, var(--sky) 0%, var(--concrete) 100%);
      position: relative;
      overflow: hidden;
    }

    .vision-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    .vision-content p {
      color: var(--steel);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* Sectors Section */
    .sectors-section {
      background: white;
    }

    .sector-block {
      position: relative;
      height: 400px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s;
      background-size: cover;
      background-position: center;
    }

    .sector-block:hover {
      transform: translateY(-10px);
    }

    .sector-block::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(28,28,28,0.9));
      z-index: 1;
    }

    .sector-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      color: white;
      z-index: 2;
    }

    .sector-subtitle {
      color: var(--yellow);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .sector-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .sector-description {
      color: var(--concrete);
      font-size: 0.95rem;
    }

    /* Projects Section */
    .projects-section {
      background: var(--concrete);
    }

    .project-box {
      position: relative;
      height: 350px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s;
      background-size: cover;
      background-position: center;
    }

    .project-box:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .project-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(28,28,28,0.8));
    }

    .project-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      color: white;
    }

    .project-name a {
      color: white;
      text-decoration: none;
      font-size: 1.4rem;
      font-weight: 700;
      transition: color 0.3s;
    }

    .project-name a:hover {
      color: var(--yellow);
    }

    /* News Section */
    .news-section {
      background: white;
    }

    .news-item {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
    }

    .news-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .news-image {
      height: 200px;
      width: 100%;
      background-size: cover;
      background-position: center;
    }

    .news-content {
      padding: 1.5rem;
    }

    .news-content h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--charcoal);
      line-height: 1.4;
    }

    .news-date {
      color: var(--steel);
      font-size: 0.9rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .news-excerpt {
      color: var(--steel);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .news-link {
      color: var(--yellow);
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s;
    }

    .news-link:hover {
      gap: 1rem;
    }

    /* Partners Section */
    .partners-section {
      background: var(--concrete);
      overflow: hidden;
    }

    .partners-header {
    
      margin-bottom: 3rem;
    }

    .partners-carousel {
      position: relative;
      overflow: hidden;
      padding: 2rem 0;
    }

    .partners-track {
      display: flex;
      animation: scroll 30s linear infinite;
    }

    .partner-logo {
      flex: 0 0 200px;
      margin: 0 1.5rem;
    }

    .partner-box {
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .partner-box:hover {
      transform: scale(1.05);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(200px * 8));
      }
    }

    /* Contact Section */
    .contact-section {
      background: linear-gradient(135deg, var(--charcoal), var(--steel));
      color: white;
      text-align: center;
    }

    .contact-title {
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 1.5rem;
    }

    .contact-description {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 3rem;
      color: var(--concrete);
    }

    .contact-buttons {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .contact-button {
      padding: 1.2rem 3rem;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.05rem;
      transition: all 0.3s;
    }

    .contact-button.primary {
      background: var(--yellow);
      color: var(--charcoal);
    }

    .contact-button.primary:hover {
      background: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(242, 201, 76, 0.3);
    }

    .contact-button.secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .contact-button.secondary:hover {
      background: white;
      color: var(--charcoal);
      transform: translateY(-3px);
    }

    /* Footer */
   

    /* Responsive Adjustments */
    @media (max-width: 1200px) {
      .slogan {
        font-size: 3rem;
      }
    }

 
   
    @media (max-width: 768px) {
     
      .slogan {
        font-size: 2rem;
        padding: 0 1rem;
      }

      .middle-image img {
        height: 80px;
      }

      .section-title {
        font-size: 2rem;
      }

      .stat-number {
        font-size: 2.8rem;
      }

      .stat-icon {
        font-size: 2.5rem;
      }

      .sector-block {
        height: 350px;
      }

      .project-box {
        height: 300px;
      }

      .contact-title {
        font-size: 2rem;
      }

      .contact-description {
        font-size: 1rem;
        padding: 0 1rem;
      }

      .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
      }

      .contact-button {
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .header {
        padding: 1.5rem 4%;
      }

      .logo img {
        height: 80px;
      }

      .language-switcher {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
      }

      .slogan {
        font-size: 1.5rem;
      }

      .middle-image img {
        height: 60px;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .section-subtitle {
        font-size: 0.85rem;
      }

      .stat-number {
        font-size: 2.5rem;
      }

      .sector-title {
        font-size: 1.5rem;
      }

      .sector-block {
        height: 320px;
      }

      .project-box {
        height: 280px;
      }

      .project-name a {
        font-size: 1.2rem;
      }

      .contact-title {
        font-size: 1.8rem;
      }

      .contact-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
      }

      .section-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        margin-bottom: 11px;
      }
    }

    @media (max-width: 360px) {
      .slogan {
        font-size: 1.3rem;
      }

      .section-title {
        font-size: 1.6rem;
      }

      .stat-number {
        font-size: 2.2rem;
      }

      .contact-title {
        font-size: 1.6rem;
      }
    }
  