body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h6.short_text {
  color: #3D3D3D;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.44px;
  text-transform: uppercase;
}

h2.heading_title {
  color: #3D3D3D;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
}

p.heading_text {
  color: #3D3D3D;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.16px;
}


/* --- Base header styles (same as before) --- */
#header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 999;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

/* When scrolled — red background */
#header.scrolled {
  background-color: #000;
  padding: 10px 0;
}


/* Desktop Navbar */
#navbar ul {
  display: flex;
  gap: 80px;
  padding: 14px 42px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.30);
}

#navbar ul li a {
  font-family: 'Onest', sans-serif;
  padding: 0;
  transition: 0.3s;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;


}

#navbar ul li a:hover {
  color: #d4af37;
}

/* Call Now button */
.call-now a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 30px;
  border: 1px solid #FFF;
  padding: 12px 16px;
  transition: 0.3s;
  color: #FFF;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.call-now a:hover {
  background: #EABE59;
  color: #FFF;
  border-color: #EABE59;
}

/* --- Mobile Styles --- */
.mobile-nav-toggle {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

@media (max-width: 991px) {
  #navbar {
    position: absolute;
    top: 120%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    opacity: 0;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    transition: 0.5s ease-in-out;
  }

  #navbar.navbar-mobile {
    top: 100%;
    opacity: 1;
  }


  /* When checkbox checked → show nav */
  .nav-toggle:checked+#navbar {
    display: flex;
  }

  #navbar ul {
    flex-direction: column;
    gap: 20px;
    background: transparent;
    padding: 0;
    backdrop-filter: none;
  }

  .call-now {
    display: none;
  }
}


/* ------------banner section------------ */


section.banner_section {

}

.banner_text h5 {
  color: #EABE59;
  font-family: "Onest", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.3px;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.banner_text h1 {
  color: #FFF;
  font-family: "Playfair Display", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 63px;
  letter-spacing: 0.5px;
}

.banner_text h1 span {
  color: #EABE59;
  font-family: "Playfair Display", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: 63px;
  letter-spacing: 0.5px;
}


.banner_text p {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  /* 150% */
  padding-top: 79px;
}


.banner_short_section p {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  /* 162.5% */
  padding-bottom: 15px;
}


.banner_short_section {
  padding-top: 204px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.40);
}

.banner_btn a {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  position: relative;
}

/* Wrap for images */
.banner_btn a .icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.banner_btn a .icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Default state */
.banner_btn a .icon img.hover {
  opacity: 0;
}

/* Hover state — switch image */
.banner_btn a:hover .icon img.default {
  opacity: 0;
  transform: rotate(93deg);
}

.banner_btn a:hover .icon img.hover {
  opacity: 1;
  transform: rotate(0deg);
}

.banner_btn a:hover {
  color: #EABE59;
}



/* ------------logo section------------ */

section.logo_section {
  background-color: #050708;
  padding-top: 44px;
  padding-bottom: 44px;
}

.family_logo p {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-top: 30px;
}


.family_logo {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.family_logo .hover-img {
  display: none;
}

.family_logo:hover .displayimg {
  display: none;
}

.family_logo:hover .hover-img {
  display: block;
  width: 78px;
  height: 78px;
}

.family_logo img {
  transition: all 0.3s ease;
  display: block;
  width: 78px;
  height: 78px;
}


.family_logo:hover p {
  color: #EABE59;
}


/* ------------about us section------------ */
.about_us {
  display: flex;
  width: 70%;
}

div#main_about {
  display: flex !important;
  gap: 10px;
  justify-content: space-between;
}

section.about_us_section {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: 75px;
  padding-left: 200px;
  background-color: #F9F9F9;
}

p.heading_text span.text {
  color: #3D3D3D;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
  letter-spacing: 0.16px;
}

.about_us h2.heading_title {
  padding-bottom: 54px;
}

.about_us_title {
  width: 69%;
}

.about_image.text-center {
  width: 29%;
}

.about_us_title p.heading_text {
  width: 85%;
}


.about_second_text {
  width: 71%;
/*   margin-top: -29px; */
}


.about_us_title p.heading_text {
  position: relative;
  padding-left: 20px;

}

