/* styles.css */

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #FFFFFF;
}

/* Header styles */
header {
  position: fixed; /* Stick header to the top */
  top: 0; /* Position at the top of the viewport */
  left: 0; /* Align left */
  width: 100%; /* Full width */
  z-index: 1000; /* Ensure it's above other content */
  background-color: #000000;
  color: #fff;
  padding: 20px;
  display: flex;
  text-align: center;
  height: 12vh;
  align-items: center;
  justify-content: space-between;
}

header img {
  width: auto; /* Adjust width as needed */
  height: 52px; /* Maintain aspect ratio */
  margin-right: 20px; /* Add some space to the right of the logo */
  display: block;
}

.header-texts {
  display: flex;
  flex-direction: column;
  align-items: center; /* Vertically center align items */
}

.header-texts h4,
.header-texts h5 {
  margin: 3px 0; /* Add spacing between header texts (top and bottom) */
}

.phone-number {
  color: white; /* Set the text color to white */
  text-decoration: none; /* Remove underline */
  background-image: linear-gradient(to right, #dd4d55, #d73379, #a1132f);
  border-radius: 4px;
  padding: 2px 8px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
  font-size: large;
}

/* Navigation styles */
nav {
  background-color: #444;
  padding: 10px;
  text-align: center;
  position: sticky; /* Stick navbar to the top */
  left: 0; /* Align left */
  width: 100%; /* Full width */
  top: 12vh;
  background-color: #292525; /* Background color of the navbar */
  z-index: 1100;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 10px;
}

nav ul li a {
  color: #FFD700;
  text-decoration: none;
}

nav ul li ul {
  display: none;
  position: absolute;
  background-color: #444;
  padding: 10px;
  border-radius: 4px;
  margin-top: 5px;
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li {
  display: block;
  margin: 5px 0;
}

.slider {
  position: relative; /* Establish positioning context */
  width: 100%;
  height: 600px; /* Adjust the height as needed */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio while covering the entire slide */
  background-color: #000000;
}

.active {
  display: block;
}

.dot-indicators {
  position: absolute;
  bottom: 20px; /* Adjust the vertical position */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%);
  text-align: center;
  z-index: 100; /* Ensure dot indicators are above slides */
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: rgb(
    12,
    12,
    12
  ); /* Change the color to your desired color */
}

/* Main content styles */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.spacer {
  height: 20px; /* Adjust the height of the space as needed */
}

.spacer8 {
  height: 8px; /* Adjust the height of the space as needed */
}

.spacer80 {
  height: 80px; /* Adjust the height of the space as needed */
}

.row {
  display: flex;
  overflow-x: auto; /* Allow horizontal scrolling */
  justify-content: flex-start;
  margin-bottom: 20px; /* Adjust margin as needed */
}

/* Hide the scrollbar */
.row::-webkit-scrollbar,
.services::-webkit-scrollbar {
  display: none;
}

.services {
  display: flex;
  flex-wrap: nowrap; /* Prevent items from wrapping */
  overflow-x: auto; /* Allow horizontal scrolling */
}

.service {
  flex: 0 0 calc(24% - 2px);
  background-color: #222222;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 10px;
  margin-right: 10px;
  box-shadow: 0 2px 4px rgba(2, 2, 2, 0.2);
}

.view-more {
  flex: 0 0 1;
  /* background-color: #fff; */
  border-radius: 8px;
  padding: 20px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  margin-bottom: 20px;
  margin: auto;
}

.subcategory {
  margin-bottom: 10px; /* Add space between subcategory name and image */
}

.subcategory-image {
  width: 240px; /* Set fixed width */
  height: 240px; /* Set fixed height */
  object-fit: cover; /* Maintain aspect ratio and crop as necessary to fill container */
  display: block;
  margin: auto; /* Center the image horizontally */
  border-radius: 4px;
}

.image-container {
  display: flex;
  align-items: center; /* Center the image vertically */
  justify-content: center; /* Center the image horizontally */
  width: 240px; /* Set width of container */
  height: 240px; /* Set height of container */
}

.description {
  margin-top: 10px; /* Add space between image and description */
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* Adjust button width */
  height: 60px; /* Adjust button height */
  border-radius: 50%; /* Create a circular shape */
  background-color: #454545; /* Button background color */
  color: #fff; /* Button text color */
  text-decoration: none;
  font-size: 24px; /* Adjust icon size */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-icon:hover {
  background-color: #302e2e; /* Change background color on hover */
}

.training-photos {
  display: flex;
  justify-content: space-between; /* Distribute items evenly */
}

.training-item {
  background-color: #222222; /* White background */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(2, 2, 2, 0.2);
  margin-bottom: 20px;
  margin-right: 10px;
  flex: 1; /* Allow items to grow and shrink to fill available space */
}

.training-content {
  text-align: center; /* Center the content */
  margin-bottom: 10px;
}

.training-item img {
  border-top-left-radius: 8px; /* Apply border radius to top-left corner */
  border-top-right-radius: 8px; /* Apply border radius to top-right corner */
  max-width: 210px; /* Ensure images don't exceed container width */
  height: 210px; /* Maintain aspect ratio */
  object-fit: cover; /* Maintain aspect ratio and crop as necessary to fill container */
}

.training-item h5 {
  margin: 4px;
}

.form-group {
  margin-bottom: 20px;
  margin-top: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  background-color: #222222;
  color: #FFFFFF;
  border-radius: 2px;
}

form textarea {
  height: 100px;
}

form button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.address-contact {
  display: flex;
  justify-content: space-between;
}

.address,
.contact-number {
  flex: 0 0 calc(50% - 10px); /* Adjust the width as needed */
  /* 10px accounts for any margin or padding */
}

.contact-number {
  text-align: right; /* Align content to the right */
}

.address h3,
.contact-number h3 {
  margin-top: 0;
}

/* CSS styles */
/* Apply Quicksand font to headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif; /* Use Quicksand font for headings */
}

/* Apply Quicksand font to paragraphs */
p {
  font-family: "Quicksand", sans-serif; /* Use Quicksand font for paragraphs */
  font-weight: 300; /* Use light (300) weight for paragraphs */
  color: #FFFFFF; /* Set paragraph text color to black */
}

/* Example: Apply different font weights to specific headings */
h1 {
  font-weight: 700; /* Use bold (700) weight for h1 headings */
  color: #FFFFFF;
}

h2 {
  font-weight: 500; /* Use medium (500) weight for h2 headings */
  color: #FFD700;
}

h3 {
  font-weight: 400; /* Use regular (400) weight for h3 headings */
  color: #FFFFFF;
}

h4 {
  color: #FFD700;
}

h5 {
  color: #FFFFFF;
}
/* Footer styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer p {
  color: #ffffff; /* Change paragraph text color to a darker gray */
}

.link {
  color: #FFD700; /* Change to the desired color */
  font-weight: 300;
}
