/* Overall Font */
@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham-Bold.woff2') format('woff2'),
       url('assets/fonts/Gotham-Bold.woff') format('woff'),
       url('assets/fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: 'Gotham', sans-serif;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #F61B79;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/* Navbar Styles */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
}
.navbar-brand {
  color: #F61B79 !important;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.navbar-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}
.navbar-nav .nav-link {
  color: #340441 !important;
  font-size: 16px;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover {
  color: #F61B79 !important;
}
@media (max-width: 768px) {
  .navbar-logo {
    height: 30px;
  }
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0.5rem 0.75rem;
  }
  .navbar-brand {
    font-size: 18px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/Housefront14.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  padding: 0 1rem; /* Prevent edge overflow on small screens */
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(211, 117, 248, 0.30);
  z-index: -1;
}
.hero-text h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: #340441;
  margin-bottom: 0.5rem;
  font-size: 5.5vw;
  line-height: 1.2;
  white-space: nowrap;
}
/* Container for fade-in */
.hero-text {
  opacity: 0;
  animation: fadeInHero 1.5s ease-in-out forwards;
  text-align: left;
  max-width: 100%;
  padding-left: 1rem;
}
/* Fade In Animation */
@keyframes fadeInHero {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (max-width: 992px) {
  .hero-text {
    text-align: left;
    max-width: 100%;
  }
  .hero-text h1 {
    font-size: 6.5vw;
  }
}
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 8.5vw;
  }
}

/* Button Display */
.btn-primary {
  background-color: #ffffff !important;
  outline-style: solid;
  outline-color: #622081;
  color: #622081 !important;
  border: none !important;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #F61B79 !important;
  outline-style: solid;
  outline-color: #F61B79;
  color: #ffffff !important;
  border: none !important;
}

.section h2 {
  color: #622081;
  font-size: 50px;
  font-weight: bold;
}
.section h3 {
  color: #622081;
  font-size: 50px;
  font-weight: bold;
  text-align: left;
  padding-left: 490px;
}
.section h5 {
  color: #622081;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 18px;
  margin-top: 50px;
}
.section h6 {
  color: #622081;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 18px;
  margin-top: -100px;
}
.section p {
  color: #F61B79;
  font-size: 20px;
  margin-bottom: 30px;
}
.section p2 {
  color: #F61B79;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.p3-wrapper {
  margin-top: 18px;
}
.section p3 {
  color: #622081;
  font-size: 12px;
}
.section p4 {
  color: #ffffff;
  font-size: 16px;
}

/* About Section Layout */
.about-section {
  width: 100%;
  overflow: hidden;
}
/* Left image column */
.about-left {
  background: url('../images/about-photo.png') center/cover no-repeat;
  height: 100vh;
  min-height: 500px;
}
/* Right text column */
.about-right {
  background-color: #ffffff;
  color: #F61B79;
  text-align: center;
  height: 100vh;
  min-height: 500px;
  padding: 60px 40px;
}
.about-right h2 {
  color: #622081;
  font-weight: bold;
  font-size: 50px;
}
.about-right p {
  font-size: 20px;
  color: #F61B79;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
/* Fix for container spacing */
.container-fluid.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 992px) {
  .about-left,
  .about-right {
    min-height: 300px;
    height: auto;
  }
  .about-right {
    padding: 50px 30px;
  }
  .about-right h2 {
    font-size: 40px;
  }
  .about-right p {
    font-size: 18px;
  }
  .about-left {
    order: 1;
  }
}
@media (max-width: 576px) {
  .about-section .row {
    flex-direction: column;
  }
  .about-left {
    height: 300px;
    min-height: 300px;
    order: 1; /* Move image to top */
  }
  .about-right {
    padding: 40px 20px;
    height: auto;
  }
  .about-right h2 {
    font-size: 32px;
  }
  .about-right p {
    font-size: 16px;
  }
}

