* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin: 90px;
}


/* Width of the scrollbar */
/* ::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
} */

#loader {
  height: 110vh;
  width: 100%;
  background-color: #857e7e;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  /* opacity: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader img {
  height: 30vw;
  position: absolute;
  /* top: -10%; */
  margin-top: -25%;
  left: 50%;
  transform: translate(-50%);
}

#marquee {
  width: 100%;
  white-space: nowrap;
  /* background-color: red; */
  overflow-x: auto;
  overflow-y: hidden;
}

#marquee #container {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}

#marquee::-webkit-scrollbar {
  display: none;
}

#container h4 {
  display: inline-block;
  font-size: 8vw;
  margin-right: 1.2vw;
  font-weight: 900;
  -webkit-text-stroke: 2.5px #45515c;
  color: transparent;
  user-select: none;
  transition: all linear 0.5s;

}

#container h4:hover {
  color: #45515c;
}

#loader #loader-btn {
  position: absolute;
  top: 65%;
  padding: 12px 18px;
  background-color: transparent;
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid #444;
  color: #000;
  font-size: 1.3vw;
  font-weight: 600;
  overflow: hidden;
}

#loader-btn::before {
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  background-color: #45515c;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  transition: all ease 0.5s;
}

#loader-btn:hover::before {
  transform: translate(-50%, -50%) scale(4);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

body {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  color: #45515c;
  /* background: rgb(244, 240, 225); */
  background-color: rgba(230, 240, 245, 0.959);
  cursor: url("/assets/img/cursor.png"), auto;
}

/* Fade Effect */
/* .hide {
  opacity: 0;
  transition: all 1.5s;
}

.show {
  transform: translateY(-3%);
  opacity: 1;
  transition: all 1.5s;
} */

/* header */
/* navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: rgba(255, 255, 255, 0.85); */
  background-color: rgba(255, 255, 255, 0.215);
  backdrop-filter: blur(50px);
  padding: 15px 80px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100px;
  z-index: 5;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.logo img {
  max-height: 850px;
  height: auto;
  width: 120px;
  margin-left: -30px;
}

/* add brand name */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo styling */
.logo {
  margin-left: -10px;
  width: 50px;
  height: auto;
}

/* Company name styling */
.company-name {
  width: 10px;
  font-size: 15px;
  margin-left: -15px;
  font-weight: bold;
  white-space: nowrap;
  color: black;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .logo-container {
    gap: 5px;
    /* Reduce space on smaller screens */
  }

  .company-name {
    font-size: 15px;
    /* Adjust font size for smaller screens */
  }

  .logo {
    width: 40px;
    /* Adjust logo size for smaller screens */
  }
}

@media (max-width: 480px) {
  .company-name {
    font-size: 15px;
    /* Further adjust font size for very small screens */
  }

  .logo {
    width: 30px;
    /* Further adjust logo size for very small screens */
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #16271f;
  padding: 10px 20px;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 17px;
}

.nav-links a:hover {
  color: wheat;
  background-color: #16271f;
  border-radius: 5px;
}

.enquire a {
  transition: background-color 800ms;
  padding: 15px 30px;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 0;
  color: #16271f;
  border: 1.9px solid black;
  margin: 0 5px;
}

.enquire a:hover {
  border-radius: 0;
  background: #0d271b;
  color: #f4f0e1;
}

#main {
  position: relative;
  overflow: hidden;
}

/* Hamburger Menu Icon */
.nav-toggle {
  display: none;
}

#page1 {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 9;
}

#video-container {
  height: 100%;
  width: 100%;
  background-color: red;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#video-container video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#container-in {
  height: 100%;
  width: 100%;
  background-color: #00000047;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 7vw;
}

#container-in #hero {
  /* background-color: red; */
  height: 5vw;
  overflow: hidden;
}

#container-in h1 {
  color: #dadada;
  font-size: 3vw;
  font-weight: 700;
}

