*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: Raleway !important; */
}

:root {
  --branch-border: 2px solid #4fde5a;
  --color-app-bg: #f8fafb;
  --color-theme: #2c2c30;
  --color-theme-light: #777777;
  --color-theme-lightest: #e1e1ee;
  --color-icon-bg: #e8e7ff;
  --appPanel-mt: 3rem;
  --bg-soft-gradient: linear-gradient(-225deg, #edfaff 0%, #ffe6fa 100%);
  --color-text-main: #1a1556;
  --color-text-sec: gray;
  --color-success: #20c996;
  --color-success-dark: #0f8863;
  --color-danger: #dc3546;
  --color-danger-dark: #9f222f;
  --color-primary: #0074d9;
  --color-primary-dark: #0074d9;
  --margin-y: 1rem;
  --margin-x: 1.5rem;
  --padding-y: 1rem;
  --padding-x: 1.5rem;
  --box-shadow: 0 5px 15px rgb(150 132 254 / 15%);
  --box-shadow-float: 0px 17px 10px -10px rgb(0 0 0 / 40%);
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem !important;
  /*font-family: "Poppins", sans-serif;*/
  font-family: "Cormorant Garamond";
  position: relative;
  height: 100%;
}

.hidden {
  display: none !important;
}

input {
  outline: none;
}

.btn {
  outline: none;
  box-shadow: none;
  border: none;
  min-width: 19.6rem;
  width: auto;
  height: 65px;
  font-size: 1.8rem;
  transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn:hover,
.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
  border: none;
}

.btn:active {
  transform: scale(0.8);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  margin-left: 20px;
}

.container,
.container-fluid {
  /*padding: 0 !important;*/
  height: 100%;
}

.row {
  height: 100%;
}

.datepicker-container {
  z-index: 10000 !important;
}

.datepicker-panel [data-view="month current"],
.datepicker-panel [data-view="year current"] {
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  color: red;
}

select {
  appearance: none !important;
  cursor: pointer;
}

/*------------------------------Scroller------------------------------*/

/* width */

::-webkit-scrollbar {
  width: 0;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: rgb(200, 199, 199);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: rgb(200, 199, 199);
}

/*------------------------------Swal------------------------------*/

.swal2-popup {
  padding-bottom: 0 !important;
  max-width: 80% !important;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px !important;
  padding: 0 1rem !important;
  width: 40em !important;
}

.swal2-icon {
  margin: 2em auto 1em !important;
}

.swal2-title {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  font-size: 1.8rem !important;
}

.swal2-html-container {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  font-size: 2rem !important;
}

.swal2-actions {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  width: 100% !important;
  font-size: 1.4rem;
}

.swal2-styled.swal2-confirm {
  background-color: var(--color-theme);
}

.swal2-styled.swal2-cancel {
  background-color: var(--bs-danger);
}

.swal2-styled.swal2-confirm:focus,
.swal2-styled.swal2-cancel:focus {
  box-shadow: none !important;
}

/*------------------------------Styles------------------------------*/

#topbar-section {
  background: rgba(59, 59, 59, 1);
  width: 100%;
  height: 4rem;
  color: rgba(255, 255, 255, 1);
}

.topbar-left {
  display: flex;
  gap: 5rem;
  font-size: 1.8rem;
  line-height: 1.6rem;
  align-items: center;
  height: 100%;
}

.topbar-item {
  display: flex;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  transition: all .3s ease;
}

.topbar-item:hover {
 color: rgba(243, 146, 0, 1);
}

.topbar-item:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  left: -2rem;
  border: 1px solid rgba(255, 255, 255, 1);
  top: 50%;
  transform: translateY(-50%);
}

.topbar-item:nth-child(1):before {
  display: none;
}

.topbar-right {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.topbar-right i {
 transition: all .3s ease;
  cursor: pointer;
}
.topbar-right i:hover {
 color: rgba(243, 146, 0, 1);
}

#hero-section {
  height: 83.6rem;
  position: relative;
  height: calc(100vh - 0rem);
  overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 83.6rem;
}

