/* Add custom styles here */
section {
  display: none;
}

#home {
  display: block;
}

/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 24px;
}

/* Hamburger Menu Icon */
.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  cursor: pointer;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #333;
  margin-bottom: 4px;
}

.navbar-toggler .icon-bar:last-child {
  margin-bottom: 0;
}

.navbar-nav {
  display: flex;
  list-style: none;
}

.navbar-collapse ul li a {
  font-size: 18px; /* Adjust the font size as desired */
  line-height: 1.5; /* Adjust the line height as desired */
  text-align: center;
}

.navbar-collapse ul li {
  padding: 10px 0; /* Adjust the padding as desired */
}

.navbar-collapse ul li:hover {
  background-color: #f8f9fa; /* Adjust the background color as desired */
}



.nav-item {
  margin-right: 10px;
}

.nav-link {
  font-size: 16px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #888;
}
/* Home section styles */
#home {
  background-image: url("images/home/home.JPG");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: #333;
}

#home h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

#home p {
  font-size: 24px;
}

.home-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Portfolio section styles */
.portfolio-item {
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}

.portfolio-image,
.portfolio-video {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.portfolio-image img,
.portfolio-video img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-title {
  text-align: center;
  margin-top: 10px;
}

/* Video container styles */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height/width) */
  overflow: hidden;
  margin-bottom: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Lightbox styles */
.lb-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}

.lb-container {
  max-width: 90%;
  max-height: 90%;
}

.lb-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lb-dataContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-data {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lb-close {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.lb-close:hover {
  background-color: rgba(0, 0, 0, 0.7);
}


/* Services section styles */
.service-item {
  text-align: center;
  margin-bottom: 30px;
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.service-title {
  font-size: 24px;
  margin-top: 20px;
}

.service-description {
  font-size: 16px;
  color: #777;
}

/* About section styles */
.about-section {
  background-color: #f8f9fa;
  text-align: center;
  color: #333;
}

.about-section p {
  font-size: 18px;
  text-align: justify;
}

/* Contact section styles */
.contact-section {
  background-color: #f8f9fa;
  text-align: center;
  color: #333;
}

.contact-section p {
  font-size: 18px;
}

.form-control {
  margin-bottom: 20px;
}

.btn-primary {
  font-size: 18px;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer p {
  margin: 0;
}

.footer span {
  font-weight: bold;
}

@media (max-width: 768px) {
  /* Services Section */
  #services h1 {
    font-size: 28px;
  }

  #services p {
    font-size: 16px;
  }

  #services h2 {
    font-size: 20px;
  }

  #services p {
    font-size: 14px;
  }
  
  .navbar-collapse {
    width: 80%; /* Adjust the width as desired */
    margin: 0 auto; /* Center the menu horizontally */
  }
}