* {
  padding: 0;
  margin: 0;
}
body {
  /* background-color: #000f22; */
  background: linear-gradient(135deg, #2c2f38, #3b1f06);
}
html {
  scroll-behavior: smooth !important;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
  scrollbar-color: #ded2c4 #f8f1e9;
}
h1,
h2,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}
a {
  font-family: var(--paragraph-font);
  text-decoration: none;
}
p {
  font-family: var(--paragraph-font);
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 90%;
}
.section-padding {
  padding-top: 6em;
  padding-bottom: 6em;
}

.heading {
  text-align: center;
  width: 80%;
  margin: auto;
}

.heading h1 {
  font-size: 3rem;
  line-height: 3.2rem;
  font-weight: 800;
  text-transform: capitalize;
}

.heading h1 span {
  color: var(--color-3);
}
.btn_style {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-width: 150px;
  padding: 0;
  border-radius: 35px;
  overflow: hidden;
}
.btn_style span {
  position: relative;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  transition: 0.3s;
  border-radius: 35px;
  font-family: var(--paragraph-font);
  align-items: center;
}
.btn_style span i {
  margin-left: 10px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  color: var(--color-1);
  display: grid;
  place-content: center;
  transform: rotate(-20deg);
  transition: 0.3s ease-out;
}
.btn-1::before {
  position: absolute;
  content: "";
  background-image: var(--gradient_color);
  transition: 0.3s ease-out;
  border-radius: 35px;
}
.btn-1 span {
  color: rgb(255, 255, 255);
  border: 1px solid #f2a411;
  transition: 0.2s 0.1s;
  border-radius: 35px;
}
.btn-1 span:hover {
  color: var(--color-2);
  transition: 0.2s 0.1s;
  background: #fff;
}
.btn_style.hover-filled-slide-right::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.btn_style.hover-filled-slide-right:hover::before {
  position: absolute;
  content: "";
  width: 0%;
}
.btn-1 span:hover i {
  background: var(--gradient_color);
  color: #fff;
  transform: rotate(0deg) scale(1.1);
}

/* ******************************************************************* header ****************************************** */
header {
  position: absolute;
  transition: all 0.3s ease;
  z-index: 1050;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
}
#mainHeader .nav-link {
  font-weight: 600;
  color: var(--color-2);
  font-family: var(--paragraph-font);
  font-size: 16px;
}
#mainHeader.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #fff;
}
#mainHeader.scrolled .nav-link {
  color: #000;
}
#mainHeader .nav-link:hover {
  color: var(--color-1);
}

#mainHeader .btn-primary {
  background-color: var(--color-1);
  border-color: var(--color-1);
}

#mainHeader .btn-primary:hover {
  background-color: var(--color-1);
  border-color: var(--color-1);
}

#mainHeader.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  /* height: 68px; */
}

