/* New css on 23.01.26 */

.img1 img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.header-logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.footer-logo img {
   width: 100px;
  height: 100px;
}

.secspacing {
  padding-top: 50px;
}



@media (min-width: 1900px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1650px !important;
    }
}

/* New css on 24.01.26 */

.featured-collection__left {
  padding-right: 50px;
}

.featured-collection__left .featured-collection__image {
  margin-bottom: 80px;
}

.featured-collection__left>p {
    margin: 0;
    color: #000;
    font-size: 18px;
    text-align: justify;
}

.featured-collection__btn {
  margin-top: 40px;
}

.featured-collection__btn:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.featured-collection__right {
    padding-left: 50px;
    padding-top: 10px;
}

.featured-collection__right>p {
    margin: 0;
    color: #000;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    text-align: justify;
}

.featured-collection__right .block-title {
  margin-bottom: 10px;
}

.featured-collection__image>img {
  max-width: 100%;
  box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
}

.featured-collection__image {
  overflow: hidden;
  position: relative;
}

.featured-collection__image::after {
  content: "";
  width: 150%;
  height: 200%;
  position: absolute;
  top: -120%;
  left: -210%;
  z-index: 11;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: rotate(30deg) scale(1.5);
          transform: rotate(30deg) scale(1.5);
  background: -webkit-gradient(linear,
      left top, right top,
      color-stop(50%, rgba(255, 255, 255, 0)),
      to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.7) 100%);
}

.featured-collection__image:hover::after {
  top: 100%;
  left: 100%;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.block-title p {
  margin: 0;
  font-size: 18px;
  line-height: 1em;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.block-title p::before {
  content: "";
  width: 60px;
  height: 2px;
  background-color: var(--theme-color);
  display: block;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.block-title h3 {
  font-weight: bold;
  color: var(--theme-color);
  font-size: 40px;
  margin: 0;
  margin-top: 25px;
}

.block-title-two {
  margin-bottom: 60px;
  position: relative;
  padding-top: 170px;
}

.block-title-two__line {
  width: 2px;
  height: 110px;
  background-color: var(--thm-base);
  position: absolute;
  top: -55px;
  left: calc(50% - 1px);
}

.block-title-two p {
  margin: 0;
  font-size: 18px;
  line-height: 1em;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
}

.block-title-two h3 {
  font-weight: bold;
  color: var(--theme-color);
  font-size: 44px;
  margin: 0;
}

.thm-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--theme-color);
    padding: 13.5px 36.5px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 10px;
}

/* Counter section */

/* ================================
   COUNTER SECTION
================================ */
.counter-section {
  background: url("../img/counterbg.webp") center / cover no-repeat;
  margin-top: 50px;
  padding-bottom: 50px;
}



/* ================================
   CIRCLE WRAPPER
================================ */
.hover-circle {
  position: relative;
  width: 260px;
  height: 260px;
  margin: auto;
}

/* ================================
   CIRCLE IMAGES
================================ */
.circle-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================================
   GREEN CIRCLE (DEFAULT)
================================ */
.green-circle {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* ================================
   YELLOW CIRCLE (HIDDEN)
================================ */
.yellow-circle {
  opacity: 0;
  z-index: 2;
  transform: scale(0.6) rotate(-120deg);
  transform-origin: center;
}

/* ================================
   HOVER ANIMATION
================================ */
.hover-circle:hover .green-circle {
  opacity: 0;
}

.hover-circle:hover .yellow-circle {
  opacity: 1;
  animation: drawCircle 0.7s ease-out forwards;
}

/* ================================
   HAND-DRAWN EFFECT
================================ */
@keyframes drawCircle {
  0% {
    transform: scale(0.6) rotate(-120deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.05) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* ================================
   INNER WHITE CONTENT
================================ */
.circle-content {
  position: relative;
  z-index: 3;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  top: 45px;
}

/* ================================
   TEXT STYLING
================================ */
.circle-content h4 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--theme-color);
}

.circle-content p {
    font-size: 20px;
    margin: 0;
    color: #000;
    font-weight: 600;
}


/* Gallery starts */


/* Background & section */
.it-gallery-area {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.block-title1 {
    margin: 0;
    font-size: 18px;
    line-height: 1em;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
}

/* Section title */
.it-contact-section-title-box span {
    font-size: 16px;
    font-weight: 500;
    color: #5fa59e;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Gallery wrapper */
.it-gallery-thumb-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    align-items: start;
}

/* Each column */
.it-gallery-thumb-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Image container */
.it-gallery-thumb {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.it-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover effect */
.it-gallery-thumb:hover {
    transform: translateY(-8px);
}

/* Different image heights (masonry look) */
.box-style-1 .style-1 { height: 180px; }
.box-style-1 .style-2 { height: 350px; }

.box-style-2 .style-1 { height: 350px; }
.box-style-2 .style-2 { height: 180px; }

.box-style-3 .style-1 { height: 230px; }
.box-style-3 .style-2 { height: 300px; }

.box-style-4 .style-1 { height: 310px; }
.box-style-4 .style-2 { height: 220px; }

.box-style-5 .style-1 { height: 200px; }
.box-style-5 .style-2 { height: 330px; }

/* Rounded corners utility */
.border-radius-20 {
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .it-gallery-thumb-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .it-gallery-thumb-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .it-gallery-thumb-wrap {
        grid-template-columns: 1fr;
    }
}


/* Testimonials starts */

.video-img-wrap {
  border-radius: 24px;
  width: 800px;
  height: 800px;
}

.video-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* RIGHT SIDE */
.testimonial-viewport {
  height: 700px;
  overflow-y: auto;      /* REQUIRED */
  overflow-x: hidden;
  scroll-behavior: auto;
}

/* Hide scrollbar (optional) */
.testimonial-viewport::-webkit-scrollbar {
  display: none;
}


.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-box {
  background: #fff5e6;
  border-radius: 18px;
  padding: 25px 30px;
  position: relative;
  min-height: 180px;
}

.stars {
  color: #f5b400;
  margin-bottom: 10px;
}

.testimonial-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  text-align: justify;
}

.testimonial-box h6 {
  font-size: 24px;
  margin: 10px 0 0;
    color: #000;
}

.testimonial-box span {
  font-size: 18px;
  color: #000;
}

.quote-icon {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 100px;
    color: #000;
}

/* Pause cursor hint */
.testimonial-viewport:hover {
  cursor: pointer;
}

/* Footer */
.social-btn.style2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f4f4;
  transition: all 0.3s ease;
}

.social-btn.style2 a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-btn.style2 a:hover {
  background: #0b5f52; /* theme color */
  transform: translateY(-3px);
}
.contact-info-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-list li a:hover {
  color: #fff; /* theme color */
}

.contact-info-list li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
}

.menu-with-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-with-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.menu-with-icons li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-bottom: 8px;
}

