/* General styles */
body {
  font-family: "MuseoModerno", sans-serif;
  margin: 0;
  padding: 0;
}

section::-webkit-scrollbar {
  width: 16px;
}

.section::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.section::-webkit-scrollbar-thumb {
  background-color: #d4aa70;
  border-radius: 100px;
}

.section {
  scrollbar-color: #d4aa70 #e4e4e4;
}

header {
  background-color: #000000;
  padding: 10px 0;
}

.logo img {
  width: 200px;
  height: 40px;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  flex: 1;
}

/* Navigation menu styles for desktop */
.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list li {
  margin: 0 10px;
  font-weight: 700;
}

.nav-list li a {
  text-decoration: none;
  color: rgb(255, 111, 0);
  padding: 5px 10px;
  position: relative;
}

.nav-list li a:hover {
  border-radius: 5px;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-list li a:hover::after {
  width: 100%; /* Expands the line on hover */
}

/* Mobile menu styles */
#mobile-menu {
  display: none; /* Hidden by default */
  color: white;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
    width: 100%;
    display: none; /* Hidden by default on mobile */
    z-index: 9999;
  }

  .nav-list.nav-active {
    display: flex; /* Show when active */
  }

  .nav-list li {
    font-weight: 700;
    text-align: center;
    margin: 10px 0;
  }

  .nav-list li a {
    padding: 10px 0;
  }

  #mobile-menu {
    display: block; /* Show the menu icon on mobile */
  }
}

main {
  display: flex;
  flex-direction: column;
}

section {
  position: relative;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  margin-top: 0;
  color: #ffffff;
  text-align: center;
  margin-top: 2rem;
  font-size: 5rem;
}

/* make h1 responcive */
@media (max-width: 600px) {
  h1 {
    font-size: 3rem;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover {
  color: #23527c;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.highlight {
  color: rgb(255 97 0);
}

.connectwithus {
  font-family: sans-serif;
  white-space: nowrap;
  font-weight: 700;
  background-color: rgb(255 97 0);
  color: rgb(0, 0, 0);
  padding: 15px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  margin-top: 300px;
}

.welcome {
  color: white;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.5rem;
  padding-left: 100px;
  padding-right: 100px;
}

/* make .welcome reponsive */
@media (max-width: 600px) {
  .welcome {
    font-size: 1rem;
  }
}

/* Style for the main container */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}

/* Style for the left container */
.left-container {
  flex: 1;
  position: relative;
  margin-bottom: 20px;
}

.left-container img {
  width: 100%;
  position: absolute;
  top: -20px;
  left: 0;
}

/* Style for the right container */
.right-container {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 20px;
  margin-bottom: 20px;
}

.right-container img {
  margin-left: 10px;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}

/* Service text styling */
.service-text {
  color: white;
  font-size: 4rem;
  margin-top: 20px;
}

/* Service description styling */
.service-desc {
  color: rgb(255, 97, 0);
  font-size: 2rem;
  margin-top: 10px;
}

.browseservice {
  font-family: sans-serif;
  white-space: nowrap;
  font-weight: 700;
  background-color: rgb(255 97 0);
  color: rgb(0, 0, 0);
  padding: 15px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .left-container,
  .right-container {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }

  .left-container img,
  .right-container img {
    position: relative;
    width: 100%;
    top: 0;
  }

  .service-text,
  .service-desc {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    margin: 10px 0;
  }
}

/* Styling for the section with black background */
.black {
  background-color: #000000;
  padding: 20px 0;
}

.container-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 200px;
  box-sizing: border-box;
  text-align: center;
}

h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 50px;
  color: #ffffff;
}

p {
  color: #ffffff;
  font-size: 20px;
  width: 800px;
}

.service-img img {
  width: 600%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .row {
    gap: 8px;
  }

  .col {
    width: 100%;
    max-width: 100%;
  }

  h3 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
    width: 100%;
  }

  .service-img img {
    width: 100%;
  }
}

/* Why us cards css */
.black-section {
  background-color: black;
  padding: 20px 0;
  font-family: MuseoModerno;
}

.whyus {
  color: rgb(255, 255, 255);
  text-align: center;
  margin-top: 2rem;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.container-3 {
  max-width: 1200px; /* Adjusted for better centering */
  margin: 0 auto;
  padding: 0 15px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Better alignment */
  gap: 30px;
}

.card-col {
  flex: 1 1 calc(25% - 30px);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  max-width: 80%;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid black;
  padding-bottom: 10px;
}

.title-desc {
  font-size: 16px;
  margin-top: 1px;
  flex-grow: 1;
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 992px) {
  .card-col {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .card-col {
    flex: 1 1 100%;
  }
}

/* get in touch styling */
/* Section Styling */
.contact-section {
  background-color: #000000; /* Light background color */
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Form Wrapper */
.form-wrapper {
  background-color: rgb(255, 253, 252); /* White background for the form */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  max-width: 500px;
  width: 100%;
}

/* Form Title */
.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #333; /* Darker text for contrast */
}

/* Form Group */
.form-group {
  margin-bottom: 20px;
}

/* Labels */
.form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #555; /* Subtle color */
}

/* Input Fields */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9; /* Light input background */
}

/* Input Focus */
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgb(255, 97, 0);
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Submit Button */
.submit-btn {
  margin-left: 38%;
  width: 25%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  background-color: rgb(255, 97, 0);
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Button Hover Effect */
.submit-btn:hover {
  background-color: black;
  color: azure;
}

/* Responsive Design */
@media (max-width: 600px) {
  .form-wrapper {
    padding: 20px;
  }

  .submit-btn {
    padding: 12px;
  }
}

/* General styles for the section */
.hammer-section {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hammer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
}

/* Hammer card styles */
.hammer-card {
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 10px;
  width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hammer-card:hover {
  transform: translateY(-10px);
}

.hammer-head {
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
}

.hammer-head h3 {
  margin: 0;
  font-size: 18px;
}

.hammer-handle {
  padding: 10px;
  background-color: #f9f9f9;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-align: center;
}

.hammer-handle p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hammer-container {
    flex-direction: column;
    align-items: center;
  }

  .hammer-card {
    width: 90%;
    max-width: 300px;
  }
}

::placeholder {
  font-family: sans-serif;
}

/* about us page style */
.about-p {
  color: #ffffff;
  width: 100%;
}

footer {
  background-color: #f0f0f0;
  padding: 1em;
  text-align: center;
  color: #666;
}