.hero-slider .swiper-slide > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-con {
    position: absolute;
    top: 16rem;
    text-align: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 920px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-text-con h1 {
    font-size: 6rem;
}

.hero-text-con h4 {
    margin-top: 4rem;
    font-size: 2.5rem;
    font-weight: 400;
}

.header-section {
  z-index: 3;
  position: relative;
  transition: all .3s ease;
  background: #fff;
}

.header-section.sticky {
    position: fixed;
    top: 0;
    background: white;
    z-index: 999;
    width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 3rem;
}

.logo {
  height: 8.8rem;
  width: auto;
}

.logo img {
  width: 100%;
  height: 100%;
}

.navbar {
  font-size: 2rem;
  line-height: 1.8rem;
  display: flex;
  justify-content: space-between;
  flex: 1;
  list-style: none;
  height: -webkit-fill-available;
}

.navbar .nav-item span {
  font-weight: 400;
  transition: all .3s ease;
  font-family: Raleway;
  font-size: 15px;
  font-weight: 500 !IMPORTANT;
  text-transform: uppercase;
  line-height: 2em;
}

.navbar .nav-item a {
  width: 100%;
  display: block;
}

.navbar .nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: raleway;
  font-size: 15px !important;
  font-weight: 500;
  text-transform: uppercase;
}

.navbar .nav-item ul {
    position: absolute;
    top: 6rem;
    left: 0;
    display: flex;
    flex-direction: column;
    width: max-content;
    background: #ffffff;
    border-radius: 3px;
    list-style: circle;
    padding: 0;
    padding-left: 4rem;
    font-size: 1.8rem;
    opacity: 0;
    height: 0;
    z-index: -999999;
    transition: all .6s ease;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    overflow: hidden;
}

.navbar .nav-item:hover ul {
   overflow: visible;
}

.navbar .nav-item ul a {
    text-align: left;
}

.navbar .nav-item a:hover {
   color: rgba(243, 146, 0, 1);
}

.navbar .nav-item:hover > ul {
   opacity: 1;
   z-index: 1;
   height: auto;
   padding: 0.5rem;
   padding-left: 2rem;
   margin: 0px 0rem;
   /* width: calc(100% + 2rem); */
   padding-right: 2rem;
}

.navbar .nav-item ul li {
    padding: 1rem 0;
}

.navbar .nav-item ul ul {
    position: absolute;
    left: calc(100% + 1.5rem);
    top: -1.5rem;
}


.navbar .nav-item span:hover {
  color: rgba(243, 146, 0, 1);
}

.navbar .nav-item.active span {
  font-weight: 700;
}

.phone-con {
  display: flex;
  justify-content: center;
  align-items: anchor-center;
  gap: 1rem;
  cursor: pointer;
}

.phone-con .icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  transition: all .3s ease;  
}

.header-section.sticky .phone-con .icon {
    background: rgb(88 88 88);
    color: white;
}

.phone-con:hover .icon {
  transform: scale(1.2);
}

.phone-con .text {
  font-size: 20px;
  line-height: 2rem;
  font-family: Raleway;
}

#home-about-section .hero-btn-con {
  display: flex;
  gap: 1rem;
}

#hero-section .hero-btn-con {
  z-index: 1;
  bottom: 10rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4rem;
}

#hero-section .hero-btn-con .start-btn {
  border: 1px solid #bebebe;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 2rem;
}

#hero-section .hero-btn-con .start-btn:hover {
  background: rgba(243, 146, 0, 1);
  color: black;
   transform: scale(1.1);
}

#hero-section .hero-btn-con .img-btn:hover {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 49.98%,
    rgba(0, 0, 0, 0.64) 100%
  );
}

.title-font {
  font-family: "Cormorant Garamond" !important;
  font-weight: 700 !important;
}

.btn-dark {
  background: rgba(243, 146, 0, 1);
  color: black;
}

.btn-light {
  background: rgba(243, 146, 0, 0.42);
}

#home-about-section {
  /* height: 70rem; */
  margin-bottom: 8rem;
}

#home-about-section img {
  width: calc(100% - 4rem);
  height: 100%;
  position: absolute;
  object-fit: cover;
}

#home-about-section .title {
  font-size: 45px;
  font-weight: 500 !important;
  left: 0px;
  position: relative;
  /* width: calc(100% + 28rem); */
  margin-top: 75px;
  /* margin-left: 45px; */
  /* margin-right: 10px; */
  font-family: "Cormorant Garamond" !important;
}

#home-about-section .text {
  font-size: 1.8rem;
  line-height: 3.8rem;
  color: rgba(0, 0, 0, 0.67);
}