#mainHeader .navbar.navbar-expand-lg {
  padding: 0 0;
}
/* // ********************************************* Banner ******************************************* // */
.banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: left;
  /* background: transparent linear-gradient(-50deg, #08417d4d 0%, #fff 100%) 0% 0% no-repeat padding-box; */
  border-bottom-left-radius: 75px;
  /* border-bottom-right-radius: 75px; */
}
.banner .banner_txt {
  padding-top: 100px;
  text-align: center;
}
.banner .banner_shape {
  position: absolute;
  z-index: 0;
  right: 5%;
  top: 12%;
  animation: heartbeat 4s infinite alternate;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.banner h1 {
  font-size: 65px;
  text-align: center;
  display: block;
  margin: 0;
  line-height: 63px;
  color: var(--color-1);
  /* text-transform: uppercase; */
  font-family: var(--heading-font);
  /* background: linear-gradient(180deg, #0d60b8 0%, #083e77 100%); */
  /* background-clip: border-box; */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  font-weight: 900;
}
/* .banner h1 span {
    display: block;
    color: #000;
    text-transform: capitalize;
    font-family: "Questrial", serif;
} */
/* .banner h1 span {
  display: block;
  text-transform: capitalize;
  -webkit-text-fill-color: #292929;
  font-size: 50px;
  font-weight: 600;
} */
.banner h1 span {
  display: block;
  color: var(--color-2);
}
.banner p {
  font-size: 15px;
  text-align: center;
  color: #000;
  font-weight: 500;
  line-height: 20px;
  margin: 14px auto 20px;
  text-transform: capitalize;
  width: 40%;
}

.banner .btn_div {
  display: flex;
  gap: 10px;
}

.banner .btn_div .btn {
  background-color: var(--color-3);
  font-size: 16px;
  font-family: var(--paragraph-font);
  font-weight: bold;
  height: 50px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 50px;
  justify-content: center;
  color: #fff;
  flex: 1;
}
.banner .form_div {
  padding: 35px 50px;
  background: var(--gradient_color);
  /*! height: 60vh; */
  border-radius: 12px;
  backdrop-filter: blur(7px);
  background: #ffffff78;
  border: 2px dashed #083e776b;
  box-shadow: 0px 22px 70px -40px #000;
}
.banner .form_div .form-control {
  border: 1px solid #000;
  height: 50px;
  font-size: 18px;
  border-radius: 40px;
  padding: 6px 20px;
  box-shadow: none !important;
  color: #000;
  background: transparent;
}
.banner .form_div .form-control::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  opacity: 1;
}
.banner
  .form_div
  .btn.btn-outline-secondary.dropdown-toggle.d-flex.align-items-center {
  border-color: #000;
  color: #000;
  box-shadow: none !important;
  outline: none;
}
.banner .form_div h2 {
  color: var(--color-2);
  font-weight: bold;
}
.banner .form_div p {
  color: #000;
  line-height: 25px;
}
.banner .form_div label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
  margin-left: 15px;
}

/* // ********************************************* about ******************************************* // */
.about_section {
  overflow: hidden;
}
.about_section .about_info .txt_flex {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}
.about_section .about_info .txt_flex img {
  width: 200px;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blob {
  position: absolute;
  width: 260px;
  height: 330px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.8;
  animation: floatBlob 14s ease-in-out infinite;
}
/* Purple */
.blob-1 {
  background: #0c305b;
  top: 50%;
  left: -20%;
  animation-duration: 16s;
}

/* Pink */
.blob-2 {
  background: #0c305b;
  top: -20%;
  right: -5%;
  animation-duration: 18s;
}

/* Yellow */
.blob-3 {
  background: #0c305b;
  bottom: 10%;
  left: 50%;
  animation-duration: 20s;
}
@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, -60px) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.about_home_image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  border-radius: 14px; /* optional */
  display: block;
  height: 100vh;
  object-fit: cover;
  box-shadow: 0px 0px 10px 0px #000;
}

.about_section .about_info {
  padding-right: 50px;
}
.about_section .about_info p {
  color: var(--bgcolor1);
  line-height: 23px;
  font-size: 15px;
}
.about_section .about_info .title h1 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 900;
  font-size: 65px;
  line-height: 63px;
}
.about_section .about_info .title span {
  display: block;
  font-size: 14px;
  color: var(--color-1);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--paragraph-font);
}

.about_section .about_info .stats_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 45px;
}
.about_section .about_info .stats_ul .stats_li {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-basis: calc(50% - 30px);
  margin: 15px;
  border-bottom: 1px solid #ffffff2b;
  position: relative;
}
.about_section .about_info .stats_ul .stats_li::before {
  content: "";
  width: 70px;
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--color-1);
}
.about_section .about_info .stats_ul .stats_li h2 {
  color: #fff;
  font-size: 41px;
  font-weight: bold;
  font-family: var(--paragraph-font);
}
.about_section .about_info .stats_ul .stats_li p {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  font-family: var(--heading-font);
}
/* // ********************************************* Services ******************************************* // */
.services_sections {
  background: #fff;
  /* border-top-right-radius: 70px; */
  border-top-left-radius: 70px;
  position: relative;
}
.services_sections::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  z-index: 1;
  border-style: solid;
  border-color: #fff transparent;
  border-width: 55px 45px 0;
  bottom: -53px;
  left: 50%;
  margin-left: -45px;
}
.services_sections .heading {
  margin-bottom: 60px;
}
.services_sections .services_txt h1 {
  font-size: 54px;
  font-weight: 900;
  font-family: var(--heading-font);
  color: var(--color-2);
  text-transform: capitalize;
  line-height: 50px;
}
.services_sections .services_txt span {
  display: block;
  font-size: 14px;
  color: var(--color-1);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--paragraph-font);
}

