@font-face {
  font-family: "HelveticaBold";
  src: url("../fonts/Helvetica-Bold.woff") format("woff");
}
@font-face {
  font-family: "HelveticaNormal";
  src: url("../fonts/Helvetica.woff") format("woff");
}
.myfs-1 {
  font-size: 14px;
}

.myfs-2 {
  font-size: 15px;
}

.myfs-3 {
  font-size: 16px;
}

.myfs-4 {
  font-size: 18px;
}

.myfs-5 {
  font-size: 20px;
}

.myfs-6 {
  font-size: 22px;
}

.myfs-7 {
  font-size: 24px;
}

.myfs-8 {
  font-size: 26px;
}

.myfs-9 {
  font-size: 28px;
}

body {
  font-family: "HelveticaNormal", sans-serif;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.container {
  padding-inline: 0px;
}

.mobile {
  display: none;
}

.swiper-slide h1 {
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease-out;
}

.swiper-slide-active h1 {
  transform: translateY(0);
  opacity: 1;
}

.btn:hover {
  background-color: transparent;
}

.bgbtn {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #fff;
  border: 2px solid #ac813c;
  font-size: 14px;
  border-radius: 0px;
  padding-inline: 20px;
  z-index: 1;
  transition: color 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.bgbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ac813c;
  z-index: -1;
  transition: transform 0.4s ease;
  transform: translateX(0);
}
.bgbtn:hover {
  color: #ac813c;
  border: 2px solid #ac813c;
  background: transparent;
}
.bgbtn:hover::before {
  transform: translateX(-100%);
}

.btn-outline-secondary {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 0px;
  font-size: 14px;
  padding: 8px 20px;
  background-color: transparent;
  z-index: 111;
  transition: color 0.4s ease;
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "HelveticaNormal", sans-serif;
}
.btn-outline-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ac813c;
  z-index: -1;
  transition: all 0.4s ease;
}
.btn-outline-secondary:hover {
  border: 1px solid #ac813c;
}
.btn-outline-secondary:hover::before {
  left: 0;
}
.btn-outline-secondary span {
  margin-left: 8px;
}
.btn-outline-secondary svg path {
  fill: #ac813c;
  transition: fill 0.3s ease;
}
.btn-outline-secondary:hover svg path {
  fill: white;
}
@media (max-width: 1024px) {
  .btn-outline-secondary {
    font-size: 13px;
  }
}

/* Animation setup */
.underline-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 6s ease forwards;
  animation-play-state: paused;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
    /* reveals the stroke */
  }
}
.swiper {
  width: 100%;
  padding-bottom: 0px;
}
.swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.swiper .swiper-slide .card {
  display: flex;
  background: #1c1c1c;
  color: #fff;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  flex-direction: row;
  border-radius: 0px;
}
.swiper .swiper-slide .card .card-img {
  height: 100%;
  width: 100%;
}
.swiper .swiper-slide .card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper .swiper-slide .card .card-content {
  padding: 30px;
  position: relative;
  width: 80%;
}
.swiper .swiper-slide .card .card-content .card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1rem;
  opacity: 0.3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(128, 129, 104, 0.1411764706);
  color: #808168;
  font-family: "Marcellus", serif;
}
.swiper .swiper-slide .card .card-content h3 {
  font-size: 28px;
  margin: 20px 0 10px;
  font-family: "Marcellus", serif;
}
.swiper .swiper-slide .card .card-content .subtitle {
  font-family: "Marcellus", serif;
  margin-bottom: 15px;
  font-size: 16px;
}
.swiper .swiper-slide .card .card-content p {
  font-size: 14px;
}
.swiper .swiper-slide .card .card-content .btn-view {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
}
.swiper .navignation {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.swiper .navignation::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3b3b3b;
  top: 49%;
  z-index: -1;
}
.swiper .navignation .navigationbtns {
  position: relative;
  display: flex;
  align-items: center;
  height: 120px;
  gap: 40px;
  background-color: #0c0c0c;
}
.swiper .navignation .navigationbtns .swiper-button-next,
.swiper .navignation .navigationbtns .swiper-button-prev {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3215686275);
  justify-content: center;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 10px;
  overflow: hidden;
}
.swiper .navignation .navigationbtns .swiper-button-next::after,
.swiper .navignation .navigationbtns .swiper-button-prev::after {
  display: none;
}
.swiper .navignation .navigationbtns .swiper-button-next img,
.swiper .navignation .navigationbtns .swiper-button-prev img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.swiper .navignation .navigationbtns .swiper-button-next:hover img.default-arrow,
.swiper .navignation .navigationbtns .swiper-button-prev:hover img.default-arrow {
  opacity: 0;
}
.swiper .navignation .navigationbtns .swiper-button-next:hover img.hover-arrow,
.swiper .navignation .navigationbtns .swiper-button-prev:hover img.hover-arrow {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
  transition: all 0.4s;
}
.swiper .navignation .navigationbtns .swiper-button-prev img.hover-arrow {
  transform: translate(150%, -50%);
  opacity: 0;
  transition: all 0.6s;
}
.swiper .navignation .navigationbtns .swiper-button-next img.hover-arrow {
  transform: translate(-150%, -50%);
  opacity: 0;
  transition: all 0.6s;
}

