@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-size: 1rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
}
@media (min-width: 2000px) {
  body {
    font-size: 1.3rem;
  }
}

.container-fluid {
  max-width: 1920px;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.back-to-top,
.whatsapp-btn {
  position: fixed;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-btn {
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  animation: slideInRight 0.5s forwards;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}
.whatsapp-btn i {
  font-size: 1.4rem;
  color: #ffffff;
}

.svg-play {
  display: inline-block;
  animation: spin 4s linear infinite;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.global-btn1 {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  color: #000000;
  background: transparent;
  border: 1px solid #000000;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
  border-radius: 30px;
  text-decoration: none;
}
.global-btn1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #000000;
  z-index: -1;
  transition: height 0.4s ease;
}
.global-btn1:hover {
  color: #ffffff;
}
.global-btn1:hover::before {
  height: 100%;
}

.global-btn2 {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
  border-radius: 30px;
  text-decoration: none;
}
.global-btn2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #000000;
  z-index: -1;
  transition: height 0.4s ease;
}
.global-btn2:hover {
  color: #ffffff;
}
.global-btn2:hover::before {
  height: 100%;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 1000;
  background: transparent;
  overflow: hidden;
  transition: padding 0.3s ease;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background: rgba(6, 2, 2, 0.557);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
  transition: height 0.4s ease;
}
header.scrolled {
  padding: 10px 30px;
}
header.scrolled::before {
  height: 100%;
}
header .flex_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo img {
  width: 87px;
}
@media (min-width: 767px) {
  header .logo img {
    width: 100px;
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1101;
}
.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
}

.menu-toggle2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1101;
}
.menu-toggle2 span {
  width: 25px;
  height: 2px;
  background: #000000;
}

.scrolled .menu-toggle2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1101;
}
.scrolled .menu-toggle2 span {
  width: 25px;
  height: 2px;
  background: #ffffff;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1100;
}
.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}
.overlay-menu a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  margin: 10px 0;
  text-transform: capitalize;
}
.overlay-menu .overlay-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
}

.swiper {
  height: 600px;
  width: 100%;
}
@media (min-width: 991px) {
  .swiper {
    height: 700px;
    width: 100%;
  }
}
.swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.swiper .swiper-slide .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
  animation: zoomEffect 20s ease-in-out infinite;
}
.swiper .swiper-slide .bg-overlay-black {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.swiper .swiper-slide .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 20px;
  margin-left: 1rem;
}
@media (min-width: 767px) {
  .swiper .swiper-slide .slide-content {
    margin-left: 3rem;
  }
}
@media (min-width: 1440px) {
  .swiper .swiper-slide .slide-content {
    margin-left: 4rem;
  }
}
.swiper .swiper-slide .slide-content .slide-title {
  font-weight: 500;
  color: #d4a34c;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
  font-family: 600;
  font-size: 2rem;
}
@media (min-width: 767px) {
  .swiper .swiper-slide .slide-content .slide-title {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .swiper .swiper-slide .slide-content .slide-title {
    font-size: 3.4rem;
  }
}
.swiper .swiper-slide .slide-content .slide-sub {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
}
@media (min-width: 767px) {
  .swiper .swiper-slide .slide-content .slide-sub {
    font-size: 2rem;
  }
}
.swiper .swiper-slide .slide-content .slide-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.1s;
  font-weight: 400;
  font-family: 300;
}
@media (min-width: 767px) {
  .swiper .swiper-slide .slide-content .slide-desc {
    font-size: 1rem;
  }
}
.swiper .swiper-slide .slide-content .button .border-btn {
  display: inline-block;
  padding: 8px 22px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s;
  animation: fadeInUp 1s ease forwards 1.4s;
  border-radius: 30px;
}
.swiper .swiper-slide .slide-content .button .border-btn:hover {
  background: #fff;
  color: #000;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #fff;
}
.swiper .swiper-pagination-bullet {
  background: #fff;
}

.social-icons {
  position: absolute;
  bottom: -41px;
  right: 16px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 767px) {
  .social-icons {
    bottom: 70px;
    right: 20px;
  }
}
.social-icons a {
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}
.social-icons a:hover {
  transform: scale(1.2);
  opacity: 1;
}

.slide-indicators {
  position: absolute;
  top: 104%;
  left: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
}
@media (min-width: 767px) {
  .slide-indicators {
    top: 70%;
    left: 30px;
  }
}
.slide-indicators span {
  font-size: 16px;
  color: #aaa;
  font-weight: 400;
  transition: 0.3s;
}
.slide-indicators span.active {
  color: #D4A34C;
  font-weight: 700;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .slide-title {
    font-size: 2rem;
  }
  .slide-sub {
    font-size: 1.3rem;
  }
  .slide-desc {
    font-size: 0.9rem;
  }
  .menu-toggle {
    position: relative;
    z-index: 1102;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 30px 0 80px 0;
}
.hero-section .hero-slider {
  max-width: 1250px;
  height: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
}
.hero-section .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 1s ease, transform 1.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  border-radius: 30px;
}
.hero-section .hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-section .hero-slide.active .hero-content {
  opacity: 1;
}
.hero-section .hero-content {
  text-align: center;
  color: #fff;
  animation: fadeUp 1.5s ease forwards;
  opacity: 0;
}
.hero-section .hero-content h1 {
  font-size: 45px;
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-section .hero-content p {
  font-size: 18px;
  color: #fff;
}
.hero-section .hero-content .hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #000000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-section .hero-content .hero-btn:hover {
  background: #000;
  color: #fff;
}

@keyframes fadeUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.approach-section {
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .approach-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .approach-section {
    padding: 80px 0;
  }
}
.approach-section .container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.approach-section .left {
  flex: 1 1 400px;
}
.approach-section .left img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.approach-section .right {
  flex: 1 1 500px;
  margin-top: 3rem;
}
.approach-section .tagline {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.approach-section .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}
.approach-section .description {
  color: #000000;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 30px;
}
.approach-section .counters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.approach-section .counters .counter-box {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  font-size: 20px;
}
.approach-section .counters .counter-box .counter {
  font-size: 38px;
  font-weight: bold;
  color: #000000;
}
.approach-section .counters .counter-box p {
  margin: 0;
  color: rgb(68, 72, 76);
  font-size: 16px;
}
@media (max-width: 768px) {
  .approach-section .container {
    flex-direction: column;
  }
  .approach-section .left,
  .approach-section .right {
    flex: 1 1 100%;
  }
  .approach-section .title {
    font-size: 24px;
  }
  .approach-section .counter-box {
    font-size: 18px;
  }
  .approach-section .counter-box .counter {
    font-size: 24px;
  }
}