#home-service-section {
  height: 70.2rem;
  margin-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

#home-service-section img {
  width: calc(100% - 4rem);
  right: 0;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transform: scaleX(-1);
}

#home-service-section > img {
  position: absolute;
  width: 60rem !important;
  height: auto !important;
  /* z-index: 2; */
  bottom: 0;
  left: 0;
  transform: scale(1) !important;
}

#home-service-section .title {
  font-size: 45px;
  font-weight: 500 !important;
  right: 12rem;
  position: relative;
  width: calc(100% + 13rem);
  z-index: 1;
  /* margin-bottom: 2rem; */
  text-align: right;
  font-family: "Cormorant Garamond" !important;
}

#home-service-section ul.service-item-con {
  color: rgba(0, 0, 0, 0.33);
  font-size: 2.8rem;
  text-align: end;
  margin-bottom: 3rem;
  list-style: none;
}

#home-service-section ul.service-item-con li {
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all .3s ease;
}

#home-service-section ul.service-item-con li:hover {
  text-decoration: underline;
  color: black;
}

#home-service-section ul.service-item-con li.active,
#home-service-section ul.service-item-con li:hover {
  text-decoration: underline;
  color: black;
}

#home-service-section .btn-con {
  display: flex;
  justify-content: flex-end;
}

#wcu-section {
  margin-bottom: 8rem;
}

#wcu-section .wcu-left img {
  width: 100%;
  height: 48.7rem;
  object-fit: cover;
}

#wcu-section .wcu-left .title {
  font-size: 45px;
  margin-bottom: 1rem;
  font-weight: 500 !IMPORTANT;
}

#wcu-section .wcu-left .text {
  /* color: rgba(0, 0, 0, 0.56); */
  font-size: 1.7rem;
  margin-bottom: 4rem;
}

#wcu-section .wcu-right-top {
  height: 40rem;
  width: 100%;
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

#wcu-section .wcu-right-top .text {
  z-index: 1;
  color: white;
  font-size: 3.6rem;
  margin-bottom: 3rem;
}

#wcu-section .wcu-right-top .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.79) 100%
  );
  top: 0;
  left: 0;
}

#wcu-section .wcu-right-top img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

#wcu-section .wcu-right-top .btn {
  z-index: 1;
  color: white;
  width: 19.6rem;
  height: 6.5rem;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: anchor-center;
  font-size: 1.7rem;
  margin-bottom: 3rem;
  transition: all .3s ease;
}

#wcu-section .wcu-right-top .btn:hover {
  color: rgba(243, 146, 0, 1);
  border-color: rgba(243, 146, 0, 1);
  scale: 1.05;
}

#wcu-section .wcu-right-bottom .title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

#wcu-section .wcu-right-bottom .text {
  color: rgba(0, 0, 0, 0.56);
  font-size: 1.65rem;
  margin-bottom: 2rem;
}

#build-section {
  margin-bottom: 8rem;
}

#build-section .title-sec {
  font-size: 2.4rem;
  color: rgba(243, 146, 0, 1);
  text-transform: uppercase;
}

#build-section .title {
  font-size: 45px;
  margin-bottom: 4rem;
  font-weight: 500 !important;
}

#build-section .build-pic-con {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

#build-section .build-pic-con:nth-child(even) {
  grid-template-columns: 1fr 2fr 1fr;
}

#build-section .build-item {
  height: 39.7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  cursor: pointer;
  padding: 1rem;
}

#build-section .build-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
}

#build-section .build-item .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.49);
}

#build-section .build-item .title {
  z-index: 1;
  color: white;
  position: relative;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

#build-section .build-item .text {
  font-size: 1.7rem;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

#build-section .build-item i {
  color: white;
  position: relative;
  z-index: 1;
  position: absolute;
  right: 3rem;
  top: 3rem;
  font-size: 3rem;
  transform: rotateZ(45deg);
}

.build-item .title,
.build-item .text,
.build-item i,
.build-item .overlay {
  opacity: 0;
  transition: all 0.3s ease;
}

.build-item:hover .title {
  opacity: 1;
}
.build-item:hover .text {
  opacity: 1;
}
.build-item:hover i {
  opacity: 1;
}
.build-item:hover .overlay {
  opacity: 1;
}

#testimonial-section {
  text-align: center;
  /* max-width: 800px; */
  margin: auto;
  margin-bottom: 8rem;
  position: relative;
}

