* {
    margin: 0;
    padding: 0;
  }
  body {
      box-sizing: border-box;
      font-family: "Segoe UI", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    html {
        scroll-behavior: smooth;
    }
    
/* Loading screen styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* */
.lds-ripple {
  /* change color here */
  color: #038675
}

.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}



@keyframes l5 {to{transform: rotate(.5turn)}}
/* Hide loading screen when JavaScript is loaded */
.loaded .loading-screen {
  display: none;
}
.loader-hidden {
  display: none;
} 

/* Hide loading screen when JavaScript is loaded */
.loaded .loading-screen {
display: none;
}
.loader-hidden {
  display: none;
}

  /* -- Navbar -- */
    
  .navbar {
    position: absolute;
    width: 100%;
    z-index: 99;
    transition: ease-in-out 0.3s;
  }
  .navbar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}
  .navbar img {
    position: relative;
    z-index: 9;
    width: 200px;
  }
    
  .menu {
    z-index: 9;
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
    
    .menu li {
      padding: 0 30px;
    }
    
    .menu li a {
      position: relative;
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      padding: 10px 0;
      font-weight: bold;
      transition: ease-in 0.2s;
    }
    
  .menu li a:before{
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: #00bfa5;
      border-radius: 12px;
      transition: all 0.4s ease;
    }
    .menu li a:hover:before{
      width: 100%;
    }
    .menu li.center a:before{
      left: 50%;
      transform: translateX(-50%);
    }
    .menu li.upward a:before{
      width: 100%;
      bottom: -5px;
      opacity: 0;
    }
    .menu li.upward a:hover:before{
      bottom: 0px;
      opacity: 1;
    }
    .menu li.forward a:before{
      width: 100%;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s ease;
    }
    .menu li.forward a:hover:before{
      transform: scaleX(1);
      transform-origin: left;
    }
  
    .menu .active a::after {
      content: '';
      position: absolute;
      bottom: 0px;
      z-index: 99;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #00bfa5, transparent);
  }
  
    .menu a:hover {
        color: #ccc;
    }
    
    .menu-icon {
      display: none;
      cursor: pointer;
    }
    
    .bar {
      display: block;
      width: 30px;
      height: 4px;
      background-color: #377e82;
      margin: 4px 0;
    }
    .btn {
      z-index: 9;
      display: inline-block;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      border: 2px solid #00bfa5;
      border-radius: 4px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      background-color: transparent;
      color: #fff;
      transition: color 0.3s ease;
      }
      
      .btn:before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #00bfa5;
      transform: skewX(-45deg);
      transition: left 0.3s ease;
      z-index: -1;
      }
      
      .btn:hover {
      color: #fff;
      transform: skewX(0deg);
      }
      
      .btn:hover:before {
        left: 0;
      }
    
      
      @media (max-width: 767px) {
      .btn {
      padding: 8px 16px;
      font-size: 14px;
      }
      }
      
      @media (min-width: 768px) and (max-width: 991px) {
      .btn {
      padding: 10px 18px;
      font-size: 15px;
      }
      }
      
      @media (min-width: 992px) {
      .btn {
      padding: 12px 24px;
      font-size: 16px;
      }
      }
    
    /* Additional CSS for fixed navbar */
    .navbar-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }
    
    @media (max-width: 768px) {
      .navbar {
        padding: 20px 0;
        transition: ease-in-out 0.3s;
      }
      .navbar .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
      .navbar .btn {
          display: none;
      }
        .navbar img {
            width: 110px;
        }
        .menu {
          display: none;
          color: #fff;
        }
        .menu a:hover {
            color: #ccc;
        }
    
        .menu-icon {
          display: block;
        }
    
        .menu.active {
          display: flex;
          flex-direction: column;
          background-color: #377e82;
          position: absolute;
          top: 90px;
          left: 0;
          width: 100%;
          padding: 10px;
        }
    
        .menu.active li {
          padding: 20px;
        }
    
        .menu li a {
            font-size: 16px;
        }
    }
    
    
    
    /* -- Hero -- */
    .hero {
      overflow: hidden;
      position: relative;
      display: flex;
      background: linear-gradient(135deg, #0b0b0b 0%, #2a2a2a 100%);
      justify-content: space-between;
      background-size: cover;
      background-attachment: fixed;
      align-items: center;
      padding: 100px 0px;
    }
    
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 50px 50px;
    transform: rotate(30deg);
    z-index: 1;
  }
  

  
  .hero iframe {
    width: 500px;
    height: 500px;
  }
  
    .hero-text {
      z-index: 9;
      flex: 1;
      max-width: 600px;
      margin-top: 20px;
    }
    
    .hero h1 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 16px;
      color: #fff;
    }
    
    .hero h2 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 24px;
      color: #eee;
    }
    
    .hero p {
      font-size: 18px;
      line-height: 2.1;
      margin-bottom: 32px;
      color: #eee;
    }
    
    .hero-image {
      z-index: 9;
      position: relative;
      max-width: 600px;
    }
    
    .hero-image img {
      z-index: 999;
      width: 100%;
      height: auto;
    }
    
  
  /* Small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    .hero {
      padding: 150px 15px;
    }
  
    .hero h1 {
      font-size: 36px;
    }
  
    .hero h2 {
      font-size: 18px;
    }
  
    .hero p {
      font-size: 14px;
    }
  }
  
  /* Extra small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .hero {
      padding: 60px 10px;
    }
  
    .hero h1 {
      font-size: 28px;
    }
  
    .hero h2 {
      font-size: 16px;
    }
  
    .hero p {
      font-size: 14px;
      line-height: 1.8;
    }
  
    .hero .btn {
      padding: 10px 20px;
      font-size: 12px;
    }
  }
  
  @media only screen and (max-width : 768px) {
      .demo-1 .main-title {
          font-size: 3em;
      }
  }
    @media (max-width: 992px) {
      .hero {
        flex-direction: column;
        padding: 60px 20px;
      }
    
      .hero-text {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
        text-align: center;
      }
    
      .hero-image {
        max-width: 100%;
      }
    }
  
  
  
  
  
  
  
  /* What we offer section */
  
  
  /* Header */
  .large-header {
      position: absolute;
      width: 100%;
    left: 0;
    top: 0;
      overflow: hidden;
      background-size: cover;
      background-position: center center;
      z-index: 9;
  }
  
  #large-header {
      background-image: url('bg.mp4');
  }
  
  .demo-1 .main-title {
      text-transform: uppercase;
      font-size: 4.2em;
      letter-spacing: 0.1em;
  }
  
  .main-title .thin {
      font-weight: 200;
  }
  
    @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');
    
    .video-section {
        background: #0b0b0b;
        text-align: center;
    }
  
    .video-section {
        height: 600vh; /* determines the scrolling length for video */
        position: relative;
    }
  
    .video-container {
        width: 100%;
        height: 100vh;
        position: sticky;
        top: 0;
        left: 0;
        overflow: hidden;
        background: #0b0b0b;
    }
    .video-section h2 {
      padding-top: 50px;
      position: relative;
      display: inline-block;
      color: #fff;
      font-size: 52px;
    }
    .video-section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        z-index: 99;
        left: 0;
        width: 90%;
        height: 3px;
        background: linear-gradient(90deg, #00bfa5, transparent);
    }
  
    #bgVideo {
        width: 70%;
        height: 100%;
        right: 0;
        float: right;
        object-fit: cover;
    }
  
    .inner-text {
      font-family: 'Raleway', sans-serif;
        position: absolute;
        font-size: 36px;
        max-width: 550px;
        color: white;
        text-align: left;
        left: 15%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
        border-left: 5px solid #00bfa5;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
  
    .inner-text::before {
        content: '"';
        font-size: 72px;
        position: absolute;
        left: -40px;
        top: -10px;
        color: #00bfa5;
        font-family: Georgia, serif;
    }
  
    .inner-text:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
  
    @media (max-width: 768px) {
  
    .video-section h2 {
      padding-top: 30px;
      font-size: 24px;
    }
    
    .video-section h2::after {
      width: 100%;
    }
    
    #bgVideo {
      width: 100%; /* Full width for smaller screens */
      float: none;
    }
    
    .inner-text {
      font-size: 18px;
      max-width: 90%;
      left: 10%;
      right: 10%;
      padding: 15px;
    }
    
    .inner-text::before {
      font-size: 48px;
      left: -30px;
      top: -5px;
    }
  }
  
  
  
    /* -- Values -- */
  
  
  .core-values {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      padding: 100px 50px;
      position: relative;
      overflow: hidden;
  }
  
  
  .content-wrapper {
      display: flex;
      justify-content: space-around;
      align-items: center;
      position: relative;
      z-index: 2;
  }
  
  .text-section {
      flex: 1;
      max-width: 500px;
      margin-right: 50px;
  }
  
  .text-section h2 {
    color: #333;
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
  }
  
  .text-section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50%;
      height: 3px;
      background: linear-gradient(90deg, #00bfa5, transparent);
  }
  
  .text-section p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #555;
  }
  
  .btn {
      display: inline-block;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      background: transparent;
      border: 2px solid #00bfa5;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease;
  }
  
  .btn:hover {
      background: #00bfa5;
      color: #fff;
  }
  
  .icon-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 500px;
  }
  
  .icon-container {
      width: 150px;
      height: 150px;
      margin: 15px;
      perspective: 1000px;
  }
  
  .icon-wrapper {
      width: 100%;
      height: 100%;
      position: relative;
      transition: ease-in-out 0.3s;
      transform-style: preserve-3d;
  }
  /*
  .icon-container:hover .icon-wrapper {
      transform: rotateY(180deg);
      left: 50px;
  }
  */
  .icon-front, .icon-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
      border-radius: 10px;
      padding: 25px;
  }
  
  .icon-back {
      transform: rotateY(180deg);
      background: #00bfa5;
  }
  
  .icon-wrapper i {
      font-size: 40px;
      margin-bottom: 10px;
      color: #00bfa5;
  }
  
  .icon-wrapper p {
      font-size: 14px;
      font-weight: 600;
      text-align: center;
  }
  
  @media (max-width: 992px) {
      .content-wrapper {
          flex-direction: column;
      }
  
      .text-section {
          margin-right: 0;
          margin-bottom: 50px;
          text-align: center;
      }
  
      .text-section h2::after {
          left: 25%;
          width: 50%;
      }
  
      .icon-section {
          max-width: 100%;
      }
  }
  
  @media (max-width: 768px) {
    .core-values {
      padding: 50px 20px;
    }
  
    .content-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .text-section {
      max-width: 100%;
      margin-right: 0;
      margin-bottom: 40px;
      text-align: center;
    }
  
    .text-section h2 {
      font-size: 24px;
    }
  
    .text-section h2::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .text-section p {
      font-size: 14px;
    }
  
    .btn {
      padding: 10px 20px;
      font-size: 12px;
    }
  
    .icon-section {
      max-width: 90%;
      margin-top: 20px;
      left: -10px;
    }
  
    .icon-container {
      width: 120px;
      height: 120px;
      margin: 10px;
      padding-left: 0;
      margin-left: 0;
    }
  
    .icon-front, .icon-back {
      padding: 15px;
    }
  
    .icon-wrapper i {
      font-size: 30px;
    }
  
    .icon-wrapper p {
      font-size: 12px;
    }
  }
  
  .icon-section {
    position: relative;
    width: 400px;
    height: 400px;
  }
  
  .icon-container {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .icon-container:nth-child(1) {
    top: 80px;
    left: 0px;    
  }
  
  .icon-container:nth-child(2) {
    top: 80px;
    right: 0px;
  }
  
  .icon-container:nth-child(3) {
    bottom: 50px;
    right: 50px;
  }
  
  .icon-container:nth-child(4) {
    top: -50px;
    left: 46%;
    transform: translateX(-50%);
  }
  
  .icon-container:nth-child(5) {
    bottom: 50px;
    left: 50px;
  }
  
  
  
  
  
    /* --- quote --- */
  
  
.quote-container {
    padding: 0px 15px;
    background: linear-gradient(to bottom, 
      #6f6f6f 0%,
      #fff 10%,
      #fff 110%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: #fff;
  }
  
  .quote {
    top: -50px;
    flex: 1;
    padding: 2rem;
    height: 200px;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .quote:hover {
    transform: translateY(-5px);
  }
  

  .quote i {
    font-size: 26px;
    margin-bottom: 20px;
    color: #00bfa5;
  }
  
  .quote h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    z-index: 1;
  }
  
  .quote p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    position: relative;
    z-index: 1;
  }
  
  .vision {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-left: 5px solid #00bfa5;
  }
  
  .mission {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-left: 5px solid #00bfa5;
  }
  
  @media (max-width: 768px) {
    .quote-container {
      flex-direction: column;
    }
    
    .quote {
      margin-bottom: 1rem;
    }
  }
  
  
    /* --- Projects --- */
  
  .projects {
    position: relative;
    padding: 100px 20px;
    background: url("img/bg.jpg");
    background-size: cover;
    color: #fff;
  }
  .projects::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a1; /* this is a transparent black color, you can adjust the opacity by changing the last value (0.5) */
    z-index: 8; /* to make sure the layer is on top of the image */
  }
  .projects .text {
    position: relative;
    z-index: 9 !important;
  }
  .projects h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .intro {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
  }
  
  .project-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
  }
  
  .project-card {
    flex-basis: calc(33.33% - 20px);
    margin-bottom: 30px;
    padding-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #000;
    border-radius: 8px;
    overflow: hidden;
    z-index: 9;
    transition: ease-in-out 0.2s;
  }
    
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-card .text {
    padding: 20px;
  }
  
  .project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .project-card h3 {
    padding: 20px 0 0 0;
    margin: 0;
  }
  
  .project-card p {
    color: #555;
  }
    
  
  .learn-more {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 2px solid #00bfa5;
    border-radius: 4px;
    color: #038675;
    transition: all 0.3s ease;
  }
  
  .learn-more:hover {
    background-color: #038675;
    color: #fff;
  }
    
    @media (max-width: 768px) {
      .project-card {
        flex-basis: 100%;
      }
    }
  
  
    .engineering-solutions {
        background-color: #fff;
        padding: 3rem 1rem;
        font-family: Arial, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .engineering-solutions h2 {
        text-align: center;
        color: #333;
        margin-bottom: 2rem;
        font-size: 2rem;
      }
      
      .solutions-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
      }
      
      .solution-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }
      
      .number {
        background-color: #00bfa5;
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        flex-shrink: 0;
      }
      
      .solution-content {
        flex-grow: 1;
      }
      
      .solution-content h3 {
        color: #1976d2;
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
      }
      
      .solution-content p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
      }
      
      @media (max-width: 768px) {
        .engineering-solutions {
          padding: 2rem 1rem;
        }
        
        .solution-item {
          flex-direction: column;
        }
        
        .number {
          margin-bottom: 0.5rem;
        }
      }
  
  