.testimonial-section {
  padding: 20px 0;
  text-align: center;
}
@media (min-width: 1099px) {
  .testimonial-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .testimonial-section {
    padding: 80px 0;
  }
}
.testimonial-section .tagline {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.testimonial-section .section-title {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
}
@media (min-width: 767px) {
  .testimonial-section .section-title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .testimonial-section .section-title {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .testimonial-section .section-title {
    font-size: 48px;
    line-height: 54px;
  }
}

.testimonial-carousel .testimonial-item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  text-align: left;
}
@media (min-width: 768px) {
  .testimonial-carousel .testimonial-item {
    grid-template-columns: repeat(2, 1fr);
  }
}
.testimonial-carousel .testimonial-item .image {
  flex: 0 0 300px;
}
.testimonial-carousel .testimonial-item .image img {
  width: 100%;
  border-radius: 15px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-carousel .testimonial-item .content {
  flex: 1 1 400px;
  margin-top: 0rem;
}
@media (min-width: 768px) {
  .testimonial-carousel .testimonial-item .content {
    margin-top: 3rem;
  }
}
.testimonial-carousel .testimonial-item .content .stars {
  font-size: 28px;
  color: #000000;
  margin-bottom: 10px;
}
.testimonial-carousel .testimonial-item .content .stars span {
  font-size: 28px;
  color: #000000;
  margin-left: 5px;
}
.testimonial-carousel .testimonial-item .content .quote {
  font-size: 22px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 28px;
}
.testimonial-carousel .testimonial-item .content .name {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 1rem;
  color: #000;
}
.testimonial-carousel .testimonial-item .content .role {
  font-size: 16px;
  color: #666;
}
.testimonial-carousel .owl-carousel .owl-dots.disabled,
.testimonial-carousel .owl-carousel .owl-nav.disabled {
  display: block !important;
}
.testimonial-carousel .owl-nav {
  margin-top: 30px;
}
.testimonial-carousel .owl-nav button {
  font-size: 24px;
  background: none;
  border: none;
  margin: 0 10px;
  cursor: pointer;
  color: #000000;
}
.testimonial-carousel .owl-nav button:hover {
  color: #555;
}
.testimonial-carousel .owl-dots {
  margin-top: 20px;
}
.testimonial-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}
.testimonial-carousel .owl-dots .owl-dot.active {
  background: #000;
}

@media (max-width: 768px) {
  .testimonial-section .testimonial-item {
    flex-direction: column;
  }
  .testimonial-section .image,
  .testimonial-section .content {
    flex: 1 1 100%;
    text-align: center;
  }
  .testimonial-section .content .quote,
  .testimonial-section .content .stars {
    text-align: center;
  }
}
.blog-section {
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .blog-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .blog-section {
    padding: 80px 0;
  }
}
.blog-section .container {
  margin: 0 auto;
}
.blog-section .blog-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.blog-section .blog-header .tagline {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.blog-section .blog-header h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
}
@media (min-width: 767px) {
  .blog-section .blog-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .blog-section .blog-header h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .blog-section .blog-header h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-section .blog-grid .blog-card {
  border-top: 1px solid #eee;
}
.blog-section .blog-grid .blog-card .blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
.blog-section .blog-grid .blog-card .blog-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 10px;
}
.blog-section .blog-grid .blog-card .blog-img::before, .blog-section .blog-grid .blog-card .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  transition: transform 0.6s ease;
  border-radius: 10px;
}
.blog-section .blog-grid .blog-card .blog-img::before {
  top: 0;
  left: 0;
  transform: translate(-100%, -100%);
}
.blog-section .blog-grid .blog-card .blog-img::after {
  bottom: 0;
  right: 0;
  transform: translate(100%, 100%);
}
.blog-section .blog-grid .blog-card:hover .blog-img img {
  transform: scale(1.1);
}
.blog-section .blog-grid .blog-card:hover .blog-img::before, .blog-section .blog-grid .blog-card:hover .blog-img::after {
  transform: translate(0, 0);
}
.blog-section .blog-grid .blog-card .blog-meta {
  font-size: 14px;
  color: rgb(68, 72, 76);
  margin-bottom: 10px;
}
.blog-section .blog-grid .blog-card .blog-title {
  font-size: 23px;
  font-weight: 500;
  line-height: 32px;
  margin: 0;
  color: #000000;
}
.blog-section .blog-grid .blog-card .blogReadmore {
  border-bottom: 1px solid #000000;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  color: #000000;
}
.blog-section .blog-grid .blog-card .blogReadmore i {
  transition: transform 0.3s;
  margin-left: 6px;
}
.blog-section .blog-grid .blog-card .blogReadmore:hover {
  color: rgb(68, 72, 76);
  border-bottom: 1px solid rgb(68, 72, 76);
}
.blog-section .blog-grid .blog-card .blogReadmore:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .blog-section .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .blog-section .view-all-btn {
    align-self: flex-start;
  }
}