#testimonial-section .testimonial-container {
  max-width: 80rem;
  position: relative;
}

#testimonial-section .title-sec {
  color: rgba(243, 146, 0, 1);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 2.4rem;
}

#testimonial-section .title {
  font-size: 45px;
  margin-bottom: 4rem;
  font-weight: 500 !IMPORTANT;
}

#testimonial-section .testimonial-slider-img {
  width: 100%;
  margin-bottom: 3rem;
  max-width: 35rem;
}

#testimonial-section .testimonial-slider-img .swiper-slide {
  display: flex;
  justify-content: center;
  /* width: 80px !important; */
}

#testimonial-section .testimonial-slider-img .avatar {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.5;
  transition: all 0.3s ease;
}

#testimonial-section .testimonial-slider-img .swiper-slide-active .avatar {
  opacity: 1;
  scale: 1.5;
  z-index: 1;
  position: relative;
}

#testimonial-section
  .testimonial-slider-img
  .swiper-slide-thumb-active
  .avatar {
  opacity: 1;
  transform: scale(1.1);
}

#testimonial-section .testimonial-slider-text {
  position: relative;
}

#testimonial-section .testimonial-slider-text .testimonial-text {
  font-size: 2.1rem;
  color: rgba(102, 102, 102, 1);
  line-height: 3.6rem;
  margin-bottom: 3rem;
}

#testimonial-section .testimonial-slider-text .testimonial-name {
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

#testimonial-section .testimonial-slider-text .testimonial-position {
  font-size: 2.1rem;
  color: rgba(102, 102, 102, 1);
}

#testimonial-section .testimonial-button-next,
#testimonial-section .testimonial-button-prev {
  color: #000;
  position: absolute;
  top: 50%;
  font-size: 3rem;
  cursor: pointer;
}

#testimonial-section .testimonial-button-prev {
  left: 0;
}

#testimonial-section .testimonial-button-next {
  right: 0;
}

#testimonial-section .testimonial-container > img {
    position: absolute;
    top: 42%;
    left: 55%;
    transform: translate(-50%, -70%);
    z-index: -1;
    opacity: 10%;
    width: 100%;
    height: auto;
    rotate: -20deg;
}

#book-now-section {
  height: 51.2rem;
  position: relative;
}

#book-now-section .swiper {
  height: 100%;
}

#book-now-section .swiper-slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#book-now-section .swiper-slide .btn {
    z-index: 1;
    position: relative;
    width: fit-content;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.swiper-nav {
  display: flex;
  margin-bottom: 10px;
  position: absolute;
  bottom: 3rem;
  width: 100%;
  z-index: 9999;
  gap: 3rem;
  max-width: 1140px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
    .swiper-nav {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .swiper-nav {
        max-width: 1140px;
    }
}

.swiper-nav-item {
  cursor: pointer;
  font-size: 4rem;
  padding-bottom: 0rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
  color: white;
  font-family: 'Poppins';
  opacity: 0.5;
  width: 60px;
  text-align: center;
}

.swiper-nav-item.active {
  border-color: #f19102;
  opacity: 1;
  font-weight: 700;
}


#book-now-section .title-sec {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 1);
  z-index: 1;
  position: relative;
  text-transform: uppercase;
  text-shadow: 0px 4px 20.5px rgba(0, 0, 0, 0.39);
  margin-bottom: 4rem;
}

#book-now-section .title {
  font-size: 8.4rem;
  color: rgba(255, 255, 255, 1);
  z-index: 1;
  position: relative;
  line-height: 7.2rem;
  text-shadow: 0px 6.01px 15.91px rgba(0, 0, 0, 0.49);
}

#book-now-section .img {
  position: relative;
  z-index: 1;
  width: 40rem;
  height: auto;
}

#book-now-section .overlay {
  background: linear-gradient(
    269.64deg,
    rgba(0, 0, 0, 0) 21.89%,
    rgba(0, 0, 0, 0.72) 98.6%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#contact-bar-section {
  background: rgba(36, 39, 43, 1);
  margin-bottom: 8rem;
}

#contact-bar-section .contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(254, 250, 220, 1);
  padding: 4rem 0;
  gap: 3rem;
}

#contact-bar-section .contact-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

