:root {
  --primary-font: "Afacad Flux", serif;
  --base-font-size: 16px;
  --color--black: #161616;
  --brand--color: #ffcf3f;
  --para-color: #fbf0da;
  --section--bg: #fbf0da;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--primary-font);
  font-size: var(--base-font-size);
  background: var(--color--black);
  overflow-x: hidden;
}
p {
  font-size: 1.2rem;
}
/* row column styles */
/* Base Styles */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1200px; /* Customize this for your container width */
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
  flex: 1 1 0%; /* Default flexible column */
  max-width: 100%; /* Default full width */
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
  }
  .col-sm-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .col-sm-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
  .col-sm-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }
  .col-sm-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
  }
  .col-md-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .col-md-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
  .col-md-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }
  .col-md-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
  }
  .col-lg-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .col-lg-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
  .col-lg-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }
  .col-lg-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
  }
  .col-xl-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .col-xl-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
  .col-xl-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }
  .col-xl-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.inner-body {
  overflow-x: hidden;
}
.content {
  display: flex;
  width: max-content; /* Allow content to extend beyond container */
  /* transition: transform 0.1s ease; */
}

.item {
  width: 75vw;
  height: 100vh;
  float: left;
  position: relative;
}
.item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  /* background: url("https://www.toptal.com/designers/subtlepatterns/uploads/moroccan-flower.png"); */
  opacity: 0.3;
  content: "";
  z-index: 2;
}

.item img {
  z-index: 1;
}

.item:nth-child(even) {
  background-color: var(--color--black);
}

.item:nth-child(odd) {
  background: var(--color--black);
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100vw - 40%);
}
nav.home-page {
  position: fixed;
}
nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  margin: 0 2rem;
  position: relative;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  text-shadow: 1px 1px 20px black;
  position: relative;
  padding-left: 0.5vw;
  padding-right: 0.8vw;
  padding-bottom: 0.3vh;
  transition: 0.5s all ease;
}
nav ul li svg {
  position: absolute;
  left: -6px;
  top: -10px;
  width: 90px;
  height: 32px;
  z-index: -1;
}
nav ul li svg line {
  stroke: white;
}

nav ul li svg line:nth-child(1) {
  stroke-width: 1;
}
nav ul li svg line:nth-child(2) {
  stroke-width: 5;
}

nav ul li:hover svg line {
  stroke: var(--brand--color);
}
nav ul li a.active + svg line {
  stroke: var(--brand--color);
}
nav ul li a::before {
  right: 0.3vw;
}
nav ul li a:hover {
  color: var(--brand--color);
  border-color: var(--brand--color);
  transition: 0.5s all ease;
}
nav ul li a:hover::after {
  background-color: var(--brand--color);
  transition: 0.5s all ease;
  animation: grow 0.5s ease forwards;
}
nav ul li a:hover::before {
  background-color: var(--brand--color);
  transition: 0.5s all ease;
  animation: grow 0.5s ease forwards;
}
@keyframes grow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
nav ul li a::after {
  right: 0; /* Adjust distance from text */
}

/* active menu */
nav ul li a.active {
  color: var(--brand--color);
  border-color: var(--brand--color);
}
nav ul li a.active:after {
  background-color: var(--brand--color);
}
nav ul li a.active::before {
  background-color: var(--brand--color);
}

/* ṇavline */
.nav-line {
  position: absolute;
  left: 0;
  width: 0; /** initial width */
  height: 1px;
  background-color: rgb(255 255 255 / 50%);
  bottom: 0;
  box-shadow: 0 0 10px rgb(0 0 0 / 70%);
}

