
        /* ===== ROOT VARIABLES ===== */
        :root {
          --primary-color: #0049a7;
      }

      /* ===== CUSTOM TEXT COLOR ===== */
      .text-custom-color {
          color: var(--primary-color) !important;
      }

      /* ===== CAROUSEL STYLES ===== */
      .carousel-item {
          position: relative;
          overflow: hidden;
      }

      .carousel-item img {
          width: 100%;
          height: auto;
          object-fit: cover;
          transition: transform 5s ease-in-out;
      }

      /* ===== CAROUSEL RESPONSIVE STYLES ===== */
      @media (min-width: 1200px) {
          .carousel-item img {
              height: 700px;
          }
      }

      @media (max-width: 1199.98px) and (min-width: 992px) {
          .carousel-item img {
              height: 60vh;
          }
      }

      @media (max-width: 991.98px) and (min-width: 768px) {
          .carousel-item img {
              height: 50vh;
          }
      }

      @media (max-width: 767.98px) and (min-width: 576px) {
          .carousel-item img {
              height: 45vh;
          }
      }

      @media (max-width: 575.98px) {
          .carousel-item img {
              height: 40vh;
          }
      }

      .carousel-item.active img {
          transform: scale(1.1);
      }

      /* ===== CAROUSEL CAPTION STYLES ===== */
      .carousel-caption {
          padding: 1rem;
          border-radius: 10px;
          bottom: 20px;
          text-align: center;
          width: 100%;
          left: 0;
          right: 0;
      }

      .carousel-caption h5 {
          font-weight: bold;
          margin-bottom: 1rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

      }

      .carousel-caption p {
          max-width: 600px;
          margin: 0 auto;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      }

      /* ===== FIXED IMAGE STYLES ===== */
      .fixed-img {
          height: 200px;
          object-fit: cover;
      }

      @media (max-width: 767.98px) {
          .fixed-img {
              height: 150px;
          }
      }

      /* ===== ABOUT SECTION STYLES ===== */
      .about-section {
          padding: 80px 0;
          background-color: #fff;
          position: relative;
          overflow: hidden;
      }

      .about-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, rgba(0, 73, 167, 0.03), transparent);
          z-index: 0;
      }

      /* ===== ABOUT CONTENT STYLES ===== */
      .about-content {
          position: relative;
          z-index: 1;
      }

      .about-label {
          font-size: 1.1rem;
          letter-spacing: 2px;
          margin-bottom: 15px;
          display: inline-block;
          position: relative;
      }

      .about-label::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          width: 40px;
          height: 2px;
          background-color: var(--primary-color);
          transition: width 0.3s ease;
      }

      .about-label:hover::after {
          width: 80px;
      }

      /* ===== ABOUT TITLE AND DESCRIPTION STYLES ===== */
      .about-title {
          font-size: 2.5rem;
          font-weight: bold;
          margin-bottom: 20px;
          color: #222;
          position: relative;
          line-height: 1.2;
      }

      .about-description {
          color: #555;
          font-size: 1.1rem;
          line-height: 1.8;
          margin-bottom: 30px;
          position: relative;
      }

      /* ===== ABOUT BUTTON STYLES ===== */
      .about-btn {
          position: relative;
          overflow: hidden;
          transition: all 0.3s ease;
          padding: 12px 30px;
          font-weight: bold;
          letter-spacing: 1px;
      }

      .about-btn::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
          transition: 0.5s;
      }

      .about-btn:hover::before {
          left: 100%;
      }

      /* ===== ABOUT IMAGE CONTAINER STYLES ===== */
      .about-image-container {
          position: relative;
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          transform: perspective(1000px) rotateY(0deg);
          transition: transform 0.5s ease;
      }

      .about-image {
          width: 100%;
          height: auto;
          display: block;
          transition: transform 0.5s ease;
      }

      .image-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(45deg, rgba(0, 73, 167, 0.1), transparent);
          opacity: 0;
          transition: opacity 0.3s ease;
      }

      .about-image-container:hover {
          transform: perspective(1000px) rotateY(5deg);
      }

      .about-image-container:hover .about-image {
          transform: scale(1.05);
      }

      .about-image-container:hover .image-overlay {
          opacity: 1;
      }

      /* ===== RESPONSIVE ABOUT SECTION STYLES ===== */
      @media (max-width: 768px) {
          .about-section {
              padding: 40px 0;
          }

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

          .about-description {
              font-size: 1rem;
          }

          .about-btn {
              padding: 10px 25px;
          }
      }

      /* ===== TEXT PRIMARY STYLES ===== */
      .text-primary {
          position: relative;
          display: inline-block;
          text-align: center;
      }

      .text-primary::before,
      .text-primary::after {
          content: "";
          position: absolute;
          background-color: red;
          left: 50%;
          transform: translateX(-50%);
      }

      .text-primary::before {
          bottom: -4px;
          width: 70%;
          height: 2px;
      }

      .text-primary::after {
          bottom: -8px;
          width: 35%;
          height: 1px;
      }

      /* ===== FEATURE LIST STYLES ===== */
      .feature-list {
          list-style: none;
          padding: 0;
      }

      .feature-list li {
          display: flex;
          align-items: center;
          font-size: 1rem;
          margin-bottom: 8px;
      }

      .feature-list li i {
          color: var(--primary-color);
          margin-right: 8px;
      }

      /* ===== BUTTON PRIMARY STYLES ===== */
      .btn-primary {
          background-color: var(--primary-color);
          border: none;
          padding: 10px 18px;
          font-size: 1rem;
          font-weight: bold;
      }

      /* ===== LOGO SLIDER STYLES ===== */
      .logo-slider {
          overflow: hidden;
          white-space: nowrap;
          background-color: #fff;
          padding: 15px 0;
          position: relative;
      }

      .logos-wrapper {
          display: inline-block;
          animation: scroll 25s linear infinite;
      }

      .logos {
          display: flex;
          gap: 20px;
      }

      .logos img {
          max-height: 40px;
          width: auto;
          object-fit: contain;
      }

      @keyframes scroll {
          0% {
              transform: translateX(0);
          }

          100% {
              transform: translateX(-50%);
          }
      }

      /* ===== WHY CHOOSE US SECTION STYLES ===== */
      .why-choose-us {
          text-align: center;
          padding: 80px 0;
          background-color: #f8f9fa;
          position: relative;
          overflow: hidden;
      }

      .why-choose-us::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(45deg, rgba(0, 73, 167, 0.05), transparent);
          z-index: 0;
      }

      /* ===== SECTION HEADER STYLES ===== */
      .section-header {
          margin-bottom: 60px;
          position: relative;
      }

      .section-header h5 {
          color: var(--primary-color);
          font-weight: bold;
          font-size: 1.1rem;
          text-transform: uppercase;
          letter-spacing: 2px;
          margin-bottom: 15px;
          position: relative;
          display: inline-block;
      }

      .section-header h5::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 50%;
          transform: translateX(-50%);
          width: 40px;
          height: 2px;
          background-color: var(--primary-color);
          transition: width 0.3s ease;
      }

      .section-header:hover h5::after {
          width: 80px;
      }

      .section-header h2 {
          font-weight: bold;
          font-size: 2.5rem;
          margin-top: 15px;
          margin-bottom: 20px;
          position: relative;
      }

      .section-header p {
          max-width: 800px;
          margin: 0 auto;
          color: #6c757d;
          font-size: 1.1rem;
          line-height: 1.6;
      }

      /* ===== FEATURE CARD STYLES ===== */
      .feature-card {
          text-align: center;
          padding: 30px 25px;
          background: white;
          border-radius: 15px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          position: relative;
          overflow: hidden;
          height: 100%;
      }

      .feature-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(45deg, var(--primary-color), transparent);
          opacity: 0;
          transition: opacity 0.3s ease;
      }

      .feature-card:hover {
          transform: translateY(-10px) scale(1.02);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      }

      .feature-card:hover::before {
          opacity: 0.05;
      }

      /* ===== FEATURE ICON STYLES ===== */
      .feature-icon {
          width: 70px;
          height: 70px;
          background: var(--primary-color);
          color: white;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          margin: 0 auto 20px;
          font-size: 28px;
          transition: all 0.3s ease;
          position: relative;
          z-index: 1;
      }

      .feature-card:hover .feature-icon {
          transform: scale(1.1) rotate(5deg);
          background: var(--primary-color);
      }

      .feature-card h5 {
          font-size: 1.25rem;
          color: var(--primary-color);
          margin-bottom: 15px;
          position: relative;
          z-index: 1;
          transition: color 0.3s ease;
      }

      .feature-card p {
          font-size: 0.95rem;
          color: #555;
          line-height: 1.6;
          position: relative;
          z-index: 1;
          transition: color 0.3s ease;
      }

      .feature-card:hover p {
          color: #333;
      }

      /* ===== RESPONSIVE WHY CHOOSE US STYLES ===== */
      @media (max-width: 768px) {
          .why-choose-us {
              padding: 60px 0;
          }

          .section-header h2 {
              font-size: 2rem;
          }

          .section-header p {
              font-size: 1rem;
          }

          .feature-card {
              padding: 25px 20px;
          }

          .feature-icon {
              width: 60px;
              height: 60px;
              font-size: 24px;
          }
      }

      /* ===== HIDE MD STYLES ===== */
      .hide-md {
          display: none;
      }

      /* ===== FIXED BACKGROUND SECTION STYLES ===== */

      .fixed-bg-section {
          position: relative;
          background-image: url('/asset/images/carousel1.jpg');
          background-attachment: fixed;
          background-size: cover;
          background-position: center;
          padding: 100px 0;
      }

      .fixed-bg-section::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.4);
          z-index: 1;
      }

      .fixed-bg-section .z-2 {
          position: relative;
          z-index: 2;
      }

      /* ===== SERVICE CARD STYLES ===== */
      .service-card {
          height: 100%;
          transition: opacity 0.3s ease;
      }

      .service-card:hover {
          opacity: 0.85;
      }

      .card-img-top {
          height: 180px;
          object-fit: cover;
      }




      @media (min-width: 768px) {
          .hide-md {
              display: block;
          }

      }

      /* ===== RESPONSIVE ALIEN TEXT STYLES ===== */
      @media (max-width: 767.98px) {
          #alienText {
              font-size: 1.5rem;
          }

          #about {
              padding: 20px;
          }
      }

      /* ===== STAR JEDI FONT FACE ===== */
      @font-face {
          font-family: 'Star Jedi';
          src: url(https://cdn.jsdelivr.net/gh/TecnoSpeedy/starwars-font/StarJedi.ttf) format('truetype');
          font-weight: normal;
          font-style: normal;
      }



      /* caraousel  start */
      
      #carouslel-text {
        margin-bottom: 170px;
        padding: 20px;
    }

    #carouslel-text h5 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    #carouslel-text p {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    @media (max-width: 1400px) {
        #carouslel-text {
            margin-bottom: 150px;
        }

        #carouslel-text h5 {
            font-size: 2.2rem;
        }

        #carouslel-text p {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 1200px) {
        #carouslel-text {
            margin-bottom: 130px;
        }

        #carouslel-text h5 {
            font-size: 2rem;
        }

        #carouslel-text p {
            font-size: 1rem;
        }
    }

    @media (max-width: 992px) {
        #carouslel-text {
            margin-bottom: 100px;
        }

        #carouslel-text h5 {
            font-size: 1.8rem;
        }

        #carouslel-text p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 768px) {
        #carouslel-text {
            margin-bottom: 80px;
            padding: 15px;
        }

        #carouslel-text h5 {
            font-size: 1.5rem;
        }

        #carouslel-text p {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 576px) {
        #carouslel-text {
            margin-bottom: 50px;
            padding: 10px;
        }

        #carouslel-text h5 {
            font-size: 1.2rem;
        }

        #carouslel-text p {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 400px) {
        #carouslel-text {
            margin-bottom: 30px;
            padding: 8px;
        }

        #carouslel-text h5 {
            font-size: 1rem;
        }

        #carouslel-text p {
            font-size: 0.75rem;
        }
    }

    
      /* caraousel  End */

      /* ===== SEPARATOR SECTION ===== */

      
      .separator-section {
        position: relative;
        width: 100%;
        height: 22px;
        /* Adjust to match rope height */
        background-color: white;
        z-index: 10;
    }

    .rope-divider {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .anchor-icon {
        position: absolute;
        bottom: -105px;
        /* Adjust to overlap nicely */
        right: 5%;
        /* Change as needed */
        height: 280px;
        z-index: 11;
        transform: rotate(295deg);
    }

    /* Hide the anchor icon on tablets and mobile */
    @media (max-width: 1024px) {
        .anchor-icon {
            display: none;
        }
    }
    /* ===== SEPARATOR SECTION end ===== */

    /* Process section start */

    
    .process-section {
      padding: 80px 30px;
      /* background-color: #f8f9fa; */
      background-color: white;
      margin: auto;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .section-title {
      font-size: 2.5rem;
      color: #222;
      margin-bottom: 60px;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--primary-color);
      transition: width 0.3s ease;
  }

  .section-title:hover::after {
      width: 120px;
  }

  .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .process-card {
      background: #fff;
      border-radius: 16px;
      padding: 30px 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
  }

  .process-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, var(--primary-color), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .process-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .process-card:hover::before {
      opacity: 0.1;
  }

  .process-card img {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
  }

  .process-card:hover img {
      transform: scale(1.1) rotate(5deg);
  }

  .process-card h3 {
      font-size: 1.25rem;
      color: var(--primary-color);
      margin-bottom: 12px;
      transition: color 0.3s ease;
  }

  .process-card:hover h3 {
      color: var(--primary-color);
  }

  .process-card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
      transition: color 0.3s ease;
  }

  .process-card:hover p {
      color: #333;
  }

  .step-number {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: var(--primary-color);
      color: white;
      font-weight: bold;
      padding: 8px 12px;
      border-radius: 50px;
      font-size: 0.9rem;
      transition: all 0.3s ease;
  }

  .process-card:hover .step-number {
      transform: scale(1.1);
      background-color: var(--primary-color);
  }

  @media (max-width: 768px) {
      .process-section {
          padding: 40px 20px;
      }

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

      .process-grid {
          gap: 20px;
      }

      .process-card {
          padding: 20px 15px;
      }
  }

 /* Process section End */



 /* ===== GLOBAL PORTS SECTION ===== */
 
 .global-ports-section {
  background-color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.global-ports-section .section-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.global-ports-section .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.global-ports-section .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}