#contact-bar-section .icon {
  width: 8.4rem;
  height: 8.4rem;
  filter: brightness(0) saturate(100%) invert(98%) sepia(17%) saturate(546%)
    hue-rotate(4deg) brightness(102%) contrast(97%);
}

#contact-bar-section .contact-info .label {
  margin: 0;
  font-size: 2.4rem;
}

#contact-bar-section .contact-info .number {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 600;
  color: #f9f4cc;
}

#contact-bar-section .divider {
  width: 2px;
  height: 10rem;
  background-color: rgba(254, 250, 220, 1);
  opacity: 0.3;
}

#contact-bar-section .contact-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 2;
  justify-content: space-between;
}

#contact-bar-section .contact-right .text p {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 500;
}

#contact-bar-section .cta-button {
  background-color: rgba(254, 250, 220, 1);
  border: none;
  color: #000;
}

#contact-bar-section .cta-button:hover {
  background-color: rgb(254 187 85);
  scale: 1.05;
}

#faq-section {
  text-align: center;
  margin: auto;
  margin-bottom: 8rem;
  position: relative;
}

#faq-section .title-sec {
  color: rgba(243, 146, 0, 1);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 2.4rem;
}

#faq-section .title {
  font-size: 45px;
  margin-bottom: 4rem;
  font-weight: 500 !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-box {
  border: 1px solid #ccc;  
  transition: all 0.3s ease;
  height: fit-content;
}

.faq-box:hover .faq-question {
  background: gainsboro;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.1rem;
  font-weight: 400;
  cursor: pointer;
  padding: 1.5rem 2rem;
  transition: all .3s ease;
}

.toggle-btn {
  background: none;
  color: orange;
  font-size: 2.5rem;
  font-weight: bold;
  transition: transform 0.2s ease;
  width: 3rem;
  min-width: 3rem !important;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-answer {
  display: none;
  color: #333;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  border-top: 1px solid #e9e9e9;
  position: relative;
  padding: 1.5rem 2rem;
}

#recent-news-section {
  margin-bottom: 8rem;
}

#recent-news-section .title-sec {
  font-size: 2.4rem;
  color: rgba(243, 146, 0, 1);
  text-transform: uppercase;
}

#recent-news-section .title {
  font-size: 45px;
  font-weight: 500 !important;
}

#recent-news-section .text {
  color: rgba(0, 0, 0, 0.67);
  line-height: 3.8rem;
  font-size: 1.8rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.blog-card {
  background: #fff;
  padding: 0;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
  transition: 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); */
  transform: scale(1.025);
}

.blog-img {
  width: 100%;
  height: 20rem;
  display: block;
  object-fit: cover;
  margin-bottom: 2rem;
  margin: 0;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  margin: 0;
}

.blog-tag {
  background: rgba(243, 146, 0, 0.47);
  padding: 0.5rem 2rem;
  border-radius: 4px;
  font-family: "Abhaya Libre";
}

.blog-time {
  color: #666;
  font-family: "Abhaya Libre";
}

.blog-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: #111;
  font-family: "Abhaya Libre";
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  margin: 2rem 0;
}

.author-img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info .author-name {
  margin: 0;
  font-weight: 600;
  font-size: 1.4rem;
}

.author-info .author-role {
  margin: 0;
  font-size: 1.3rem;
  color: #666;
}

.footer {
  background-color: #fefadc;
  color: #222;
  margin: 0;
}

.footer-top-section {
  padding: 2rem 0;
}

.footer-column h4 {
  color: #f39200;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  margin-top: 3rem;
  font-weight: 500;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 1rem;
  font-size: 17px;
  display: flex;
  transition: all .3s ease;
  cursor: pointer;
  font-family: "Abhaya Libre";
}

.footer-column ul li:hover {
  transform: scale(1.1);
}

.footer-column ul li span {
  float: right;
  flex: 1;
}

.logo-column p {
  margin-top: 1rem;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 1);
}