.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner .banner__overlay {
  width: 100%;
  height: 450px;
  background-image: linear-gradient(rgba(33, 33, 33, 0.6823529412), rgba(255, 255, 255, 0.0823529412) 75%, rgba(49, 47, 47, 0.659));
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__content {
  color: #ffffff;
  max-width: 500px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .banner__content {
    max-width: 700px;
  }
}
.banner__heading {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
  color: #fff !important;
}
@media (min-width: 767px) {
  .banner__heading {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .banner__heading {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .banner__heading {
    font-size: 48px;
    line-height: 54px;
  }
}
.banner__btn {
  background-color: #000000;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
.banner__btn:hover {
  background-color: #333333;
}

@media (max-width: 768px) {
  .banner__heading {
    font-size: 28px;
  }
  .banner__btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}
.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.video-section .video-wrapper {
  width: 100%;
}
.video-section .video-wrapper .video-block {
  width: 100%;
  position: relative;
}
.video-section .video-wrapper .video-block video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.video-section .video-wrapper .video-block .video-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.video-section .video-wrapper .video-block .video-toggle:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.scroll-wrapper {
  padding-bottom: 2rem;
}
@media (min-width: 991px) {
  .scroll-wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 1100px) {
  .scroll-wrapper {
    padding-bottom: 6rem;
  }
}

.service-block {
  position: sticky;
  top: -16px;
  z-index: 1;
  background: #fff;
  padding: 50px 0;
  height: auto;
}
@media (min-width: 767px) {
  .service-block {
    height: 100vh;
  }
}
@media (min-width: 1000px) {
  .service-block {
    height: 65vh;
  }
}

.bor {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0px;
}

.service-block:first-child {
  border-top: none;
}

.service-block:nth-child(2) {
  z-index: 2;
}

.service-block:nth-child(3) {
  z-index: 3;
}

.service-block:nth-child(4) {
  z-index: 4;
}

.service-block:nth-child(5) {
  z-index: 5;
}

.service-block:nth-child(6) {
  z-index: 6;
}

.service-block:nth-child(7) {
  z-index: 7;
}

.service-inner {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 767px) {
  .service-inner {
    flex-direction: row;
  }
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 767px) {
  .service-image img {
    width: 100%;
    height: 380px;
  }
}

.service-content {
  flex: 1;
  position: relative;
}

.service-number {
  position: absolute;
  top: -35px;
  background: #f1f1f1;
  border-radius: 50%;
  font-weight: bold;
  color: #b19777;
  width: 55px;
  height: 55px;
  line-height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
}

.service-content h2 {
  margin-top: 2.4rem;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}
@media (min-width: 767px) {
  .service-content h2 {
    margin-top: 3rem;
  }
}

h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

p {
  font-size: 17px;
  color: #555;
}

.who-we-are {
  position: relative;
  overflow: hidden;
  padding: 90px 20px;
  background: #fff;
}
@media (min-width: 800px) {
  .who-we-are {
    padding: 100px 20px;
  }
}
.who-we-are .who-sec {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 991px) {
  .who-we-are .who-sec {
    flex-direction: row;
    gap: 50px;
  }
}

.parallax-img {
  height: auto;
  flex-shrink: 0;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.parallax-left img,
.parallax-right img {
  width: 200px;
  transition: transform 0.2s ease-out;
  transform: rotate(-8deg);
}

.parallax-right img {
  transform: rotate(8deg);
}

.content {
  max-width: 700px;
}
.content .subtitle {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
}
.content .main-title {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 1rem;
  color: #000000;
}
@media (min-width: 767px) {
  .content .main-title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .content .main-title {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .content .main-title {
    font-size: 48px;
    line-height: 54px;
  }
}
.content .about_para {
  max-width: 70%;
  margin: 0 auto;
  font-size: 17px;
}
.content .cta-btn {
  display: inline-block;
  padding: 14px 30px;
  border: 2px solid #000;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}
.content .cta-btn:hover {
  background: #000;
  color: #fff;
}

.service-scroll-section {
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .service-scroll-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .service-scroll-section {
    padding: 80px 0;
  }
}
.service-scroll-section .section-header {
  text-align: center;
}
.service-scroll-section .section-header .subtitle {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.service-scroll-section .section-header h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
}
@media (min-width: 767px) {
  .service-scroll-section .section-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .service-scroll-section .section-header h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .service-scroll-section .section-header h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.service-scroll-section .section-header .view-all {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
}
.service-scroll-section .scroll-container {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.service-scroll-section .scroll-container .sticky-content {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 400px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.service-scroll-section .scroll-container .sticky-content .service-card {
  text-align: center;
}
.service-scroll-section .scroll-container .sticky-content .service-card .number {
  font-size: 14px;
  color: rgb(68, 72, 76);
  margin-bottom: 10px;
}
.service-scroll-section .scroll-container .sticky-content .service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #000000;
}
.service-scroll-section .scroll-container .sticky-content .service-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}
.service-scroll-section .scroll-container .sticky-content .service-card p {
  font-size: 15px;
  color: rgb(68, 72, 76);
}
.service-scroll-section .scroll-container .scroller {
  display: flex;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
}
.service-scroll-section .scroll-container .scroller img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.scroll-stack-section {
  padding: 20px 0;
  width: 100%;
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 1099px) {
  .scroll-stack-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .scroll-stack-section {
    padding: 80px 0;
  }
}
.scroll-stack-section .stack-container {
  height: 100%;
  width: 100%;
  position: relative;
}
.scroll-stack-section .stack-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f9f9f9;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  text-align: center;
}
.scroll-stack-section .stack-item img {
  width: 300px;
  margin: 0 auto 20px;
  border-radius: 12px;
}
.scroll-stack-section .stack-item .content .counter {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 10px;
}
.scroll-stack-section .stack-item .content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.scroll-stack-section .stack-item .content p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
  font-size: 18px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.back-to-top i {
  font-size: 18px;
  position: relative;
  z-index: 2;
}
.back-to-top::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: 1;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover::before {
  transform: scale(2);
}
.back-to-top:hover {
  transform: scale(1.05);
}

.zoom {
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .zoom {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .zoom {
    padding: 80px 0;
  }
}
.zoom .zoom_effect_section {
  text-align: center;
}
.zoom .zoom_effect_section .section-header {
  text-align: center;
}
.zoom .zoom_effect_section .section-header .subtitle {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.zoom .zoom_effect_section .section-header h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
}
@media (min-width: 767px) {
  .zoom .zoom_effect_section .section-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .zoom .zoom_effect_section .section-header h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .zoom .zoom_effect_section .section-header h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.zoom .zoom_effect_section .container .zoom-project-wrapper {
  width: 100%;
  margin: 0 auto;
  gap: 60px;
  display: flex;
  flex-direction: column;
}
.zoom .zoom_effect_section .container .zoom-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  padding: 0 0 60px;
}
.zoom .zoom_effect_section .container .zoom-scroll-section {
  height: 140vh;
  position: relative;
}
.zoom .zoom_effect_section .container .zoom-scroll-section .zoom-sticky-area {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.zoom .zoom_effect_section .container .zoom-scroll-section .zoom-sticky-area .zoom-item-box {
  transform: scale(0.05);
  transform-origin: top left;
  transition: transform 0.4s ease-out;
  will-change: transform;
}
.zoom .zoom_effect_section .container .zoom-scroll-section .zoom-sticky-area .zoom-item-box.is-right {
  transform-origin: top right;
}
.zoom .zoom_effect_section .container .zoom-scroll-section .zoom-sticky-area .zoom-item-box .zoom-image {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.zoom .zoom_effect_section .container .zoom-scroll-section .zoom-sticky-area .zoom-item-box .zoom-caption-block {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 18px;
}
.zoom .zoom_effect_section .container .zoom-scroll-section .zoom-sticky-area .zoom-item-box .zoom-caption-block .zoom-title {
  font-weight: 600;
}
.zoom .zoom_effect_section .container .zoom-scroll-section .zoom-sticky-area .zoom-item-box .zoom-caption-block .zoom-location {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .zoom .zoom_effect_section .container .zoom-scroll-section .zoom-sticky-area .zoom-item-box .zoom-caption-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.product-section {
  padding: 20px 0;
  padding-top: 2rem !important;
}
@media (min-width: 1099px) {
  .product-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .product-section {
    padding: 80px 0;
  }
}
.product-section .container {
  margin: 0 auto;
}
.product-section .product-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.product-section .product-header .tagline {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.product-section .product-header h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
}
@media (min-width: 767px) {
  .product-section .product-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .product-section .product-header h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .product-section .product-header h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.product-section .product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.product-section .product-grid .product-card {
  border-top: 1px solid #eee;
}
.product-section .product-grid .product-card p {
  margin-top: 10px;
  font-size: 17px;
  color: rgb(68, 72, 76);
}
.product-section .product-grid .product-card .product-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
.product-section .product-grid .product-card .product-img img {
  width: 100%;
  display: block;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 10px;
}
.product-section .product-grid .product-card .product-img::before, .product-section .product-grid .product-card .product-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  transition: transform 0.6s ease;
  border-radius: 10px;
}
.product-section .product-grid .product-card .product-img::before {
  top: 0;
  left: 0;
  transform: translate(-100%, -100%);
}
.product-section .product-grid .product-card .product-img::after {
  bottom: 0;
  right: 0;
  transform: translate(100%, 100%);
}
.product-section .product-grid .product-card:hover .product-img img {
  transform: scale(1.1);
}
.product-section .product-grid .product-card:hover .product-img::before, .product-section .product-grid .product-card:hover .product-img::after {
  transform: translate(0, 0);
}
.product-section .product-grid .product-card .product-meta {
  font-size: 14px;
  color: rgb(68, 72, 76);
  margin-bottom: 10px;
}
.product-section .product-grid .product-card .product-meta span {
  background: #000;
  display: inline-block;
  border-radius: 0 9px 0 9px;
  color: #fff;
  padding: 1px 10px;
  font-size: 12px;
}
.product-section .product-grid .product-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #000000;
}
.product-section .product-grid .productReadmore {
  border-bottom: 1px solid #000000;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  color: #000000;
}
.product-section .product-grid .productReadmore i {
  transition: transform 0.3s;
  margin-left: 6px;
}
.product-section .product-grid .productReadmore:hover {
  color: rgb(68, 72, 76);
  border-bottom: 1px solid rgb(68, 72, 76);
}
.product-section .product-grid .productReadmore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .view-all-btn {
    align-self: flex-start;
  }
}
.retaling_product {
  position: relative;
}
.retaling_product .retailng_banner {
  background: url("../img/v1.jpg") no-repeat center center;
  background-size: cover;
  padding: 50px 0 450px 0;
  background-attachment: fixed;
  position: relative;
}
@media (max-width: 768px) {
  .retaling_product .retailng_banner {
    padding: 50px 0 150px 0;
    position: relative;
  }
}
.retaling_product .retailng_banner:after {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 9;
  position: absolute;
}
.retaling_product .collection-section {
  position: relative;
  margin-top: -350px;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .retaling_product .collection-section {
    margin-top: -100px;
  }
}
.retaling_product .collection-section .product-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .retaling_product .collection-section .product-header {
    margin-bottom: 2rem;
  }
}
.retaling_product .collection-section .product-header .tagline {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.retaling_product .collection-section .product-header h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 1rem;
  color: #000000;
  color: #fff !important;
}
@media (min-width: 767px) {
  .retaling_product .collection-section .product-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .retaling_product .collection-section .product-header h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .retaling_product .collection-section .product-header h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.retaling_product .collection-section .collection-grid .collection-card {
  border-radius: 8px;
  overflow: hidden;
  margin: 10px;
  transition: transform 0.3s ease;
}
.retaling_product .collection-section .collection-grid .collection-card:hover {
  transform: translateY(-5px);
}
.retaling_product .collection-section .collection-grid .collection-card img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: 0.4s all ease;
}
.retaling_product .collection-section .collection-grid .collection-card img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  border-radius: 10px;
}
.retaling_product .collection-section .collection-grid .collection-card .collection-info {
  padding: 20px;
  text-align: left;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.2);
  max-width: 78%;
  margin-left: auto;
  background: #fff;
  position: relative;
  top: -73px;
  border-radius: 10px 0 0 10px;
}
.retaling_product .collection-section .collection-grid .collection-card .collection-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.retaling_product .collection-section .collection-grid .collection-card .collection-info p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}
.retaling_product .collection-section .collection-grid .collection-card .collection-info a {
  font-size: 0.95rem;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: all 0.3s ease;
}
.retaling_product .collection-section .collection-grid .collection-card .collection-info a:hover {
  color: #777;
  border-color: #777;
}

.about-icons .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.about-icons .container {
  position: relative;
  z-index: 2;
}
.about-icons .icon-grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .about-icons .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .about-icons .icon-grid {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.about-icons .icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}
.about-icons .icon-card .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.about-icons .icon-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}
.about-icons .icon-card h3::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 8px auto 0;
}
.about-icons .icon-card p {
  font-size: 14px;
  max-width: 300px;
  color: #ddd;
}

.category-carousel {
  text-align: center;
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .category-carousel {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .category-carousel {
    padding: 80px 0;
  }
}
.category-carousel .category-item {
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}
.category-carousel .category-item:hover img {
  filter: invert(1) brightness(0.1) contrast(2);
  transform: scale(1.05);
}
.category-carousel .category-item a {
  text-decoration: none;
}
.category-carousel .category-item a img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 10px;
  filter: invert(1) brightness(0.1) contrast(0);
  transition: 0.4s all;
}
.category-carousel .category-item a img:hover {
  filter: invert(1) brightness(0.1) contrast(2);
  transform: scale(1.5);
}
.category-carousel .category-item a p {
  margin-top: 1rem;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  position: relative;
  display: inline-block;
  min-width: 120px;
  height: 24px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.category-carousel .category-item a p span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.category-carousel .category-item a p i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  font-size: 20px;
  color: transparent;
  transition: all 0.4s ease;
}
.category-carousel .category-item:hover p span {
  transform: translateX(100%);
  opacity: 0;
}
.category-carousel .category-item:hover p i {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  color: #b19777;
}
.category-carousel .owl-nav {
  position: absolute;
  top: 34%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.category-carousel .owl-nav .owl-prev,
.category-carousel .owl-nav .owl-next {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  color: #000;
  transition: all 0.2s;
}
.category-carousel .owl-nav .owl-prev:hover,
.category-carousel .owl-nav .owl-next:hover {
  background-color: #000;
  color: #fff;
}
.category-carousel .owl-dots {
  display: none;
}

.footer {
  background-color: #192324;
  color: #fff;
}
.footer .footer-logo {
  font-size: 1.5rem;
  color: #ffffff;
  width: 100px !important;
}
.footer h6 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer ul {
  padding-left: 0;
}
.footer ul li {
  margin-bottom: 0.5rem;
  color: #fff;
}
.footer ul li a {
  font-size: 0.95rem;
  transition: color 0.2s ease-in-out;
  color: #fff;
}
.footer ul li a:hover {
  color: #6c63ff;
}
.footer .bi {
  font-size: 1rem;
  vertical-align: middle;
  color: #fff;
}
.footer p {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.social_icon {
  width: 40px;
  height: 34px;
  background: #b19777;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff !important;
  border-radius: 10%;
}

.about_us {
  padding: 130px 0 60px 0;
  text-align: center;
}
.about_us .image_marque {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}
.about_us .image_marque .marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}
.about_us .image_marque .img-box {
  display: inline-block;
  margin-right: 30px;
}
.about_us .image_marque .img-box img {
  width: 100%;
  max-width: 800px;
  width: auto;
  border-radius: 12px;
  display: block;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about_us .container .content {
  margin: 0 auto;
}
.about_us .container .content .subtitle {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.about_us .container .content h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
  margin-top: 0.5rem;
}
@media (min-width: 767px) {
  .about_us .container .content h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .about_us .container .content h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .about_us .container .content h2 {
    font-size: 48px;
    line-height: 54px;
  }
}

.our-story {
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .our-story {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .our-story {
    padding: 80px 0;
  }
}
.our-story .story-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}
.our-story .story-container .story-content {
  flex: 1;
  min-width: 300px;
}
.our-story .story-container .story-content .label {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 0.5rem;
}
.our-story .story-container .story-content h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 1rem;
  color: #000000;
}
@media (min-width: 767px) {
  .our-story .story-container .story-content h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .our-story .story-container .story-content h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .our-story .story-container .story-content h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.our-story .story-container .story-content p {
  font-size: 17px;
  line-height: 1.6;
  color: rgb(68, 72, 76);
}
.our-story .story-container .story-image {
  flex: 1;
  min-width: 300px;
}
.our-story .story-container .story-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 490px;
}
.our-story p {
  font-size: 17px;
  line-height: 1.6;
  color: rgb(68, 72, 76);
}

.team-section {
  padding: 60px 20px;
  background: #fff;
}
.team-section .container {
  margin: auto;
}
.team-section .section-header {
  margin-bottom: 40px;
}
.team-section .section-header .label {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 0.3rem;
}
.team-section .section-header h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 1rem;
  color: #000000;
}
@media (min-width: 767px) {
  .team-section .section-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .team-section .section-header h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .team-section .section-header h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.team-section .section-header .view-all {
  background: transparent;
  border: 1px solid #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease;
}
.team-section .section-header .view-all:hover {
  background: #000;
  color: #fff;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.team-section .team-card .image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.team-section .team-card .image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.team-section .team-card .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-section .team-card .content .deatils h3 {
  font-size: 23px;
  font-weight: 700;
  margin: 15px 0 5px;
  color: #000000;
}
.team-section .team-card .content .deatils p {
  font-size: 18px;
  color: rgb(68, 72, 76);
  margin: 0 0 10px;
}
.team-section .team-card .content .deatils a {
  color: #000;
}
.team-section .team-card .content .deatils a:hover {
  color: #614700;
  text-decoration: underline;
}
.team-section .team-card .content .socials {
  display: flex;
  gap: 10px;
}
.team-section .team-card .content .socials a {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.3s ease;
  text-decoration: none;
}
.team-section .team-card .content .socials a:hover {
  background: #444;
}
.team-section .team-card.left:hover .image-wrapper img {
  transform: scale(1.1) translateX(-10px);
}
.team-section .team-card.center:hover .image-wrapper img {
  transform: scale(1.1);
}
.team-section .team-card.right:hover .image-wrapper img {
  transform: scale(1.1) translateX(10px);
}

.inner_Section {
  padding: 130px 0 20px 0;
  text-align: center;
}
.inner_Section .container .subheadline a {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.inner_Section .container h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
}
@media (min-width: 767px) {
  .inner_Section .container h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .inner_Section .container h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .inner_Section .container h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.inner_Section .image_marque {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}
.inner_Section .image_marque .marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}
.inner_Section .image_marque .img-box {
  display: inline-block;
  margin-right: 30px;
}
.inner_Section .image_marque .img-box img {
  width: 100%;
  max-width: 800px;
  width: auto;
  border-radius: 12px;
  display: block;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.our-values {
  background-color: #f7f3f2;
}
.our-values .section-subtitle {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.our-values .section-title {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 0;
  color: #000000;
}
@media (min-width: 767px) {
  .our-values .section-title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .our-values .section-title {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .our-values .section-title {
    font-size: 48px;
    line-height: 54px;
  }
}
.our-values .value-card {
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #ddd;
  text-align: left;
  transition: box-shadow 0.3s ease;
}
.our-values .value-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: #000000;
  z-index: 0;
  transition: height 0.4s ease;
}
.our-values .value-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.our-values .value-card:hover::before {
  height: 100%;
}
.our-values .value-card:hover .icon,
.our-values .value-card:hover h5,
.our-values .value-card:hover p {
  color: #fff;
}
.our-values .value-card .icon,
.our-values .value-card h5,
.our-values .value-card p {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.our-values .value-card .icon {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 15px;
}
.our-values .value-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #111;
}
.our-values .value-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.blog_deatils_content {
  padding: 0 0 2rem 0;
}
.blog_deatils_content img {
  border-radius: 10px;
}
.blog_deatils_content .content_details h3 {
  font-weight: 600;
  padding: 5px 0;
}
.blog_deatils_content .content_details p {
  font-size: 16px;
}

.product-detail {
  background: #fff;
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .product-detail {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .product-detail {
    padding: 80px 0;
  }
}
.product-detail .product-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.product-detail .product-wrapper .product-image {
  flex: 1;
}
.product-detail .product-wrapper .product-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.product-detail .product-wrapper .product-image .gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.product-detail .product-wrapper .product-image .gallery-thumbs a img {
  width: 60px;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: 0.3s;
}
.product-detail .product-wrapper .product-image .gallery-thumbs a img:hover {
  transform: scale(1.1);
  border-color: #c80000;
}
.product-detail .product-wrapper .product-info {
  flex: 1;
}
.product-detail .product-wrapper .product-info .product-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}
.product-detail .product-wrapper .product-info .price {
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
}
.product-detail .product-wrapper .product-info .meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}
.product-detail .product-wrapper .product-info .meta .in-stock {
  color: green;
}
.product-detail .product-wrapper .product-info .description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-detail .product-wrapper .product-info .tags {
  font-size: 14px;
  margin-bottom: 20px;
}
.product-detail .product-wrapper .product-info .tags span {
  background: #f9f9f9;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 5px;
}
.product-detail .product-wrapper .product-info .btn-contact {
  background-color: #000000;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}
.product-detail .product-wrapper .product-info .btn-contact:hover {
  background-color: #a60000;
}

.recent-products {
  background-color: #f9f9f9;
  padding: 60px 0;
}
.recent-products .section-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}
.recent-products .recent-carousel .product-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  overflow: hidden;
}
.recent-products .recent-carousel .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.recent-products .recent-carousel .product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}
.recent-products .recent-carousel .product-card img:hover {
  transform: scale(1.05);
}
.recent-products .recent-carousel .product-card .product-name {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 500;
}
.recent-products .recent-carousel .product-card .product-price {
  font-size: 16px;
  color: #c80000;
  font-weight: 600;
}

.lamp-category-slider {
  padding-bottom: 2rem;
}
.lamp-category-slider .lamp-carousel .lamp-item {
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}
.lamp-category-slider .lamp-carousel .lamp-item img {
  height: auto;
  margin: 0 auto 15px;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 15px;
}
.lamp-category-slider .lamp-carousel .lamp-item a {
  text-decoration: none;
  text-transform: capitalize;
}
.lamp-category-slider .lamp-carousel .lamp-item a p {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0;
}
.lamp-category-slider .lamp-carousel .lamp-item a:hover img {
  transform: scale(1.1);
}
.lamp-category-slider .lamp-carousel .owl-nav {
  position: absolute;
  top: 30%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.lamp-category-slider .lamp-carousel .owl-nav button.owl-prev,
.lamp-category-slider .lamp-carousel .owl-nav button.owl-next {
  background: #000;
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  border: none;
  transition: 0.3s;
  position: absolute;
}
.lamp-category-slider .lamp-carousel .owl-nav button.owl-prev:hover,
.lamp-category-slider .lamp-carousel .owl-nav button.owl-next:hover {
  background: #ff4d00;
}
.lamp-category-slider .lamp-carousel .owl-nav button.owl-prev {
  left: -25px;
}
.lamp-category-slider .lamp-carousel .owl-nav button.owl-next {
  right: -25px;
}
.lamp-category-slider .lamp-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}
.lamp-category-slider .lamp-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  margin: 0 4px;
  border-radius: 50%;
  transition: 0.3s;
}
.lamp-category-slider .lamp-carousel .owl-dots .owl-dot.active span {
  background: #000;
}

.product_list {
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .product_list {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .product_list {
    padding: 80px 0;
  }
}
.product_list h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center !important;
}
@media (min-width: 767px) {
  .product_list h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .product_list h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .product_list h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.product_list .product_grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 15px;
}
@media (min-width: 767px) {
  .product_list .product_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .product_list .product_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
  }
}
.product_list .product_grid .product-card .product-img img {
  width: 100%;
  border-radius: 15px;
}
.product_list .product_grid .product-card .product-meta {
  margin-top: 0.7rem;
}
.product_list .product_grid .product-card .product-meta span {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.product_list .product_grid .product-card .product-title {
  font-weight: 500;
  font-size: 22px;
}
.product_list .product_grid .product-card .product-title a {
  color: #000;
  text-decoration: none;
}
.product_list .product_grid .product-card .product-title a:hover {
  color: #100170;
}
.product_list .product_grid .product-card .productReadmore {
  text-decoration: none;
  color: #000;
}
.product_list .product_grid .product-card .productReadmore:hover {
  border-bottom: 1px solid #000;
  transition: 0.4s;
  color: #100170;
}

.stats-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 0;
  background: url(../img/overlay.jpg) center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  gap: 30px;
  position: relative;
  background-attachment: fixed;
}
.stats-wrapper .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6745098039);
  z-index: 50;
  top: 0;
}
.stats-wrapper .stat-item {
  flex: 1 1 100%;
  padding: 20px;
  position: relative;
  z-index: 100;
}
.stats-wrapper .stat-item .stat-count {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.stats-wrapper .stat-item .stat-label {
  font-size: 16px;
  margin: 0;
  color: #fff;
}
@media (min-width: 768px) {
  .stats-wrapper .stat-item {
    flex: 1 1 30%;
  }
  .stats-wrapper .stat-item .stat-count {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .stats-wrapper .stat-item {
    padding: 30px;
  }
}

.logo_marquee {
  overflow: hidden;
  padding: 20px 0;
  background: #fff;
}
@media (min-width: 1099px) {
  .logo_marquee {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .logo_marquee {
    padding: 80px 0;
  }
}
.logo_marquee .logo-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: marquee 30s linear infinite;
}
.logo_marquee .logo-track:hover {
  animation-play-state: paused;
}
.logo_marquee .logo-track .logo-item {
  flex: 0 0 auto;
  padding: 0 20px;
}
.logo_marquee .logo-track .logo-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.logo_marquee .logo-track .logo-item img:hover {
  transform: scale(1.05);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .logo_marquee .logo-item {
    padding: 0 10px;
  }
  .logo_marquee .logo-item img {
    max-width: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .logo_marquee .logo-item {
    padding: 0 15px;
  }
  .logo_marquee .logo-item img {
    max-width: 120px;
  }
}
@media (min-width: 1024px) {
  .logo_marquee .logo-item {
    padding: 0 20px;
  }
  .logo_marquee .logo-item img {
    max-width: 150px;
  }
}

.logo_marquee {
  padding: 20px 0;
  overflow: hidden;
}
@media (min-width: 1099px) {
  .logo_marquee {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .logo_marquee {
    padding: 80px 0;
  }
}
.logo_marquee .container {
  margin: 0 auto;
  padding: 0 15px;
}
.logo_marquee .container h6 {
  font-size: 35px;
  margin-bottom: 2rem;
  line-height: 45px;
  font-weight: 600;
}
.logo_marquee .container h6 span {
  color: #b19777;
}
.logo_marquee .logo_wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.logo_marquee .logo_wrapper .logo_track {
  display: flex;
  gap: 40px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.logo_marquee .logo_wrapper .logo_track:hover {
  animation-play-state: paused;
}
.logo_marquee .logo_wrapper .logo_track .logo_item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.logo_marquee .logo_wrapper .logo_track .logo_item img {
  width: 100%;
  max-width: 80px;
  height: auto;
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
  background: transparent !important;
  mix-blend-mode: multiply;
}
.logo_marquee .logo_wrapper .logo_track .logo_item img:hover {
  filter: grayscale(100%);
  transform: scale(1.05);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (min-width: 576px) {
  .logo_marquee .logo_item img {
    max-width: 100px;
  }
}
@media (min-width: 768px) {
  .logo_marquee .logo_item img {
    max-width: 110px;
  }
}
@media (min-width: 1024px) {
  .logo_marquee .logo_item img {
    max-width: 130px;
  }
}
@media (min-width: 1400px) {
  .logo_marquee .logo_item img {
    max-width: 150px;
  }
}

.about-tabs-section {
  padding: 20px 0;
  padding-bottom: 0 !important;
}
@media (min-width: 1099px) {
  .about-tabs-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .about-tabs-section {
    padding: 80px 0;
  }
}
.about-tabs-section .tabs-section {
  border-radius: 0.5rem;
  padding: 0;
}
@media (min-width: 768px) {
  .about-tabs-section .tabs-section {
    padding: 2rem;
  }
}
.about-tabs-section .tabs-section .tabs-nav {
  border: none;
  padding: 0 3px;
  border-radius: 10px;
}
.about-tabs-section .tabs-section .tabs-nav .nav-link {
  position: relative;
  display: inline-block;
  color: #000;
  font-weight: 500;
  border-radius: 10px;
  background-color: #d9d9d9;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  padding: 7px 22px;
}
.about-tabs-section .tabs-section .tabs-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0%;
  width: 100%;
  background-color: #000;
  z-index: -1;
  transition: height 0.3s ease;
}
.about-tabs-section .tabs-section .tabs-nav .nav-link.active {
  color: #fff !important;
}
.about-tabs-section .tabs-section .tabs-nav .nav-link.active::before {
  height: 100%;
}
.about-tabs-section .tabs-section .tab-content .mission-content,
.about-tabs-section .tabs-section .tab-content .vision-content,
.about-tabs-section .tabs-section .tab-content .values-content {
  display: flex;
  align-items: center;
}
.about-tabs-section .tabs-section .tab-content .mission-text .mission-description,
.about-tabs-section .tabs-section .tab-content .mission-text .vision-description,
.about-tabs-section .tabs-section .tab-content .mission-text .values-description,
.about-tabs-section .tabs-section .tab-content .vision-text .mission-description,
.about-tabs-section .tabs-section .tab-content .vision-text .vision-description,
.about-tabs-section .tabs-section .tab-content .vision-text .values-description,
.about-tabs-section .tabs-section .tab-content .values-text .mission-description,
.about-tabs-section .tabs-section .tab-content .values-text .vision-description,
.about-tabs-section .tabs-section .tab-content .values-text .values-description {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}
.about-tabs-section .tabs-section .tab-content .mission-text .mission-features,
.about-tabs-section .tabs-section .tab-content .mission-text .values-list,
.about-tabs-section .tabs-section .tab-content .vision-text .mission-features,
.about-tabs-section .tabs-section .tab-content .vision-text .values-list,
.about-tabs-section .tabs-section .tab-content .values-text .mission-features,
.about-tabs-section .tabs-section .tab-content .values-text .values-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.about-tabs-section .tabs-section .tab-content .mission-text .mission-features li,
.about-tabs-section .tabs-section .tab-content .mission-text .values-list li,
.about-tabs-section .tabs-section .tab-content .vision-text .mission-features li,
.about-tabs-section .tabs-section .tab-content .vision-text .values-list li,
.about-tabs-section .tabs-section .tab-content .values-text .mission-features li,
.about-tabs-section .tabs-section .tab-content .values-text .values-list li {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 15px;
  align-items: flex-start;
}
.about-tabs-section .tabs-section .tab-content .mission-text .mission-features li i,
.about-tabs-section .tabs-section .tab-content .mission-text .values-list li i,
.about-tabs-section .tabs-section .tab-content .vision-text .mission-features li i,
.about-tabs-section .tabs-section .tab-content .vision-text .values-list li i,
.about-tabs-section .tabs-section .tab-content .values-text .mission-features li i,
.about-tabs-section .tabs-section .tab-content .values-text .values-list li i {
  color: #000000;
  margin-right: 0.5rem;
}
.about-tabs-section .tabs-section .tab-content .mission-image img,
.about-tabs-section .tabs-section .tab-content .vision-image img,
.about-tabs-section .tabs-section .tab-content .values-image img {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-icons {
  position: relative;
  background: url("https://cdn.prod.website-files.com/67d65e4a7a8964eda8d774b0/67db993d75eda869f3c922db_about%20us%20Image.jpg") center/cover no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  background-attachment: fixed;
}
.about-icons .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.763);
  z-index: 1;
}
.about-icons .container {
  position: relative;
  z-index: 2;
}
.about-icons .icon-grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .about-icons .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .about-icons .icon-grid {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.about-icons .icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}
.about-icons .icon-card .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.about-icons .icon-card h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}
.about-icons .icon-card h3::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 8px auto 0;
}
.about-icons .icon-card p {
  font-size: 15px;
  max-width: 300px;
  color: #ddd;
}

.timeline-section {
  padding: 20px 0;
  padding-bottom: 2rem !important;
}
@media (min-width: 1099px) {
  .timeline-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .timeline-section {
    padding: 80px 0;
  }
}
.timeline-section .container {
  margin: auto;
  padding: 0 15px;
}
.timeline-section .timeline-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}
.timeline-section .timeline-header .title {
  flex: 1 1 45%;
}
.timeline-section .timeline-header .title .tagline {
  border-radius: 0 15px 0 15px;
  background-color: #000000;
  padding: 3px 16px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
}
.timeline-section .timeline-header .title h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 0;
  color: #000000;
}
@media (min-width: 767px) {
  .timeline-section .timeline-header .title h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .timeline-section .timeline-header .title h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .timeline-section .timeline-header .title h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.timeline-section .timeline-header .description {
  flex: 1 1 45%;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}
.timeline-section .timeline-bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 40px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2745098039);
  position: relative;
}
.timeline-section .timeline-bar .year-tab {
  padding: 10px 10px;
  background: none;
  border: none;
  font-weight: 600;
  color: #aaa;
  cursor: pointer;
  font-size: 14px;
  position: relative;
}
.timeline-section .timeline-bar .year-tab::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-section .timeline-bar .year-tab.active {
  color: #000000;
}
.timeline-section .timeline-bar .year-tab.active::after {
  background: #000000;
}
.timeline-section .timeline-contents .timeline-content {
  display: none;
  flex-wrap: wrap;
  gap: 40px;
}
.timeline-section .timeline-contents .timeline-content.active {
  display: flex;
  align-items: center;
}
.timeline-section .timeline-contents .timeline-content .images {
  flex: 1 1 50%;
}
.timeline-section .timeline-contents .timeline-content .images .img-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.timeline-section .timeline-contents .timeline-content .images .img-grid img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.timeline-section .timeline-contents .timeline-content .text-content {
  flex: 1 1 45%;
}
.timeline-section .timeline-contents .timeline-content .text-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.timeline-section .timeline-contents .timeline-content .text-content ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.timeline-section .timeline-contents .timeline-content .text-content ul li {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}
.timeline-section .timeline-contents .timeline-content .text-content ul li i {
  color: #b19777;
  margin-right: 8px;
}

