:root {
  --black: #000;
  --gray: #d09d5b;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
}
.section-space {
  padding: 70px 0;
}
.main-p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0;
  color: var(--black);
}
.sub-heading {
  font-size: 24px;
  line-height: 1.4;
  color: var(--black);
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}
.bg-gray {
  background-color: #f2eded;
}
.main-heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Merriweather", serif;
}
.border-10 {
  border-radius: 10px;
}
.btn-1 {
  background-color: #262626;
  padding: 10px 38px;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  font-family: "Merriweather", serif;
  font-weight: 300;
  text-decoration: none;
  display: block;
  width: max-content;
  transition: 0.4s;
}
.btn-1:hover,
.btn-2:hover {
  background-color: #d09d5b;
}
.btn-2 {
  background-color: #262626;
  padding: 6px 30px;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Merriweather", serif;
  font-weight: 300;
  text-decoration: none;
  display: block;
  width: max-content;
  transition: 0.4s;
}
.pt-40 {
  padding-top: 35px;
}
.w-80 {
  width: 80%;
  margin: auto;
}
/* ---------------------------------------header css---------------------------------------- */
.topbar {
  background-color: var(--black);
  padding: 10px 0;
}
.topbar p {
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  font-family: "Merriweather", serif;
}
header {
  background-color: #fff;
}
header .navbar-brand img {
  max-width: 65px;
}
header .nav-link {
  padding: 25px 0 !important;
  font-size: 14px;
  color: var(--black);
  font-family: "Merriweather", serif;
}
header .navbar-nav {
  gap: 40px;
}

header .navbar-nav :hover {
  color: #d09d5b;
}

.navbar {
  padding: 0;
}

.header.fixed-nav {
  position: sticky !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: slideDown 0.4s ease forwards;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  padding: 5px 0;
}
@keyframes slideDown {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0);
  }
}

.header.fixed-nav .navbar-brand img {
  max-width: 45px;
}
.header.fixed-nav .nav-link {
  padding: 10px 0 !important;
}

/* ----------------------------------------hero section css------------------------------------------ */

.hero .img-box {
  position: relative;
}
.hero .img-box .text-box {
  color: #ffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  /* text-align: end; */
}
.hero .hero-slider-h {
  font-size: 4.125vw;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Merriweather", serif;
}
.hero .hero-slider-p {
  font-size: 22px;
  line-height: 1.4;
  padding: 30px 0;
  width: 90%;
  /* margin-left: auto; */
}
.hero .btn-1 {
  color: #0f0f0f;
  background-color: #ffff;
}

.hero .btn-1:hover {
  background-color: #d09d5b;
}

.hero,
.why-choose,
.out-team,
.blog-section,
.testimonial {
  overflow: hidden;
  position: relative;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 1.5%;
}
.slider-btn img {
  cursor: pointer;
  width: 40px;
  height: auto;
}
.slider-btn .slider-btn-span {
  position: relative;
}
.slider-btn .slider-btn-span::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  z-index: -1;
}
.out-team .slider-btn,
.testimonial .slider-btn {
  top: 65%;
}

/* ---------------------------------------------feature section css------------------------------------- */
.feature .card-custom {
  border: none;
  text-align: center;
  padding: 0 20px;
  background-color: transparent;
}