.footer-logo {
  width: 20.5rem;
  height: auto;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons i {
  font-size: 2rem;
  padding: 0.8rem;
  border-radius: 4px;
  color: #f39200;
  cursor: pointer;
  transition: all .3s ease;
}
.social-icons i:hover {
  transform: scale(1.3);
}

.contact-info i {
  color: #f39200;
  top: 0.5rem;
  position: relative;
  width: 3.6rem;
}

.footer-bottom-section {
  background: #1f1f1f;
  padding: 1.5rem 6rem;
}

.footer-bottom {
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-size: 1.7rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  transition: all .3s ease;
  cursor: pointer;
}

.footer-bottom p:hover {
  margin: 0;
  color: #f39200;
}

.related-services-wrapper {
  margin-bottom: 8rem;
}

.related-services-wrapper .title-sec {
  font-size: 1.8rem;
  color: rgba(243, 146, 0, 1);
  text-transform: uppercase;
  margin: 0;
}

.related-services-wrapper .title {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hamburger {
    display: none;
    font-size: 2.8rem;
    margin-left: 1rem;
    cursor: pointer;
    width: 25px;
    height: 44px;
}

.hamburger i {
    transition: all .3s ease;
}
.hamburger .cross {
    scale: 0;
    height: 0;
    width: 0;
}
.hamburger.active .bar {
    scale: 0;
    height: 0;
    width: 0;
}
.hamburger.active .cross {
    scale: 1;
}

.swiper-pagination-bullet {
  background: #aaa;
  opacity: 1;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  background: rgba(243, 146, 0, 1);
}

@media (max-width: 767.98px) {
    .topbar-left .topbar-item:not(:first-child) {
        display: none;
    }
    .hero-text-con h1 {
        font-size: 3rem;
    }
    .hero-text-con h4 {
        margin-top: 2rem;
        font-size: 1.8rem;
        font-weight: 400;
    }
    .header-section .navbar {
        position: absolute;
        flex-direction: column;
        top: 9rem;
        width: 100%;
        left: 0;
        background: #3b3b3be6;
        gap: 4rem;
        height: 0;
        justify-content: flex-start;
        color: white;
        transition: all .6s ease;
        overflow: hidden;
        padding: 0;
        flex-wrap: nowrap;
    }
    .header-section .navbar.active {
        height: calc(100vh - 9rem);
        padding: 3rem;
        margin-left: 0;
    }
    .header-section .navbar a {
        position: relative;
        width: 100%;
        text-align: center;
    }
    .header-section .navbar .nav-item:has(ul) a {
        width: fit-content;
    }
    .navbar .nav-item ul {
        position: relative;
        left: -3rem;
        color: black;
        z-index: 222222222222222222222;
        width: calc(100% + 6rem);
        top: 2rem;
    }
    .header-section .navbar .nav-item:after {
        content: '';
        position: absolute;
        top: 4rem;
        left: 0;
        width: calc(100%);
        height: 1px;
        background: gray;
    }
    .header-section .navbar .nav-item ul .nav-item:after {
        background: none;
    }
    .navbar .nav-item {
        position: relative;
        width: 100%;
        text-align: center;
        height: auto;
        display: block;
    }
    .header-section .phone-con .text {
        display: none;
    }
    .logo {
        height: 7rem;
    }
    .phone-con .icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
    }
    #hero-section .hero-btn-con {
        gap: 1rem;
    }
    .btn {
        min-width: 15rem;
        width: auto;
        height: 55px;
        font-size: 1.6rem;
        gap: .8rem;
    }
    #hero-section .hero-btn-con .start-btn {
        font-size: 1.6rem;
    }
    #home-about-section .title {
        font-size: 4rem;
        left: 0;
        width: calc(100%);
        margin-top: 10px;
    }
    #home-about-section {
        margin-bottom: 4rem;
    }
    #home-about-section img {
        width: calc(100%);
        height: 100%;
        position: relative;
        padding-left: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        max-height: 25rem;
    }
    #home-service-section .title {
        right: 0;
        font-size: 3.5rem;
        position: relative;
        margin: 2rem 0;
        width: 100%;
        text-align: left;
        margin-top: 0;
    }
    #home-service-section ul.service-item-con {
        color: rgb(0 0 0 / 60%);
        font-size: 1.8rem;
        text-align: left;
        margin-bottom: 2rem;
        list-style: none;
        margin-left: 0;
    }
    #home-service-section .btn-con {
      justify-content: flex-start;
    }
    #home-service-section img {
        /*display: none;*/
    }
    .service-img-con {
        display: none;
    }
    #home-about-section {
        height: auto;
    }
    #home-service-section {
        height: auto;
        margin-bottom: 3rem;
    }
    #wcu-section .wcu-left .title {
        font-size: 4rem;
    }
  #wcu-section .wcu-left .text {
    margin-bottom: 4rem;
  }
    #wcu-section .wcu-left img {
        height: 20rem;
        margin-bottom: 2rem;
    }
    #wcu-section .wcu-right-top {
        height: 20rem;
        margin-bottom: 1rem;
    }
    #wcu-section .wcu-right-top .text {
        font-size: 2.5rem;
    }
    #wcu-section .wcu-right-top .btn {
        width: 13.6rem;
        height: 4.5rem;
        font-size: 1.5rem;
    }
    #wcu-section {
        margin-bottom: 2rem;
    }
    #build-section .title {
        font-size: 5.8rem;
        margin-bottom: 2rem;
        line-height: 5rem;
    }
    #build-section .build-pic-con {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    #build-section .build-pic-con:nth-child(even) {
        grid-template-columns: 1fr;
    }
    #build-section .build-item {
        height: 20.7rem;
    }
    #build-section {
        margin-bottom: 4rem;
    }
    #testimonial-section .title {
        font-size: 3.5rem;
        margin-bottom: 3rem;
    }
    #testimonial-section .testimonial-button-next, #testimonial-section .testimonial-button-prev {
        top: 100%;
    }
    #testimonial-section .testimonial-button-next {
        right: 1.5rem;
    }
    #testimonial-section .testimonial-button-prev {
        left: 1.5rem;
    }
    #book-now-section .title {
        font-size: 4.4rem;
        line-height: 5rem;
    }
    #book-now-section .img {
        position: relative;
        z-index: 1;
        width: 20rem;
    }
    #book-now-section {
        height: 30.2rem;
    }
    #book-now-section .title-sec {
        margin-bottom: 2rem;
    }
    #contact-bar-section .contact-bar {
        flex-direction: column;
        padding: 3rem 0;
    }
    #contact-bar-section .contact-info .number {
        font-size: 2rem;
    }
    #contact-bar-section .contact-left {
        width: 100%;
    }
    #contact-bar-section .divider {
        width: 100%;
        height: 2px;
    }
    #contact-bar-section .contact-right .text p {
        margin: 0;
        font-size: 2rem;
    }
    #contact-bar-section {
        margin-bottom: 4rem
    }
    #faq-section {
        margin-bottom: 4rem;
    }
    #faq-section .title {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .toggle-btn {
        font-size: 2.5rem !important;
        min-width: 3rem !important;
        width: 3rem !important;
        height: 3rem !important;
    }
    .faq-question {
        text-align: left;
        font-size: 1.6rem;
    }
    #recent-news-section .title {
        font-size: 4rem;
    }
    .footer-bottom-section {
        padding: 1.5rem 0rem;
    }
    .footer-bottom {
        gap: 1rem;
        font-size: 1.2rem;
        justify-content: center;
    }
    .hamburger {
        display: block;
    }
    
    /*-----------------Inner----------------------*/
    
    .single {
        padding-top: 0 !important;
    }
    .fact {
        padding-top: 0 !important;
    }
    .fact .fact-left, .fact .fact-right {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .fact .fact-icon {
        width: 40px !important;
        margin: 7px 15px 0 0px !important;
        font-size: 28px !important;
    }
    .section-header {
        margin-bottom: 25px !important;
    }
    .contact {
        padding: 0px 0 !important;
        padding-bottom: 25px !important;
    }
    .service {
        padding: 0px 0 15px 0 !important;
    }
    .about {
        padding: 25px 0 !important;
    }
    .service-card h4 {
        font-size: 1.4rem !important;
    }
    .service-card p {
        font-size: 1.2rem !important;
    }
    .related-services-wrapper {
        margin-bottom: 2rem !important;
    }
    .blog {
        padding-top: 0 !important;
    }
    .single .single-bio {
        margin-bottom: 25px !important;
    }
    .sidebar .sidebar-widget {
        margin-bottom: 0 !important;
    }
    .nav-item ul li a {
        color: black;
    }
    .swiper-nav {
      bottom: 1rem;
      gap: 1rem;
    }
    .swiper-nav-item {
      font-size: 2.5rem;
      width: 45px;
      text-align: center;
    }
}

.hide{
    display:none !important;
}



p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Raleway !important;
    font-size: 16px !important;
    letter-spacing: 1px ! IMPORTANT;
    font-weight: normal !important;
    line-height: 1.8em !important;
}