.menu-with-icons li a {
  color: #555;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu-with-icons li a:hover {
  color: #0b5f52; /* theme color */
}
.footer-wrapper {
  background: #ffffff;
  border-top: 1px solid #d9b36c;
  border-bottom: 1px solid #d9b36c;
  padding: 10px;
  margin-top: 50px;
}

/* LOGO */
.footer-logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    color: #c57642;
    text-decoration: none;
}

.footer-logo img {
    width: 100px;
    height: 100px;
}

/* DESCRIPTION */
.footer-about-text {
  max-width: 900px;
  margin: 5px auto;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  text-align: justify;
}

/* SOCIAL ICONS */
.social-btn.style2 {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 25px 0;
}

.social-btn.style2 a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn.style2 a:hover {
  background: #c57642;
}

.social-btn.style2 img {
  width: 18px;
  filter: invert(1);
}

/* INLINE LINKS */
.footer-inline-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.footer-inline-links a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}
.footer-inline-links a:hover {
  color: #c57642;
}

.footer-inline-links span {
  color: #000;
}

/* COPYRIGHT */
.copyright-wrap {
  padding: 20px 0;
  background: #fff;
   border-top: 2px solid #d9b36c;
   margin-top: 10px;
}

.copyright-text {
  font-size: 18px;
  color: #000;
}

.copyright-text img {
  width: 200px;
  height: auto;
}

.footer-address-links a {
  font-weight: 500;
}



/* about us page starts */

/* about us section1  */
.it-about-4-area {
  position: relative;
  z-index: 1;
}

/* DECORATIVE SHAPES */
.it-about-4-shape-1,
.it-about-4-shape-3 {
  position: absolute;
  z-index: -1;
  opacity: 0.08;
}

.it-about-4-shape-1 {
  top: -60px;
  left: -60px;
}

.it-about-4-shape-3 {
  bottom: -60px;
  right: -60px;
}

/* LEFT IMAGE (SMALL ARCH) */
.it-about-4-thumb.style-1 img {
    width: 100%;
    border-radius: 200px 200px 30px 30px;
    border: 4px solid #c57642;
}

/* LOGO UNDER LEFT IMAGE */
.it-about-4-logo img {
  max-width: 140px;
  margin-top: 25px;
}

/* RIGHT IMAGE (BIG ARCH) */
.it-about-4-thumb.style-2 img {
    width: 80%;
    height: 800px;
    border-radius: 300px 300px 40px 40px;
    border: 4px solid #c57642;
}

/* CONTENT AREA */
.it-about-4-content {
  padding: 0 25px;
}

/* SUB HEADING */
.it-section-subtitle {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #c57642;
    border-radius: 30px;
    font-size: 18px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 500;
}

/* MAIN HEADING */
.it-section-title-2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #c57642;
    margin-bottom: 20px;
}

/* STRIKE / HIGHLIGHT EFFECT */
.it-section-title-2 span {
  position: relative;
}

.it-about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 25px;
    text-align: justify;
    font-weight: 500;
}

/* FEATURE LIST */
.it-about-list-box ul {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.it-about-list-box li {
  margin-bottom: 15px;
}

.it-about-list-box span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

/* CHECK ICON COLOR */
.it-about-list-box svg {
  color: #6a8a73;
}

/* BUTTON */
.it-btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #c57642;
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.it-btn-yellow:hover {
  background: #587b65;
}

/* BUTTON ICON */
.it-btn-yellow svg {
  fill: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .it-section-title-2 {
    font-size: 32px;
  }

  .it-about-4-content {
    padding: 0;
    margin-top: 0px;
  }
}

@media (max-width: 575px) {
  .it-section-title-2 {
    font-size: 26px;
  }
}

/* ROTATING CIRCLE LOGO */
.it-about-4-logo img {
  animation: rotateCircle 12s linear infinite;
}

/* KEYFRAMES */
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* About us section 2  */



/* LEFT IMAGE */
.image-box {
  overflow: hidden;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

/* RIGHT ICON LIST */
.side-icon-list {
  padding-left: 40px;
}

.side-icon-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-icon-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 55px;
}

/* ICON */
.side-icon-list ul li figure {
  margin: 0;
  width: 52px;
  min-width: 52px;
}

.side-icon-list ul li figure img {
  width: 100%;
  height: auto;
}

/* CONTENT */
.side-icon-list .content h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.side-icon-list .content p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 8px;
    text-align: justify;
}