#page2 {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

/* video and header img */
.main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 107vh;
  object-fit: cover;
  overflow: hidden;
}

.left {
  /* bg 8 and 14  */
  background-image: url(../bg\ images/bg14.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left .text-content {
  text-align: center;
  /* color: #16271f; */
  /* color:rgb(33, 31, 31); */
  color: rgb(241, 229, 208);
}

.text-content p {
  margin: 20px 30px;
  font-weight: bold;
}

.left .text-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.left .text-content p:nth-child(3) {
  margin-bottom: 50px;
}

.left .text-content p {
  font-size: 19px;
}

.discover-btn {
  padding: 15px 30px;
  border: 0;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #16271f;
  background: #f4f0e1;
}

.discover-btn:hover {
  background-color: #16271f;
  cursor: pointer;
  color: #f4f0e1;
  /* Change to desired hover color */
}

.right video {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#page3 {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1vw 2vw;
  z-index: 9;
}

/* Home section */
.mainSection {
  padding-top: 100px;
  /* background: rgb(244, 240, 225); */
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
}

.mainSection {
  /* background-image: url("../assets/img/pattern.svg");  */
  background-repeat: no-repeat;
  background-position: top 15px center;
}

.leftSection {
  width: 45%;
  /* background-color: red; */
  border: 2px solid #444;
  /* background-color: #888; */
  border-radius: 10px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.content {
  max-width: 500px;
  margin: 0 115px 0 20px;
  /* margin: 0 100px; */
  float: right;
}

/* h2 */
.homes {
  font-weight: 600;
  font-size: 50px;
  line-height: 74px;
  letter-spacing: 0.01em;
  color: #16271f;
  overflow-wrap: break-word;

  /* width: fit-content; */
}

.leftSection .content .homes {
  margin-top: 30px;
}

.leftSection .content .para {
  margin-top: 30px;
}

.leftSection .content p {
  font-family: "Work Sans";
  font-weight: 300;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: -0.01em;
  color: #16271f;
  margin: 0;
}

.content a {
  padding: 15px 30px;
  border: 2px #16271f solid;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #16271f;
}

.btn {
  /* margin-top: 80px; */
  margin: 80px 0 100px 0;
  color: #16271f;
}

.content a:hover {
  transition: 500ms ease;
  color: white;
  background: #16271f;
}

.rightSection {
  width: 50%;
}

.rightSection img {
  height: 550px;
}

/*  slider */
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  /* margin: auto; */
  height: 100%;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  /* bottom: 1%; */
  top: 50%;
  width: auto;
  padding: 25px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(22, 39, 31, 0.7);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(22, 39, 31, 0.9);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* page 4 */
#page4 {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

#page4 h2 {
  margin-top: 40px;
  text-align: center;
  font-size: 2rem;
}

.box-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 90px;
}

.shape-box {
  display: inline-block;
  position: relative;
  z-index: 1;
  max-width: 600px;
  height: 430px;
  margin: 30px 10px 30px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
  overflow: hidden;
  width: 23.333%;
}

.shape-box_half {
  overflow: hidden;
  text-align: left;
}

.shape-box_half:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skewY(53.5deg);
  transform-origin: top left;
  transition: transform .4s;
  background: #fff;
  z-index: 1;
}

.shape-box>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-black {
  background-color: #000;
}

.shape-box_half figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px 30px;
  transition: transform .4s;
  transform: translateY(100%);
  z-index: 3;
}

.shape-box_half figcaption .show-cont {
  position: absolute;
  bottom: calc(100% + 30px);
  left: 30px;
  right: 30px;
  transition: bottom .4s;
}

.card-no {
  font-size: 36px;
  color: black;
  padding: 0;
  margin: 10px 0;
}

.card-main-title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #292b2c;
}

.card-content {
  color: #9f9f9f;
  margin-top: 20px;
  line-height: 22px;
  font-size: 15px;
}

