@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* // <uniquifier>: Use a unique and descriptive class name */
/* // <weight>: Use a value from 100 to 900 */

/* .inter-medium class for specific elements, if needed */
.inter-medium {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500; /* Medium weight */
  font-style: normal;
}

body {
  font-size: 15px;
  color: #111;
  font-family: "Inter", sans-serif; /* Use Inter font */
  font-weight: 500;
  line-height: 150%;
  transition: all 0.25s ease;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

/* Media query for mobile devices */
@media (min-width: 768px) {
  body {
    font-size: 17px;
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 3rem;
  }
}

#header {
  z-index: 1;
  position: relative;
}

/* Initial state: hidden and translated above the viewport */
.header-slide {
  position: relative;
  /* transform: translateY(-100%); */
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Final state: visible and in place */
.header-slide.visible {
  /* transform: translateY(0); */
}

/* link tag  */

a {
  color: #b80707;
  font-size: 19px;
  font-weight: 800;
}

.nav-link {
  color: #000;
  font-weight: 800;
}

.nav-link:hover,
.nav-link:focus {
  /* color: #fafafa; */
  opacity: 0.7;
}
.navbar-brand {
  margin-right: 0 !important;
}

/* Remove transparent background on hover for Get a Quote button */
.btn-red {
  background-color: #b80707; /* Red background (you can change the color if needed) */
  font-weight: 800;
}

.btn-red:hover,
.btn-red:active,
.btn-red:focus {
  background-color: #b80707 !important; /* Keep the same red background on hover */
  opacity: 0.7; /* Remove any opacity effect */
}

/* sections height  */

section {
  min-height: 110vh;
  display: flex;
  align-items: center;
}

/* Full-screen background image with overlay */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url("https://res.cloudinary.com/djifkbd70/image/upload/q_auto/f_auto/v1733092004/hero-image1_aant26.png");
  background-size: cover;
  background-position: center;
  padding: 0;
  /* top: -76px; */
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-section h1,
.hero-section p {
  max-width: 800px;
  margin: 0 auto;
}

.hero-section .btn-red {
  margin-top: 20px;
}

.about-section {
  height: 100vh;
  background: #000;
  color: white;
  display: flex;
  align-items: center;
}

.get-started-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: #fafafa;
}

/* Text section with highlighted text */
.bg-gray {
  background-color: #f8f9fa;
}

.highlighted-text {
  color: #999;
}

.highlighted-text span {
  color: white;
}

/* Styling for the points section */

.point p {
  color: #999;
}

/* Responsive images */
.img-fluid {
  max-width: 100%;
  height: auto;
}