/* LINK STYLE */
.side-icon-list .content a {
  font-size: 18px;
  color: #000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.side-icon-list .content a:hover {
  color: #8a6a3f;
}


/* About us section 4  */
.it-choose-2-item {
  position: relative;
  background: linear-gradient(
    135deg,
    #eef7f3 0%,
    #f7fbf9 45%,
    #e6f2ed 100%
  );
  border-radius: 20px;
  padding: 40px 35px;
  min-height: 260px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.45s ease;
}

.it-choose-2-item:hover {
  background: linear-gradient(
    135deg,
    #f7e4d3 0%,
    #fdf7f2 45%,
    #e8c3a4 100%
  );
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}


/* GRADIENT BACKGROUND SHAPES */
.it-choose-2-item .shape-1,
.it-choose-2-item .shape-2 {
  position: absolute;
  inset: 0;
  z-index: 0;
}


/* ICON */
.it-choose-2-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}

.it-choose-2-icon img {
  width: 42px;
  height: auto;
  filter: none;
}

/* CONTENT */
.it-choose-2-content {
  position: relative;
  z-index: 2;
}

.it-choose-2-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.it-choose-2-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-weight: 500;
    text-align: justify;
}

/* HOVER EFFECT */
.it-choose-2-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* GRID SPACING */
.row.gx-35 {
  --bs-gutter-x: 35px;
}

/* Our services page */

/* Section 1  */

.about-one p {
  margin: 0;
  color: #848484;
  position: relative;
}

.about-one__membership {
  padding-top: 150px;
}

.about-one__moc {
  position: absolute;
  bottom: -75px;
  left: -70px;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
          animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

.about-one .container {
  padding-bottom: 175px;
}

.about-one__membership .container {
  padding-bottom: 140px;
}

.about-one .block-title {
  margin-bottom: 50px;
}

.about-one .about-one__highlighted-text {
  font-family: var(--heading-font);
  color: #000000;
  font-size: 24px;
  line-height: 44px;
  margin: 0;
  font-weight: 400;
  padding-right: 35px;
}

.about-one__feature-list {
  margin: 0;
  margin-top: 35px;
}

.col-xl-3 .about-one__feature-list {
  margin-left: -10px;
}

.about-one__feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  word-break: break-all;
  color: #252930;
}

.about-one__feature-list li+li {
  margin-top: 10px;
}

.about-one__feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--thm-base);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-one__feature h3 {
  margin: 0;
  color: var(--thm-black);
  font-size: 30px;
  font-weight: bold;
  font-weight: 700;
  margin-top: 55px;
  margin-bottom: 15px;
}

.about-cta__wrapper {
  position: relative;
  background-image: -webkit-gradient(linear,
      left bottom, left top,
      from(rgba(245, 247, 250, 0)),
      to(rgba(245, 247, 250, 0.8)));
  background-image: linear-gradient(0deg,
      rgba(245, 247, 250, 0) 0%,
      rgba(245, 247, 250, 0.8) 100%);
}

.about-cta__wrapper .container {
  position: relative;
}

.about-cta__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/event-bg-1-1.webp);
}

.about-two {
  padding-bottom: 150px;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
}

.about-two::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f7fa;
  opacity: 70%;
}

.about-two__sclupture {
  position: absolute;
  bottom: -100px;
  left: 50px;
  z-index: 10;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
          animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

@media(max-width: 1440px) {
  .about-two__sclupture {
    left: -10%;
  }
}

.about-two .container {
  position: relative;
}

.about-two__content p {
    color: #000;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.about-two__content .about-two__highlight {
    color: #000000;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    text-align: justify;
}

.about-two__content .block-title {
  margin-bottom: 10px;
}

.about-two__content .about-two__highlight {
  margin-bottom: 30px;
}

.about-two__image {
  margin-top: 50px;
  position: relative;
  left: 100px;
}

.about-two__image::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: url(../img/about-dot-2.webp);
    background-repeat: no-repeat;
    right: 100px;
    top: -70px;
}

.about-two__image>img {
  box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.3);
  z-index: 10;
  position: relative;
}

/* about three */

.about-three {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(245, 247, 250, 0)), to(rgba(245, 247, 250, 0.8)));
  background-image: linear-gradient(90deg, rgba(245, 247, 250, 0) 0%, rgba(245, 247, 250, 0.8) 100%);
}

.about-three .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.about-three .my-auto {
  display: block;
  width: 100%;
}

.about-three__image img {
  float: right;
}

.about-three__content {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-three__content>p {
  font-size: 16px;
  line-height: 28px;
  color: #252930;
  margin: 0;
}

.about-three__content .about-three__highlight {
  font-family: var(--heading-font);
  color: #000000;
  font-size: 24px;
  line-height: 44px;
}

.about-three__content .block-title {
  margin-bottom: 50px;
}

.about-three__content .about-three__highlight {
  margin-bottom: 25px;
}


/* about four */

.about-four {
  padding-top: 150px;
  padding-bottom: 140px;
}


.about-four {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(245, 247, 250, 0)), to(rgba(245, 247, 250, 0.8)));
  background-image: linear-gradient(90deg, rgba(245, 247, 250, 0) 0%, rgba(245, 247, 250, 0.8) 100%);
}

