body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER ############################### */

.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo img {
  height: 60px;
}

/* MENU */
.dropdown a {
  padding: 10px 0 15px 0;
}
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  /* align-items: center; */
  margin: 0;
}

.nav ul li {
  position: relative;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.nav ul li a:hover {
  color: #bd313d;
}

/* DROPDOWN ############################### */

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  display: none; /* important */
  border-radius: 0;
}

/* dropdown items */

.dropdown {
  position: relative;
}

.dropdown-menu li a {
  display: block;
  padding: 3px 10px;
  color: #333;
  text-decoration: none;
}
.dropdown .dropdown-menu {
  display: none;
}

.fa-chevron-down {
  font-size: 12px;
}
/* hover effect */

.dropdown:hover .dropdown-menu {
  display: block;
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
  border-radius: 3px;
}

/* MOBILE */

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #fff;
    transition: 0.3s;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    position: static;
  }
  .dropdown-menu li a {
    padding: 0;
  }
  .nav ul {
    flex-direction: column;
    padding: 10px;
    gap: 20px;
  }

  .nav.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  /* mobile dropdown */

  .dropdown-menu {
    position: static; /* important */
    display: none;
    box-shadow: none;
    padding-left: 10px !important;
    border: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* hero section ############################### */

.hero {
  width: 100%;
  min-height: 550px;
  background-image: url("../img/hero-img.jpg");
  background-size: cover;
  background-position: center;
  align-items: center;
  padding: 120px 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 30px;
  background: #fff;
  border: 1px solid;
  border-color: #e50202;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* responsive ############################### */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: 450px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
}

/*  Who we are  ############################### */
.about-section {
  background: #f7f7f7;
}

.about-img img {
  border-radius: 6px;
  width: 100%;
  margin-top: 15px;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.about-subtitle {
  font-size: 16px;
  color: #313c4d;
  letter-spacing: 1px;
}

.about-title {
  font-size: 32px;
  /* font-weight: 600; */
  margin: 15px 0;
  color: #313c4d;
  line-height: 1.4;
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.about-btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid;
  border-color: #e50202;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

@media screen and (max-width: 575px) {
  section.about-section .row {
    flex-direction: column-reverse;
  }
}
/* Our core values ############################### */

.core-value-section {
  padding: 80px 0;
  background: #f3f5f7;
}

.core-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2c3e50;
}

.core-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.core-list li {
  display: flex;
  align-items: flex-start;
  align-items: center;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.fa-circle-dot {
  border-radius: 50%;
  margin-right: 15px !important;
  margin-top: 8px;
  color: #e50202;
  flex-shrink: 0;
}

.core-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid;
  border-color: #e50202;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

.core-img img {
  border-radius: 6px;
  margin-top: 15px;
  width: 100%;
  object-fit: cover;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

/*  How we can we help you  ############################### */

.help-section {
  padding: 80px 0;
  background: #f3f5f7;
}

.help-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #2c3e50;
}

.help-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border: 2px solid #ff3b30;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.help-card img {
  border-radius: 12px;
  margin-bottom: 20px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.help-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.help-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* footer  */
.modern-footer {
  background: #0f172a;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-text {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
    color: #bd313d;
    padding-left: 6px;
    font-weight: bolder;
}

.footer-hours {
  list-style: none;
  padding: 0;
  color: #cbd5e1;
}

.footer-hours li {
  margin-bottom: 8px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e293b;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ef4444;
  transform: translateY(-3px);
}

.footer-map iframe {
  border-radius: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* Section about ################################################## */

.about {
  width: 100%;
  height: 300px;
  background-image: url("../img/hero-img.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  text-align: center;
}

.hero-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
}
.about {
  height: 300px;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* full cover */
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Our Core Values ################################################## */

.vision-mission {
  padding: 80px 0;
  background: #f3f4f6;
}

.vm-card {
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.vm-card:hover {
  transform: translateY(-6px);
}

.vm-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.vm-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Contact Us ################################################## */

.form-control:focus{
  border-color: #ced4da !important;
  box-shadow: none !important;
  outline: none !important;
}

.contact {
  width: 100%;
  height: 300px;
  background-image: url("../img/hero-img.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* full cover */
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
}
.contact {
  height: 300px;
  position: relative;
}

.contact-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.contact-info {
  background: #bd313d;
  color: #fff;
  padding: 40px;
  border-radius: 6px;
}

.contact-info h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-info i {
  margin-right: 10px;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.contact-form h3 {
  font-size: 26px;
  margin-bottom: 5px;
}

.contact-form p {
  margin-bottom: 25px;
  color: #666;
}

.form-control {
  border-radius: 4px;
  background-color: #f1e3e5 !important;
  padding: 12px;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #ccc !important; /* blue remove */
  outline: none;
  box-shadow: none;
}

.contact-btn {
  background: #bd313d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
}

/* surgical ################################################## */

.product-a {
  text-decoration: none;
  color: #212529;
}
.surgical-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.surgical-products {
  padding: 80px 0;
  background: #f5f7fa;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  margin-bottom: 50px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 20px;
  text-align: center;
}

.product-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #c04f59;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.product-btn:hover {
  border: 1px solid;
  border-color: #e50202;
  background-color: #fff;
  color: #000;
}

.surgical-section {
  margin-top: 25px;
}

form.needs-validation input {
    padding: 12px 15px;
}

.footer-logo img{
    width: 200px;
    border-radius: 3px;
}

.footer-bottom div:last-child a{
    transition: 0.3s ease;
}

.footer-bottom div:last-child a:hover{
    color: #ffd800 !important;
}