* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* Navbar Section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background-color: #1a1a1a;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 40px;
  height: 70px;
  position: relative;
}

.logo-with-text {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  color: white;
}

.company-logo {
  height: 70px;
  margin-right: 15px;
  padding-top: 10px;
}

.company-title {
  font-size: 18px;
  color: white;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.main-menu a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.main-menu a:hover {
  color: #00AEEF;
}

.social-icons i {
  font-size: 18px;
  margin-left: 10px;
  color: white;
  cursor: pointer;
}

.hamburger {
  font-size: 28px;
  color: white;
  display: none;
  cursor: pointer;
}

.product-dropdown {
  display: none;
  flex-direction: column;
  padding-left: 15px;
}

.product-dropdown a {
  padding: 4px 0;
  font-size: 15px;
  color: white;
  text-decoration: none;
}

.product-dropdown.show {
  display: flex;
}

.product-icon {
  display: none;
  margin-left: 5px;
  color: #8B1C13;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-menu {
    display: none;
    flex-direction: column;
    background-color: #060606;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
    padding: 10px 20px;
  }

  .main-menu.show {
    display: flex !important;
  }

  .main-menu a {
    padding: 8px 0;
    font-size: 16px;
  }

  .products-toggle {
    margin-left: 107px;
  }

  .product-dropdown a {
    margin-left: 80px;
    margin-top: 5px;
  }

  .product-dropdown a::before {
    content: '•';
    /* bullet character */
    position: absolute;
    left: 100px;
    color: white;
    /* bullet color */
    font-size: 20px;
    line-height: 1;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
    width: 100%;
  }

  .product-icon {
    display: inline;
  }

  .product-wrapper .product-dropdown {
    padding-left: 20px;
  }
}

@media screen and (max-width: 415px) {
  .company-title {
    font-size: 13px;
    color: white;
  }
}

/* Desktop Dropdown */
@media screen and (min-width: 769px) {
  .product-dropdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #1a1a1a;
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .dropdown-toggle i {
    font-size: 13px;
    color: #fff;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    min-width: 260px;
    z-index: 1000;
    flex-direction: column;
    padding: 10px;
    border-radius: 4px;
    padding-left: 20px;
  }

  .dropdown-menu a {
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    display: block;
  }

  .dropdown-menu a::before {
    content: '•';
    /* bullet character */
    position: absolute;
    left: 10px;
    color: white;
    /* bullet color */
    font-size: 20px;
    line-height: 1;
  }

  .dropdown-menu a:hover {
    background-color: #8B1C13;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Location Section */

.location-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
  color: black;
}

.contact-item i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #8B1C13;
}

.contact-item p {
  margin: 0;
  font-size: 16px;
}

.contact-item a {
  color: black;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ✅ Mobile Responsive */
@media screen and (max-width: 768px) {
  .location-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }

  .contact-item {
    max-width: 100%;
    font-size: 15px;
  }

  .contact-item i {
    font-size: 30px;
  }

  .contact-item p {
    font-size: 14px;
    padding: 0 10px;
  }
}



/* Contact Section */
.contact-section {
  background: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* Card Wrapper */
.contact-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 40px auto; /* ✅ Add this line */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fefaf9;
  padding: 40px 30px;
}


/* Right Card */
.contact-wrapper h2 {
  color: #1F2A44;
  margin-bottom: 20px;
  font-size: 28px;
  font-family: "Merriweather", serif;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.row.full {
  flex-direction: column;
}

input,
select,
textarea {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  resize: none;
}

.con-btn-si {
  background: #8B1C13;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
  font-family: "Merriweather", serif;
}

.con-btn-si:hover {
  background-color: white;
  color: #8B1C13;
  border: 1px solid #8B1C13;
}

/* Responsive - Tablets & Mobiles */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 30px 20px;
  }

  .row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-right h2 {
    font-size: 24px;
  }

  .con-btn-si {
    font-size: 15px;
  }
}

/* Responsive - Small Mobiles */
@media (max-width: 480px) {
  .contact-wrapper {
    padding: 20px 15px;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    padding: 10px;
  }

  .contact-right h2 {
    font-size: 20px;
  }

  .con-btn-si {
    font-size: 14px;
    padding: 12px;
  }
}





/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  font-size: 18px;
  background-color: #8B1C13;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
  background-color: #555;
  transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  #scrollTopBtn {
    width: 36px;
    height: 36px;
    font-size: 14px;
    bottom: 45px;
    right: 12px;
  }
}

@media (max-width: 360px) {
  #scrollTopBtn {
    width: 32px;
    height: 32px;
    font-size: 12px;
    bottom: 50px;
    right: 15px;
  }
}