body {
  font-family: "Inter", sans-serif;
}

/* <weight>: Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */
.montserrat-hero {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.courgette-regular {
  font-family: "Courgette", cursive;
  font-weight: 200;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgb(192, 192, 196);
}

.bg-image-portfolio {
  position: relative;
  background: url("../images/heroBackground.jpg") no-repeat center center /
    cover;
  height: auto; /* Automatically adjusts to the content height */
  width: auto; /* Full width */
  overflow: hidden; /* Prevents the background from spilling over */
}

.bg-image-portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.84); /* Adjust the opacity as needed */
  z-index: 1;
}

/* Background Video Styling */
.bg-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh; /* Full viewport height */
}

.bg-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire screen */
  z-index: -1; /* Places the video behind other content */
}

.bg-image {
  position: relative;
  background: url("./images/heroBackground.jpg") no-repeat center center / cover;
  height: auto; /* Automatically adjusts to the content height */
  width: auto; /* Full width */
  overflow: hidden; /* Prevents the background from spilling over */
}

.bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.84); /* Adjust the opacity as needed */
  z-index: 1;
}

.hero {
  position: relative;
  /* background: url("./images/heroBackground.jpg") no-repeat center center / cover; */
  height: 100vh; /* Full viewport height */
  display: flex; /* Center content vertically and horizontally */

  align-items: center;
  justify-content: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  z-index: 1;
}

.hero .display-6 {
  text-transform: uppercase; /* Converts text to uppercase */
}

.hero h1.display-4,
.hero p.display-6,
.hero p.lead {
  color: white;
}

.hero img {
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* .section-title {
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
} */

#Services {
  background: url("./images/services.jpg") no-repeat center center / cover;
  background-attachment: fixed; /* Makes the background image fixed */
  position: relative;
  height: auto; /* Automatically adjusts to the content height */
  padding: 50px 0; /* Vertical padding */
  color: #ffffff; /* Dark text for contrast */
  z-index: 1;
}

#Services::before {
  content: ""; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.84); /* Black overlay with 50% opacity */
  z-index: -1; /* Place the overlay behind the content */
}

#Services .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

#Services .lead {
  font-size: 0.8rem;
  line-height: 1.5;
  /* margin-bottom: 20px; */
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 2; /* Ensure cards are above the background */
}

.card:hover {
  transform: translateY(-10px);
}

.drop-note-background {
  background: url("./images/dropANoteBackground.jpg") no-repeat center center /
    cover;
  background-attachment: fixed; /* Makes the background image fixed */
  position: relative;
  height: auto; /* Automatically adjusts to the content height */
  padding: 50px 0; /* Vertical padding */
  overflow: hidden; /* Prevents content from spilling over */
  color: #ffffff; /* Dark text for contrast */
  z-index: 1;
}

.drop-note-background::before {
  content: ""; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 1; /* Place the overlay behind the content */
}

.drop-note-background * {
  position: relative;
  z-index: 2; /* Ensure content is above the overlay */
}

.contact-section {
  background: #f8f9fa;
  padding: 50px 0;
}

.contact-section .display-6 {
  text-transform: capitalize; /* Converts first letter uppercase */
  font-size: 2rem; /* Adjust font size */
  letter-spacing: 0.5rem; /* Adjust letter spacing */
  margin-bottom: 20px; /* Add spacing below the title */
}

.footer {
  background: #343a40;
  color: white;
  padding: 20px 0;
  z-index: 1;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.navDark {
  background-color: transparent !important; /* Transparent background */
  border: 2px solid rgb(18, 18, 18); /* White border */
  border-radius: 45px; /* Rounded edges */
  color: rgb(17, 16, 16); /* White text */
  position: relative;
  z-index: 2; /* Stay on top of the background */
  overflow: hidden; /* Prevents content from spilling out */
}

.navDark .nav-dark-link {
  color: rgb(17, 16, 16) !important; /* White text for nav links */
  transition: color 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
}

.navbar {
  background-color: transparent !important; /* Transparent background */
  border: 2px solid white; /* White border */
  border-radius: 45px; /* Rounded edges */
  color: white; /* White text */
  position: relative;
  z-index: 2; /* Stay on top of the background */
  overflow: hidden; /* Prevents content from spilling out */
}

.navbar .nav-link {
  color: white !important; /* White text for nav links */
  transition: color 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
}

.navbar .nav-link:hover {
  background-color: rgba(
    255,
    255,
    255,
    0.2
  ); /* Light white background on hover */
  color: white !important; /* Keep text white on hover */
}

.navbar-brand {
  color: white !important; /* White text for the brand */
}

.navbar-toggler {
  border-color: white; /* White border for the toggler */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

strong {
  font-weight: bold; /* Ensure bold styling */
}

.lead {
  font-size: 1.25rem; /* Adjust font size */
  line-height: 1.8; /* Adjust line height for readability */
  margin-bottom: 1.5rem; /* Add spacing between paragraphs */
}

@media (max-width: 992px) {
  .display-6 .text-part {
    display: block; /* Stack each part vertically */
    text-align: center; /* Center-align the text */
  }

  .display-6 .text-part::after {
    content: ""; /* Remove the slashes */
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #02091151; /* Blue background */
  color: #fff; /* White arrow */
  border-radius: 50%; /* Circle shape */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.349);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: #020f1c; /* Darker blue on hover */
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.login-card {
  max-width: 400px;
  width: 100%;
  z-index: 1;
  border-radius: 30px;
}

.portfolio-card {
  max-width: 1500px;
  width: 100%;
  z-index: 1;
  border-radius: 30px;
}

.blog-container {
  max-width: 1500px;
  width: 100%;
  z-index: 1;
  border-radius: 30px;
}