.slide-title-1 {
  color: white;
  position: absolute;
  left: 5vw;
  z-index: 4;
  line-height: 16vh;
  top: 50%;
}
.fancy-title,
.slide-title-1 {
  font-size: 12vh;
}
.fancy-title {
  color: #fff;
  text-align: center;
  position: absolute;
  left: 10%;
  z-index: 4;
  /* background-color: rgb(0 0 0 / 30%); */
  padding: 5px 15px;
}
.item-2 .fancy-title {
  left: 15%;
}
.fit-viewport {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
/* section1 */
.hero {
  width: 66.7%;
  height: 100vh;
  float: left;
}
.hero img {
  object-fit: cover;
  height: 100%;
}
.w-100 {
  width: 100%;
}
.logo-svg {
  width: 33.3%;
  float: right;
  height: 100vh;
  position: relative;
}
.logo-svg svg {
  position: absolute;
  width: 45vw;
  z-index: 4;
  left: 0;
  /* opacity: 0.5; */
  z-index: 4;
}

.char {
  display: inline-block;
  transform: translateX(100px);
  opacity: 0;
}
.white {
  stroke: #fff;
  stroke-width: 1.1;
  stroke-dasharray: 810;
  stroke-dashoffset: 810;
  fill-opacity: 0;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;

  animation-name: DrawLine, FadeStroke, FillIn;
  animation-duration: 3s, 1s, 1s;
  animation-delay: 0s, 3.1s, 3s;
}

.yellow {
  stroke: var(--brand--color);
  stroke-width: 1.1;
  stroke-dasharray: 810;
  stroke-dashoffset: 810;
  fill-opacity: 0;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;

  animation-name: DrawLine, FadeStroke, FillIn;
  animation-duration: 3s, 1s, 1s;
  animation-delay: 0s, 3.1s, 3s;
}

@keyframes offset {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fill-it-lightBlue {
  0% {
    fill: #ffffff;
  }
  100% {
    fill: #0097a7;
  }
}

@keyframes fill-it-darkestBlue {
  0% {
    fill: #ffffff;
  }
  100% {
    fill: #006064;
  }
}

@keyframes fill-it-darkBlue {
  0% {
    fill: #ffffff;
  }
  100% {
    fill: #00838f;
  }
}

@keyframes fill-it-lightestBones {
  0% {
    fill: #ffffff;
  }
  100% {
    fill: #e0f7fa;
  }
}

@keyframes DrawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* @keyframes FadeStroke {
	to { stroke-opacity: 0; }
  } */

@keyframes FillIn {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
  }
}

/* section 2 */
.item-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-2 img {
  height: 50vh;
}

/* section 4 */
.item-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-4 img {
  width: 50vw;
  height: 50vh;
  transition: none;
}
/* Preloader */
.preloader {
  height: 100vh;
  width: 100vw;
  display: flex;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.left-half,
.right-half {
  height: 100%;
  width: 50%;
  background-color: #000;
  position: absolute;
}

.left-half {
  animation: slideLeft 1s forwards;
}

.right-half {
  animation: slideRight 1s forwards;
}

.load-logo {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  animation: fadeOut 1.5s forwards 1s;
}

.load-logo img {
  height: 20vh;
  width: auto;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.left-line {
  height: 0;
  width: 0.15vw;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 10%;
  animation: fadeUp 1s forwards;
}

.right-line {
  height: 0;
  width: 0.15vw;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 10%;
  animation: fadeDown 1s forwards;
}

/* Keyframes */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes fadeUp {
  0% {
    height: 0;
  }
  100% {
    height: 100vh;
  }
}

@keyframes fadeDown {
  0% {
    height: 0;
  }
  100% {
    height: 100vh;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Hide preloader after animation */
.preloader.hidden {
  display: none;
}

/* .main {
  display: none; 
} */

.main.visible {
  display: block; /* Show main content after preloader */
}
.inner-page {
  /* background-color: #fff; */

  width: 100vw;
}
.inner-banner {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.about-page .inner-banner, .services-page .inner-banner {
  background-image: url(../images/7.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.inner-banner::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);

  content: "";
  z-index: 2;
}
.inner-banner .inner-content {
  position: relative;
  z-index: 3;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb {
  color: #fff;

  font-size: 3rem;
  font-weight: bold;
}
.scroll {
  height: 100vh;
  width: 20vw;
  padding-left: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.scroll h4 {
  color: #fff;
  font-size: 1.2rem;

  margin-bottom: 5vh;
}
.about-desc {
  height: 100vh;
  padding-right: 10vw;
  width: 20vw;
  display: flex;

  flex-direction: column;
  justify-content: space-between;
}
.about-desc h4 {
  color: #fff;
  font-size: 1.2rem;

  margin-top: 20vh;
}
.about-desc p {
  margin-bottom: 5vh;
  color: var(--para-color);
  font-size: 1.2rem;
}
.inner-banner .svg {
  height: 100vh;
  width: 60vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
section {
  background-color: var(--color--black);
  position: relative;
  padding: 10vh 20vh;
}
.img_1 .image-container {
  width: 70%;
  margin-left: auto;
  display: flex;
  height: auto;
  position: relative;
  transition: 0.5s all ease;
}
.img_1 .image-container img {
  width: 100%;
}
.image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  pointer-events: none;
  transition: 0.5s all ease;
}
.section-title {
  position: absolute;
  top: 10%;
  font-size: 8.86rem;
  font-weight: bold;
  color: #fff;
}
.image-container:hover {
  transition: 0.5s all ease;
  transform: scale(1.1);
}
/* .image-container:hover::after {
  opacity: 0;
  transition: 0.5s all ease;
} */

.about-content p {
  font-size: 1.2rem;
}
.about-content {
  width: 50%;
  position: absolute;
  background: #000;
  right: 10.8%;
  padding: 30px;
  top: 63%;
  line-height: 1.2;
}
.about-content p {
  color: var(--para-color);
}
.vm {
  background: url(../images/vm-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.vm .vm-head h2 {
  font-size: 15rem;
  mask-image: linear-gradient(#0000 0%, #fff 0%, #0000 85% 100%);
  color: #f3f1f2;
  text-align: center;
  font-weight: bold;
}
.vm p {
  color: var(--para-color);
  text-align: center;
  margin: 5vh 0;
  padding: 0 25vw;
}
a.btn {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: width 0.3s ease;
  padding-bottom: 1vh;
}
a.btn::after {
  content: "";
  position: absolute;
  bottom: 0; /* Position the line at the bottom of the button */
  left: 0;
  width: 100%; /* Initially full width */
  height: 2px; /* Line thickness */
  background-color: #fff; /* Line color */
  transition: width 0.3s ease; /* Smooth transition */
}

a.btn:hover::after {
  width: 0%; /* On hover, width reduces to 0 */
  transition: width 0.3s ease;
}
.vision,
.mission {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mission {
  margin-top: 10vh;
}
footer h2 a {
  font-size: 10rem !important;
  text-align: center;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}
footer h2 {
  text-align: center;
}
footer {
  border-top: 1px solid #f3f1f1;
  padding: 10vh 20vh;
}
footer p {
  text-align: center;
  color: var(--para-color);
}
.footer-content img {
  height: 10vh;
  margin: 0 auto;
  display: flex;
  margin-top: 10vh;
}
.footer-content ul li {
  display: inline-block;
  padding: 0 10vh;
}
.footer-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vh;
}
footer .copyrights span {
  color: var(--brand--color);
}
footer .copyrights {
  margin-top: 10vh;
}

.clients img {
  width: 50%;
}
.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  width: 100%;
  position: sticky;
}
.card {
  padding: 20px;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  width: 80%;
  align-items: flex-start;
  padding: 0 5rem 10rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 1.25em;
  transform-origin: center top;
  height: 70vh;
}
.why .section-title {
  position: absolute;
  top: -1%;
  text-align: center;
  /* margin: 0 auto; */
  /* display: flex
; */
  width: 100%;
  left: 0;
  margin-top: 10vh;
  text-shadow: 1px 1px 20px black;
  z-index: 4;
}
.cards .card:nth-child(1) {
  background: url(../images/16.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.cards .card:nth-child(2) {
  background: url(../images/12.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.cards .card:nth-child(3) {
  background: url(../images/13.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.cards .card:nth-child(4) {
  background: url(../images/14.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.cards .card:nth-child(5) {
  background: url(../images/15.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.why-choose {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
  z-index: 4;
}
.card::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  content: "";
  z-index: 2;
}
.why-choose h3 {
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
}
.card-num {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
.clients img {
  filter: brightness(0) invert(1);
  margin: 0 auto;
  display: flex;
  transition: all 0.5s ase;
}
.clients img:hover {
  transition: all 0.5s ease;
  filter: auto;
  filter: brightness(1) invert(0);
}
.clients img {
  padding: 5vh 0;
  width: 30%;
}
/* contact page */
form .form-row {
  margin-top: 2.5rem;
}
form .form-row input {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 1.0625rem;
  border-bottom: 0.0625rem solid var(--para-color);
  outline: none;
  background-color: transparent;
}
form .form-row textarea {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 1.0625rem;
  border-bottom: 0.0625rem solid var(--para-color);
  outline: none;
  background-color: transparent;
  color: white;
}
.form-row input:focus ~ label,
.form-row textarea:focus ~ label,
.form-row input:valid ~ label,
.form-row textarea:valid ~ label {
  transform: translateY(-1.25rem);
  font-size: 0.875rem;
  color: var(--brand--color);
}
.form-row {
  position: relative;
}
.form-row textarea {
  resize: none;
  padding-top: 0.625rem;
}
.form-row label {
  position: absolute;
  pointer-events: none;
  bottom: 0.625rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--para-color);
}
.form-row .under {
  position: absolute;
  bottom: 0;
  height: 0.0625rem;
  width: 100%;
}
.form-row .under:before {
  position: absolute;
  content: "";
  height: 0.0625rem;
  width: 100%;
  background: var(--brand--color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.form-row input:focus ~ .under:before,
.form-row input:valid ~ .under:before,
.form-row textarea:focus ~ .under:before,
.form-row textarea:valid ~ .under:before {
  transform: scale(1);
}

form button {
  margin-top: 1.5625rem;
  background-color: #fff;
  color: #000;
  padding: 0.625rem 1.875rem;
  border-radius: 0.3125rem;
  background-image: -moz-linear-gradient(
    top,
    var(--brand--color) 0%,
    #fff 100%
  );
  background-image: -webkit-linear-gradient(
    top,
    var(--brand--color) 0%,
    #fff 100%
  );
  background-image: linear-gradient(
    to bottom,
    var(--brand--color) 0%,
    #fff 100%
  );
  background-size: 18.75rem;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 500ms ease-in-out;
  transition: background 500ms ease-in-out;
  border: none;
}
form button:hover {
  background-position: -200%;
  transition: background 700ms ease-in-out;
  background-color: #fff;
}
.contact-content h4 {
  color: var(--para-color);
  font-size: 3rem;
}
.contact-content p {
  color: var(--para-color);
  margin: 1rem 0;
  padding-right: 5rem;
}
.contact-content a {
  display: flex;
  align-items: center;
  color: var(--para-color);
}
.contact-content img {
  margin-right: 0.5rem;
}
.contact-content a.btn:after {
  display: none;
}
.contact-content a img {
  height: 24px;
  width: 24px;
}

/* works */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex; /* Ensures the slides are arranged horizontally */
}

.slide {
  flex: 0 0 100%; /* Each slide takes full width */
  height: 100%;
  position: relative; /* Keep images positioned correctly */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .overlay {
  position: absolute;
  width: 50vw;
  height: 70vh;
  top: 15vh;
  left: 25vw;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.nav-buttons {
  position: absolute;
  bottom: 5vh;
  width: 10vw;
  left: 8vw;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-buttons button {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-buttons button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bullets {
  position: absolute;
  bottom: 5vh;
  width: 10vw;
  right: 8vw;
  display: flex;
  justify-content: end;
  gap: 20px;
  z-index: 10;
  align-items: end;
}

.bullet {
  min-width: 0.2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  border-radius: 100vw;
  cursor: pointer;
}

.bullet.active {
  height: 3rem;
  background: var(--brand--color);
}
.work_1 {
  position: relative;
  height: 100vh;
}
.work_1:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.caption {
  position: absolute;

  top: 88vh;
  left: 35vw;
  z-index: 2;
}
.caption .name {
  font-size: 3rem;
  color: var(--para-color);
}
.caption .place {
  font: 2rem;
  color: var(--para-color);
}
/* single work */
.work-bg {
  height: 100vh;
  width: 100vw;
  background: url(../images/4.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.work-bg:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.work-content {
  position: relative;
  z-index: 3;
  color: var(--para-color);
  padding-left: 10vw;
}
.work-title {
  font-size: 10rem;
  font-weight: bold;
}
.work-place {
  margin-top: 3vh;
}
.work-details {
  padding: 5vw 10vw;
}
.work-img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}
.work-info h4 {
  color: var(--para-color);
  font-size: 1.2rem;
}
.work-info {
  padding-left: 5vw;
}
.work-info p {
  color: var(--para-color);
  margin: 5vh 0;
}

.work-info ul li {
  color: var(--para-color);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.025rem solid var(--brand--color);
}
.work-info ul li:last-child {
  border-bottom: none;
}
.work-info ul {
  margin: 5vh 0;
}
.work-info ul li span:nth-child(1) {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.work-info span {
  width: 50%;
  text-align: left;
}
/* news */
.news-content {
  padding: 10vh 20vw;
}
.news-content img {
  border-radius: 10px;
  transition: 0.5s all ease;
  object-fit: cover;
  height: 175px;
}
.news-content img:hover {
  scale: 1.1;
  transition: scale 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-thumb {
  overflow: hidden;
  border-radius: 10px;
}
.news-caption {
  color: var(--para-color);
  font-size: 2rem;
  padding: 3rem 0;
}
.news-date:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: hsla(0, 0%, 100%, 0.5);
  border-radius: 2px;
  height: 0.2rem;
}
.news-date {
  position: relative;
  color: var(--para-color);
  padding-top: 1rem;
}
.news {
  padding: 0 1rem;
}
.mt-3 {
  margin-top: 5rem;
}
.news-content a {
  text-decoration: none;
}
.single-news {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/4.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}
.single-news:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  z-index: 2;
}
.news-desc {
  position: relative;
  z-index: 3;
  padding: 0 10vw;
}
.news-desc p {
  color: var(--para-color);
}
.single-news img {
  width: 90%;
}

/* services grid */
.services-grid {
    padding: 50px 20px;
    text-align: center;
    background-color: #000000;
}
.services-grid .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.services-grid .grid-item {
    color: white;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.services-grid .grid-item img {
    height: 120px;
    width: auto;
    object-fit: cover;
}
.services-grid .grid-item h4 {
    margin-top: 15px;
    font-size: 1.5em;
}
.services-grid .grid-item p {
    margin-top: 10px;
    font-size: 1em;
}


.services-grid {
    padding: 50px 20px;
    text-align: center;
    background-color: #000000;
}
.services-grid .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.services-grid .grid-item {
    color: white;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.services-grid .grid-item img {
    height: 120px;
    width: auto;
    object-fit: cover;
}
.services-grid .grid-item h4 {
    margin-top: 15px;
    font-size: 1.5em;
}
.services-grid .grid-item p {
    margin-top: 10px;
    font-size: 1em;
}


.services-second-grid {
    padding: 0px 20px;
    text-align: center;
}
.services-second-grid .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.services-second-grid .grid-item {
    color: white;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.services-second-grid .grid-item img {
    height: 450px;
    width: auto;
    object-fit: cover;
    max-width: 100%;
}
.services-second-grid .grid-item h4 {
    margin-top: 15px;
    font-size: 1.5em;
}
.services-second-grid .grid-item p {
    margin-top: 10px;
    font-size: 1em;
}


.social-iframe {
  position: fixed;
		right: 2%;
		bottom: 5%;
    width: 89px;
    height: 44px;
		z-index: 1000;
    overflow: hidden;
}


/* New keyframe to remove stroke (bump on stroke) */
@keyframes RemoveStroke {
  to {
    stroke: none;
  }
}

/* Apply stroke removal to first and last path */
.white:first-of-type,
.white:last-of-type {
  animation-name: DrawLine, FillIn, RemoveStroke;
  animation-duration: 3s, 1s, 0.1s;
  animation-delay: 0s, 3s, 1.1s; /* Remove stroke after FillIn */
}

.d-none-desktop {
  display: none;
}

.mobile-nav,  .mobile-logo{
  visibility: hidden;
  pointer-events: none;
}


@media (max-width: 768px) {
  .d-none-desktop {
    display: block;
  }
  .fancy-title, .slide-title-1 {
    font-size: 3rem;
    line-height: 1.5;
    top: 60%;
  }
  .inner-banner {
    height: auto;
  }
  .inner-banner .inner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .inner-banner .inner-content .scroll {
    display: none;
  }
  .inner-banner .svg {
    height: 300px;
    align-items: end;
  }
  .news-content {
    padding: 50px;
  }
  .inner-banner .about-desc {
    width: 80%;
    height: auto;
    padding-right: 0;
    margin: 20px 0;
  }
  .section-title {
    font-size: 3rem;
    position: static;
    text-align: center;
  }
  .img_1 .image-container {
      width: 100%;
      margin-bottom: 50px;
  }
  section {
    padding: 2vh 2vh;
  }
  .about-content {
    width: 100%;
    position: static;
    padding: 0;
    margin: 20px 0;
    padding: 15px;  
  }
  .vm .vm-head h2 {
    font-size: 8rem;
  }
  .vm p {
    padding: 50px;
  }
  .why .section-title {
    position: static;
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .why-choose h3 {
    font-size: 3rem;
  }
  .clients {
    margin: 50px 0;
  }
  .clients .row {
    flex-direction: column;
  }
  .breadcrumb {
    display: none;
  }
  .slide .overlay {
    left: 10vw;
  }
  .about-desc p {
    text-align: center;
  }
  footer h2 {
    margin-bottom: 20px;
  }
  footer h2 a {
    font-size: 2rem !important;
  }
  .services-grid .grid-item {
    width: 50%;
    max-width: calc(50% - 20px);
    flex: 1 1 calc(50% - 20px)
  }
    .services-second-grid .grid-item {
    width: 100%;
    max-width: calc(100% - 20px);
    flex: 1 1 calc(100% - 20px)
  }
  .single-news{
    height: auto;
    padding: 200px 0;;
  }
  .single-news img {
    margin-bottom: 30px;
  }
  .logo-svg {
    display: none;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0);
    z-index: 1000;
    transform: none !important;
    display: none;
  }
  nav img {
    visibility: hidden;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  nav ul li {
    margin: 10px;
  }
  .mobile-nav {
    visibility: visible;
    pointer-events: auto;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    background-color: white;
    padding: 5px 10px;
    cursor: pointer;
  }
  .mobile-logo {
    visibility: visible;
    pointer-events: auto;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
  }
  footer {
    padding: 50px 10px;
    border-top-color: #ffffff1c;
  }
  .footer-content ul {
    flex-direction: column;
    align-items: center;
  }
  .footer-content ul a.btn {
    padding: 0;
    margin-bottom: 10px;
    display: block;
  }
  section.contact-content {
    margin: 30px;
  }
}