.team_modal .modal-dialog .modal-content .modal-body img {
  height: 177px;
  border-radius: 50%;
}

.contact-section {
  background: #f0f0f0;
  padding: 20px 0;
  padding-bottom: 2rem;
  position: relative;
}
@media (min-width: 1099px) {
  .contact-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .contact-section {
    padding: 80px 0;
  }
}
.contact-section::after {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: absolute;
  background: url(../img/Welcome-world-map.webp);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 2;
}
.contact-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
}
.contact-section .section-header h2 span {
  color: #0073ff;
}
.contact-section .section-header p {
  color: #777;
  max-width: 600px;
  margin: 10px auto 0;
}
.contact-section .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 5;
  padding-bottom: 2rem !important;
}
@media (min-width: 768px) {
  .contact-section .contact-grid {
    flex-direction: row;
  }
}
.contact-section .contact-grid .contact-form,
.contact-section .contact-grid .contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-section .contact-grid .contact-form {
  padding: 10px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .contact-section .contact-grid .contact-form {
    padding: 30px;
  }
}
.contact-section .contact-grid .contact-form h3 {
  margin-bottom: 20px;
  display: inline-block;
}
.contact-section .contact-grid .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-section .contact-grid .contact-form form .form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-section .contact-grid .contact-form form .form-group input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.4588235294);
}
.contact-section .contact-grid .contact-form form .form-group.full {
  flex-direction: column;
  width: 100%;
}
.contact-section .contact-grid .contact-form form .form-group.full textarea {
  width: 100%;
  padding: 10px;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: vertical;
  border: 1px solid rgba(0, 0, 0, 0.4588235294);
}
.contact-section .contact-grid .contact-form form button {
  position: relative;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-section .contact-grid .contact-form form button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #000;
  z-index: -1;
  transition: height 0.3s ease;
  border-radius: 5px;
}
.contact-section .contact-grid .contact-form form button:hover {
  color: #fff;
}
.contact-section .contact-grid .contact-form form button:hover::before {
  height: 100%;
}
.contact-section .contact-grid .contact-form form button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-grid .contact-info {
  border-radius: 10px;
  padding: 15px;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.contact-section .contact-grid .contact-info h3 {
  display: inline-block;
  margin-bottom: 1rem;
}
.contact-section .contact-grid .contact-info p {
  color: #000000;
  margin-bottom: 20px;
  font-size: 18px;
}
.contact-section .contact-grid .contact-info .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.contact-section .contact-grid .contact-info .info-list li {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 12px;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-section .contact-grid .contact-info .info-list li {
    flex-direction: row;
  }
}
.contact-section .contact-grid .contact-info .info-list li i {
  font-size: 18px;
  color: #000000;
}
.contact-section .contact-grid .contact-info .info-list li strong {
  min-width: 100px;
  color: #000;
}
.contact-section .contact-grid .contact-info .info-list li span {
  color: #333;
}
.contact-section .contact-grid .contact-info .social-media {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}
@media (min-width: 768px) {
  .contact-section .contact-grid .contact-info .social-media {
    justify-content: left;
  }
}
.contact-section .contact-grid .contact-info .social-media a {
  font-size: 20px;
  color: #b19777;
  padding: 10px;
  border-radius: 15px;
  background: #eee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.contact-section .contact-grid .contact-info .social-media a:hover {
  background: #b19777;
  color: #fff;
}

.faq-section {
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .faq-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .faq-section {
    padding: 80px 0;
  }
}
.faq-section .section-header h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: 600 !important;
}
@media (min-width: 767px) {
  .faq-section .section-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .faq-section .section-header h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .faq-section .section-header h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.faq-section .section-header h2 span {
  color: #b19777;
}
.faq-section .section-header p {
  font-size: 16px;
}
.faq-section .section-header .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 700;
  font-size: 22px !important;
}

