body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #1d1d1f;
  padding-top: 80px;
}

header {
  background-color: #004B76;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

header img {
  height: 75px;
  width: auto;
}

nav {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-right: 50px;
}

nav a {
  text-decoration: none;
  color: #ffffff;
}

nav a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #004B76;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  width: 325px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #ffffff;
}

/*.dropdown-menu a:hover{background:#004B76;}*/
.dropdown:hover .dropdown-menu {
  display: block;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-bar input {
  padding: 8px;
  border: 1px solid #d2d2d7;
  border-radius: 4px;
}

.search-bar button {
  padding: 8px 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #0056b3;
}

.support {
  font-size: 14px;
  color: #fff;
  text-align: right;
}

.hero {
  text-align: center;
  padding: 0;
  background: #fff;
}

.hero h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero p {
  font-size: 21px;
  color: #6e6e73;
  margin-bottom: 20px;
}

.hero video {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #004B76;
  color: #fff;
}

@media (max-width: 768px) {
  .dropdown {
    position: static;
    /* Reset position for mobile */
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    top: 19%;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 0;
    z-index: 1000;
    left: -50%;
  }
}

@media (max-width:768px) {
  nav {
    flex-direction: column;
    display: none;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
  }

  nav.active {
    display: flex;
  }

  header {
    flex-wrap: wrap;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {
  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .products {
    grid-template-columns: 1fr;
  }
}

#menu-toggle {
  display: none;
  background-color: #4e4e4e;
  color: #000;
  border: 1px solid #4e4e4e;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-right: 50px;
}

#menu-toggle:hover {
  background-color: #f0f0f0;
}

@media (max-width:768px) {
  #menu-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    background-color: #004B76;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 50%;
    gap: 10px;
  }

  nav.active {
    display: flex;
  }
}

@media (max-width:768px) {
  #menu-toggle {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  nav a {
    padding: 1px 0;
    text-align: center;
  }
}

.product-details {
  display: none;
}

@media (max-width:768px) {
  .product-details {
    flex-direction: column;
    text-align: center;
  }

  .product-details img {
    max-width: 80%;
  }

  .details-text h2 {
    font-size: 24px;
  }

  .details-text p {
    font-size: 14px;
  }
}

@media (max-width:480px) {
  .product-details img {
    max-width: 100%;
  }

  .details-text h2 {
    font-size: 20px;
  }

  .details-text p {
    font-size: 12px;
  }
}

#div-details-world ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#div-details-world li {
  margin-bottom: 10px;
}

#scroll-top {
  display: none;
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 1000;
  background: #e7e7e7;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
}

#scroll-top:hover {
  background: #747474;
}

.about {
  padding: 60px 20px;
  background-color: hsl(0, 0%, 100%);
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 32px;
  color: #1d1d1f;
  margin-bottom: 20px;
  font-weight: bold;
}

.about p {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width:768px) {
  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 14px;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s;
}

.language-switcher-Socialicon {
  position: fixed;
  top: 10px;
  right: 30px;
  z-index: 2002;
  display: flex;
  gap: 20px;
}

.language-switcher-Socialicon button {
  background: #989898;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 3px 9px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1rem;
  outline: none;
}

.language-switcher-Socialicon button.active,
.language-switcher-Socialicon button:focus {
  background: #000000;
}

.language-switcher-Socialicon button:hover {
  background: #000000;
}

.language-switcher-Socialicon a img {
  width: 25px;
}