.feature .card-custom img {
  width: 6.77vw;
  height: auto;
  animation: flip 6s ease-in-out infinite;
}
@keyframes flip {
  0% {
    transform: rotateY(0.3s);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.feature .card-custom2 img {
  width: 6.77vw;
  height: auto;
  animation: flip 9s ease-in-out infinite;
}
@keyframes flip {
  0% {
    transform: rotateY(0.3s);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.feature .card-custom .sub-heading {
  font-weight: 700;
  padding: 25px 0;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* -----------------------------------why-choose slider--------------------------------------- */
.why-choose {
  overflow: hidden;
}
.why-us-h {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  font-family: "Merriweather", serif;
}


.owl-carousel .owl-item img{
    border-radius: 10px;
}


/* -----------------------cta-1 css--------------------- */
.cta-1 a {
  margin: auto;
}

/* ------------------------------out-team section css---------------------------- */
.out-team .team-slider {
  margin-top: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
}
.out-team .team-slider .main-p {
  font-weight: 600;
  line-height: 1.5;
  padding: 8px 0px;
}
.out-team .team-slider .team-desi {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 8px;
}
.out-team .team-slider .team-des {
  font-size: 14px;
  line-height: 1.6;
}
.out-team .team-slider .content-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}
.out-team .team-slider .content-box .text-box {
  padding: 15px;
}

/* ----------------------------------gallery css---------------------------- */
.media-gallery .gallery-content .content-box,
.media-gallery .gallery-content .img-box {
  height: 100%;
}
.media-gallery .gallery-content .content-box iframe {
  border-radius: 10px;
}
.media-gallery .gallery-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-gallery .gallery-content .content-box {
  position: relative;
}
.media-gallery .gallery-content .content-box a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

/* -----------------------------------blog-section slider--------------------------------------- */
.blog-section {
  overflow: hidden;
}
.blog-section-slider .content-box {
  background-color: #f4ebda;
  border-radius: 10px;
  overflow: hidden;
}
.blog-section-slider .blog-h {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
  margin-top: 8px;
}
.blog-section-slider .text-box {
  padding: 30px 20px;
  text-align: center;
}
.blog-section-slider .text-box a {
  margin: auto;
}

/* --------------------------------------testimonial-slider css-------------------------------- */
.testimonial-slider .content-box .img-box .client-icon {
  width: 5.73vw;
  height: auto;
  margin: auto;
  margin-bottom: -50px;
}
.testimonial-slider .content-box > .img-box {
  display: none;
}
.testimonial-slider .star-img-box ul {
  margin-top: 18px;
  margin-bottom: 0;
  list-style: none;
  display: inline-flex;
  gap: 10px;
  padding-left: 0;
}
.testimonial-slider .star-img-box ul img {
  width: 22px;
  height: auto;
}
.testimonial-slider .content-box .text-box {
  background-color: #f4ebda;
  border-radius: 10px;
  text-align: center;
  padding: 25px 45px;
}

/* ---------------------------------------faq section css--------------------------------------- */
.faq {
  background-color: #fafafa;
  padding-top: 35px;
}
.faq-section .accordion-button {
  position: relative;
  border: none;
  border-radius: 5px;
  outline: none !important;
  background-color: transparent;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Merriweather", serif;
  color: var(--black);
  padding: 0;
  box-shadow: none;
}
.faq-section .accordion-button:focus,
.faq-section .accordion-button:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}
/* .faq-section.accordion-button::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    transition: transform 0.3s ease;
} */
/* .faq-section .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
    border-top: 5px solid #333;
} */
.faq-section .accordion-item {
  border: none;
  background: #f9f5f2;
  border-radius: 10px;
  padding: 25px 40px;
}
.faq-section .accordion-item:not(:last-child) {
  margin-bottom: 40px;
}
.faq-section .accordion-body {
  padding: 0;
  padding-top: 15px;
}
.faq-section *:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* -----------------------------------------footer css-------------------------------------- */
.footer {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 25px 0;
}
.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}
.footer-text {
  text-align: center;
  margin-bottom: 0px;
  font-size: 12px;
  line-height: 2;
}
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  gap: 15px;
  line-height: 2;
}
.contact-item a {
  color: #fff;
  text-decoration: none;
}
.contact-item .img-box {
  outline: 1px solid #fff;
  padding: 9px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 45px;
}
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Merriweather", serif;
  font-size: 14px;
}
.nav-links a:hover {
  color: #cccccc;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: max-content;
  margin: auto;
  padding: 0 35px;
  background-color: #0f0f0f;
  position: relative;
  z-index: 2;
}
.social-icons img {
  width: 40px;
  height: auto;
}
.row-social-icon {
  position: relative;
}
.row-social-icon::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  background-color: #fff;
}
.social-icons a {
  color: #ffffff;
  font-size: 20px;
}
.social-icons a:hover {
  color: #cccccc;
}
/* Border Image Styling */
.border-section {
  padding: 15px 0;
}
.footer-address {
  padding: 25px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 80%;
  margin: auto;
}
/* Preview Styling */
.preview-box {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0;
  background-color: #f9f9f9;
}


/* enquery form css */
.modal-content {
  background-color: #ffffff;
  border-radius: 20px;
}