.about-four .container {
  position: relative;
}

.about-four::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/event-bg-1-1.webp);
}

.about-four__content>p {
  font-size: 16px;
  line-height: 28px;
  color: #252930;
  margin: 0;
}

.about-four__content>p+p {
  margin-top: 30px;

}

.about-four__highlite-text {
  margin-bottom: 30px;
}

.about-four__highlite-text p {
  margin: 0;
  color: #000000;
  font-size: 24px;
  line-height: 44px;
  font-family: var(--heading-font);
}

.about-four__image {
  position: absolute;
  right: 0;
  top: 150px;
}

.about-four__image>img {
  position: relative;
  box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.3);
}

.about-four__image::before {
  content: '';
  width: 250px;
  height: 370px;
  background-image: url(../img/about-4-dots.webp);
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  top: -100px;
  right: -70px;
}

.about-four__content .block-title {
  margin-bottom: 50px;
}


.about-two__sclupture {
    position: absolute;
    bottom: -70px;
    left: 50px;
    z-index: 10;
    -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
    animation: ImgBounce 2s ease-in-out 0s infinite alternate;
}


@keyframes ImgBounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

/* Our services section 2 */

.our-services{
    background: var(--secondary-color) url('../img/section-bg-shape-1.webp') no-repeat;
  background-position: bottom right;
  background-size: auto;
    padding: 50px 0;
}