/* Section Wrapper */
.white-background {
  background-color: #ffffff;
  padding: 100px 0 60px;
  color: #F61B79;
}
.white-background h3 {
  color: #622081;
  font-weight: bold;
  font-size: 42px;
  text-align: center;
}
.white-background h6 {
  color: #622081;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  margin: 85px auto 35px;
}
.white-background h2 {
  font-size: 42px;
  margin-top: 65px;
  margin-bottom: 30px;
}
.services-original-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
}
.handyman-image {
  width: 100%;
  margin: 10px 63% 10px;
}
.white-background p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 20px;
  color: #F61B79;
  padding: 0 10px;
}
.white-background p2 {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #F61B79;
  margin: 20px auto;
  padding: 0 100px;
}
.white-background p3 {
  font-size: 12px;
  color: #622081;
  line-height: 1.6;
  text-align: center;
  margin: 20px auto;
}
@media (max-width: 1200px) {
  .handyman-image {
    width: 100%;
    margin: 10px 55% 10px;
  }
}
@media (max-width: 1197.985px) {
  .white-background {
    padding: 100px 20px;
  }
  .services-original-image img {
    margin: 0 -10px 10px;
  }
  .white-background p {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .white-background {
    padding: 30px 20px;
  }
  .white-background h3 {
    font-size: 40px;
    font-weight: bold;
    padding: 80px;
  }
  .white-background h6 {
    font-size: 25px;
    margin: 40px auto 20px;
  }
  .services-original-image img {
    max-width: 65%;
    margin: -100px auto 10px;
  }
  .handyman-image {
    max-width: 100%;
    margin: 10px auto -20px;
  }
  .white-background p {
    font-size: 17px;
    text-align: center;
    padding: 0 20px;
  }
  .white-background p2 {
    font-size: 17px;
    text-align: center;
    padding: 0 75px;
  }
  .row.align-items-center {
    flex-direction: column !important; /* Forces vertical stacking */
  }
}
@media (max-width: 576px) {
  .white-background {
    padding: 0px 15px;
  }
  .white-background h3 {
    font-size: 32px;
    font-weight: bold;
  }
  .white-background h6 {
    font-size: 23px;
    margin: 40px auto 20px;
  }
  .white-background p {
    font-size: 16px;
    padding: 0 10px;
  }
  .white-background p2 {
    font-size: 15px;
    text-align: center;
    padding: 0 60px;
  }
  .services-original-image {
    margin-bottom: 5px;
  }
  .handyman-image {
    max-width: 70%;
    margin: 10px auto -20px;
  }
}

/* Packages Section Bottom */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
  display: flex;
  flex-direction: column;  /* Stack image and overlay vertically */
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically within the card */
  text-align: center; /* Center text */
  width: 100%;
}
.service-img {
  width: 75%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}