.heroslider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  height: 450px;

}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(212 212 212 / 17%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  border-radius: 50%;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

button.prev:hover,
button.next:hover {
  background-color: rgba(96, 96, 96, 0.8);
}

@media (max-width:768px) {
  .heroslider {
    max-height: 300px;
  }

  button.prev,
  button.next {
    font-size: 18px;
    padding: 8px 16px;
  }
}

@media (max-width:480px) {
  .heroslider {
    max-height: 200px;
  }
}

.about-flex-container {
  display: flex;
  gap: 32px;
  margin: 40px 0px 0px 0px;
  max-width: 1400px;
  align-items: flex-start;
}

.about-sidebar {
  width: 270px;
  min-width: 260px;
  background: linear-gradient(135deg, #004B76 0%, #004B76 100%);
  border-radius: 0px 40px 40px 0;
  padding: 0 0 40px 0;
  color: #fff;
  box-shadow: 0 4px 32px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.sidebar-header {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-sidebar h3 {
  background: #757575;
  color: #fff;
  margin: 0;
  padding: 18px 20px;
  font-size: 1.5rem;
  border-radius: 4px 0 0 0;
  font-weight: bold;
}

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0;
}

.sidebar-menu li {
  margin: 18px 0;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  padding: 2px 32px;
  border-radius: 20px 0px 0px 20px;
  transition: background 0.2s, color 0.2s;
  font-weight: 400;
  position: relative;
}

.sidebar-menu li.active a,
.sidebar-menu a:hover {
  background: #fff;
  color: #228be6;
  box-shadow: 0 2px 12px rgba(44, 132, 255, 0.08);
}

.sidebar-menu i {
  font-size: 1.4em;
  min-width: 28px;
  text-align: center;
}

.about-main-content {
  flex: 1;
  background: #fff;
  padding: 24px 32px;
  border-radius: 0 4px 4px 0;
  border: 0px solid #bfc6ce;
  min-width: 0;
}

.about-main-content h2 {
  color: #2362a3;
  font-size: 2.2rem;
  margin-top: 0;
}

.about-main-flex {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.about-text {
  flex: 2;
}

.about-text ul {
  margin: 0 0 0 18px;
  padding: 0;
}

.about-text li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.about-image {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 6px;

  margin-top: 8px;
}

@media (max-width:1100px) {
  .about-flex-container {
    flex-direction: column;
  }

  .about-sidebar,
  .about-main-content {
    width: 100%;
    border-radius: 4px;
  }

  .about-main-flex {
    flex-direction: column;
    gap: 18px;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 16px;
  }
}

@media (max-width:900px) {
  .about-flex-container {
    flex-direction: column;
    gap: 0;
    margin: 20px 0 0 0;
    max-width: 100%;
  }

  .about-sidebar {
    width: 100%;
    min-width: unset;
    border-radius: 0 0 40px 40px;
    margin-bottom: 0;
    box-shadow: none;
    padding-bottom: 16px;
  }
}

@media (max-width:600px) {
  .about-main-content {
    padding: 14px 6px;
    border-radius: 0 0 8px 8px;
  }

  .about-main-content h2 {
    font-size: 1.3rem;
  }

  .about-main-flex {
    flex-direction: column;
    gap: 10px;
  }

  .about-image {
    max-width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .about-image img {
    max-width: 90vw;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .about-sidebar {
    display: none;
  }
}

/* Optional: Make scrollable if too many items */
@media (max-width: 600px) {
  .about-sidebar {
    max-height: 60vw;
    overflow-x: auto;
  }
}

.breadcrumb {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #2362a3;
}

.breadcrumb a {
  color: #2362a3;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .active {
  color: #757575;
  font-weight: bold;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(35, 98, 163, 0.08);
  transition: transform 0.2s;
}

.video-thumb:hover {
  transform: scale(1.03);
}

.video-thumb img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #fff;
  background: rgba(26, 35, 100, 0.7);
  border-radius: 50%;
  padding: 16px 22px;
  pointer-events: none;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-modal-close {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 2rem;
  color: #2362a3;
  cursor: pointer;
  z-index: 2;
}

.video-title {
  background: rgba(35, 98, 163, 0.85);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 8px 4px 6px 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.video-thumb {
  position: relative;
  /* ...existing styles... */
}

#video-frame {
  width: 80vw;
  max-width: 800px;
  height: 45vw;
  max-height: 450px;
  border: none;
  border-radius: 10px;
  margin: 32px 0 16px 0;
}

@media (max-width: 900px) {
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  #video-frame {
    width: 96vw;
    height: 54vw;
    max-width: 100vw;
    max-height: 60vw;
  }
}

@media (max-width: 600px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }

  #video-frame {
    width: 98vw;
    height: 56vw;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35, 98, 163, 0.08);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.07);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 140px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 120px;
  }
}

.img-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}

.img-lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
  display: block;
  margin: auto;
  background: #fff;
  padding: 8px;
}

.img-lightbox-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-weight: bold;
  transition: color 0.2s;
}

.img-lightbox-close:hover {
  color: #228be6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

 #google_translate_element {
      font-size: 0;
      /* hides default text spacing */
    }

    /* Remove Google default border & background */
    .goog-te-gadget-simple {
      background-color: white !important;
      border: none !important;
      padding: 2px 6px !important;
      border-radius: 4px;
      font-size: 14px;
      font-family: inherit;
      color: #333 !important;
      display: inline-flex;
      align-items: center;
    }

    /* Change dropdown arrow color */
    .goog-te-gadget-simple span:last-child {
      color: #666 !important;
    }

    /* Hide Google branding text */
    .goog-logo-link {
      display: none !important;
    }

    .goog-te-gadget {
      font-size: 0 !important;
    }

    /* Make dropdown cleaner */
    .goog-te-combo {
      padding: 4px 6px;
      font-size: 13px;
      border-radius: 4px;
      border: 1px solid #ccc;
    }