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;
}

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);
  height: 40px;
}

.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;
  box-shadow: 0 2px 12px rgba(35, 98, 163, 0.08);
  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;
}

.contactus-visual-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: linear-gradient(120deg, #004b76  0%, #000000 100%);
  border-radius: 24px;
  padding: 40px 32px;
  margin: 32px 0;
  box-shadow: 0 4px 32px rgba(255, 180, 0, 0.08);
  width: 900px;
}

.contactus-visual img {
  width: 340px;
  max-width: 38vw;
  height: auto;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  display: block;
}

.contactus-form {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 340px;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  gap: 12px;
}

.contactus-form h2 {
  margin: 0 0 18px 0;
  color: #222;
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: left;
}

.contactus-form label {
  font-size: 1rem;
  color: #222;
  margin-bottom: 2px;
  margin-top: 8px;
  font-weight: 500;
}

.contactus-form input,
.contactus-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: #f5f5f5;
  font-size: 1rem;
  margin-bottom: 4px;
  outline: none;
  resize: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}

.contactus-form input:focus,
.contactus-form textarea:focus {
  box-shadow: 0 0 0 2px #004b76;
}

.contactus-form button {
  margin-top: 14px;
  padding: 12px 0;
  background: #222a3a;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.contactus-form button:hover {
  background: #004b76;
}

.contactus-address-section {
  margin-top: 36px;
  background: #f0f0f0;
  border-radius: 14px;
  padding: 24px 22px 18px 22px;
  box-shadow: 0 2px 12px rgba(255,180,0,0.06);
  font-size: 1.02rem;
  color: #222;
  max-width: 400px;
}
.contactus-address-section h3 {
  margin-top: 0;
  color: #004b76;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.contactus-address-section a {
  color: #004b76;
  text-decoration: none;
  font-weight: 500;
}
.contactus-address-section a:hover {
  text-decoration: underline;
}

