
    :root {
      --charcoal: #1C1C1C;
      --steel: #4A4A4A;
      --concrete: #F5F5F5;
      --sky: #BFD8E5;
      --yellow: #F2C94C;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--concrete);
      color: var(--charcoal);
      line-height: 1.6;
      overflow-x: hidden;
      transition: all 0.3s ease;
    }

    html {
      overflow-x: hidden;
    }

    body[dir="rtl"] {
      font-family: 'Cairo', sans-serif;
      text-align: right;
    }

    /* Header Styles */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(28, 28, 28, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }

    .header.scrolled {
      padding: 0.5rem 5%;
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }

    .logo img {
      height: 90px;
      transition: height 0.3s ease;
    }

    .header.scrolled .logo img {
      height: 90px;
    }

    .menu {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .menu ul {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .menu a {
      color: var(--concrete);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    .menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--yellow);
      transition: width 0.3s;
    }

    body[dir="rtl"] .menu a::after {
      left: auto;
      right: 0;
    }

    .menu a:hover::after {
      width: 100%;
    }

    .menu a:hover {
      color: var(--yellow);
    }

    .extra {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .search-container {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .search-form {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 25px;
      padding: 0.3rem 0.8rem;
      transition: all 0.3s ease;
    }

    .search-form:focus-within {
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--yellow);
    }

    .search-form input[type="text"] {
      background: transparent;
      border: none;
      outline: none;
      color: var(--concrete);
      font-size: 0.9rem;
      width: 150px;
      padding: 0.3rem 0.5rem;
    }

    .search-form input[type="text"]::placeholder {
      color: rgba(245, 245, 245, 0.7);
    }

    .search-form button[type="submit"] {
      background: var(--yellow);
      color: var(--charcoal);
      border: none;
      outline: none;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .search-form button[type="submit"]:hover {
      background: var(--sky);
      transform: scale(1.1);
    }

    .language-switcher {
      background: var(--yellow);
      color: var(--charcoal);
      padding: 0.5rem 1.2rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      cursor: pointer;
      border: none;
      font-size: 0.9rem;
    }

    .mobile-extra{
      display:none;
    }

    .language-switcher:hover {
      background: var(--sky);
      transform: translateY(-2px);
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      color: var(--concrete);
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 1001;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-top: 70px;
    }

    .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;
      animation: fadeInDown 1s ease;
    }

    .middle-image img {
      height: 120px;
      filter: brightness(0) invert(1);
    }

    .slogan {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1.2;
      animation: fadeInUp 1s ease 0.3s both;
    }

    .slogan-second-line {
      display: block;
      margin-top: 0.5rem;
    }

    .highlight {
      color: var(--yellow);
      position: relative;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Section Styles */
    section {
      padding: 5rem 5%;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .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-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      background: white;
    }

    .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 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      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 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      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;
    }

    .sectors-carousel {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .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);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    @media (min-width: 992px) {
      .projects-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .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-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .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;
    }

    .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;
    }

    /* Swiper overrides for partners */
    .partners-swiper {
      width: 100%;
    }

    .partners-swiper .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
     
    }

    .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;
      width: 100%;
    }

    .partner-box:hover {
      transform: scale(1.05);
    }

    /* Remove old marquee animation */

    .partner-box img {
      max-width: 100%;
      max-height: 80px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(0);
    }

    /* 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 */
    .footer {
      background: var(--charcoal);
      color: var(--concrete);
      padding: 3rem 5%;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      gap: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--steel);
      margin-bottom: 2rem;
    }

    .footer-logo img {
      height: 60px;
      filter: brightness(0) invert(1);
    }

    .footer-menu ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      list-style: none;
    }

    .footer-menu a {
      color: var(--concrete);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-menu a:hover {
      color: var(--yellow);
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      justify-content: flex-end;
    }

    .footer-social a {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--steel);
      color: white;
      border-radius: 50%;
      transition: all 0.3s;
    }

    .footer-social a:hover {
      background: var(--yellow);
      color: var(--charcoal);
      transform: translateY(-3px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      color: var(--concrete);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--yellow);
    }

    /* RTL Adjustments */
   

  

    body[dir="rtl"] .news-link {
      flex-direction: row-reverse;
    }

    body[dir="rtl"] .search-form {
      direction: rtl;
    }

    body[dir="rtl"] .search-form input[type="text"] {
      text-align: right;
    }

    body[dir="rtl"] .search-form input[type="text"]::placeholder {
      text-align: right;
    }

    body[dir="rtl"] .partners-track {
      animation-direction: reverse;
    }

    body[dir="rtl"] .title-line {
      margin-right: 0;
    }

    body[dir="rtl"] .about-section,
    body[dir="rtl"] .vision-section {
      direction: rtl;
    }

    body[dir="rtl"] .statistics-section,
    body[dir="rtl"] .sectors-section,
    body[dir="rtl"] .projects-section,
    body[dir="rtl"] .news-section,
    body[dir="rtl"] .partners-section,
    body[dir="rtl"] .contact-section {
      direction: rtl;
    }

    body[dir="rtl"] .section-title,
    body[dir="rtl"] .section-subtitle {
      text-align: right;
    }

    body[dir="rtl"] .about-content,
    body[dir="rtl"] .vision-content {
      text-align: right;
    }

    body[dir="rtl"] .contact-buttons {
      direction: ltr;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      section {
        padding: 4rem 4%;
      }

      .slogan {
        font-size: 3rem;
      }

      .sectors-carousel {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
      }
    }

    @media (max-width: 992px) {
      .mobile-extra{
        display:block;
      }
      
      .header {
        padding: 1rem 3%;
      }

      .hamburger {
        display: block;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
      }

      body[dir="rtl"] .hamburger {
        right: auto;
        left: 5%;
      }

      .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        align-items: stretch;
        justify-content: flex-start;
        z-index: 999;
      }

      .menu.active {
        left: 0;
      }

      body[dir="rtl"] .menu {
        left: auto;
        right: -100%;
      }

      body[dir="rtl"] .menu.active {
        right: 0;
        left: auto;
      }

      .menu ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        list-style: none;
      }

      .menu li {
        width: 100%;
        padding: 0;
        margin: 0;
      }

      .menu a {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
        color: var(--concrete);
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: color 0.3s;
        border: none;
      }

      .menu a:hover {
        color: var(--yellow);
      }

      .menu a::after {
        display: none;
      }

      /* Hide desktop extras on mobile; provide mobile version inside menu */
      .extra {
        display: none;
      }

      .search-container {
        display: none;
      }

      /* Mobile-only extras inside the menu */
      .menu .mobile-extra {
        border: 0;
        padding-bottom: 0;
        width: 100%;
      }

      .menu .mobile-extra .mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        padding-top: 0.5rem;
      }

      .menu .mobile-extra .language-switcher {
        margin: 0;
        width: 100%;
        text-align: center;
      }

      .menu .mobile-extra .search-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .menu .mobile-extra .search-form {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        padding: 0.3rem 0.8rem;
        width: 100%;
        transition: all 0.3s ease;
      }

      .menu .mobile-extra .search-form:focus-within {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--yellow);
      }

      .menu .mobile-extra .search-form input[type="text"] {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: var(--concrete);
        font-size: 0.9rem;
        width: 150px;
        padding: 0.3rem 0.5rem;
      }

      .menu .mobile-extra .search-form input[type="text"]::placeholder {
        color: rgba(245, 245, 245, 0.7);
      }

      .menu .mobile-extra .search-form button[type="submit"] {
        background: var(--yellow);
        color: var(--charcoal);
        border: none;
        outline: none;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .menu .mobile-extra .search-form button[type="submit"]:hover {
        background: var(--sky);
        transform: scale(1.1);
      }

      body[dir="rtl"] .menu .mobile-extra .search-container {
        direction: rtl;
      }

      body[dir="rtl"] .menu .mobile-extra .search-form {
        direction: rtl;
      }

      body[dir="rtl"] .menu .mobile-extra .search-form input[type="text"] {
        text-align: right;
      }

      body[dir="rtl"] .menu .mobile-extra .search-form input[type="text"]::placeholder {
        text-align: right;
      }

      .about-section,
      .vision-section {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .vision-section {
        grid-template-columns: 1fr;
      }

      .vision-image {
        order: 2;
      }

      .vision-content {
        order: 1;
      }

      .statistics-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 3rem 3%;
      }

      .sectors-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }

      .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 2rem 0;
      }

      .footer-logo {
        text-align: center;
        margin-bottom: 1rem;
      }

      .footer-menu {
        margin: 1rem 0;
      }

      .footer-menu ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .footer-menu a {
        color: var(--concrete);
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s;
        padding: 0.5rem;
      }

      .footer-menu a:hover {
        color: var(--yellow);
      }

      .footer-social {
        justify-content: center;
        margin-top: 1rem;
      }

      .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .slogan {
        font-size: 2.5rem;
      }

      .contact-title {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 768px) {
     
      section {
        padding: 3rem 5%;
      }

      .header {
        padding: 0.8rem 5%;
      }

      .logo img {
        height: 90px;
      }

      .slogan {
        font-size: 2rem;
        padding: 0 1rem;
      }

      .middle-image img {
        height: 80px;
      }

      .section-title {
        font-size: 2rem;
      }

      .about-content p,
      .vision-content p {
        font-size: 1rem;
      }

      .statistics-section {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .stat {
        padding: 1.5rem;
      }

      .stat-number {
        font-size: 2.8rem;
      }

      .stat-icon {
        font-size: 2.5rem;
      }

      .sectors-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .sector-block {
        height: 350px;
      }

      .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .project-box {
        height: 300px;
      }

      .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .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;
      }

      .footer {
        padding: 2rem 5%;
      }

      .footer-top {
        gap: 1.5rem;
        padding: 1rem 0;
      }

      .footer-logo img {
        height: 50px;
      }

      .footer-menu ul {
      
        gap: 0.5rem;
        text-align: center;
      }

      .footer-menu a {
        font-size: 0.9rem;
        padding: 0.3rem;
      }

      .footer-social {
        gap: 0.8rem;
      }

      .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        font-size: 0.85rem;
        padding-top: 1rem;
        border-top: 1px solid var(--steel);
      }

      .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        order: 1;
      }

      .footer-links a {
        font-size: 0.85rem;
        padding: 0.2rem;
      }

      .footer-logo-text {
        order: 2;
        font-size: 0.8rem;
      }
    }
    
    @media (max-width: 480px) {
      .header {
        padding: 0.8rem 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;
      }

      .stat p {
        font-size: 0.95rem;
      }

      .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;
      }

      section {
        padding: 2.5rem 5%;
      }

      .footer {
        padding: 1.5rem 4%;
      }

      .footer-top {
        gap: 1rem;
        padding: 0.5rem 0;
      }

      .footer-logo img {
        height: 80px;
      }

      .footer-menu ul {
        gap: 0.3rem;
      }

      .footer-menu a {
        font-size: 0.85rem;
        padding: 0.2rem;
      }

      .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
      }

      .footer-bottom {
        font-size: 0.8rem;
        gap: 0.8rem;
      }

      .footer-links a {
        font-size: 0.8rem;
      }

      .footer-logo-text {
        font-size: 0.75rem;
      }
    }

    @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;
      }
    }
  