    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #f5f5f5;
      color: #333;
      font-family: 'Poppins', sans-serif;

    }

    .main-head {
      position: fixed;
      width: 100%;
      z-index: 1000;
    }

    .link-header {
      background-color: #ff1887;
      color: white;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      height: 65px;
      padding: 0 30px;
      flex-wrap: wrap;
      font-size: 12px;
    }

    .contact-link a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    .contact-link a:hover {
      color: #3c00ff;
      /* Or any highlight color */
    }


    .contact-link {
      display: flex;
      align-items: center;
    }

    .phone,
    .mail {
      display: flex;
      align-items: center;
      margin: 0 20px;
    }

    .phone img,
    .mail img {
      width: 30px;
      height: 30px;
      margin-right: 8px;
    }

    .contact-link #pysimp {
      font-size: 18px;
      font-weight: bold;
    }

    .social-links ul {
      display: flex;
      list-style: none;
      margin-left: 20px;
    }

    .social-links a i {
      font-size: 18px;
      color: #fff;
      margin-right: 25px;
    }

    .social-links a i:hover {
    color: #2600ff; /* Or any highlight color */
}

    .main-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #0e6fbf url('assets/image/Rectangle 1944.png') repeat;
      padding: 0;
      height: 90px;
    }

    .header-left {
      padding-left: 50px;
      clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
      width: 40%;
      display: flex;
      align-items: center;
      background: #ffffff url('assets/image/Rectangle 1944.png') repeat;
      height: 90px;
    }

    .header-left .logo {
      height: 100px;
      width: 350px;
    }

    .header-right {
      display: flex;
      gap: 15px;
      padding-right: 20px;
    }

    .header-right a {
      color: white;
      font-size: 15px;
      font-weight: bold;
      position: relative;
      padding-right: 15px;
      text-decoration: none;
    }

    .header-right a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 2px;
      background: white;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .header-right a:hover::after {
      opacity: 1;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 30px;
      height: 30px;
      cursor: pointer;
    }

    .bar {
      height: 4px;
      background: rgb(0, 0, 0);
      border-radius: 2px;
      transition: 0.4s ease;
    }

    .hamburger.open .bar1 {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open .bar2 {
      opacity: 0;
    }

    .hamburger.open .bar3 {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background-color: white;
      text-align: center;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.1s ease-in-out;
    }

    .mobile-nav a {
      color: #454243;
      padding: 15px 0;
      font-weight: bold;
    }

    .mobile-nav.open {
      display: flex;
      max-height: 400px;
    }


    @media (max-width: 1024px) {
      .header-left .logo {
        width: 300px;
        padding-right: 30px;
      }
    }

    @media screen and (max-width: 900px) {
      .link-header {
        padding-right: 100px;
        font-size: 13px;
      }

      .header-left .logo {
        width: 290px;
        padding-right: 60px;
      }

      .header-right a {
        font-size: 12px;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
        position: absolute;
        right: 2%;
      }

      .link-header {
        font-size: 11px;
        padding-right: 140px;
      }

      .social-links li a {
        position: relative;
        left: -20px;
      }

      .header-left {
        width: 100%;
        background: white;
        clip-path: none;
      }

      .header-left .logo {
        width: 280px;
        margin-left: 32%;
      }

      .header-right {
        display: none;
      }

      .header-right a {
        text-decoration: none;
      }
    }

    @media (max-width: 600px) {
      .link-header {
        font-size: 8px;
        padding-right: 90px;
      }

      .social-links li a {
        left: -120px;
      }

      .main-header .logo {
        padding-right: 100px;
      }

      .header-right {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-nav {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .link-header {
        font-size: 8px;
        padding-right: 30px;
      }

      .social-links li a {
        left: -120px;
      }

      .main-header .logo {
        position: absolute;
        left: 0;
      }
    }

    @media (max-width: 400px) {
      .link-header {
        font-size: 7px;
        padding-right: -30px;
      }

      .social-links li a {
        left: -20px;
      }

      .main-header .logo {
        position: absolute;
        left: -20px;
      }
    }


 .main-container {
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background-color: #003366;
  color: white;
  padding: 20px;
  overflow-y: auto;
}

.sidebar h2 {
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.equipment-list {
  list-style: none;
  padding: 0;
}

.equipment-list li {
  background-color: #004080;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.equipment-list li:hover {
  background-color: #0059b3;
}

/* Scrollbar styling */
.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

/* Content */
.content {
  flex: 1;
  padding: 30px;
  background-color: #fff;
  overflow-y: auto;
}

.content h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.image-group {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 20px;
  justify-content: center;

}

.image-group img {
  margin-top: 10%;
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  border: 2px solid #ccc;
}

.description {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  max-width: 800px;
}

/* Responsive Queries */
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .equipment-list {
    display: flex;
    flex-wrap: wrap;
  }

  .equipment-list li {
    flex: 1 1 45%;
    margin-right: 10px;
  }

  .content {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .image-group {
    flex-direction: column;
    align-items: center;
  }

  .equipment-list li {
    flex: 1 1 100%;
  }
  .equipment-list{
    height: 100px;
  }

  .image-group img {
    max-width: 100%;
  }

  .content {
    padding: 15px;
  }
}
    
    .footer-column {
      width: 90%;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 30px;
    }

    .reviews {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
    }

    .review-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 60px;
      margin: 10px;
      width: 45%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }


    .layout-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      margin-top: 50px;
    }

    .map-container,
    .contact-info,
    .image-section {
      flex: 1;
      min-width: 300px;
      margin: 10px;
    }

    .map-container iframe {
      width: 90%;
      height: 250px;
      border: 0;
      border-radius: 20px;
    }

    .contact-info {
      font-size: 1.2rem;
      line-height: 1.6;
      text-align: left;
      margin-top: 5%;
    }

    .contact-info img {
      width: 350px;
    }

    .image-section {
      text-align: right;
    }

    .image-section img {
      max-width: 38%;
      height: auto;
      border-radius: 10px;
      margin-top: 80px;
      margin-right: 80px;
    }

    .download-btn {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background-color: #005aab;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      margin-right: 80px;
    }

    footer {
      margin-top: 40px;
      text-align: center;
      color: #fff;
      padding: 20px;
      background-color: #555555;
    }

    @media screen and (max-width: 1024px) {
      .image-section img {
        width: 200px;
      }

      .contact-info p {
        font-size: 13px;

      }

      .map-container iframe {
        width: 300px;
        height: 200px;
        margin-right: 50px;
      }

      .map-container h2 {
        margin-right: 200px;
      }
    }



    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
      }

      .review-card {
        width: 90%;
      }

      .layout-grid {
        flex-direction: column;
        align-items: center;
      }

      .image-section,
      .contact-info {
        text-align: center;
      }

      .download-btn {
        margin-top: 10px;
      }

      .logo {
        width: 120px;
      }

      .map-container iframe {
        margin-right: -50px;
      }

      .image-section {
        padding-left: 80px;
      }

      .image-section img {
        width: 30%;
        margin-top: 20px;
      }

      footer {
        font-size: 0.7rem;
      }
    }

    @media screen and (max-width: 400px) {
      .contact-info p {
        font-size: 0.6rem;
        margin-right: 50px;
      }

      .contact-info img {
        width: 250px;
        margin-right: 50px;
      }

      .map-container iframe {
        width: 250px;
        height: 150px;
        margin-right: 50px;
      }
    }

    @media screen and (max-width: 370px) {
      .contact-info p {
        font-size: 0.5rem;
        margin-right: 50px;
      }

      .contact-info img {
        width: 200px;
        margin-right: 50px;
      }

      .map-container iframe {
        width: 200px;
        height: 100px;
        margin-right: 50px;
      }
    }
