/* General Styles */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

/* Navigation */
.navbar {
  padding: 1.5rem 0;
  transition: background-color 0.3s;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;
}

.nav-link {
  color: white !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s;
  font-size: 1.4rem;
}

.nav-link:hover {
  color: #ffc107 !important;
}

.navbar-collapse {
  flex-grow: unset;
}

/* Hero Section */
.hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1464938050520-ef2270bb8ce8?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  max-width: 700px;
}

.hero-content__title {
  font-size: 5rem;
}

.hero-content__desc {
  font-size: 1.6rem;
  font-weight: 400;
}

/* Location */
.location {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 400px;
  background-color: #fff;
  color: #000;
  padding: 2rem;
}

.location__content {
  padding-left: 8rem;
  font-size: 1.4rem;
}

.location__desc {
  color: #666666;
}

/* Sidebar */
#sidebarToggle i {
  font-size: 1.6rem;
}

.sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1050;
  transition: right 0.3s ease-in-out;
}

.sidebar.active {
  right: 0;
}

.sidebar-content {
  padding: 8rem 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Mobile Navigation Styles */
.mobile-nav {
  margin-bottom: 4rem;
}

.mobile-nav .navbar-nav {
  padding: 0;
}

.mobile-nav .nav-item {
  margin: 1rem 0;
}

.mobile-nav .nav-link {
  color: white !important;
  font-size: 1.6rem;
  padding: 1rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.mobile-nav .nav-link:hover {
  color: #ffc107 !important;
}

.sidebar-body {
  margin-top: 0;
  text-align: end;
}

.sidebar-body__title {
  color: white;
  font-weight: 400;
  margin-top: 2rem;
}

.sidebar-body__btn {
  background-color: transparent;
  color: #fbcc0c;
  border: none;
  font-size: 2.4rem;
}

.close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.social-links {
  display: flex;
  justify-content: end;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: black;
}

/* Modal */
.modal-content {
  background-color: transparent;
  border: none;
}

.btn-close {
  background-color: white;
  opacity: 1;
}

/* CSS ABOUT SECTION */
.about-us {
  padding-bottom: 8rem;
}

.company-info {
  padding: 8rem 0px;
}

.company-details__title {
  color: #1c3f3c;
  font-size: 1.6rem;
  font-weight: 400;
}

.company-details__heading {
  font-size: 3.6rem;
  color: rgba(9, 9, 9, 1);
}

.company-details__desc {
  color:  rgba(9, 9, 9, 1);;
  font-size: 1.6rem;
  text-align: left;
  line-height: 3.5rem;
  font-weight: 400;
}

.content-box__left {
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;;
  position: relative;
  left: 50px;
  z-index: 1;
}

.about-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-text {
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.learn-more {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  font-size: 1.2rem;
}

.learn-more:hover {
  opacity: 0.7;
}

.video-container {
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .play-button {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
} */

.play-button span {
  font-size: 24px;
  line-height: 1;
}

.video-wrapper:hover .play-button {
  transform: scale(1.1);
}

.modal-body {
  padding: 0;
  position: relative;
}

.btn-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
  background-color: white;
  opacity: 1;
  padding: 0.5rem;
  border-radius: 50%;
}

/* CSS WHY CHOOSE US SECTION */
.why-choose-us {
  padding: 8rem 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-choose-us__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}

.why-choose-us__heading {
  font-size: 3.6rem;
}

.why-choose-us__change {
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: end;
}

.feature-container {
  display: flex;
  justify-content: center;
  position: relative;
  max-height: 300px;
  z-index: 1;
}

.feature-column {
  display: flex;
  flex-direction: column;
  width: 280px;
}

.right-column {
  margin-top: 100px; /* Creates the staggered effect */
}

.feature-box {
  background: #ffffff;
  box-shadow: #2c9be526 0px 7px 29px 0px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-box__desc {
  font-size: 1.4rem;
  font-weight: 400;
  color: #666666;
}

.feature-box:nth-child(1) {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.feature-box:nth-child(2) {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 0px;
}

.feature-box__three {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.feature-box__four {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px !important;
}

.feature-box:hover {
  box-shadow: 0px 4px 40px 0px #2c9be526;
}

.feature-box .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

.feature-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CSS OUR COLLECTION SECTION */
.our-collection {
  padding: 35rem 0px 0px 0px;
}

.our-collection__title {
  font-size: 1.6rem;
  font-weight: 400;
}

.our-collection__heading {
  font-size: 3.6rem;
  margin-bottom: 4rem;
  font-weight: 550;
}

/* CSS SLIDER PROJECT SECTION */
.section__slider-project{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 500px;
  display: flex;
  align-items: end;
}

.section__slider-project-col{
  padding: 0px;
}

.section__slider-project-content{
  background-color: rgba(28, 63, 60, 1);
  border-top-left-radius: 8px;
  height: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.section__slider-project-description{
  line-height: 2.5rem;
}

.section__slider-project-link{
  color: rgba(255, 203, 2, 1);
}

/* CSS OUR PROCESS SECTION */
.our-process{
  padding-top: 8rem;
}

.our-process__heading {
  font-size: 2.8rem;
  color: rgba(28, 63, 60, 1);
  font-size: 3.6rem;
  font-weight: 550;
}

.process-card {
  padding: 7rem 3rem;
  box-shadow: 0px 0px 40px 0px rgba(44, 155, 229, 0.15);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
}

.process-title {
  color: rgba(24, 28, 37, 1);
  margin: 2rem 0px;
}

.process-description {
  color: rgba(102, 102, 102, 1);
  font-size: 1.4rem;
}

/* CSS LINE SECTION */
.section__line {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* CSS PARTNER & CUSTOMERS SECTION */
.section-tab__slider {
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(105, 123, 143, 0) 0%,
    rgba(105, 123, 143, 0.101042) 49.48%,
    rgba(105, 123, 143, 0) 100%
  );
}

.section-tab__slider-track {
  width: 1800px;
  animation: scroll 10s linear infinite;
}

.section-tab__slider-slide {
  height: 150px;
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: center !important;
}

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

  100% {
    transform: translateX(-500px);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(-500px);
  }

  100% {
    transform: translateX(0px);
  }
}

/* CSS OUR PROJECT SECTION */
.section__projects {
  padding-top: 8rem;
}

/* CSS FLIP SECTION */
.section_flip {
  padding: 4rem 0px;
  background: linear-gradient(274.93deg, #000000 0.68%, #384151 95.24%);
}

.flipbox-container {
  margin: 30px auto;
}

.flipbox-wrapper {
  min-height: 450px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  transition: 0.6s linear;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.flipbox-wrapper:hover {
  transform: rotateY(-180deg);
}

.flipbox-front,
.flipbox-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  backface-visibility: hidden;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  transform-style: preserve-3d;
}

.flipbox-front {
  position: relative;
}

.flipbox-front:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

.flipbox-back {
  background: rgba(255, 203, 2, 1);
  position: absolute;
  transform: rotateY(-180deg);
  height: 100%;
  width: 100%;
}

.transform-top .flipbox-back,
.transform-bottom .flipbox-back {
  transform: rotateX(-180deg);
}

.flipbox-content {
  padding: 30px;
  text-align: left;
  color: #fff;
  transform-style: preserve-3d;
  transform: translateZ(50px);
}

.flipbox-content h3 {
  font-size: 32px;
  line-height: 1;
  margin: 0;
}
.flipbox-content h4 {
  font-size: 24px;
  line-height: 1;
  margin: 0 0 16px;
}
.flipbox-content p {
  font-size: 16px;
  line-height: 1.5;
}

.flipbox-button {
  background: #300;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  padding: 8px 24px;
  border-radius: 4px;
  color: #fff;
}

/* CSS OUR TEAM SECTION */
.section__teams {
  padding: 8rem 0px;
}

.section__teams-tab{
  display: flex;
  justify-content: center;
}

.section__teams-tab .nav-pills {
  box-shadow: 0px 0px 40px 0px rgba(44, 155, 229, 0.15);
  width: 500px;
  padding: 1rem 0px;
  border-radius: 30px;
}

.nav-pills .nav-link {
  color: rgba(130, 130, 130, 1)!important;
  background: none;
  border-radius: 50px;
  padding: 8px 24px;
  margin: 0 5px;
  width: 120px;
}

.nav-pills .nav-link.active {
  border: 1px solid rgba(219, 219, 219, 1);
  background: #fff;
  color: #000!important;
}

.tab-content{
  margin-top: 1.5rem;
}

/* Job Card Styling */
.job-card {
  height: 300px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
  z-index: 1;
}

.job-card:hover::before {
  background: url('../images/team.jpeg');
}

.job-card-inner {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location {
  font-size: 14px;
  margin-bottom: 10px;
}

.job-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.job-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

.view-detail {
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

/* View More Card Styling */
.view-more-card {
  height: 300px;
  background-color: #f5f5f5;
  border-radius: 15px;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.view-more-content h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.view-more-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 5rem 0px;
}

/* .testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
} */

.testimonial-slider {
  position: relative;
  padding: 40px;
  background-color: rgba(28, 63, 60, 1);
  border-radius: 20px;
  margin-bottom: -80px
}

.testimonial-content {
  color: #fff;
}

.testimonial-text {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 30px;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.author-title {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.testimonial-navigation {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
}

.testimonial-button-prev,
.testimonial-button-next {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
  background: #fff;
  color: #1E2832;
}

.swiper-pagination {
  position: relative;
  bottom: 0;
  text-align: left;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.testimonial-image {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
  .testimonial-slider {
      margin-bottom: 30px;
  }
  
  .testimonial-text {
      font-size: 20px;
  }
}

@media (max-width: 767px) {
  .testimonials {
      padding: 60px 0;
  }
  
  .testimonial-text {
      font-size: 18px;
  }
  
  .testimonial-slider {
      padding: 30px;
  }
}


/* CSS LATEST NEWS SECTION */
.latest-news {
  padding-top: 8rem;
}

.view-all {
  background: rgba(42, 109, 201, 0.1);
  padding: 1rem 2rem;
  color: black;
  font-weight: 500;
  border-radius: 10px;
}

.news-card {
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card__content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.news-card__image {
  position: relative;
  overflow: hidden;
}

.news-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
  border-radius: 20px;
}

.news-card__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.news-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}

.badge {
  padding: 0.5rem 1rem;
  font-weight: 500;
  background: rgba(128, 128, 128, 0.55);
  color: white;
  border-radius: 6px;
}

.top-3 {
  top: 2rem;
}

.start-3 {
  left: 2rem;
}

/* CSS CONTACT US SECTION */
.section__contact {
  padding: 8rem 0px;
}

.contact-form {
  max-width: 500px;
}

.map-container {
  position: relative;
  height: 100%;
  min-height: 600px;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: #f8f9fa; /* Placeholder color */
  position: relative;
}

.info-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  width: 70%;
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.custom-input {
  background-color: #f8f9fa;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
}

.custom-input:focus {
  background-color: #f8f9fa;
  box-shadow: none;
  border: 1px solid #dee2e6;
}

.input-group-text {
  background-color: #f8f9fa;
  border: none;
  padding: 12px 16px;
}

textarea.custom-input {
  min-height: 120px;
  resize: none;
}

.send-btn {
  background-color: #ffd700;
  border: none;
  padding: 10px 30px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.send-btn:hover {
  background-color: #ffcd00;
  color: #fff;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.office-info {
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

.office-info:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* CSS FOOTER */
.footer {
  padding-top: 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.footer__logo {
  max-width: 150px;
  height: auto;
}

.footer__tagline {
  font-size: 1.4rem;
}

.footer__social-link {
  color: black;
  font-size: 1.4rem;
  transition: color 0.3s ease;
  display: flex;
  width: 30px;
  height: 30px;
  background-color: white;
  line-height: 30px;
  border: 1px solid #ececec;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer__social-link:hover {
  color: #212529;
  color: white;
  background-color: black;
  border: none;
}

.footer__title {
  font-weight: 400;
  color: #212529;
  font-size: 1.6rem;
}

.footer__list {
  margin: 0;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
  display: block;
  padding-bottom: 10px;
}

.footer__link:hover {
  color: rgba(255, 203, 2, 1);
}

.footer__copyright {
  color: #6c757d;
  font-size: 1.4rem;
  margin: 0;
}

.footer__contact-mail-icon {
  background: rgba(255, 255, 255, 0.2);
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: rgba(255, 203, 2, 1);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: black;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }

  .sidebar {
    width: 100%;
    right: -100%;
  }

  .sidebar-content {
    padding-top: 6rem;
  }

  .map-container {
    margin-top: 30px;
  }

  .info-box {
    margin-top: 20px;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .buttons .btn {
    width: 100%;
  }

  .job-card {
    height: 250px;
  }

  .job-card p {
      display: block;
      font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .contact-form {
    padding: 15px;
  }

  .info-box {
    padding: 15px;
  }

  .content-box__left {
    position: unset;
    left: 0px;
    z-index: 0;
  }
  
	.section__slider-project{
		height: unset;
	}
	
	.our-collection{
		padding-top: 45rem;
	}
}