.services-slider-wrap {
  position: relative;
}
.services-slider {
  width: 93%;
  margin: auto;
}
.services-slider .slick-slide {
  transition: all 0.35s ease;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 15px;
}
.services-slider .slick-slide:hover {
  border: 1px solid var(--color-1);
}
.services-slider .slick-slide:hover img {
  border: none;
}
/* .services-slider .slick-slide:not(.slick-center) {
  transform: scale(0.88);
  opacity: 0.5;
}

.services-slider .slick-center {
  transform: scale(1);
  opacity: 1;
}

.services-slider .slick-center .service_card img {
  border-color: var(--color-1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
} */

.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 37%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  /* border: none; */
  /* box-shadow: 0 8px 24px rgba(0,0,0,0.12); */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px dashed var(--color-1);
}

.slick-prev-custom {
  left: -20px;
}

.slick-next-custom {
  right: -20px;
}

.slick-prev-custom i,
.slick-next-custom i {
  color: var(--color-1);
  font-size: 16px;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  background: var(--color-1);
}

.slick-prev-custom:hover i,
.slick-next-custom:hover i {
  color: #ffffff;
}
.service_card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 20px;
  filter: grayscale();
  box-shadow: 0px 0px 30px -20px #000;
}
.service_card {
  padding: 10x 30px;
  /* text-align: center; */
  margin: 15px;
}
.service_card h5 {
  color: var(--color-2);
  font-weight: 900;
  font-size: 21px;
}
.service_card p {
  color: #000;
  font-size: 17px;
  font-family: var(--heading-font);
  line-height: 18px;
}
.service_card:hover {
  /* transform: scale(1.01); */
  transition: 0.3s ease-in-out;
}
.service_card:hover img {
  filter: none;
  transition: 0.3s ease-in-out;
}
.service_card:hover h5 {
  color: var(--color-1);
  transition: 0.3s ease-in-out;
}
/* *********************************************** why choose us *********************************************** */
.why_choose_sec {
  background-color: #f8f1e9;
  /* border-bottom-left-radius: 70px; */
  border-bottom-right-radius: 70px;
  padding-bottom: 8em;
}
.why_choose_sec .img_collage {
  position: sticky;
  top: 150px;
  right: 0;
}
.why_choose_sec .img_collage .img_1 {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0px 0px 15px -5px #000;
}
.why_choose_sec .img_collage .img_2 {
  position: absolute;
  top: -70px;
  right: -40px;
  width: 250px;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  border: 14px solid #f8f1e9;
}
.why_choose_sec .why_choose_txt {
  padding-right: 50px;
}
.why_choose_sec .why_choose_txt h1 {
  color: #000;
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 47px;
  line-height: 52px;
  margin-top: 10px;
  border-bottom: 2px solid #f3d1b5;
  position: relative;
  padding-bottom: 15px;
}
.why_choose_sec .why_choose_txt h1::before {
  content: "";
  width: 100px;
  position: absolute;
  bottom: -4px;
  height: 5px;
  background: var(--color-1);
  border-radius: 35px;
}
.why_choose_sec .why_choose_txt span.sub_title {
  display: block;
  font-size: 14px;
  color: var(--color-1);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--paragraph-font);
}
.why_choose_sec .why_choose_txt .choose_ul {
  padding: 0;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.why_choose_sec .why_choose_txt .choose_ul li {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 7px 0;
  flex-basis: calc(50% - 20px);
  margin-right: 10px;
}
.why_choose_sec .why_choose_txt p {
  margin: 0;
  font-size: 16px;
  color: #000;
  font-family: var(--paragraph-font);
  font-weight: 400;
}
.why_choose_sec .why_choose_txt .choose_ul li p {
  margin: 0;
  font-size: 16px;
  color: #000;
  font-family: var(--paragraph-font);
  font-weight: 500;
}
.why_choose_sec .why_choose_txt .choose_ul li i {
  width: 26px;
  height: 26px;
  display: grid;
  place-content: center;
  background: var(--gradient_color);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}

/* ********************************************** CTA Section ********************************************** */
.cta_dark {
  /* background: linear-gradient(135deg, #0f172a, #1e293b); */
  padding: 6em 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta_dark::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.26), transparent 60%);
  top: -50px;
  right: -60px;
  /* left: 0; */
  margin: auto;
}
.cta_text h2 {
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.cta_text h2 span {
  color: var(--color-1);
}
.cta_text p {
  color: #cbd5e1;
  font-size: 19px;
  margin: 0;
}
.cta_btn {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.cta_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
}
/* *********************************************** Testimonials *********************************************** */
.testimonial_sec {
  background: #fff;
  border-top-left-radius: 100px;
  position: relative;
}
.testimonial_sec .title {
  padding-right: 70px;
}
.testimonial_sec .title h1 {
  font-size: 50px;
  font-weight: 900;
  font-family: var(--heading-font);
  color: var(--color-2);
  text-transform: capitalize;
  line-height: 50px;
  margin-bottom: 20px;
}
.testimonial_sec .title span {
  display: block;
  font-size: 14px;
  color: var(--color-1);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--paragraph-font);
}
.testimonial-item {
	background: var(--gradient_color);
	padding: 40px;
	border-radius: 16px;
	text-align: center;
	margin: 0 20px;
	height: 100%;
}
.testimonial_sec .slick-dots {
	bottom: -50px;
}
.testimonial-text {
	font-size: 16px;
	line-height: normal;
	color: #fff;
	margin-bottom: 20px;
	font-weight: 500;
	text-align: left;
	border-bottom: 2px solid #ffffff3d;
	padding-bottom: 10px;
}
.testimonial-user {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 15px;
	text-align: left;
	line-height: 15px;
}
.testimonial-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-user h4 {
	margin: 0;
	font-size: 18px;
	font-weight: 900;
	color: #fff;
}
.testimonial-user span {
	font-size: 14px;
	color: #fff;
	font-family: var(--paragraph-font);
	font-weight: 500;
}
/* *********************************************** Footer *********************************************** */
.footer {
  background: linear-gradient(135deg, #f5f5f5, #f8f1e9);
  color: #000;
  padding: 6em 0 0 0;
}

.footer-top {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1.8fr;
  gap: 50px;
}

.footer-brand h3 {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 50px 0 0 50px;
  border: none;
  outline: none;
}

.newsletter-form button {
  padding: 14px 22px;
  border: none;
  background: #f97316;
  color: #fff;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  font-weight: 600;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.social-icons a {
  color: var(--color-1);
  margin-right: 5px;
  font-size: 18px;
  transition: 0.3s;
  width: 40px;
  display: inline-grid;
  height: 40px;
  background: #fff;
  place-content: center;
  border-radius: 50%;
}

.social-icons a:hover {
  background: var(--gradient_color);
  color: #fff;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: var(--color-2);
  font-family: var(--para-color);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.footer-col ul li a:hover {
  color: var(--color-1);
  padding-left: 5px;
}

.footer-contact .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.footer-contact .icon {
  background: var(--gradient_color);
  border-radius: 50%;
  font-size: 18px;
  min-width: 55px;
  height: 55px;
  color: #fff;
  display: grid;
  place-content: center;
}
.footer-contact span {
  font-size: 14px;
  color: var(--color-2);
  font-weight: bold;
  font-family: var(--paragraph-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact strong {
  display: block;
  font-size: 15px;
  color: #000;
}
.footer-bottom {
  background: #fbe6c8;
  margin-top: 30px;
  padding: 2em 0;
  text-align: center;
  font-size: 14px;
}
.footer-bottom p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #685436;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  margin: 0 18px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--color-1);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 50px;
    width: 100%;
  }

  .newsletter-form button {
    margin-top: 10px;
  }
}
