@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-color: #ffffff;
  color: #F61B79;
  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: 60px;
  width: auto;
  object-fit: contain;
}
.navbar-nav .nav-link {
  color: #340441 !important;
  font-size: 16px;
  font-weight: bold;
  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: 55px;
  }
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0.5rem 0.75rem;
  }
  .navbar-brand {
    font-size: 18px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 120vh;
  background: url('../images/Home-Background1.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(141, 52, 177, 0.3);
  z-index: -1;
}
/* Hero Text Lines */
.hero-text h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: #622081;
  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); }
}
/* Responsive Font Scaling */
@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;
  }
}

.section {
  padding: 100px 20px;
}
.section h2 {
  color: #622081;
  font-size: 50px;
  font-weight: bold;
}
.section h5 {
  color: #622081;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 18px;
  margin-top: 50px;
}
.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;
}

.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;
}

/* About Section Layout */
.about-section {
  width: 100%;
  overflow: hidden;
}
/* Left image column */
.about-left {
  background: url('../images/About-City1.png') center/cover no-repeat;
  height: 80vh;
  min-height: 350px;
  margin-top: 80px;
}
/* Right text column */
.about-right {
  background-color: #ffffff;
  color: #F61B79;
  /* text-align: center; */
  text-align: left;
  height: 100vh;
  min-height: 500px;
  padding: 60px 40px;
}
.about-right h2 {
  color: #622081;
  font-weight: bold;
  font-size: 50px;
  text-align: left;
}
.about-right p {
  font-size: 18px;
  color: #F61B79;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
/* Fix for container spacing */
.container-fluid.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 1200px) {
  .about-right h2 {
    font-size: 45px;
  }
  .about-right p {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .about-left,
  .about-right {
    min-height: 300px;
    height: auto;
    /* margin-top: 0px; */
  }
  .about-right {
    padding: 50px 30px;
  }
  .about-right h2 {
    font-size: 30px;
    text-align: center;
  }
  .about-right p {
    font-size: 15px;
    text-align: center;
  }
  .about-left {
    order: 1;
  }
}
@media (max-width: 769px) {
  .about-left,
  .about-right {
    min-height: 300px;
    height: auto;
    margin-top: 0px;
  }
}
@media (max-width: 576px) {
  .about-section .row {
    flex-direction: column;
  }
  .about-left {
    height: 300px;
    min-height: 300px;
    order: 1;
  }
  .about-right {
    padding: 40px 20px;
    height: auto;
  }
  .about-right h2 {
    font-size: 30px;
  }
  .about-right p {
    font-size: 13px;
  }
}


/* Packages Section */
.white-background {
  height: 170vh;
  background-color: #ffffff;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  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;
}
.service-heading {
  min-height: 60px; /* or whatever height fits your tallest heading */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@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) {
  .horticulture-consultancy {
    padding-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .white-background {
    height: 200vh;
  }
  .white-background h5 {
    font-size: 10px;
  }
  .service-img,
  .service-overlay {
    width: 100%;
    height: 260px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
@media (max-width: 767px) {
  .white-background {
    height: 500vh;
  }
  .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: 749.99999px) {
  .service-card {
    margin-bottom: -30px;
  }
  .service-img {
    width: 55%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 25%;
    width: 55%;
    height: 200px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
@media (max-width: 576px) {
  .white-background {
    height: 450vh;
  }
  .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: 480px) {
  .service-img {
    width: 75%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 15%;
    width: 75%;
    height: 200px;
  }
  .overlay-text {
    font-size: clamp(14px, 2.2vw, 10px);
  }
}
 @media (max-width: 455px) {
  .service-img {
    width: 90%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 7.5%;
    width: 90%;
    height: 200px;
  }
}
 @media (max-width: 400px) {
  .service-img {
    width: 100%;
    height: 200px;
    left: 2.5%;
  }
  .service-overlay {
    position: absolute;
    top: 0;
    left: 2.5%;
    width: 100%;
    height: 200px;
  }
}

/* Feature Section */
.feature-original {
  background-color: #ffffff;
}
.feature-original-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 992px) {
  .feature-original-image {
    width: 105%;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .feature-original-image {
    width: 60%;
    height: 180px;
    left: 20%;
  }
}
@media (max-width: 749.99999px) {
  .feature-original-image {
    width: 60%;
    height: 170px;
    left: 20%;
  }
}
@media (max-width: 576px) {
  .feature-original-image {
    width: 45%;
    height: 115px;
    left: 30%;
  }
}

/* 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;
}

/* Contact Section */
.contact {
  position: relative;
  min-height: 100vh;
  padding: 80px 15px; /* add breathing room and consistent padding on the sides */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}
.contact-container {
  padding-left: 15px; /* ensure there's a gap on the left side */
  padding-right: 15px; /* ensure there's a gap on the right side */
  width: 100%;
  max-width: 1200px; /* you can adjust this value to control max width */
}
.content-white-box {
  background-color: rgb(255, 255, 255);
  color: #F61B79;
  padding: 30px;
  margin: 0 auto; /* centers the box */
  border-radius: 8px; /* optional for rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* optional for subtle shadow */
}
/* Fix for container spacing */
.container-fluid.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 991px) {
  .contact {
    padding: 60px 15px; /* add padding on the sides for smaller screens */
  }
  .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;
  }
}
@media (max-width: 767px) {
  .contact {
    padding: 40px 15px;
  }
  .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;
  }
}
@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;
  }
}

.footer {
  background-color: #0d0d0d;
  padding: 30px 20px;
}
.footer a {
  color: #F61B79;
  text-decoration: none;
}
.footer a:hover {
  color: #ffffff;
}
.form-label {
  color: #000000 !important;
}

input:invalid,
textarea:invalid,
select:invalid {
  outline: none !important;
  box-shadow: none !important;
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: #dc3545 !important; /* Bootstrap red */
}