header {
  z-index: 11;
}
header .offcanvas {
  background-color: #000;
}
header .offcanvas .btn-close {
  filter: invert(1);
}
header .offcanvas .btn-close:hover {
  filter: invert(0.8);
}
header .offcanvas-header {
  color: #fff;
}
header .offcanvas-header .btn-close i {
  color: #fff !important;
  background-color: #000 !important;
}
header .line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header .hcontact span {
  cursor: pointer;
  align-items: center;
}
header .hcontact span i {
  font-size: 20px;
}
header .hcontact span:hover {
  color: #ac813c;
  transition: all 0.4s;
}
header .hsocial ul li {
  list-style: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.4s ease;
}
header .hsocial ul li a {
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}
header .hsocial ul li a i {
  font-size: 20px;
  transition: transform 0.4s ease, color 0.4s ease;
}
header .hsocial ul li:hover {
  background-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
header .hsocial ul li:hover a i {
  transform: rotate(360deg) scale(1.2);
  color: #ac813c;
}
header .navbar .navbar-brand {
  position: relative;
}
header .navbar .navbar-brand img {
  width: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
header .navbar .navbar-toggler i {
  color: #fff;
}
header .navbar-nav {
  margin-right: 20px;
}
header .navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-family: "HelveticaNormal", sans-serif;
  padding-inline: 20px !important;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
header .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ac813c;
  transition: all 0.4s ease;
  z-index: -1;
}
header .navbar-nav .nav-link:hover {
  color: #fff;
}
header .navbar-nav .nav-link:hover::before {
  left: 0;
}
header .navbar-nav .nav-link.active {
  color: #fff;
}
header .navbar-nav .nav-link.active::before {
  left: 0;
}
header .navbar-nav .nav-link:active {
  color: #fff;
}
header .navbar-nav .nav-link:active::before {
  left: 0;
}
header .navbar-nav .nav-link.show {
  color: #fff;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  header .hcontact span {
    font-size: 14px;
  }
  header .hcontact span i {
    font-size: 16px;
  }
  header .hsocial ul li a i {
    font-size: 14px;
    transition: transform 0.4s ease, color 0.4s ease;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  header .hcontact {
    gap: 10px !important;
  }
  header .hcontact span {
    font-size: 13px;
  }
  header .hcontact span i {
    font-size: 16px;
  }
  header .hsocial ul {
    gap: 10px !important;
  }
  header .hsocial ul li a i {
    font-size: 14px;
    transition: transform 0.4s ease, color 0.4s ease;
  }
  header .navbar-nav .nav-link {
    padding-inline: 14px !important;
  }
}
@media (max-width: 768px) {
  header .navbar-collapse {
    background-color: #0b0b0c;
    padding: 20px;
  }
  header .dropdown-item.active,
  header .dropdown-item:active {
    background-color: #ac813c;
  }
  header .header-top {
    padding: 0 20px;
  }
  header .hcontact {
    gap: 10px !important;
  }
  header .hcontact span {
    font-size: 13px;
  }
  header .hcontact span i {
    font-size: 16px;
  }
  header .hsocial ul {
    gap: 10px !important;
  }
  header .hsocial ul li a i {
    font-size: 14px;
    transition: transform 0.4s ease, color 0.4s ease;
  }
  header .navbar {
    padding: 0px;
  }
  header .navbar-brand h2 {
    font-size: 25px;
  }
  header .navbar-brand h2 div {
    font-size: 18px !important;
  }
}

@media (min-width: 300px) and (max-width: 640px) {
  header .preheader,
  header .line {
    display: none;
  }
  header .navbar-brand {
    padding: 10px 0px;
  }
  header .navbar-brand h2 {
    margin-bottom: 0;
  }
  header .navbar-toggler {
    border: 0px;
  }
  header .navbar-toggler:focus {
    box-shadow: none;
  }
  header .offcanvas-body {
    text-align: center;
  }
  header .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .navbar-nav .nav-link {
    padding-inline: 0 !important;
    font-size: 16px;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fefff3 !important;
  overflow: hidden;
}
.hero-section .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-section .swiper-slide .bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.hero-section .swiper-slide .bg .hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-section .swiper-slide .bg .hero-content .layer {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero-section .swiper-slide .bg .hero-content .layer h1 {
  font-size: 6rem;
  font-family: "Marcellus", serif;
}
.hero-section .swiper-slide .bg .hero-content .layer p {
  width: 60%;
}
.hero-section .swiper-slide .bg .btn-outline-secondary {
  padding: 12px 20px;
}
.hero-section .swiper-slide .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .swiper-slide .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.728) 100%);
  z-index: 2;
}
.hero-section .swiper-slide .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 20;
}
.hero-section .paginationImg {
  position: absolute;
  bottom: 16%;
  width: 100%;
  height: 200px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
.hero-section .paginationImg .circle-div {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.hero-section .paginationImg .circle-div:hover {
  transform: scale(1.1);
}
.hero-section .paginationImg .circle-div::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 11;
  transition: background 0.3s ease;
}
.hero-section .paginationImg .circle-div.active {
  border: 2px solid rgba(254, 255, 243, 0.568627451);
}
.hero-section .paginationImg .circle-div.active::after {
  background: transparent;
}
.hero-section .paginationImg .circle-div .number {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  font-family: "Marcellus", serif;
  color: #fff;
}
.hero-section .paginationImg .circle-div img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1401px) and (max-width: 1600px) {
  .hero-section {
    height: auto;
  }
  .hero-section .paginationImg {
    bottom: 4%;
  }
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .hero-section {
    height: auto;
  }
  .hero-section .swiper-slide .bg .hero-content .layer {
    width: 100%;
    z-index: 11;
  }
  .hero-section .swiper-slide .bg .hero-content .layer h1 {
    font-size: 5rem;
  }
  .hero-section .swiper-slide .bg .hero-content .layer p {
    width: 60%;
  }
  .hero-section .paginationImg {
    height: 100px;
    align-items: center;
    justify-content: center;
    bottom: 10%;
  }
  .hero-section .paginationImg .circle-div {
    width: 80px;
    height: 80px;
  }
  .hero-section .paginationImg .circle-div .number {
    font-size: 16px !important;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hero-section {
    height: auto;
  }
  .hero-section .swiper-slide .bg .hero-content .layer {
    width: 100%;
    z-index: 11;
    gap: 20px;
  }
  .hero-section .swiper-slide .bg .hero-content .layer h1 {
    font-size: 4rem;
  }
  .hero-section .swiper-slide .bg .hero-content .layer p {
    width: 80%;
  }
  .hero-section .paginationImg {
    height: 100px;
    align-items: center;
    justify-content: center;
    bottom: 5%;
  }
  .hero-section .paginationImg .circle-div {
    width: 80px;
    height: 80px;
  }
  .hero-section .paginationImg .circle-div .number {
    font-size: 16px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section .swiper-slide .bg .hero-content .layer {
    gap: 10px;
  }
  .hero-section .swiper-slide .bg .hero-content .layer h1 {
    font-size: 2.5rem;
  }
  .hero-section .swiper-slide .bg .hero-content .layer p {
    width: 100%;
    font-size: 12px;
    margin-bottom: 0px;
  }
  .hero-section .swiper-slide .bg .btn-outline-secondary {
    padding-block: 8px;
  }
  .hero-section .paginationImg {
    height: auto;
    bottom: 6%;
  }
  .hero-section .paginationImg .circle-div {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .hero-section .swiper-slide .bg .hero-content .layer {
    gap: 20px;
  }
  .hero-section .swiper-slide .bg .hero-content .layer h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .hero-section .swiper-slide .bg .hero-content .layer p {
    width: 100%;
    font-size: 12px;
    margin-bottom: 0px;
  }
  .hero-section .swiper-slide .bg .btn-outline-secondary {
    padding-block: 5px;
    font-size: 10px;
  }
  .hero-section .paginationImg {
    height: auto;
    bottom: 6%;
  }
  .hero-section .paginationImg .circle-div {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 640px) {
  .hero-section .swiper-slide .bg .hero-content {
    top: 60%;
  }
  .hero-section .swiper-slide .bg .hero-content .layer {
    gap: 6px;
  }
  .hero-section .swiper-slide .bg .hero-content .layer h1 {
    font-size: 1.8rem;
  }
  .hero-section .swiper-slide .bg .hero-content .layer p {
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 16px;
    text-align: justify;
  }
  .hero-section .swiper-slide .bg .btn-outline-secondary {
    padding-block: 8px;
  }
  .hero-section .paginationImg {
    display: none;
  }
}
@media (min-width: 300px) and (max-width: 540px) {
  .hero-section .swiper-slide .bg {
    height: 60vh;
  }
  .hero-section .swiper-slide .bg .btn-outline-secondary {
    padding-block: 8px;
  }
}

.curved-shape {
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 103%;
  height: 152px;
  overflow: hidden;
}
.curved-shape .curve {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  overflow: hidden;
  z-index: 1;
}
.curved-shape .curve img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1401px) and (max-width: 1600px) {
  .curved-shape {
    width: 100%;
    height: 130px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .curved-shape {
    width: 100%;
    height: 110px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .curved-shape {
    height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .curved-shape {
    height: 85px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .curved-shape {
    height: 80px;
    bottom: -2%;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .curved-shape {
    height: 66px;
  }
}
@media (max-width: 640px) {
  .curved-shape {
    height: 52px !important;
    width: 100% !important;
  }
}

.getintouchimg .overlay {
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-1 {
  position: relative;
  background: #fefff3;
}
.section-1 .section-title img {
  width: 90px;
  transform: translateY(-5px);
}
.section-1 .leftContent {
  padding-right: 20px;
}
.section-1 .leftContent .bgbtn {
  font-family: "Alexandria", sans-serif !important;
  font-weight: 400;
}
.section-1 .rightContent {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.section-1 .rightContent h2 {
  font-family: "Marcellus", serif;
}
.section-1 .rightContent p {
  padding-right: 30px;
  margin-bottom: 30px;
}
.section-1 .rightContent .btn-outline-secondary {
  font-family: "Alexandria", sans-serif !important;
  font-weight: 300;
}
.section-1 .aboutimg {
  width: 100%;
  height: 100%;
}
.section-1 .aboutimg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-1 .counter .count {
  padding-block: 20px;
}
.section-1 .counter .count h3 {
  font-family: "Marcellus", serif;
  color: #ac813c;
}
.section-1 .counter .count p {
  font-weight: 500;
  font-family: Arial;
  text-transform: capitalize;
  color: #0b0b0c;
}
.section-1 .bottom-shape {
  transform: translateY(50px);
  width: 100%;
  height: 100%;
}
.section-1 .bottom-shape img {
  width: 100%;
  height: 100%;
}
@media (min-width: 1401px) and (max-width: 1600px) {
  .section-1 .rightContent p {
    padding-right: 30px;
    margin-bottom: 0px;
  }
  .section-1 .bottom-shape {
    transform: translateY(43px) !important;
  }
  .section-1 .section-1 .curve {
    width: 130%;
    left: -135px;
    top: -26%;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .section-1 .curve {
    width: 130%;
    left: -135px;
    top: -15%;
    height: 100px !important;
  }
  .section-1 .rightContent p {
    padding-right: 30px;
    margin-bottom: 0px;
  }
  .section-1 .getintouchimg {
    margin-top: 0px !important;
  }
  .section-1 .bottom-shape {
    transform: translateY(38px);
  }
  .section-1 .leftContent p,
  .section-1 .rightContent p {
    font-size: 13px !important;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .section-1 .curve {
    position: absolute;
    width: 135%;
    height: 108px;
    left: -112px;
    top: -15%;
  }
  .section-1 .curve .rightContent {
    padding-left: 0px;
  }
  .section-1 .curve .rightContent p {
    padding-right: 0px;
    margin-bottom: 30px;
  }
  .section-1 .curve .bottom-shape {
    transform: translateY(30px);
  }
  .section-1 .curve .counter .count h3 {
    font-size: 20px;
  }
}
@media (min-width: 640px) and (max-width: 992px) {
  .section-1 p {
    font-size: 15px !important;
  }
  .section-1 .rightContent p {
    padding-right: 0;
    margin-bottom: 0;
  }
  .section-1 .rightContent h2 {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .section-1 .rightContent {
    padding-left: 0px;
  }
  .section-1 .rightContent p {
    padding-right: 0;
    margin-bottom: 0;
  }
  .section-1 .rightContent h2 {
    margin-top: 10px;
  }
  .section-1 .leftContent {
    padding-right: 0px;
  }
}
@media (max-width: 640px) {
  .section-1 p {
    font-size: 15px !important;
    text-align: justify;
  }
  .section-1 .rightContent {
    padding-left: 0px;
    justify-content: start;
  }
  .section-1 .getintouchimg h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .section-1 .aboutimg {
    display: none !important;
  }
}

.projectsection {
  padding-top: 120px;
  background-color: #0c0c0c;
  position: relative;
  overflow: hidden;
}
.projectsection .section-title h2:nth-of-type(2) {
  font-family: "Marcellus", serif;
}
.projectsection .leaf {
  position: absolute;
  top: -8%;
  right: -3%;
  width: 310px;
  height: 310px;
  transform: rotate(-90deg);
  opacity: 0.6;
}
.projectsection .leaf img {
  position: absolute;
  top: 0%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .projectsection .swiper .swiper-slide .card .card-content h3 {
    font-size: 22px;
  }
  .projectsection .swiper .swiper-slide .card .card-content .subtitle {
    font-size: 14px;
  }
  .projectsection .swiper .swiper-slide .card .card-content p:nth-of-type(2) {
    font-size: 11px;
  }
  .projectsection .leaf {
    top: -10%;
    right: -5%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .projectsection .leaf {
    top: -8%;
    right: -8%;
  }
  .projectsection .swiper .swiper-slide .card .card-content {
    padding: 30px;
  }
  .projectsection .swiper .swiper-slide .card .card-content h3 {
    font-size: 40px;
  }
  .projectsection .swiper .swiper-slide .card .card-content .subtitle {
    font-size: 24px;
  }
  .projectsection .swiper .swiper-slide .card .card-content p:nth-of-type(2) {
    font-size: 16px;
  }
  .projectsection .swiper .swiper-slide .card .card-content .card-number {
    top: 8px;
    right: 10px;
  }
  .projectsection .swiper .swiper-slide .card .btn-outline-secondary {
    padding-block: 8px;
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .projectsection .swiper .swiper-slide .card .card-content h3 {
    font-size: 20px !important;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .projectsection {
    padding-top: 90px;
  }
  .projectsection .swiper .swiper-slide .card .card-content h3 {
    font-size: 20px;
  }
  .projectsection .leaf {
    position: absolute;
    top: -8%;
    right: -10%;
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 300px) and (max-width: 540px) {
  .projectsection {
    padding-top: 60px;
  }
  .projectsection .swiper .swiper-slide .card .card-content {
    padding: 10px;
  }
  .projectsection .swiper .swiper-slide .card .card-content .btn-outline-secondary {
    padding-block: 5px;
  }
  .projectsection .swiper .swiper-slide .card .card-content .card-number {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
  }
  .projectsection .swiper .swiper-slide .card .card-content h3 {
    font-size: 20px;
  }
  .projectsection .swiper .swiper-slide .card .card-content p {
    font-size: 16px;
  }
  .projectsection .swiper .swiper-slide .card .card-content p:last-of-type {
    font-size: 13px;
  }
  .projectsection .leaf {
    top: -5%;
    right: -10%;
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 450px) {
  .projectsection .swiper .swiper-slide .card {
    flex-direction: column;
  }
  .projectsection .swiper .swiper-slide .card .card-img {
    height: 200px;
  }
  .projectsection .swiper .swiper-slide .card .card-content {
    width: 100%;
  }
}

.section-3 {
  background-image: url("../img/section-3.png");
  background-position: center;
  background-size: cover;
  width: 100%;
}
.section-3 .section-title h2 {
  font-size: 50px;
  text-align: center;
  font-family: "Marcellus", serif;
}
.section-3 .blackBox {
  width: 325px;
  height: 325px;
  background-color: rgba(133, 128, 128, 0.5803921569);
  border: 0.98px solid #ffffff;
  transition: all 0.5s ease;
  padding: 10px;
}
.section-3 .blackBox .innerBox {
  width: 100%;
  height: 100%;
  background-color: #0c0c0c;
  color: #fff;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-3 .blackBox .innerBox .icondiv {
  border: 1px solid #6d6e6e;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.section-3 .blackBox .innerBox .icondiv img {
  width: 40px;
  height: 40px;
  transition: transform 0.5s ease;
}
.section-3 .blackBox .innerBox h3 {
  font-family: "Marcellus", serif;
  transition: color 0.5s ease;
}
.section-3 .blackBox .innerBox p {
  color: rgba(255, 255, 255, 0.6196078431);
  line-height: 18px;
  transition: color 0.5s ease;
}
.section-3 .blackBox:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}
.section-3 .blackBox:hover .icondiv {
  border-color: #ac813c;
  background-color: rgba(255, 204, 0, 0.1);
}
.section-3 .blackBox:hover .icondiv img {
  transform: rotate(15deg);
}
.section-3 .blackBox:hover h3 {
  color: #ac813c;
}
.section-3 .blackBox:hover p {
  color: #ffffff;
}
.section-3 .centerBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 70px;
}
.section-3 .blackBox {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-3 .blackBox:hover .innerBox {
  transform: rotateY(180deg);
}
.section-3 .blackBox .innerBox {
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}
.section-3 .blackBox .innerBox .front,
.section-3 .blackBox .innerBox .back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 1.6rem;
}
.section-3 .blackBox .innerBox .back {
  transform: rotateY(180deg);
}
@media (max-width: 1024px) {
  .section-3 .section-title {
    margin-bottom: 0 !important;
  }
  .section-3 .section-title h2 {
    font-size: 40px;
  }
  .section-3 .centerBox {
    gap: 30px;
  }
  .section-3 .blackBox {
    width: 250px;
    height: 250px;
    margin-bottom: 0px !important;
  }
  .section-3 .blackBox .innerBox {
    padding-block: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .section-3 .blackBox {
    width: 230px;
    height: 250px;
  }
  .section-3 .blackBox .innerBox {
    padding-block: 0px !important;
  }
  .section-3 .blackBox .innerBox .front,
  .section-3 .blackBox .innerBox .back {
    padding: 6pxgit;
  }
  .section-3 .blackBox .innerBox .icondiv {
    width: 50px;
    height: 50px;
    padding: 10px;
  }
  .section-3 .blackBox .innerBox h3 {
    font-size: 15px;
  }
  .section-3 .blackBox .innerBox p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .section-3 .centerBox {
    gap: 30px;
  }
  .section-3 .blackBox .innerBox {
    padding-block: 0px !important;
  }
  .section-3 .blackBox .innerBox .front,
  .section-3 .blackBox .innerBox .back {
    padding: 1rem;
  }
  .section-3 .blackBox .innerBox .icondiv {
    width: 60px;
    height: 60px;
  }
  .section-3 .blackBox .innerBox h3 {
    font-size: 15px;
  }
  .section-3 .blackBox .innerBox p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 540px) {
  .section-3 .section-title h2 {
    font-size: 30px;
  }
  .section-3 #section-3 .blackBox {
    width: 325px;
    height: 325px;
    margin-bottom: 35px !important;
  }
}
@media (max-width: 350px) {
  .section-3 .section-title h2 {
    font-size: 30px;
  }
  .section-3 .blackBox {
    width: 280px;
    height: 280px;
    margin-bottom: 16px !important;
  }
}

@media (max-width: 540px) {
  .section-title h2 {
    font-size: 30px;
  }
  #section-3 .blackBox {
    width: 325px;
    height: 325px;
    margin-bottom: 35px !important;
  }
}
.section-4 .section-title h2 {
  color: #ac813c;
}
.section-4 .section-title h2:nth-child(2) {
  font-family: "Marcellus", serif;
  color: #0c0c0c;
}
.section-4 .section-title button {
  border: 1px solid #ac813c;
  color: #ac813c;
}
.section-4 .section-title button:hover {
  color: #fff;
}
.section-4 .blog-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section-4 .blog-card .vrline {
  color: #dbdbdb;
}
.section-4 .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.section-4 .blog-card-img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-4 .blog-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.section-4 .blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #ac813c;
}
.section-4 .blog-meta i {
  margin-right: 5px;
}
.section-4 .blog-title {
  color: #0c0c0c;
  font-family: "Marcellus", serif;
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
}
.section-4 .btn-read-more {
  border: 1px solid #ac813c;
  color: #ac813c;
  background: transparent;
  padding-block: 6px;
  padding-inline: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.section-4 .btn-read-more:hover {
  background-color: #ac813c;
  color: white;
}
.section-4 .mobile .btn-outline-secondary {
  border: 1px solid #ac813c;
  color: #ac813c;
}
.section-4 .mobile .btn-outline-secondary:focus {
  color: #fff;
}
@media (max-width: 1024px) {
  .section-4 .blog-title {
    font-size: 16px;
  }
}
@media (min-width: 300px) and (max-width: 540px) {
  .section-4 {
    padding-bottom: 1rem !important;
  }
}

.section-5 {
  background-color: #0c0c0c;
}
.section-5 .section-title h2 {
  color: #ac813c;
}
.section-5 .section-title h2:nth-child(2) {
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 40px;
}
.section-5 .btn-outline-secondary {
  border: 1px solid #ac813c;
  color: #ac813c;
}
.section-5 .btn-outline-secondary:hover {
  color: #fff;
}
.section-5 .swiper-slide {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.section-5 .swiper-slide .testimonial-Card {
  position: relative;
  width: 100%;
  height: 350px;
  background-color: #181a1e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-5 .swiper-slide .testimonial-Card .inner {
  width: 80%;
  height: 80%;
}
.section-5 .swiper-slide .testimonial-Card .inner .user-img {
  position: absolute;
  right: 10%;
  top: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.section-5 .swiper-slide .testimonial-Card .inner .user-img .rating {
  position: absolute;
  width: 50%;
  height: 50%;
  top: -10px;
  right: -30px;
  border-radius: 50%;
}
.section-5 .swiper-slide .testimonial-Card .inner .user-img .rating i {
  color: orange;
  font-size: 20px;
}
.section-5 .swiper-slide .testimonial-Card .inner .quotion {
  text-align: center;
}
.section-5 .swiper-slide .testimonial-Card .inner .content {
  margin-top: 3rem;
}
.section-5 .swiper-slide .testimonial-Card .inner .content h3 {
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .section-5 p {
    font-size: 13px;
  }
}
@media (min-width: 450px) and (max-width: 540px) {
  .section-5 .section-title h2:nth-child(2) {
    font-size: 30px;
  }
  .section-5 .swiper-slide .testimonial-Card .inner .content {
    margin-top: 1rem !important;
  }
}
@media (max-width: 450px) {
  .section-5 .section-title h2:nth-child(2) {
    font-size: 24px;
  }
  .section-5 .swiper-slide .testimonial-Card .inner .content {
    margin-top: 1rem;
  }
  .section-5 .swiper-slide .testimonial-Card .inner .content p {
    font-size: 13px;
  }
  .section-5 .swiper-slide .testimonial-Card .inner .quotion {
    position: relative;
    width: 30px;
    height: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .section-5 .swiper-slide .testimonial-Card .inner .quotion img {
    width: 100%;
    height: 100%;
  }
  .section-5 .swiper-slide .testimonial-Card .inner .user-img {
    top: -30px;
    right: 0;
  }
  .section-5 .swiper-slide .testimonial-Card .inner .user-img .rating {
    right: 0;
  }
  .section-5 .swiper-slide .testimonial-Card .inner .user-img img {
    width: 100%;
    height: 100%;
  }
}

.footer {
  position: relative;
  background-image: url("../img/footer.jpg");
  width: 100%;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.footer::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #0c0c0c 0%, rgba(9, 9, 9, 0.68) 54.33%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 1;
}
.footer .section-title {
  font-family: "Marcellus", serif;
}
.footer .section-title h2 {
  font-size: 40px;
}
.footer #contactForm {
  margin-top: 60px;
}
.footer #contactForm .form-control {
  border-radius: 0px;
  padding-block: 10px;
  font-family: "Alexandria", sans-serif;
  background-color: rgba(255, 255, 255, 0.1215686275);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1568627451);
  font-weight: 300;
}
.footer #contactForm .form-control:focus {
  box-shadow: none;
}
.footer #contactForm ::-moz-placeholder {
  color: #afafaf;
}
.footer #contactForm ::placeholder {
  color: #afafaf;
}
.footer #contactForm textarea {
  height: 200px;
}
.footer #contactForm .btn-outline-secondary {
  padding: 8px 40px !important;
  border: 1px solid #fff !important;
}
.footer .footer-logo img {
  width: 10rem;
}

.footer-section {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
.footer-section a {
  color: #b0b0b0 !important;
  text-decoration: none;
  word-break: auto-phrase;
}
.footer-section .footer-content {
  position: relative;
  z-index: 2;
}
.footer-section .footer-content .brand-section h2 {
  font-size: 40px;
  font-family: "Marcellus", serif;
  line-height: 30px;
  color: #fff;
}
.footer-section .footer-content .brand-section h2 span {
  font-size: 25px;
}
.footer-section .footer-content .brand-section p {
  color: rgba(255, 255, 255, 0.6980392157);
  line-height: 20px;
  font-size: 14px;
  margin-block: 30px;
}
.footer-section .social-icons {
  display: flex;
  gap: 10px;
}
.footer-section .social-icons .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1490196078);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  text-decoration: none;
}
.footer-section .social-icons .social-icon i {
  font-size: 20px;
  color: #fff;
  transition: color 0.4s ease, transform 0.4s ease;
}
.footer-section .social-icons .social-icon:hover {
  background-color: #fff;
  transform: scale(1.1);
}
.footer-section .social-icons .social-icon:hover i {
  color: #ac813c;
  transform: rotate(360deg) scale(1.2);
}
.footer-section .footer-heading {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #ffffff;
  text-transform: uppercase;
}
.footer-section .footer-links {
  list-style: none;
  padding: 0;
}
.footer-section .footer-links li {
  margin-bottom: 12px;
}
.footer-section .footer-links li a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-section .footer-links li a:hover {
  color: #ffffff;
  padding-left: 5px;
}
.footer-section .info-item {
  display: flex;
  margin-bottom: 20px;
  gap: 15px;
  align-items: center;
}
.footer-section .info-item .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.footer-section .info-item .info-icon:hover {
  background: #ac813c;
  transform: scale(1.1);
}
.footer-section .info-item .info-icon i {
  color: #ffffff;
  font-size: 20px;
}
.footer-section .info-item .info-text {
  flex: 1;
  word-break: break-all;
}
.footer-section .info-item .info-text p {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-section .footer-bottom {
  margin-top: 60px;
  padding-block: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-section .footer-bottom .copyright {
  color: #808080;
  font-size: 12px;
}
.footer-section .footer-bottom .powered-by {
  color: #605f5f;
  font-size: 12px;
}
.footer-section .footer-bottom .powered-by span {
  color: #f9b309;
  font-weight: 500;
  font-size: 14px;
}
.footer-section .footer-bottom .powered-by span:nth-child(2) {
  color: #605f5f;
}
@media (max-width: 992px) {
  .footer-section .footer-bottom {
    margin-top: 10px;
    gap: 0;
  }
  .footer-section .footer-bottom .powered-by {
    font-size: 10px;
  }
  .footer-section .footer-bottom .powered-by span {
    font-size: 10px;
  }
  .footer-section .brand-section {
    margin-bottom: 25px;
  }
  .footer-section .brand-section p {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .footer-section .footer-heading {
    margin-bottom: 10px !important;
  }
  .footer-section .footer-links li {
    margin-bottom: 0px !important;
  }
}
@media (max-width: 640px) {
  .footer-section .brand-section p {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .footer-section .footer-bottom .powered-by {
    font-size: 10px;
  }
  .footer-section .footer-bottom .powered-by span {
    font-size: 10px;
  }
  .footer-section .footer-heading {
    margin-bottom: 10px !important;
  }
  .footer-section .footer-links {
    padding-bottom: 9px;
  }
  .footer-section .footer-links li {
    margin-bottom: 0px !important;
  }
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.3) inset !important; /* Match your background color */
  -webkit-text-fill-color: #fff !important; /* Change text color */
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s; /* Prevent color flash */
}

.whatsappchat {
  position: fixed;
  right: 3%;
  bottom: 5%;
  z-index: 100;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=style.css.map */