.modal-title {
  font-size: 1.5rem;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-close {
  background: none;
  color: #000;
}

.enquery-btn {
  background-color: var(--gray);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.enquery-btn:hover {
 background-color: var(--gray);
}
.fa-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #333;
  transition: transform 0.2s ease, color 0.3s ease;
}

.fa-close-btn:hover {
  transform: rotate(90deg) scale(1.2);
  color: var(--gray);
}




/* -------------------------------------------------responsive css-------------------------------------------- */
@media (min-width: 1200px) {
  .out-team .slider-btn {
    display: none;
  }
}

@media (max-width: 1599px) {
  .topbar {
    padding: 18px 0;
  }
  header .nav-link {
    padding: 22px 0 !important;
  }
  .sub-heading {
    font-size: 22px;
  }
  .main-p {
    font-size: 16px;
  }
  .pt-40 {
    padding-top: 30px;
  }
  .feature .card-custom .sub-heading {
    padding: 20px 0;
  }
  .section-space {
    padding: 60px 0;
  }
  .main-heading {
    font-size: 38px;
  }
  .why-us-h {
    font-size: 26px;
  }
  .slider-btn img {
    width: 35px;
  }
  .btn-1 {
    padding: 8px 32px;
    font-size: 16px;
  }
  .btn-2 {
    font-size: 15px;
  }
  .blog-section-slider .text-box {
    padding: 20px 20px;
  }
  .testimonial-slider .content-box .img-box .client-icon {
    margin-bottom: -38px;
  }
  .faq-section .accordion-button {
    font-size: 26px;
  }
  .faq-section .accordion-item:not(:last-child) {
    margin-bottom: 35px;
  }
  .contact-item .img-box {
    width: 40px;
    height: 40px;
  }
  .border-section {
    padding: 12px 0;
  }
  .footer-address {
    padding: 22px 0;
  }
}

@media (max-width: 1199px) {
  .topbar {
    padding: 12px 0;
  }
  .feature .card-custom {
    padding: 0 10px;
  }
  .main-heading {
    font-size: 32px;
  }
  .sub-heading {
    font-size: 20px;
  }
  .why-us-h {
    font-size: 24px;
  }
  .pt-40 {
    padding-top: 25px;
  }
  .blog-section-slider .blog-h {
    font-size: 20px;
    margin-top: 0;
  }
  .testimonial-slider .content-box .img-box .client-icon {
    margin-bottom: -30px;
    width: 60px;
  }
  .testimonial-slider .content-box .text-box {
    padding: 20px 30px;
  }
  .faq-section .accordion-item {
    padding: 20px 30px;
  }
  .faq-section .accordion-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .faq-section .accordion-button {
    font-size: 22px;
  }
  .faq-section .accordion-body {
    padding-top: 10px;
  }
  .social-icons img {
    width: 35px;
  }
  .footer-logo {
    width: 70px;
  }
  .hero .hero-slider-p {
    font-size: 20px;
  }
  .testimonial-slider .star-img-box ul {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  button.navbar-toggler {
    margin-left: auto;
  }
  header {
    padding: 6px 0;
  }
  header .navbar-brand img {
    max-width: 50px;
  }
  .feature .card-custom img {
    width: 55px;
  }
  .feature .card-custom .sub-heading {
    padding: 10px 0;
  }
  .section-space {
    padding: 50px 0;
  }
  .main-heading {
    font-size: 28px;
  }
  .main-p {
    font-size: 15px;
  }
  .btn-2 {
    font-size: 14px;
  }
  .faq-section .accordion-button {
    font-size: 20px;
  }
  .footer-text br {
    display: none;
  }
  .footer-address .right br {
    display: none;
  }
  .border-section {
    padding: 10px 0;
  }
  .footer-address {
    padding: 20px 0;
  }
  .navbar-collapse {
    position: absolute;
    top: 58px;
    background: #fff;
    z-index: 2;
    width: 300px;
    right: 20%;
  }
  header .nav-link,
  .header.fixed-nav .nav-link {
    padding: 10px 20px !important;
  }
  header .navbar-nav {
    gap: 0;
  }
  .hero .hero-slider-p br {
    display: none;
  }
  .hero .hero-slider-p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .main-p {
    font-size: 14px;
  }
  .section-space {
    padding: 40px 0;
  }
  .sub-heading {
    font-size: 14px;
  }
  .main-heading {
    font-size: 18px;
  }
  .w-80 {
    width: 100%;
  }
  .pt-40 {
    padding-top: 15px;
  }
  .why-us-h {
    font-size: 18px;
  }
  .media-gallery .gallery-content .content-box iframe {
    height: 350px;
  }
  .btn-1 {
    padding: 6px 20px;
    font-size: 14px;
  }
  .btn-2 {
    font-size: 12px;
    padding: 6px 25px;
  }
  .blog-section-slider .blog-h {
    font-size: 16px;
  }
  .blog-section-slider .text-box {
    padding: 15px 15px;
  }
  .testimonial-slider .sub-heading {
    font-size: 16px;
  }
  .faq-section .accordion-button {
    font-size: 16px;
  }
  .faq-section .accordion-item {
    padding: 12px 20px;
  }
  .faq-section .accordion-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .social-icons {
    padding: 0 15px;
    gap: 15px;
  }
  .social-icons img {
    width: 28px;
  }
  .footer-logo {
    width: 50px;
    margin-bottom: 10px;
  }
  .contact-item .img-box {
    width: 30px;
    height: 30px;
    padding: 7px;
  }
  .contact-item {
    justify-content: start;
  }
  .footer-address {
    padding: 15px 0;
    width: 100%;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 12px;
  }
  .hero .hero-slider-p {
    font-size: 14px;
    width: 100%;
    padding-top: 0;
  }
}

@media (max-width: 575px) {
  .topbar {
    padding: 6px 0;
  }
  header .navbar-brand img {
    max-width: 45px;
  }
  nav.navbar {
    padding: 0;
  }
  .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
  }
  .navbar-toggler {
    padding: 3px 7px;
  }
  .out-team .team-slider .main-p {
    padding: 4px 0px;
  }
  .out-team .team-slider .team-desi {
    padding-bottom: 4px;
  }
  .navbar-collapse {
    top: 42px;
  }
  .hero .hero-slider-h {
    font-size: 20px;
  }
  .hero .hero-slider-p {
    font-size: 12px;
    padding-bottom: 5px;
  }
  .hero .img-box img {
    height: 220px;
    object-fit: cover;
    object-position: left;
  }
  .hero .btn-1 {
    padding: 5px 15px;
    font-size: 10px;
  }
  .testimonial-slider .star-img-box ul img {
    width: 18px;
  }
}