.map-container {
  position: relative;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 500px;
}

#map {
  height: 100%;
  min-height: 500px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.custom-marker {
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.marker-pulse {
  animation: marker-pulse 2s infinite;
}

@keyframes marker-pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(0, 73, 167, 0.4);
  }

  70% {
      box-shadow: 0 0 0 10px rgba(0, 73, 167, 0);
  }

  100% {
      box-shadow: 0 0 0 0 rgba(0, 73, 167, 0);
  }
}

.leaflet-popup-content-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.port-popup {
  text-align: center;
  padding: 10px;
}

.port-popup h4 {
  color: var(--primary-color);
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.port-popup p {
  color: #666;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.port-popup .services {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .global-ports-section {
      padding: 60px 0;
  }



  .map-container {
      min-height: 400px;
  }

  #map {
      min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .global-ports-section {
      padding: 40px 0;
  }

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



  .stat-item h4 {
      font-size: 1.5rem;
  }

  .map-container {
      min-height: 350px;
  }

  #map {
      min-height: 350px;
  }

  .port-popup {
      padding: 8px;
  }

  .port-popup h4 {
      font-size: 14px;
  }

  .port-popup p {
      font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .map-container {
      min-height: 300px;
  }

  #map {
      min-height: 300px;
  }

  .stat-item h4 {
      font-size: 1.3rem;
  }

}



        /* Update marker styles for better visibility on light background */
        .custom-marker {
          background-color: var(--primary-color);
          border-radius: 50%;
          border: 2px solid white;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      }

      .marker-pulse {
          animation: marker-pulse 2s infinite;
      }

      @keyframes marker-pulse {
          0% {
              box-shadow: 0 0 0 0 rgba(0, 73, 167, 0.6);
          }

          70% {
              box-shadow: 0 0 0 15px rgba(0, 73, 167, 0);
          }

          100% {
              box-shadow: 0 0 0 0 rgba(0, 73, 167, 0);
          }
      }

      /* Enhanced popup styles for light theme */
      .leaflet-popup-content-wrapper {
          background-color: white;
          border-radius: 10px;
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
      }

      .leaflet-popup-tip {
          background-color: white;
      }

      .port-popup {
          text-align: center;
          padding: 12px;
      }

      .port-popup h4 {
          color: var(--primary-color);
          margin: 0 0 8px;
          font-size: 16px;
          font-weight: 600;
      }

      .port-popup p {
          color: #444;
          margin: 0;
          font-size: 14px;
          line-height: 1.4;
      }

      .port-popup .services {
          margin-top: 10px;
          padding-top: 10px;
          border-top: 1px solid rgba(0, 0, 0, 0.08);
          font-size: 12px;
          color: #666;
      }

      /* Map container styles */
      .map-container {
          background: white;
          padding: 15px;
          border-radius: 15px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      #map {
          border-radius: 10px;
          border: 1px solid rgba(0, 0, 0, 0.05);
      }

      /* Zoom control styles */
      .leaflet-control-zoom {
          border: none !important;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
      }

      .leaflet-control-zoom a {
          background-color: white !important;
          color: var(--primary-color) !important;
          border: 1px solid rgba(0, 0, 0, 0.1) !important;
      }

      .leaflet-control-zoom a:hover {
          background-color: var(--primary-color) !important;
          color: white !important;
      }

      /* Responsive adjustments remain the same */
      @media (max-width: 991.98px) {
          /* ... existing responsive styles ... */
      }

      @media (max-width: 767.98px) {

          /* ... existing responsive styles ... */
          .custom-marker {
              border-width: 1.5px;
          }
      }

      @media (max-width: 575.98px) {

          /* ... existing responsive styles ... */
          .custom-marker {
              border-width: 1px;
          }
      }


      /* /Faq Section */

      
      .faq {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .faq-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .faq-item {
        background: var(--surface-color);
        border-radius: 12px;
        padding: 20px 25px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .faq-question h3 {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        color: var(--primary-color);
    }

    .faq-toggle {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        margin-top: 0;
    }

    .faq-item.active .faq-answer {
        max-height: 200px;
        opacity: 1;
        visibility: visible;
        margin-top: 15px;
    }

    .faq-item.active .faq-toggle {
        transform: rotate(180deg);
        color: var(--primary-color);
    }

    .faq-arrow {
        color: var(--primary-color);
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
        .faq-title {
            font-size: 1.75rem;
        }

        .faq-description {
            font-size: 1rem;
        }
    }
    
    /* faq end */