.services {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}
  
.services h2 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    margin-bottom: 100px;
    color: #333;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    z-index: 99;
    left: 0;
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, #00bfa5, transparent);
}
  
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}
  
.service-card {
    text-align: left;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
  
.service-card:hover {
    transform: translateY(-5px);
}
  
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
  
.service-card h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    padding: 0 15px;
    color: #000;
}
  
.service-card p {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 15px 15px;
    color: #333;
}
  
@media (max-width: 768px) {
    .service-grid {
      max-width: 300px;
    }
}
  
@media (max-width: 480px) {
    .service-grid {
      grid-template-columns: 1fr;
    }
}
  
  
/* contact.html */


.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 150px 15px;
    font-family: Arial, sans-serif;
  }
  
  .contact-form, .location-map {
    flex: 1;
    max-width: 600px;
  }

  .contact-form {
    margin-left: 150px;
    font-family: 'Roboto', sans-serif;
  }
  
  .contact-form h2 {
    margin-bottom: 30px;
    color: #333;
    font-weight: 500;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
  }
  
  .required {
    color: #e74c3c;
  }
  
  input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
  }
  
.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 50px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f8f8f8;
  transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
  border-color: #00bfa5;
  background-color: #f0f0f0;
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-content {
  text-align: center;
  color: #666;
  transition: all 0.3s ease;
}