.faq-section {
  padding: 20px 0;
}
@media (min-width: 1099px) {
  .faq-section {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .faq-section {
    padding: 80px 0;
  }
}
.faq-section .section-header h2 {
  font-size: 25px;
  line-height: 28PX;
  margin-bottom: 1rem;
  color: #000000;
}
@media (min-width: 767px) {
  .faq-section .section-header h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 991px) {
  .faq-section .section-header h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .faq-section .section-header h2 {
    font-size: 48px;
    line-height: 54px;
  }
}
.faq-section .section-header h2 span {
  color: #b19777;
}
.faq-section .section-header p {
  font-size: 16px;
  color: #666;
}
.faq-section .accordion .accordion-item {
  border: none;
  background: #fff;
}
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  background-color: #e4e4e4;
  color: #222;
  box-shadow: none;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.faq-section .accordion .accordion-item .accordion-body {
  font-size: 15px;
  color: #444;
  background: #fff;
  padding: 1rem 1.25rem;
}

.features-section {
  margin-top: 3rem;
}
.features-section .feature-card {
  gap: 20px;
  align-items: center !important;
}
@media (min-width: 768px) {
  .features-section .feature-card {
    flex-direction: column;
    text-align: center;
  }
}
.features-section .feature-card .icon-circle {
  width: 50px;
  height: 50px;
  background: #e6f0f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #b19777;
  flex-shrink: 0;
}
.features-section .feature-card .feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #111;
}
.features-section .feature-card p {
  font-size: 17px;
  color: #555;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #ffffff;
  color: #333;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.402);
  padding: 20px;
  z-index: 9999;
  display: none;
  max-width: 600px;
  margin: auto;
  animation: slideUp 0.5s ease;
}
.cookie-banner .cookie-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-banner .cookie-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.cookie-banner .cookie-content p a {
  color: #007bff;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner .cookie-content .cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-banner .cookie-content .cookie-buttons button {
  padding: 6px 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 12px;
}
.cookie-banner .cookie-content .cookie-buttons button#accept-cookies {
  background-color: #28a745;
  color: white;
}
.cookie-banner .cookie-content .cookie-buttons button#accept-cookies:hover {
  background-color: #218838;
}
.cookie-banner .cookie-content .cookie-buttons button.reject {
  background-color: #dc3545;
  color: white;
}
.cookie-banner .cookie-content .cookie-buttons button.reject:hover {
  background-color: #c82333;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block !important;
}

.owl-nav {
  margin-top: 30px;
  text-align: center;
}
.owl-nav button {
  font-size: 20px;
  border: 1px solid #000 !important;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 25px;
  height: 25px;
  margin: 0 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.owl-nav span {
  color: #000000;
  font-size: 19px;
}
.owl-nav .owl-dots {
  display: none !important;
}/*# sourceMappingURL=theme-style.css.map */