.about_us_title p.heading_text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  transform: translateY(-50%);
  width: 1px;
  height: 49px;
  background-color: #EAB845;
  border-radius: 2px;
}

.about_second_text p.heading_text {
  position: relative;
  padding-left: 20px;
}

.about_second_text p.heading_text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 57%;
  transform: translateY(-50%);
  width: 1px;
  height: 49px;
  background-color: #EAB845;
  border-radius: 2px;
}

/* Common hover zoom wrapper */
.about_first_img,
.about_image,
.why_choose_two {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}

/* Inner wrapper (optional, in case you want consistent structure) */
.about_first_img .zoom-wrap,
.about_image .zoom-wrap,
.why_choose_two .zoom-wrap {
  overflow: hidden;
  border-radius: inherit;
}

/* Common image styling */
.about_first_img img,
.about_image img,
.why_choose_two img {
  display: block;
  transition: transform 0.6s ease;
  will-change: transform;
  border-radius: inherit;
}

/* Hover zoom effect */
.about_first_img:hover img,
.about_image:hover img,
.about_first_img:hover .zoom-wrap img,
.about_image:hover .zoom-wrap img,
.why_choose_two:hover .zoom-wrap img {
  transform: scale(1.1);
}


/* ------------why_choose_us_section section------------ */

section.why_choose_us_section {
  padding-top: 120px;
  padding-bottom: 120px;
}


.why_choose {
  display: flex;
  gap: 34px;
  padding-top: 50px;
  align-items: end;
}


.zoom-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  border-radius: 15px;
}

.zoom-img:hover {
  transform: scale(1.1);
}

.why_choose_one {
  overflow: hidden;
  border-radius: 15px;
}

.why_text:not(:first-child) {
  margin-top: 34px;
}


.why_text {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  /* default state */
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  color: #000;
}

.why_text img {
  filter: none;
}

.why_text p {
  color: #3D3D3D;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.18px;
}

/* Hover effect */
.why_text:hover {
  border-left: 3px solid #F8B84E;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  background: #FFF;
}

.why_text:hover img {
  filter: none;
}

.why_text:hover p {
  color: #000;
}


/*------------------------------ service Section------------------------------ */

section.our_serviec_section {
  background-color: #F9F9F9;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.service_main {
  display: flex;
  align-items: flex-end;
  gap: 130px;
  padding: 0 100px 56px 200px;
}

.service_main p.heading_text {
  color: #3D3D3D;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.18px;
}



.short_text {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}


.service-card h5 {
  color: #3D3D3D;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}

.service-card p {
  color: #3D3D3D;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 156.25% */
  letter-spacing: 0.16px;
}

.service-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  padding-bottom: 40px;
}

.service-row:last-child {
  padding-bottom: 0;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 0 200px;
}

.service_space {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 200px 0 40px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 41px;
  column-gap: 40px;
  width: 100%;
}


.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 18px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.service-icon {
  object-fit: contain;
  position: absolute;
  top: 0px;
  right: 0px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 41px;
  column-gap: 40px;
  width: 100%;
}

.service-card:hover {
  border-radius: 16px;
  background: #AE8D40;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

.service-card:hover h5,
.service-card:hover p {
  color: #fff;
}


.service-image {
  overflow: hidden;
  /* container ke bahar image na jaye */
  border-top-left-radius: 10px;
  /* sirf left top corner */
  border-bottom-left-radius: 10px;
  /* sirf left bottom corner */
  border-top-right-radius: 0;
  /* right side bilkul straight */
  border-bottom-right-radius: 0;
}


div#img-truck {
  border-top-left-radius: 0px;
  /* sirf left top corner */
  border-bottom-left-radius: 0px;
  /* sirf left bottom corner */
  border-top-right-radius: 10px;
  /* right side bilkul straight */
  border-bottom-right-radius: 10px;
}

.service-image img {
  transition: transform 0.5s ease;
}
.service-image:hover img {
  transform: scale(1.1);
}



/*------------------------------ Call us Section------------------------------ */