.file-upload-content i {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00bfa5;
}

.file-upload-text {
  font-size: 0.9em;
}

.file-upload-previewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.file-upload-previewer.active {
  display: flex;
}

.file-preview-content {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.file-preview-icon {
  font-size: 2em;
  margin-right: 10px;
  color: #00bfa5;
}

.file-preview-name {
  font-size: 0.9em;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-remove-button {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  margin-left: 10px;
  font-size: 1.2em;
}
  
  .contact-form button[type="submit"] {
    background-color: #00bfa5;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button[type="submit"]:hover {
    background-color: #038675;
  }
  .map-container {
    margin-bottom: 1rem;
  }
  
  .address p {
    margin: 0.5rem 0;
    color: #666;
  }
  
.socials {
    margin-bottom: 10px;
}

.location-map a {
    border-bottom: 2px solid #038675;
    transition: ease-in-out 0.1s;
    margin: 5px;
    padding-bottom: 5px;
}

.location-map a:hover {
    padding-bottom: 10px;
}

.location-map .socials img {
    width: 32px;
}

.location-map i {
    color: #038675;
    font-size: 32px;
    margin: 20px;
}

.location-map a:hover i {
    color: #038675cc;
}
  
.location-map p {
    font-size: 20px;
}

.location-map ul {
    list-style: none;
}
  
.location-map ul li {
    margin-bottom: 10px;
}
  
.location-map ul li i {
    margin-right: 5px;
}
@media (max-width: 768px) {
    .contact-container {
      flex-direction: column-reverse;
      padding: 50px 15px;
    }
    
    .contact-form {
      margin-left: 0;
      margin-bottom: 50px;
    }
    
    .contact-form h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }
    
    .form-group {
      margin-bottom: 15px;
    }
    
    .contact-form label {
      font-size: 14px;
    }
    
    input, textarea {
      font-size: 14px;
      padding: 8px;
    }
    
    .contact-form button {
      width: 100%;
      padding: 12px;
      font-size: 14px;
    }
    
    
    .address p {
      font-size: 14px;
    }
    
    .socials {
      text-align: center;
    }
  
    .location-map a {
      margin: 10px 5px;
    }
  
    .location-map .socials img {
      width: 28px;
    }
  
    .location-map i {
      font-size: 28px;
      margin: 10px;
    }
    
    .location-map p {
      font-size: 16px;
      text-align: center;
    }
  
    .location-map ul {
      padding-left: 0;
    }
    
    .location-map ul li {
      font-size: 14px;
      text-align: center;
    }
  }

  
  /* Softwares */
  
  .softwares {
  background: linear-gradient(-135deg, #eee 30%, #fff 90%);
    padding: 50px 20px;
    text-align: center;
  }
  
  .softwares h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
  }
  
  .software-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .software-logo {
    flex-basis: calc(50% - 15px);
    max-width: 300px;
    height: 100px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: transform 0.3s ease;
  }
  
  .software-logo:hover {
    transform: translateY(-5px);
  }
  
  .software-logo img {
    max-width: 100%;
    max-height: 100%;
  }
  
  @media (max-width: 768px) {
  
    .software-logo {
      width: 100%;
      max-width: none;
      height: 50px;
    }
  }
  
  
  
  
  /* Footer */
  
  .footer {
    background: linear-gradient(135deg, #eee 0%, #fff 100%);
    color: #0b0b0b;
    padding: 50px 0 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1;
    margin: 20px;
    min-width: 250px;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #00bfa5;
  }
  
  .footer-section p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    color: #555;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background: #00bfa5;
    color: #fff;
  }
  
  .footer-section.links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section.links ul li {
    margin-bottom: 10px;
  }
  
  .footer-section.links ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section.links ul li a:hover {
    color: #00bfa5;
  }
  
  .footer-section.contact p {
    display: flex;
    align-items: center;
  }
  
  .footer-section.contact i {
    margin-right: 10px;
    color: #00bfa5;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    color: #555;
  }
  
  .footer-bottom p {
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-section {
      margin: 20px 0;
    }
  }