* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::first-letter {
  text-transform: capitalize;
}
:root {
  --primary-color: #000;
}
body {
  overflow-x: hidden;
  background-color: #000 !important;
  font-family: body-font;
  color: #fff !important;
}

body::first-letter {
  text-transform: capitalize;
}

.main_heading {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px !important;
}

p {
  line-height: 1.8;
  font-size: 18px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0px;
}
.content {
  margin-top: 100px;
}
.section {
  margin-bottom: 125px !important;
}
/* header  */
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  /* background: linear-gradient(
    to bottom,
    rgb(184 183 183 / 75%),
    rgb(191 191 191 / 22%)
  ); */
  background: linear-gradient(to bottom, rgb(0 0 0), rgb(191 191 191 / 22%));
  box-shadow: 2px 20px 20px 20px rgb(255 255 255 / 14%);
  width: 100%;
  color: white;
  padding: 15px 0 160px 0;
  z-index: 1034;
}

.custom-header-logo {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  /* background: linear-gradient(to bottom, rgb(0 0 0), rgb(191 191 191 / 22%));
  box-shadow: 2px 20px 20px 20px rgb(255 255 255 / 14%); */
  width: 100%;
  color: white;
  padding: 15px 0;
  z-index: 1034;
}
.custom-header-logo img {
  width: 200px;
}
.custom-header .navbar-nav,
.custom-header-logo .navbar-nav {
  display: flex;
  flex-direction: row;
}
.custom-header .navbar-nav .nav-item,
.custom-header-logo .navbar-nav .nav-item {
  padding: 0px 20px;
}
.custom-header .navbar-collapse,
.custom-header-logo .navbar-collapse {
  align-items: unset !important;
}
.nav-link {
  color: white !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  position: relative;
  border-radius: 5px;
  padding: 10px 10px !important;
}
.nav-link:hover {
  color: white !important;
  background-color: #dddddd3d;
  padding: 10px 10px;
}

/* Dropdown Styling */
.dropdown-menu {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  margin: 14px 0px;
  padding: 10px;
  --bs-dropdown-min-width: 14rem !important;
  --bs-dropdown-link-hover-color: #fff !important;
  --bs-dropdown-link-hover-bg: #000 !important;
}
.dropdown-menu a {
  color: white;
  font-size: 14px;
  text-transform: capitalize;
  padding: 8px 15px;
  display: block;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
  background: #000;
  position: absolute;
}
.social-icons a {
  color: #958d89;
  font-size: 20px;
  margin-left: 15px;
}
.social-icons a:hover {
  color: #ddd;
}

/* index page */
/* wlc page */

.wlc_page {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.wlc_page .scroll-container {
  height: 100vh; /* Adjust the height */
  overflow: hidden;
  position: relative;
}

.wlc_page .scroll-content {
  display: flex;
  flex-direction: column;
  animation: scrollUp 120s linear infinite;
}

.wlc_page a img {
  height: 1000px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 8px;
}

/* Keyframes for automatic scrolling */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Duplicate the content to create a continuous loop */
.wlc_page .scroll-content::after {
  content: "";
  display: block;
  height: 100%;
}

.wlc_page .fixed-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  text-align: center;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
  line-height: 0.8em;
}
.wlc_page .fixed-text img {
  width: 100%;
}

/*  portofolio page */

.portfolio_page {
  padding: 19px 0;
}

/* Image Container */
.portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 300px; /* Adjust height as needed */
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.portfolio-item:hover img {
  /* transform: scale(1.1); */
  filter: brightness(30%);
}

/* Centered Text */
.portfolio-item .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: 200;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  text-transform: uppercase;
}
/*  motion page */
.video_sec {
  padding: 19px 0;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
}

video {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Optional for rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow effect */
}

.img_sec img {
  width: 100%;
  height: 300px; /* Adjust height as needed */
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.img_sec img:hover {
  filter: brightness(60%);
}

/* about page */
.about_sec,
.contact_sec {
  background-color: black;
  color: white;
  /* padding: 60px 0; */
}

.image-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 40px;
}

.image-wrapper img {
  width: 100%;
  height: 600px;
  /* border-radius: 5px; */
  display: block;
  z-index: 0;
  position: relative;
}

.image-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: red;
  top: 15px;
  left: -15px;
  position: absolute;
}
.about_sec ul a {
  color: red;
  text-decoration: none;
  list-style: none;
}
.about_sec ul li {
  margin-bottom: 10px;
}

.brand img {
  object-fit: cover;
  width: 100%;
}
.email_subscribed {
  width: 70%;
  max-width: 100%;
  padding-top: 100px;
  margin: auto;
  text-align: center;
}
.email_subscribed .form-control,
.contact_sec .form-control,
.contact_sec .form-select,
.contact_sec textarea {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.email_subscribed .form-control:focus,
.contact_sec .form-control:focus,
.contact_sec .form-select:focus,
.contact_sec textarea:focus {
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.email_subscribed .form-control::placeholder,
.contact_sec .form-control::placeholder {
  color: #fff !important;
}
.contact_sec .form-select option {
  background-color: #fff !important;
  color: #000 !important;
}
.contact_btn {
  background-color: red;
  border: none;
  font-size: 18px;
  border-radius: 5px;
  padding: 10px 40px;
  color: white;
}
footer a,
footer .footer-copyright {
  font-weight: 600;
  font-size: 18px !important;
  color: #555 !important;
  margin-top: 12px !important;
  margin-bottom: 10px !important;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .wlc_page a img {
    height: 300px;
    width: 100%;
  }
  .portfolio-item .overlay-text {
    width: 100%;
    text-align: center;
  }
  .wlc_page .wrapImg {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .wlc_page a img {
    height: 200px;
    width: 100%;
  }
  .wlc_page .fixed-text {
    font-size: 6rem;
  }

  .custom-header {
    /* position: relative; */
    /* background: black; */
    background: linear-gradient(to bottom, rgb(0 0 0), rgb(191 191 191 / 22%));
    padding: 15px 0px;
  }

  .social-icons {
    text-align: center;
    padding: 10px 0;
  }

  .menu-toggle {
    background: none;
    border: none;
    color: #958d89;
    font-size: 24px;
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-nav.active {
    transform: translateY(0);
  }

  .menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
  }

  .custom-header .navbar-nav,
  .custom-header-logo .navbar-nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .nav-link {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
  }

  /* Dropdown menu inside full screen */
  .dropdown-menu {
    display: block;
    background: transparent;
    border: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    text-align: center;
  }

  .dropdown-menu a {
    color: white;
    padding: 10px 0;
    font-size: 18px;
  }
  .email_subscribed {
    padding-top: 0px;
  }
}

@media (max-width: 767px) {
  .wlc_page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
  }

  .fixed-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    text-align: center;
    z-index: 10;
  }
}

@media screen and (max-width: 576px) {
  .wlc_page a img {
    height: 150px;
    width: 100%;
  }
  .wlc_page .fixed-text {
    font-size: 5rem;
  }
  .wlc_page .fixed-text span {
    margin-left: 157px;
  }
  .wlc_page .scroll-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 446px) {
  .wlc_page a img {
    height: 184px;
    width: 100%;
    object-fit: cover;
  }
  .wlc_page .fixed-text {
    font-size: 3rem;
  }
  .wlc_page .fixed-text span {
    margin-left: 100px;
  }
  .email_subscribed {
    width: 100%;
  }
}