.read-more-btn {
  border: 2px solid #db3236;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 20px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  background: #db3236;
  color: #fff;
  border-radius: 2px;
  margin-top: 25px;
  text-decoration: none;
}

.read-more-btn:hover {
  background: transparent;
  color: #db3236;

}

.shape-box_half>.after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: pink;
  opacity: 0;
  transition: opacity .4s;
}

/* On hover */
.shape-box_half:hover:before {
  transform: skewY(20deg);
}

.shape-box_half:hover figcaption {
  transform: translateY(0);
}

.shape-box_half:hover figcaption .show-cont {
  bottom: 100%;
}

.shape-box_half:hover>.after {
  opacity: 1;
}

#page5 {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.section3 {
  width: 100%;
  /* height: 100%; */
}

.section3 img {
  padding: 10px 20px;
  width: 100%;
  /* margin: 10px; */
}

.container {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 50px 20px;
  padding: 10px;
}

.box {
  /* background-color: #f4f1f1; */
  padding: 20px;
}

.box img {
  display: block;
  margin-bottom: 15px;
}

.box h3 {
  color: #16271f;
  font-weight: 600;
}

.box p {
  margin: 20px 0 0;
  color: #7d7868;
}

/* reviews */

#page6 {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.creative-testimonial--slider {
  /* background-image: linear-gradient(to bottom, #f7f7ff, #f4f4fb, #f8f7fc, #fbfbfe, #ffffff); */
  padding: 50px 0px;
}

.creative-testimonial--slider .testimonial-inner {
  max-width: 1240px;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-inner .testimonial-heading {
  text-align: center;
  max-width: 60%;
  margin: auto;
  font-size: 2.813rem;
  line-height: 3.125rem;
  letter-spacing: -1px;
  margin-top: 0px;
  margin-bottom: 50px;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 6%;
}

.swiper-slide .swiper-slide--inner {
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  align-items: center;
  column-gap: 50px;
  position: relative;
  overflow-x: hidden;
}

.swiper-slide--inner .testimonial-detail img {
  height: 35px;
}

.swiper-slide--inner .testimonial-detail p {
  margin: 0px;
  color: #242e45;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 5px;
}

.swiper-slide--inner .testimonial-detail span {
  color: #3c2fc0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  line-height: normal;
}

.company-details--row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.company-details--row .company-box {
  flex: 0 0 auto;
  width: 33.33333333%;
  padding: 0px 15px;
}

.company-details--row .company-box .company-box-inner {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  -webkit-transition: all 350ms cubic-bezier(.37, 0, .63, 1);
  transition: all 350ms cubic-bezier(.37, 0, .63, 1);
  background: #fff;
  text-align: center;
  border-radius: 6px;
}

.company-box-inner .company-box-top {
  padding-top: 10%;
  padding-bottom: 10%;
  border-bottom: 1px solid #dee2e6;
}

.company-box-inner .company-box-top img {
  height: 40px;
}

.company-box-inner .company-box-bottom {
  padding: 15px;
}

.company-box-inner .company-box-bottom span {
  font-size: 15px;
  color: #878898;
  line-height: 30px;
}

.company-box-inner .company-box-bottom span strong {
  color: #242e45;
}

/* ======== Sticky Footer ========= */
.sticky-footer {
  position: fixed;
  width: 100%;
  background: #333;
  z-index: 999;
  bottom: 0;
}

.sticky-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  padding-right: 15px;
}

.creditd a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.social ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0px;
  column-gap: 10px;
  align-items: center;
}

.social ul li a {
  display: flex;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}

.social ul li a img {
  max-width: 20px;
}


/* Hide img2 by default */
.responsive-image .img2 {
  display: none;
}

/* questions */
#page7 {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.question {
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  max-width: 800px;
}

.question h2 {
  margin-bottom: 50px;
}

.accordion {
  background-color: #ffffff;
  color: #5c5b5b;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.9s;
  border-radius: 25px;
  /* margin-bottom: 10px; */
  font-size: 1.2em;
  margin-bottom: 25px;
}