.hero-section {
  position: relative;
  color: #fff;
  padding: 259px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-content h2 {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hero-content h6 {
  padding-top: 24px;
  text-align: center;
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  /* 140% */
}

.hero-content p {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid #FFF;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #FFF;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 50px;

}

.call-btn svg {
  width: 18px;
  height: 18px;
}

.hero-section:hover .call-btn img {
  filter: brightness(0) saturate(100%);
  transition: all 0.3s ease;
}

.hero-section:hover .call-btn {
  background-color: #EABE59;
  color: #000;
  transition: all 0.3s ease;
  border-color: #EABE59;
}


/*------------------------------ contact Section------------------------------ */
.contact-section {
  background-color: #F9F9F9;
  padding: 120px 0 0 0;
}

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

.contact-main ::placeholder {
  color: rgba(61, 61, 61, 0.60);
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 133.333% */
  letter-spacing: 0.18px;
}

.row.align-items-center.contact_text {
  padding-bottom: 54px;
}



.form-control {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  padding: 16px;
}

.contact-main .btn-submit {
  border-radius: 30px;
  background: #EABE59;
  border: none;
  padding: 10px 64px;
  color: #FFF;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 1px solid #EABE59;
}


.contact-main .btn-submit:hover {
  background-color: #F9F9F9;
  color: #000;
  border: 1px solid #000;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}

form.contact-main {
  width: 95%;
}

p.contact-content {
  color: #3D3D3D;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}


.contact-info {
  margin-top: 120px;
  margin-bottom: -90px;
}

.contact-box {
  background-color: #212121;
  color: white;
  border-radius: 16px;
  padding: 25px 10px;
  text-align: center;
  transition: all 0.3s ease;
  /* row-gap: 20px; */
  min-height: 188px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  /* 🔥 change from column to row */
  justify-content: flex-start;
  align-items: center;
  /* centers vertically */
  gap: 15px;
  /* space between icon and text */
}


.contact-box:hover {
  border-radius: 16px;
  background: #000;
  box-shadow: 0 6px 33px 0 rgba(255, 255, 255, 0.20);
}



.contact-box:hover p a {
  color: #EABE59;
  /* same shade as icon */
}


.contact-box:hover p {
  color: #EABE59;
  /* same shade as icon */
}




.contact-box img {
  width: 50px;
  height: 50px;
  transition: all 0.4s ease;
  flex-shrink: 0;
  /* keeps icon from shrinking */
  margin-bottom: 0;
  /* remove bottom margin */
  display: block;
}


.contact-box:hover img {
  display: none;
}

.contact-box img.hover-img {
  display: none;
}

.contact-box:hover img.hover-img {
  display: block;
}



.contact-box p a {
  color: #FFF;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.9px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  /* ✅ Ensures breaking of long text */
  white-space: normal;
  /* ✅ Prevents text from staying on one line */
  max-width: 100%;
}


.contact-box p {
  color: #FFF;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.9px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  margin: 0;
  /* remove extra spacing */
}





.contact-box i {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

/*------------------------------ Footer Section------------------------------ */
footer {
  background-color: #000;
  color: white;
  padding-top: 190px;
  padding-bottom: 32px;
}

.footer_text h6 {
  color: #EABE59;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.24px;
  padding-bottom: 4px;
}


.footer_text ul li {
  padding-top: 16px;
}



.footer_text ul li a:hover {
  color: #EABE59;
}


.social-icons a:hover {
  color: #EABE59;
}


.footer-bottom p a:hover {
  color: #EABE59;

}

.footer_text ul li a {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
}


.tnp-field.tnp-field-email label {
  display: none;
}

.tnp.tnp-subscription {
  margin-top: 0 !important;
  margin-bottom: 62px !important;
}

.footer_subscribe {
  display: flex;
  justify-content: center;
  padding-left: 60px !important;
  align-items: center;
}

.tnp-field.tnp-field-button {
  margin-bottom: 0px !important;
}

.tnp-subscription form {
  display: flex;
  align-items: center;
  background-color: #333;
  border-radius: 50px;
  padding: 5px;
  overflow: hidden;
  position: relative;
}

.tnp-field-email {
  flex: 1;
  position: relative;
}

/* Email input */
.tnp-email {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent !important;
  z-index: 2;
  color: #FfF !important;
  /* ✅ typed text is red */
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.32px;
  padding: 14px 20px;
  margin-bottom: 0 !important;
}

/* Fake placeholder */
.tnp-field-email::before {
  content: "Email Address";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: opacity 0.2s ease;
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.32px;
  margin-bottom: 0 !important;
}


.tnp-field.tnp-field-email {
  margin-bottom: 0 !important;
}

/* ✅ Hide placeholder when input focused */
.tnp-field-email:focus-within::before {
  opacity: 0;
}

/* Button styling */
.tnp-submit {
  border: 1px solid #EABE59 !important;
  padding: 15px 22px !important;
  border-radius: 500px !important;
  background: #EABE59 !important;
  color: #FFF !important;
  text-align: center !important;
  font-family: "Onest", sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 100% !important;
  letter-spacing: 0.16px !important;
  margin-bottom: 0 !important;
}

.tnp-submit:hover {
  background-color: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
}


.social-icons a {
  color: white;
  font-size: 24px;
  margin: 0 18px;
  transition: 0.3s;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 26px;
}


div#footer_space {
  padding-left: 80px;
}


.footer_text {
  padding-top: 15px;
}


.footer-bottom p {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.footer-bottom p a {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


/* 404 page */

.error-banner {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.error-banner-overlay {
    background: #000000;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.error-banner-overlay h1 {
    font-size: 100px;
    font-weight: 700;
    margin: 0;
    font-family: "Playfair Display", serif;
}

.error-banner-overlay p {
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
    font-family: "Onest", sans-serif;
}

.error-404-content {
    text-align: center;
    padding: 80px 20px;
}
.error-404-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-family: "Onest", sans-serif;
    color: #3D3D3D;
}

.error-404-content p {
    font-size: 18px;
    color: #3D3D3D;
    max-width: 600px;
    margin: 0 auto 25px;
}

.btn-primary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 30px;
    padding: 12px 16px;
    transition: 0.3s;
    color: #FFF;
    text-align: center;
    font-family: "Onest", sans-serif;
     font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #000000;
    border: 1px solid #000000;
}
.btn-primary:hover {
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
}


.sitemap-wrapper.container .container {
    margin: 80px 0;
}
h2.sitemap-page {
    margin-bottom: 25px;
    font-family: 'Onest';
}

.html-sitemap-list li a{
    font-family: 'Onest';
    color: #000000;
    font-size: 18px;
}


.html-sitemap-list li a:hover{
  color: #EABE59;
}

section.thankyou-banner {
    padding: 180px 0;
}

.thankyou-content-inner{
      justify-content: center;
    display: flex;
}

.thankyou-content-inner h1 {
    color: #FFFFFF;
    font-size: 100px;
    font-weight: 700;
    margin: 0;
    font-family: "Playfair Display", serif;
}
section.thankyou-banner{
      opacity: 0.9;
}
section.thankyou-content-section {
    padding: 120px 0;
}
.thankyou-content-section .container {
    text-align: center;
}

.thankyou-content-section .container h2{
    margin-bottom: 15px;
}
.thankyou-content-section .container p{
    margin-bottom: 15px;
}



/* ===== Responsive ===== */



@media (max-width: 1680px) {


  section.about_us_section {
    padding-right: 75px;
    padding-left: 80px;
  }

  .about_us_title p.heading_text {
    width: 95%;
  }


  .service-content {
    padding: 0 40px 0 80px;
  }


  .service_main {
    padding: 0 100px 56px 80px;
  }


  .service_space {
    padding: 0 80px 0 40px;
  }



}



@media (max-width: 1512px) {

  .about_second_text {
    width: 71%;
    margin-top: 5px;
  }

}

@media (max-width: 1440px) {


  section.about_us_section {
    padding-right: 30px;
    padding-left: 50px;
  }

  .about_second_text {
    width: 71%;
    margin-top: 0;
  }

  .service-content {
    padding: 0 30px 0 62px;
  }


  .service_main {
    padding: 0 30px 56px 62px;
  }

  .service_space {
    padding: 0 62px 0 30px;
  }



  .service-cards {
    row-gap: 30px;
    column-gap: 30px;
  }


  .hero-section {
    padding: 170px 0;
  }


  .hero-content h2 {
    font-size: 30px;
  }




  .footer_subscribe {
    padding-left: 20px !important;
  }



}

@media (max-width: 1280px) {

  section.banner_section {
    min-height: 850px;
    padding-top: 190px;
  }

  .banner_short_section {
    padding-top: 120px;

  }

  .banner_text p {
    padding-top: 50px;
  }


  section.about_us_section {
    padding-right: 30px;
    padding-left: 72px;
  }

  .about_us_title {
    width: 80%;
  }

  .about_us h2.heading_title {
    padding-bottom: 40px;
  }

  h2.heading_title {
    font-size: 40px;
    line-height: 44px;
  }


  .service_main {
    gap: 40px;
    padding: 0 50px 50px 79px;
  }

  .service_main p.heading_text {
    max-width: 90%;
  }

  .service-content {
    padding: 0 30px 0 80px;
  }


  .service_space {
    padding: 0 80px 0 30px;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 28px;
  }

  .service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }


  div#footer_space {
    padding-left: 60px;
  }

  .footer_main {
    padding-left: 0px;
  }



  .footer_subscribe {
    padding-left: 0px !important;
  }




}







@media (max-width: 1200px) {

  .service_main,
  .service-content {
    padding: 0 100px;
  }


  .heading_title {
    font-size: 2rem;
  }

  section.about_us_section {
    padding-right: 30px;
    padding-left: 32px;
  }




  .about_us h2.heading_title {
    padding-bottom: 30px;
  }


}



/* ----- 1024px and below (tablets landscape) ----- */
@media (max-width: 1024px) {
  h2.heading_title {
    font-size: 35px;
    line-height: 40px;
  }


  .footer_subscribe {
    padding-left: 0px !important;
  }




  section.about_us_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }


  .about_second_text {
    width: 71%;
    margin-top: 30px;
  }


  section.about_us_section {
    padding-right: 30px;
    padding-left: 23px;
  }


  div#main_about {
    display: flex !important;
    gap: 0px;
    justify-content: space-between;
    flex-direction: row-reverse;
  }


  section.why_choose_us_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }


  .why_text:not(:first-child) {
    margin-top: 25px;
  }



  .about_us_title {
    width: 100%;
  }


  .about_us {
    display: flex;
    width: 100%;
  }


  .service_main {
    padding: 0 40px 40px 40px;
    gap: 30px;
    text-align: center;
  }

  .service_main {
    display: unset;
    gap: 130px;
    padding: 0 0 50px 0;
    display: block;
  }

  .service_main .heading_title {
    font-size: 32px;
    line-height: 1.2;
  }

  .service-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding-bottom: 60px;
  }

  .service-row.reverse {
    flex-direction: column;
  }

  .service-content,
  .service_space {
    padding: 0 40px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }



  .service-image {
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    WIDTH: 100%;
    padding: 0 40px;
  }

  .service-image:hover img {
    transform: scale(0.9);
  }

  .service-card {
    text-align: left;
  }

  .service-image img {
    max-width: 100%;
    border-radius: 12px;
    WIDTH: 100%;
  }

  section.our_serviec_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service_one {
    padding-bottom: 20px;
  }

  .service_main p.heading_text {
    max-width: 100%;
  }

  .hero-section {
    padding: 121px 0;
  }


  .contact-section {
    background-color: #F9F9F9;
    padding: 60px 0 0 0;
  }

  .row.align-items-center.contact_text {
    padding-bottom: 40px;
  }



  .contact-info {
    margin-top: 60px;
    margin-bottom: -90px;
  }



  .contact-box p a {
    font-size: 14px;
    line-height: 22px;
  }


  .contact-box p {
    font-size: 14px;
    line-height: 22px;
  }

  footer {
    background-color: #000;
    color: white;
    padding-top: 120px;
    padding-bottom: 32px;
  }


  .footer_main {
    padding-left: 0;
  }

  .subscribe-input {
    width: 60%;
  }



  .footer_subscribe.d-flex {
    margin-bottom: 30px;
  }

  .logo a img.img-fluid {
    width: 70%;
  }


}