.service-overlay {
  position: absolute;
  top: 0;
  left: 12.5%;
  /* left: 0; */
  width: 75%;
  height: 200px;
  border-radius: 10px;
  background: rgba(41, 3, 56, 0.678);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.service-card:hover .service-overlay {
  opacity: 1;
}
.overlay-text {
  color: #ffffff;
  font-size: clamp(14px, 2vw, 24px);
  padding: 2px;
  margin-top: 30px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .service-img,
  .service-overlay {
    width: 100%;
    height: 220px;
    left: 5%;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 20px);
  }
}
@media (max-width: 992px) {
  .pressure-washing .service-img {
    background-position: 40%;
    background-size: 230%;
  }
}
@media (max-width: 992px) {
  .window-washing .service-img {
    background-position: left;
    background-size: 200%;
  }
}
@media (max-width: 992px) {
  .white-background h5 {
    font-size: 20px;
  }
  .service-img,
  .service-overlay {
    width: 100%;
    height: 260px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
@media (max-width: 767px) {
  .pressure-washing .service-img {
    background-position: 30%;
    background-size: 180%;
  }
}
@media (max-width: 767px) {
  .pest-control {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .service-card {
    margin-bottom: -30px;
  }
  .service-img {
    width: 60%;
    height: 240px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 22.5%;
    width: 60%;
    height: 240px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
@media (max-width: 767px) {
  .pressure-washing .service-img {
    background-position: 30%;
    background-size: 160%;
  }
}
@media (max-width: 749.99999px) {
  .pest-control {
    padding-bottom: 100px;
  }
}
@media (max-width: 749.99999px) {
  .service-card {
    margin-bottom: -30px;
  }
  .service-img {
    width: 50%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 27.5%;
    width: 50%;
    height: 200px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
@media (max-width: 576px) {
  .pest-control {
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .service-card {
    margin-bottom: -20px;
  }
  .service-img {
    width: 60%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 22.5%;
    width: 60%;
    height: 200px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
@media (max-width: 490px) {
  .service-card {
    margin-bottom: -20px;
  }
  .service-img {
    width: 70%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 17.5%;
    width: 70%;
    height: 200px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
@media (max-width: 415px) {
  .service-card {
    margin-bottom: -20px;
  }
  .service-img {
    width: 90%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 7.5%;
    width: 90%;
    height: 200px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
@media (max-width: 340px) {
  .service-card {
    margin-bottom: -20px;
  }
  .service-img {
    width: 100%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 2.1%;
    width: 100%;
    height: 200px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}

/* Contact Section */
.contact {
  position: relative;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #622081, #F61B79);
  z-index: -1;
}
.content-white-box {
  background-color: rgb(255, 255, 255);
  color: #F61B79;
  padding: 5px;
  padding: 30px;
}
.terms-link {
  color: #F61B79;
  font-size: 20px;
  text-decoration: underline;
}
.terms-link:hover {
  color: #622081;
}
@media (max-width: 991px) {
  .contact {
    padding: 40px 0;
  }
  .content-white-box {
    margin-bottom: 20px;
  }
  .contact h2 {
    color: #622081;
    font-size: 28px;
    font-weight: bold;
  }
  .contact p {
    color: #F61B79;
    font-size: 15px;
    margin-bottom: 30px;
  }
  .terms-link {
    font-size: 13px;
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  /* #contact .row {
    flex-direction: column-reverse !important;
  } */
  .contact {
    padding: 40px 0;
  }
  .content-white-box {
    margin-bottom: 20px;
  }
  .contact h2 {
    color: #622081;
    font-size: 30px;
    font-weight: bold;
  }
  .contact p {
    color: #F61B79;
    font-size: 15px;
    margin-bottom: 30px;
  }
  .terms-link {
    font-size: 13px;
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .content-white-box {
    padding: 20px 15px;
  }
  .contact h2 {
    color: #622081;
    font-size: 20px;
    font-weight: bold;
  }
  .contact p {
    color: #F61B79;
    font-size: 12px;
    margin-bottom: 30px;
  }
  .terms-link {
    font-size: 10px;
  }
}

/* Footer Section */
.footer {
  background-color: #0d0d0d;
  padding: 30px 20px;
}
.footer a {
  color: #F61B79;
  text-decoration: none;
}
.footer a:hover {
  color: #ffffff;
}
.form-label {
  color: #000000 !important;
}

/* Form Invalid Submission */
.is-invalid {
  border-color: red;
}
.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25);
}







/* Hero Section
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/HouseFront14.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  padding: 0 1rem;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(211, 117, 248, 0.30);
  z-index: -1;
}
.hero-text h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: #340441;
  margin-bottom: 0.5rem;
  font-size: 64px;
  line-height: 1.2;
}
.hero-text .no-wrap {
  white-space: nowrap;
}
.hero-text h1.line1 {
  font-size: 70px;
}
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 10px;
  }
}
.hero-text {
  opacity: 0;
  animation: fadeInHero 1.5s ease-in-out forwards;
  text-align: left;
  max-width: 600px;
  padding-left: 1rem;
}
@keyframes fadeInHero {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
} */










.sky {
  position: relative;
  height: var(--sky-height, 100vh); /* fallback to 100vh */
  background: url('../images/sky.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.sky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(255, 255, 255);
  z-index: -1;
}