.service-item {
    position: relative;
    background: #fff;
    border: 1px solid #00000014;
    border-radius: 20px;
    min-height: 200px;
    height: calc(95% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.service-item:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.service-item.active::before,
.service-item:hover::before{
  transform: translate(100%, -100%);
}

.service-item-image{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-image,
.service-item:hover .service-item-image{
  opacity: 1;
}

.service-item-image::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  background-color: #000000;
  opacity: 40%;
}

.service-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item-body{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
    z-index: 2;
}

.service-item-body .icon-box1 img {
    width: 50%;
    height: auto;
    transition: all 0.4s ease-in-out;
    margin: auto;
    display: flex;
}

.service-item.active .service-item-body .icon-box1 img, 
.service-item:hover .service-item-body .icon-box1 img {
    filter: brightness(0) invert(1);
    display: none;
}

.service-item-content h2{
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}

.service-item-content h2 a {
    color: inherit;
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    display: flex;
    justify-content: center;
}

.service-item.active .service-item-content h2,
.service-item:hover .service-item-content h2{
  color: #fff;
}

.service-item-content p{
  border-top: 1px solid #00000014;
  padding-top: 20px;
  margin: 20px 0 0;
  transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-content p, .service-item:hover .service-item-content p {
    color: #fff;
    border-color: #ffffff1a;
    font-size: 18px;
    font-weight: 500;
}

.service-item-btn{
  margin-top: 0px;
}

.service-item-btn a{
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.service-item-btn a:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background: linear-gradient(to right, #bdad7b 0%, #615328 50%, #bdad7b 100%);
  background-size: 200% auto;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-btn a::before,
.service-item:hover .service-item-btn a::before{
  transform: scale(1);
}

.service-item .service-item-btn a:hover{
  background-position: right center;
}

.service-item-btn a img{
  width: 100%;
  max-width: 14px;
  transition: all 0.4s ease-in-out;
}

.service-item .service-item-btn a:hover img{
  transform: rotate(45deg);
}

.service-item.active .service-item-btn a img,
.service-item:hover .service-item-btn a img{
  filter: brightness(0) invert(1);
}
.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: #fff;
    background: linear-gradient(to right, #bdad7b 0%, #615328 50%, #bdad7b 100%);
    background-size: 200% auto;
    border-radius: 100px;
    padding: 17px 45px 17px 24px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    width: 12px;
    height: 12px;
    background-image: url('../img/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.servicenew p {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  text-align: justify;
}

.section-row {
  margin-bottom: 20px;
}

/* Our services page 2 main */

.location-grid {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 15px;
    background: linear-gradient(135deg, #c57642 0%, #8f4e26 100%);
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
}

/* Shining layer */
.location-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    animation: shineMove 2.5s linear infinite;
}

/* Shine animation */
@keyframes shineMove {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}


/* Subbanner marquee in services details page */

.marquee-strip {
    background: linear-gradient(135deg, #c57642, #8f4e26);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-track h2 span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 0 40px;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.description {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    text-align: justify;
}

.detailsimg {
  width: 100%;
  height: auto !important;
  border-radius: 30px !important;
}

.section-title1 {
  font-size: 40px;
  color: #c57642;
  font-weight: 700;
}

/* Gallery page  */

.collection-two {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    overflow: hidden;
}

.collection-two__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .collection-two__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.collection-two__more-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
@media (max-width: 767px) {
  .collection-two__more-links {
    margin-top: 30px;
  }
}
.collection-two__more-links:hover {
  color: #d99578;
}
.collection-two__more-links i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 20px;
  color: #454444;
  margin-right: 10px;
}
.collection-two__more-links i:after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #454444;
}
.collection-two .block-title {
  margin: 0;
}
.collection-two .block-title__tag-line {
  color: #777777;
}
.collection-two .block-title__title {
  color: black;
}
.collection-two__single:hover .collection-two__hover {
  opacity: 1;
  -webkit-transform: perspective(100px) translateZ(0px);
          transform: perspective(100px) translateZ(0px);
}
.collection-two__image {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.collection-two__image > img {
  width: 100%;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transition: -webkit-filter .4s ease;
  transition: -webkit-filter .4s ease;
  transition: filter .4s ease;
  transition: filter .4s ease, -webkit-filter .4s ease;
}
.collection-two__hover {
  background-color: rgba(29, 29, 29, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  opacity: 0;
  -webkit-transform: perspective(100px) translateZ(10px);
          transform: perspective(100px) translateZ(10px);
  -webkit-transition: opacity .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, transform .4s ease;
  transition: opacity .4s ease, transform .4s ease, -webkit-transform .4s ease;
}
.collection-two__hover:before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.collection-two__hover a {
  font-size: 44px;
  color: #fff;
  position: relative;
  z-index: 10;
}
.collection-two__category {
  margin: 0;
  line-height: 1em;
  font-size: 16px;
  color: #a19b9d;
}
.collection-two__category a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.collection-two__category a:hover {
  color: #fff;
}
.collection-two__title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
}
.collection-two__title a {
  color: black;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.collection-two__title a:hover {
  color: #d99578;
}
.splmartop-minus190 {
  margin-top: -210px !important;
}
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
.txt-justy {
  text-align: justify;
}

.newimg {
  margin-top: 50px !important;
}


/* Testimonilals page */

.testimonials-one {
  background-image: url(../images/background/testi-1-1-bg.webp);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}
@media (max-width: 1440px) {
  .testimonials-one {
    background-position: center center;
  }
}
.testimonials-one__single {
  text-align: center;
}
.testimonials-one__image {
  width: 120px;
  height: 120px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonials-one__image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/resources/testi-decor.webp);
  background-position: center center;
  background-repeat: no-repeat;
}
.testimonials-one__image > img {
  border-radius: 50%;
  width: auto !important;
}
.testimonials-one__info {
  display: inline-block;
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  padding: 21px 47.5px;
  -webkit-box-shadow: 7px 0px 30px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 7px 0px 30px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 60px;
  margin-top: 20px;
}
.testimonials-one__info:before {
  content: '';
  width: 45px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.testimonials-one__name {
  margin: 0;
  font-size: 22px;
  line-height: 1em;
  color: #302e2f;
  margin-bottom: 10px;
}
.testimonials-one__designation {
  margin: 0;
  color: #d99578;
  line-height: 1em;
  font-size: 16px;
}
.testimonials-one__text {
  font-size: 24px;
  line-height: 40px;
  color: #302e2f;
  margin: 0;
  font-family: "Prata";
}
@media (max-width: 767px) {
  .testimonials-one__text br {
    display: none;
  }
}
@media (max-width: 375px) {
  .testimonials-one__text {
    font-size: 20px;
    line-height: 35px;
  }
}
.testimonials-one .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 55px;
}
.testimonials-one .owl-theme .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonials-one .owl-theme .owl-dots .owl-dot {
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonials-one .owl-theme .owl-dots .owl-dot span {
  margin: 0;
  width: 10px;
  height: 10px;
  background-color: #d0c9c6;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.testimonials-one .owl-theme .owl-dots .owl-dot:hover span, .testimonials-one .owl-theme .owl-dots .owl-dot.active span {
  background-color: #d99578;
  width: 50px;
  height: 2px;
  border-radius: 0;
}

.testimonials-two__single {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 50px;
    border: 2px solid #c57642;
    width: 100%;
    height: 500px;
}

.testimonials-two__image > img {
  border-radius: 4px;
}
.testimonials-two__name {
    font-size: 24px;
    color: #000;
    line-height: 1em;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 10px;
}
.testimonials-two__designation {
  font-size: 18px;
  color: #c57642;
  line-height: 1em;
  margin: 0;
}
.testimonials-two__content {
  border-top: 1px solid #ebebeb;
  position: relative;
  margin-top: 60px;
  padding-top: 60px;
}
.testimonials-two__qoute {
  background-color: #fff;
  border: 1px solid #ebebeb;
  width: 60px;
  height: 60px;
  background-image: url(../img/testi-qoute-2.webp);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.testimonials-two__title {
    margin: 0;
    font-size: 24px;
    line-height: 1em;
    color: #000;
    margin-bottom: 17px;
}

.testimonials-two__text {
    margin: 0;
    font-size: 18px;
    color: #000;
    line-height: 28px;
    width: 78%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
    font-weight: 500;
    text-align: justify;
}

.testimonials-two__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonials-two__stars i {
  font-size: 18px;
  color: #d99578;
}
.testimonials-two__stars i + i {
  margin-left: 4px;
}
.testimonials-two__single:hover .testimonials-two__qoute {
  border-color: #d99578;
  background-color: #d99578;
  background-image: url(../img/testi-qoute-2-hvr.webp);
}

/* Contact us page  */


.contact-card {
  background: #ffffff;
  padding: 40px 25px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: #c57642;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 24px;
    color: #000;
}

.contact-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  margin: 0;
  font-weight: 500;
}

.contact-card a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  color: #c57642;
  text-decoration: none;
}

.activeclass {
border-bottom: 2px solid #c57642 !important;
color: #c57642 !important;
}


/* New css on 30.01.26 */

.event-card-title {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  text-align: justify;
}

@media (min-width: 1200px) and (max-width: 1650px) {
  .video-img-wrap {
    border-radius: 24px;
    width: 100%;
    height: auto;
}
.hero-style1 .hero-title .text-stroke1 {
  left: 230px;
}
.hero-style1 .hero-title .text-stroke {
    left: 330px;
}
.about-two__sclupture {
  width: 15%;
  height: auto;
}
.splmartop-minus190 {
    margin-top: -146px !important;
}
}

@media (min-width: 651px) and (max-width: 1199px) {
 .header-logo a .logotext {
  display: none;
 }
 .it-about-section-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
 }
 .secspacing {
  padding-top: 30px;
 }
 .it-section-title-2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 0;
}
.it-about-text p {
  font-size: 16px;
  margin-bottom: 10px;
}
.it-about-4-thumb {
  margin-bottom: 10px;
}
.it-about-4-logo img {
   margin-bottom: 10px;
   margin-top: 10px;
}
.it-about-list-box span {
  font-size: 16px;
}
.it-about-list-box ul {
  margin-bottom: 10px;
}
.it-about-4-thumb.style-2 img {
  width: 100%;
  height: fit-content;
}
.featured-collection__right {
  padding-left: 0;
  padding-top: 0;
}
.side-icon-list ul li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 10px;
}
.side-icon-list {
    padding-left: 0;
    margin-top: 10px;
  }
  figure {
    margin-bottom: 10px !important;
  }
  .it-choose-2-item {
    padding: 10px;
    margin-bottom: 20px;
}
  .it-choose-2-icon {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .it-choose-2-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .it-choose-2-content p {
    font-size: 16px;
  }
  .footer-about-text { 
    font-size: 16px;
  }
  .footer-wrapper {
    margin-top: 30px;
  }
  .logotext1 {
    text-align: left;
  }
  .footer-logo a {
    gap: 10px;
  }
  .social-btn.style2 {
    margin: 10px 0;
  }
  .footer-inline-links {
    gap: 10px;
    margin-top: 20px;
}
.footer-inline-links a {
  font-size: 16px;
}
.copyright-text {
  font-size: 16px;
}
.copyright-text img {
  width: 150px;
  height: auto;
}
.cta-area-1 {
    padding: 10px;
    text-align: center;
    margin: 0;
}
.cta-area-1 .sec-title {
        font-size: 20px;
        line-height: 1.5;
}
.cta-area-1 .btn {
        margin-top: 20px;
        padding: 10px 22px;
        font-size: 14px;
        display: inline-block;
}
.about-two__content .about-two__highlight {
  font-size: 16px;
  margin-bottom: 10px;
}
.about-two__content p {
  font-size: 16px;
  margin-bottom: 10px;
}
.about-two__sclupture {
  display: none;
}
.about-two__image {
    left: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.about-two__image::before {
    right: 5px;
    top: -25px;
}
.about-two {
    padding-bottom: 0px;
}
.our-services {
  padding: 0;
}
.it-section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.servicenew p {
  font-size: 16px;
}
.section-title {
  margin-bottom: 10px;
}
.section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.newmargin {
  margin: 10px 0 !important;
}
.location-grid {
  margin-bottom: 0 !important;
}
.section-title1 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 10px;
}
.description {
  font-size: 16px;
  margin-bottom: 10px;
}
.detailsimg1 {
  margin: 10px 0;
}
.collection-two__image {
    margin-top: 20px;
    margin-bottom: 0;
}
.collection-two__single {
    margin-bottom: 0;
    margin-top: 0 !important;
}
.breadcumb-title {
  font-size: 30px;
}
.testimonials-two__single {
  padding: 10px 0;
  margin-top: 20px;
  margin-bottom: 0;
}
.testimonials-two__content {
  padding-top: 50px;
  margin-top: 50px;
}
.testimonials-two__text {
  font-size: 16px;
  line-height: 1.75;
}
.testimonials-two__single {
  height: 450px;
}
.contact-card h5{
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 16px;
}
.contact-card {
  padding: 15px;
}
.icon-box {
  margin-bottom: 10px;
}
.contact-form-wrap, .reservation-form-wrap {
    padding: 30px 0px 0px !important;
}
.title-area {
  margin-bottom: 10px !important;
}
.form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.desktop-banner {
    display: block;
  }

  .mobile-banner {
    display: none;
  }

  .mobile-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .header-logo {
    padding: 10px 0;
  }
  .hero-title {
    font-size: 32px;
    color: #000 !important;
}
.hero-style1 .hero-title .text-stroke1 {
  left: 90px;
  -webkit-text-stroke: 1px #000;
}
.hero-style1 .hero-title .text-stroke {
    left: 130px;
    -webkit-text-stroke: 1px #000;
}
.newstroke {
  -webkit-text-stroke: 1px #fff !important;
}
.featured-collection__left {
  padding-right: 0;
}
.featured-collection__left>p {
  font-size: 16px;
}
.featured-collection__left .featured-collection__image {
  margin-bottom: 10px;
}
.thm-btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-title p {
  font-size: 16px;
  text-align: center;
}
.block-title h3 {
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 10px;
}
.counter-section {
  margin-top: 30px;
  padding-bottom: 0;
}
.space, .space-bottom {
    padding-bottom: 20px;
    padding-top: 20px;
}
.newbutton {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.portfolio-card .portfolio-details {
  margin-top: 10px;
}
.portfolio-card .portfilio-card-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}
.btn.btn-radius {
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.newcircle {
  margin: 10px 0;
}
.hover-circle {
  width: 130px;
  height: 130px;
}
.circle-content {
  width: 80px;
  height: 80px;
  top: 25px;
}
.circle-content h4 {
  font-size: 26px;
}
.circle-content p { 
  font-size: 14px;
  line-height: 1.2;
}
.counter-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    justify-items: center;
    padding: 20px;
  }

  /* Remove bootstrap row spacing issues */
  .counter-section .row > [class*="col-"] {
    width: 100%;
    max-width: unset;
  }
  .sec-title {
    font-size: 26px;
    text-align: center;
  }
  .exhibition-card .exhibition-card-details .event-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .exhibition-card-wrap {
    margin-top: 20px;
  }
  .newtext {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-gallery-card {
  padding: 10px;
  margin-bottom: 20px;
}
.single-gallery-card .gallery-card .card-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}
.card-details p {
    font-size: 16px;
    text-align: justify;
    color: #fff;
    line-height: 1.5;
}
.single-gallery-card .gallery-card-bg {
  opacity: 1;
}
.btn-wrap {
  display: none;
}
.testimonial-box p {
  font-size: 16px;
}
.testimonial-box h6 {
  font-size: 20px;
}
.quote-icon {
  font-size: 80px;
}
.testimonial-box {
  padding: 20px;
}
.video-img-wrap {
    width: 100%;
    height: auto;
}
.cursor {
  display: none;
}
.cursor-follower {
  display: none;
}
 .about-area-1 .row {
    flex-direction: column !important;
  }

  /* CONTENT first */
  .about-area-1 .col-xl-7 {
    order: 1;
    text-align: center;
    margin-top: 20px;
  }

  /* IMAGE last */
  .about-area-1 .col-xl-5 {
    order: 4;
    margin-top: 20px;
    text-align: center;
  }

  /* Center button */
  .about-area-1 .btn {
    display: inline-block;
    margin: 20px auto 0;
  }
  .sec-text {
    margin-top: 10px;
  }
  .featured-collection .row {
    display: flex;
    flex-direction: column;
  }

  /* RIGHT column (heading + intro text) first */
  .featured-collection .col-lg-6:nth-child(2) {
    order: 1;
    text-align: center;
  }

  /* LEFT column (main content) second */
  .featured-collection .col-lg-6:nth-child(1) {
    order: 2;
    text-align: center;
  }

  /* Heading */
  .featured-collection .block-title {
    order: 1;
  }

  .featured-collection__left p, .featured-collection__right p {
    order: 2;
    text-align: justify;
    font-size: 16px;
}

  /* Button centered */
  .featured-collection__btn {
    display: inline-block;
  }

  .block-title p {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* Images go last */
  .featured-collection__image {
    order: 4;
    margin-top: 25px;
    text-align: center;
  }
}

@media (max-width: 650px) {
 .header-logo a .logotext {
  display: none;
 }
 .it-about-section-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
 }
 .secspacing {
  padding-top: 30px;
 }
 .it-section-title-2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 0;
}
.it-about-text p {
  font-size: 16px;
  margin-bottom: 10px;
}
.it-about-4-thumb {
  margin-bottom: 10px;
}
.it-about-4-logo img {
   margin-bottom: 10px;
   margin-top: 10px;
}
.it-about-list-box span {
  font-size: 16px;
}
.it-about-list-box ul {
  margin-bottom: 10px;
}
.it-about-4-thumb.style-2 img {
  width: 100%;
  height: fit-content;
}
.featured-collection__right {
  padding-left: 0;
  padding-top: 0;
}
.side-icon-list ul li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 10px;
}
.side-icon-list {
    padding-left: 0;
    margin-top: 10px;
  }
  figure {
    margin-bottom: 10px !important;
  }
  .it-choose-2-item {
    padding: 10px;
    margin-bottom: 20px;
}
  .it-choose-2-icon {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .it-choose-2-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .it-choose-2-content p {
    font-size: 16px;
  }
  .footer-about-text { 
    font-size: 16px;
  }
  .footer-wrapper {
    margin-top: 30px;
  }
  .logotext1 {
    text-align: left;
    font-size: 20px;
}
  .footer-logo a {
    gap: 10px;
  }
  .social-btn.style2 {
    margin: 10px 0;
  }
  .footer-inline-links {
    gap: 10px;
    margin-top: 20px;
}
.footer-inline-links a {
  font-size: 16px;
}
.copyright-text {
  font-size: 16px;
}
.copyright-text img {
  width: 150px;
  height: auto;
}
.cta-area-1 {
    padding: 10px;
    text-align: center;
    margin: 0;
}
.cta-area-1 .sec-title {
        font-size: 20px;
        line-height: 1.5;
}
.cta-area-1 .btn {
        margin-top: 20px;
        padding: 10px 22px;
        font-size: 14px;
        display: inline-block;
}
.about-two__content .about-two__highlight {
  font-size: 16px;
  margin-bottom: 10px;
}
.about-two__content p {
  font-size: 16px;
  margin-bottom: 10px;
}
.about-two__sclupture {
  display: none;
}
.about-two__image {
     left: 0px; 
}
.about-two__image::before {
    right: 10px;
    top: -30px;
}
.about-two {
    padding-bottom: 0px;
}
.our-services {
  padding: 0;
}
.it-section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.servicenew p {
  font-size: 16px;
}
.section-title {
  margin-bottom: 10px;
}
.section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.newmargin {
  margin: 10px 0 !important;
}
.location-grid {
  margin-bottom: 0 !important;
}
.section-title1 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 10px;
}
.description {
  font-size: 16px;
  margin-bottom: 10px;
}
.detailsimg1 {
  margin: 10px 0;
}
.collection-two__image {
    margin-top: 20px;
    margin-bottom: 0;
}
.collection-two__single {
    margin-bottom: 0;
    margin-top: 0 !important;
}
.breadcumb-title {
  font-size: 30px;
}
.testimonials-two__single {
  padding: 10px 0;
  margin-top: 20px;
  margin-bottom: 0;
}
.testimonials-two__content {
  padding-top: 50px;
  margin-top: 50px;
}
.testimonials-two__text {
  font-size: 16px;
  line-height: 1.75;
}
.testimonials-two__single {
  height: 450px;
}
.contact-card h5{
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 16px;
}
.contact-card {
  padding: 15px;
}
.icon-box {
  margin-bottom: 10px;
}
.contact-form-wrap, .reservation-form-wrap {
    padding: 30px 0px 0px !important;
}
.title-area {
  margin-bottom: 10px !important;
}
.form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  .mobile-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .header-logo {
    padding: 10px 0;
  }
  .hero-title {
    font-size: 26px;
    color: #000 !important;
}
.hero-style1 .hero-title .text-stroke1 {
  left: 80px;
  -webkit-text-stroke: 1px #000;
}
.hero-style1 .hero-title .text-stroke {
    left: 110px;
    -webkit-text-stroke: 1px #000;
}
.newstroke {
  -webkit-text-stroke: 1px #fff !important;
}
.featured-collection__left {
  padding-right: 0;
}
.featured-collection__left>p {
  font-size: 16px;
}
.featured-collection__left .featured-collection__image {
  margin-bottom: 10px;
}
.thm-btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-title p {
  font-size: 16px;
  text-align: center;
}
.block-title h3 {
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 10px;
}
.counter-section {
  margin-top: 30px;
  padding-bottom: 0;
}
.space, .space-bottom {
    padding-bottom: 20px;
    padding-top: 20px;
}
.newbutton {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.portfolio-card .portfolio-details {
  margin-top: 10px;
}
.portfolio-card .portfilio-card-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}
.btn.btn-radius {
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.newcircle {
  margin: 10px 0;
}
.hover-circle {
  width: 130px;
  height: 130px;
}
.circle-content {
  width: 80px;
  height: 80px;
  top: 25px;
}
.circle-content h4 {
  font-size: 26px;
}
.circle-content p { 
  font-size: 14px;
  line-height: 1.2;
}
.counter-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    justify-items: center;
    padding: 20px;
  }

  /* Remove bootstrap row spacing issues */
  .counter-section .row > [class*="col-"] {
    width: 100%;
    max-width: unset;
  }
  .sec-title {
    font-size: 26px;
    text-align: center;
  }
  .exhibition-card .exhibition-card-details .event-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .exhibition-card-wrap {
    margin-top: 20px;
  }
  .newtext {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-gallery-card {
  padding: 10px;
  margin-bottom: 20px;
}
.single-gallery-card .gallery-card .card-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}
.card-details p {
    font-size: 16px;
    text-align: justify;
    color: #fff;
    line-height: 1.5;
}
.single-gallery-card .gallery-card-bg {
  opacity: 1;
}
.btn-wrap {
  display: none;
}
.testimonial-box p {
  font-size: 16px;
}
.testimonial-box h6 {
  font-size: 20px;
}
.quote-icon {
  font-size: 80px;
}
.testimonial-box {
  padding: 20px;
}
.video-img-wrap {
    width: 100%;
    height: auto;
}
.cursor {
  display: none;
}
.cursor-follower {
  display: none;
}
 .about-area-1 .row {
    flex-direction: column !important;
  }

  /* CONTENT first */
  .about-area-1 .col-xl-7 {
    order: 1;
    text-align: center;
    margin-top: 20px;
  }

  /* IMAGE last */
  .about-area-1 .col-xl-5 {
    order: 4;
    margin-top: 20px;
    text-align: center;
  }

  /* Center button */
  .about-area-1 .btn {
    display: inline-block;
    margin: 20px auto 0;
  }
  .sec-text {
    margin-top: 10px;
  }
  .featured-collection .row {
    display: flex;
    flex-direction: column;
  }

  /* RIGHT column (heading + intro text) first */
  .featured-collection .col-lg-6:nth-child(2) {
    order: 1;
    text-align: center;
  }

  /* LEFT column (main content) second */
  .featured-collection .col-lg-6:nth-child(1) {
    order: 2;
    text-align: center;
  }

  /* Heading */
  .featured-collection .block-title {
    order: 1;
  }

  .featured-collection__left p, .featured-collection__right p {
    order: 2;
    text-align: justify;
    font-size: 16px;
}

  /* Button centered */
  .featured-collection__btn {
    display: inline-block;
  }

  .block-title p {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* Images go last */
  .featured-collection__image {
    order: 4;
    margin-top: 25px;
    text-align: center;
  }
}