@media (max-width: 992px) {
  div#footer_space {
    padding-left: 0;
  }

  .why_choose {
    display: flex;
    gap: 20px;
    padding-top: 50px;
  }

  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .service-content {
    padding: 40px 40px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }


  .family_logo p {
    font-size: 18px;
    line-height: 25px;
  }

  .row.logo_spaces {
    display: flex;
    row-gap: 30px;
  }


  .about_second_text {
    width: 60%;
    margin-top: 30px;
  }


  .about_image.text-center {
    width: 35%;
  }

  .about_us {
    display: flex;
    width: 100%;
    align-items: center;
  }


  section.about_us_section {
    padding-right: 30px;
    padding-left: 33px;
  }

  .service_main {
    padding: 0 40px 40px 42px;
    gap: 30px;
  }


  .contact-box {
    border-radius: 16px;
    padding: 10px;
    min-height: 168px;
    max-width: 360px;
  }




}



@media (max-width: 768px) {
  .footer-bottom {
      text-align: center;
  }
  .hero-content h2 {
    font-size: 25px;
  }

  .about_us_title p.heading_text {
    width: 100%;
    padding-bottom: 30px;
  }

  .why_choose {
    display: flex;
    gap: 20px;
    padding-top: 30px;
  }

  .why_choose_box {
    padding-top: 30px;
  }

  .service_main {
    padding: 0 20px 30px;
  }


  h2.heading_title {
    font-size: 25px;
    line-height: 32px;
  }

  section.banner_section {
    padding-top: 160px;
    min-height: 100%;
    padding-bottom: 50px;
  }


  .banner_text h1 {
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 0.5px;
  }

  .banner_short_section {
    padding-top: 60px;
  }

  .banner_text p {
    padding-top: 50px;
  }

  .banner_text h1 span {
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 0.5px;
  }


  .service_main {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 40px 20px;
  }

  .heading_title {
    font-size: 1.6rem;
  }

  .service-content {
    padding: 20px;
  }

  .hero-section {
    justify-content: center;
    text-align: center;
    padding: 80px 15px;
  }

  .hero-content {
    padding: 0;
    text-align: center;
  }


  .contact-info {
    margin-top: 60px;
    margin-bottom: -90px;
    gap: 0px;
  }

  .footer_main {
    padding-left: 0;
    margin-top: 30px;
  }

  .footer-bottom {
    /* display: inline-block; */
  }


  .footer-bottom p {
    margin-bottom: 10px;
  }


  section.our_serviec_section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .service_main {
    padding: 0 30px 40px;
    gap: 20px;
  }

  .service_main .heading_title {
    font-size: 28px;
  }

  .service_main p.heading_text {
    font-size: 16px;
    line-height: 22px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .service-card {
    padding: 16px;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 22px;
  }

  .service-image img {
    width: 100%;
  }

  .service_space {
    padding: 0 20px;
  }

  .service-row {
    gap: 30px;
    padding-bottom: 30px;
  }


  form.contact-main {
    width: 100%;
  }

  section.about_us_section {
    padding-right: 9px;
    padding-left: 10px;
  }


  .family_logo p {
    padding-top: 10px;
  }

}


@media (max-width: 767px) {
  .logo a img.img-fluid {
    width: 50%;
  }

  .service-content {
    padding: 14px;
  }


  .service_space {
    padding: 0 14px;
  }

  section.about_us_section {
    padding-right: 0;
    padding-left: 0px;
  }


  .about_us {
    display: unset;
    width: 100%;
    align-items: center;
  }

  .about_second_text {
    width: 100%;
    margin-top: 30px;
  }

  .about_image.text-center {
    width: 100%;
  }


  .about_us {
    padding-bottom: 30px;
  }



  .contact-info {
    margin-top: 60px;
    margin-bottom: -90px;
    gap: 20px;
  }
.error-404-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
}
h1.map-text {
    font-size: 50px !important;
}
.thankyou-content-inner h1 {
    font-size: 50px;
}
}

/* ----- 480px and below (mobiles) ----- */
@media (max-width: 480px) {

  section.our_serviec_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service_main {
    padding: 0 20px 30px;
  }

  .service_main .heading_title {
    font-size: 24px;
  }

  .service_main p.heading_text {
    font-size: 14px;
    line-height: 20px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 14px;
  }

  .service-card h5 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-image img {
    width: 100%;
    border-radius: 8px;
  }
}