/* .accordion:hover {
  background-color: #d4cece;
  color: #383735;
} */

.accordion.active {
  background: #16271f;
  color: #f4f0e1;
}

.accordion.active svg path {
  fill: #f4f0e1;
  margin: 1px;
}

.panel {
  padding: 18px;
  display: none;
  overflow: hidden;
  text-align: left;
  border-radius: 25px;
  font-size: 1em;
}

.panel ul li {
  padding-top: 10px;
}

.accordion svg {
  transition: transform 0.4s;
}

/* button svg :hover{    
  fill: white;
} */

.accordion.active svg {
  transform: rotate(180deg);
}

/* enquire, form */
#enquire {
  /* background-color: rgb(98, 29, 24); */
  background: rgb(19, 40, 71);
  color: white;
  padding: 50px 20px;
}

#enquire .form {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

#enquire h2,
#enquire p {
  margin-bottom: 20px;
  color: #f4f0e1;
}

#enquire .btn-holder {
  margin-bottom: 20px;
}

#enquire .btn.generic-btn {
  padding: 15px 30px;
  border: 0;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #16271f;
  background: #f4f0e1;
}

.btn.generic-btn {
  background-color: #16271f;
  cursor: pointer;
  color: #f4f0e1;
}

#cta-form-holder {
  display: none;
  padding: 20px;
  border-radius: 5px;
}

#cta-form-holder .contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 5px;
}

#cta-form-holder .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  padding: 12px 0;
}

#cta-form-holder .form-group input,
#cta-form-holder .form-group select,
#cta-form-holder .form-group textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#cta-form-holder .checkbox-group {
  display: flex;
  flex-direction: row;
}

#cta-form-holder .checkbox-group input[type="checkbox"] {
  margin-right: 10px;
}

#cta-form-holder .btn-container {
  text-align: center;
}

#cta-form-holder .btn.generic-btn {
  color: black;
  background-color: white;
  text-transform: uppercase;
}

/* submitted sucessfull */
#contact-page-success-container {
  background-color: rgb(204, 197, 197);
  color: black;
  padding: 20px;
  border-radius: 5px;
  display: none;
  text-align: left;
}

#contact-page-success-container p {
  color: black;
}

#contact-page-success-container h3 {
  margin-top: 0;
}

/* footer */
/* Footer Styles */
footer {
  /* background-color: #16271f; */
  background-color: rgb(10, 27, 47);
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.footer-section {
  flex: 1;
  margin: 10px;
}

/* fotter h1 */
footer #copyright {
  text-align: center !important;
}

.contact-info p {
  padding-top: 10px;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.footer-section img {
  /* padding: 15px; */
  margin: 0 10px;
}

/* .logos {
  display: flex;
  flex-direction: row;
} */

.footer-section h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  margin: auto;
  align-items: center;
  /* flex-wrap: wrap; */
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 0.9em;
  padding: 0 10px;
  width: 90%;
}

.footer-bottom p {
  margin: 5px 0;
  color: #444;
}

span {
  color: white;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* .footer-logo {
  text-align: left;
} */



.modal {
  display: none;
  position: fixed;
  z-index: 7;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  border-radius: 15px;
  background-color: #f4f0e1;
  max-height: 450px;
  overflow-y: auto;
  margin: 15% auto;
  padding: 70px;
  border: 1px solid #888;
  width: 80%;
  overflow-x: hidden;
  max-width: 650px;
  line-height: 30px;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
}

.modal-content h2 {
  text-align: center;
  color: #16271f;
  margin-bottom: 10px;
}

.close {
  color: #aaa;
  float: right;
  margin-right: -60px;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  right: 100px;
  top: 30px;
}

.close:hover,
.close:focus {
  color: rgb(0, 0, 0);
  text-decoration: none;
  cursor: pointer;
}