* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  width: 100vw;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

.header {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 20px;
  padding: 0px 20px;
  z-index: 999;
  box-sizing: border-box;
  width: 89.5vw;
  height: 80px;
  max-width: 1720px;
}

.navbar {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}

.logo svg {
  width: 100px;
  height: 40px;
  display: block;
}

.nav {
  display: flex;
  gap: 2vw;
  align-items: center;
}
.nav a:hover {
  cursor: pointer;
  border-bottom: 3px solid #f53f50;
  padding-bottom: 5px;
}

.nav a {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.nav-product,
.nav-about {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.mobile-link {
  justify-content: start;
}
.mobile-screen {
  display: none;
}
.hamburger-icon img {
  height: 40px;
  width: 40px;
}

@media (max-width: 850px) {
  .desktop-screen {
    display: none !important;
  }
  .mobile-screen {
    display: block;
  }
}

/****************************************
*****************************************
Dropdown CSS
*****************************************
****************************************/
.product-dropdown {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  flex-direction: row;
  padding: 1rem;
}
.product-dropdown.show {
  display: flex;
  left: 37%;
}
.aboutusdropdown.show{
  left: 58%;
}
.dropdown-column a:hover {
  background-color: rgba(60, 180, 246, 0.1);
  color: #f53f50;
  border-left: 3px solid #f53f50;
  padding-left: 10px;
}

.dropdown-content {
  display: flex;
  gap: 40px;
  /* justify-content: space-around; */
}

.dropdown-column a {
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 10px;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  display: block;
}

/****************************************
*****************************************
Ham burger Icon Section
*****************************************
****************************************/

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: white;
  z-index: 1000;
  flex-direction: column;
  border-radius: 10px;
  padding-left: 20px;
  padding-top: 10px;
  gap: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

.mobile-menu a {
  padding: 5px;
}

.mobile-menu a:hover {
  color: #f53f50;
  border-left: 3px solid #f53f50;
  padding-left: 25px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-content a {
  font-size: 18px;
  color: black;
  text-decoration: none;
}

.mobile-menu .primary-button {
  width: fit-content;
  font-size: 16px;
}

/****************************************
*****************************************
Hero Section
*****************************************
****************************************/

.hero-section {
  position: relative;
  max-width: 1920px;
  min-height: 500px !important;
  margin: 0 auto;
  background: linear-gradient(
    27deg,
    rgba(30, 26, 22, 0) 75.17%,
    #b53819 80.96%
  );
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-heading {
  position: absolute;
  top: 175px;
  left: 50%;
  width: 89.5%;
  transform: translateX(-50%);
}

.hero-heading h1 {
  color: #fff;
  font-style: normal;
  width: 60vw;
  max-width: 700px;

  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.hero-heading h2 {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  width: 60vw;
  max-width: 700px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero-button-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .hero-heading h1 {
    width: 80vw;
  }
}

@media (max-width: 1080px) {
  .nav {
    display: flex;
    gap: 1.5vw;
  }
  .hero-button-section {
    margin-bottom: 70px;
  }
}

/****************************************
*****************************************
Reusable CSS
*****************************************
****************************************/

.p-10-27 {
  padding: 10px 15px;
}

.f-20 {
  font-size: 16px;
}

.f-24 {
  font-size: 17px;
}

.f-32 {
  font-size: 19px;
}

.f-26 {
  font-size: 18px;
}

.x-center {
  display: flex;
  justify-content: center;
}

.font-weight-600 {
  font-weight: 600;
}

.secondary-black {
  color: var(--Secondary_Black_75, #342e2e);
}
.cover-center {
  object-fit: cover;
  object-position: center;
}

.hr-90vw-black {
  background: #000;
  height: 1px;
  width: 90vw;
  margin: 40px auto;
}

.hr-80vw-black {
  width: 80vw;
  margin: 40px auto;
  background: #000;
  height: 1px;
}

@media (max-width: 1080px) {
  .hr-80vw-black {
    width: 100vw;
    margin-right: 10px;
    margin-left: 10px;
  }
}

.primary-button {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 0.5vw;
  border: 1px solid #f53f50;
  background: var(--Primary_Red_75, #f53f50);
  outline: none;
}

.primary-button:hover {
  background-color: #f3182c;
  cursor: pointer;
}

.primary-button:focus,
.primary-button:active {
  outline: none;
  border: 1px solid #f3182c;
}

.view-more-btn {
  width: 300px;
  padding: 10px 0px;
  font-size: 16px;
}

.secondary-button {
  color: #fff;
  font-family: inherit;

  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5vw;
  border: 1px solid #fff;
  background-color: inherit;
}

.secondary-button:hover {
  background-color: #342e2e;
  cursor: pointer;
}

/****************************************
*****************************************
Footer CSS
*****************************************
****************************************/

.footer {
  background: #0a0303;
  color: white;
  padding: 60px 100px 30px;
  width: 100%;
  box-sizing: border-box;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: 173.07px;
}

.logo-key {
  color: white;
}

.logo-i {
  color: #c92837;
  font-style: italic;
}

.logo-tec {
  color: white;
}

.footer-desc {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-socials img {
  width: 21px;
  height: 21px;
  margin-right: 15px;
  vertical-align: middle;
  cursor: pointer;
}

.footer-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 160px;
}
.footer-col a{
  text-decoration: none;
  color: #fff;
}

.footer-col h4 {
  color: #c92837;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #e0e0e0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.contact-info img {
  width: 16px;
  margin-top: 4px;
}

.footer-line {
  height: 1px;
  background-color: #2b2b2b;
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 15px;
  color: #e0e0e0;
}

.footer-bottom-right a {
  color: #c92837;
  text-decoration: none;
  margin: 0 6px;
}

.footer-bottom-right a:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .footer-main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-columns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    background: #0a0303;
    color: white;
    padding: 60px 30px 30px;
    width: 100%;
    box-sizing: border-box;
  }
  .footer-bottom span {
    margin-bottom: 6px;
  }
}

/****************************************
*****************************************
Form Section
*****************************************
****************************************/
.form-section {
  padding-left: 10px;
}

.form-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 10px;
  color: #000;
}

.form-title {
  text-align: center;
  color: #f53f50;
  font-size: 24px;
  margin-bottom: 30px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 300px;
}

label {
  font-weight: 600;
  font-size: 15px;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f53f50;
  outline: none;
}

textarea {
  resize: vertical;
}

.form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.form-submit-btn,
.form-reset-btn {
  font-size: 16px;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.form-submit-btn {
  background-color: #f53f50;
  color: white;
}

.form-reset-btn {
  background-color: white;
  border: 1px solid #000;
  color: black;
}

/****************************************
*****************************************
Item Section
*****************************************
****************************************/

.item-single img {
  width: 300px;
  height: auto;
  display: block;
  /* border-radius: 10px; */
}

.item-single {
  display: flex;
  gap: 15px;
  flex-direction: column;
  max-width: 400px;
  padding: 30px;
  align-items: center;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.item-single p {
  color: #000;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  height: 48px;
  display: flex;
  align-items: center;
}

.item-single button {
  width: 300px;
  padding: 10px 0px;
  font-size: 16px;
}

/****************************************
*****************************************
Panel Item Section
*****************************************
****************************************/

.panel-section {
  max-width: 1200px;
  margin: 50px auto;
}

.panel-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 20px;
  margin-left: 30px;
  padding: 30px;
}
.panel-item img {
  width: 300px;
  height: auto;
}

.panel-item h5 {
  padding-top: 10px;
  font-size: 16px;
}

.panel-item ul {
  margin-left: 15px;
  line-height: 1.5;
}

.panel-item li {
  margin-bottom: 10px;
}
