@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Roboto", serif;
}
.navbar {
  background: #00000024;
  backdrop-filter: blur(6px);
}
#navbarNav {
  margin-left: 30%;
}
@media (max-width: 992px) {
  .navbar-collapse {
    margin-left: 0 !important;
    text-align: center;
  }
}

.nav-item {
  /* font-size: 28px; */
}
.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./imgs/herobg.png") center/cover no-repeat;
}

.navbar-brand img {
  height: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 200px;
}

.hero-title {
  font-size: 4rem;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: white;
  color: #333;
}

.about-section {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.stats-container {
  margin-top: 50px;
}

.stat-item {
  margin-bottom: 30px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #aaa;
}

.carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgb(88 86 86 / 89%);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
}

.projects-section {
  background-color: #1a1a1a;
  color: white;
  position: relative;
}

.section-title {
  margin-left: 120px;
  font-size: 3.5rem;
  margin-bottom: 40px;
}

.services-nav {
  position: relative;
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .services-nav {
    flex-direction: columns;
  }
  .services-nav .first-row {
    margin-left: 0 !important;
  }
  .services-nav .second-row {
    margin-left: 0;
  }
  .section-title {
    margin-left: 0;
  }
}
.services-nav .first-row {
  margin-left: 180px;
  display: flex;
  flex-wrap: wrap;
}
.services-nav .second-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.service-btn {
  padding: 3px 20px;
  height: 2.6rem;
  background: transparent;
  color: white;
  border-radius: 5px;
  border: transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.service-btn.active {
  background-color: #8b7355;
  border: 1px solid rgb(253, 228, 4);
}

.service-btn:hover {
  background-color: red;
  border-color: rgba(139, 115, 85, 0.8);
  color: white;
}
.projects-section {
  background: linear-gradient(0deg, #d6cece -84%, #1a1a1a 48%);
}

.project-showcase {
  position: relative;
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* padding: 50px; */
}

.project-content {
  max-width: 600px;
  margin-left: auto;
  text-align: right;
  opacity: 1;
  display: block;
  right: 53px;
  bottom: 60px;
}

.project-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.project-location {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.project-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.read-more {
  color: yellow;
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #8b7355;
}
.blog-section {
  background-color: #1a1a1a;
  padding: 80px 0;
  color: white;
  overflow: hidden;
}

.blog-title {
  font-size: 3.5rem;
  margin-bottom: 50px;
  padding-left: 50px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
}

.blog-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: scale(0.8);
}

.blog-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 2;
  left: 150px;
  width: 90%;
}

.blog-slide.prev {
  transform: scale(0.8) translateX(-100%);
  opacity: 0.5;
  z-index: 1;
  left: 90px;
}

.blog-slide.next {
  transform: scale(0.8) translateX(100%);
  opacity: 0.5;
  z-index: 1;
  right: 321px !important;
  width: 30%;
}

.blog-card {
  position: relative;
  width: 90%;
  overflow: hidden;
}
.project-showcase {
  align-items: normal;
}

.blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 786px) {
  .blog-image {
    height: 200px;
  }
}

.blog-content {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: #2b2a2a;
}

.blog-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 15px;
}

.blog-heading {
  font-size: 2rem;
  margin-bottom: 15px;
}

.blog-description {
  font-size: 1rem;
  opacity: 0.8;
}

.nav-buttons {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 3;
}
@media (max-width: 768px) {
  .nav-buttons {
    bottom: -79px;
  }
}

.nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  background: transparent;
  color: white;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: red;
}
.testimonial-section {
  background-color: #1a1a1a;
  padding: 80px 0;
  color: white;
}

.testimonial-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  width: 220px;
  transition: transform 0.3s ease;
}

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

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.client-details h5 {
  margin: 0;
  font-size: 0.9rem;
}

.client-details p {
  margin: 0;
  font-size: 0.7rem;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 0.6rem;
  line-height: 1.6;
  padding-left: 20px;
  border-left: 1px solid grey;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.client-details h4 {
  margin: 0;
  font-size: 0.6rem;
}

.client-details p {
  margin: 0;
  font-size: 0.7rem;
  color: #999;
}

.testimonial-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 80px;
  height: 80px;
  background: rgb(88 86 86 / 89%);
  box-shadow: 1px 1px 3px 1px #0000007f;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid white;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: red;
}
.carousel-control-prev i,
.carousel-control-next i {
  font-size: 60px;
}

.carousel-control-prev {
  left: 415px;
  top: 80%;
}
@media (max-width: 800px) {
  .carousel-control-prev {
    left: 0;
    top: 80%;
  }
}

.carousel-control-next {
  /* right: -70px; */
  top: 80%;
}

.carousel-item {
  padding: 20px 0;
}
.careers-section {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 0;
}

.careers-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.careers-subtitle {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 40px;
}

.careers-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px 0;
}

.careers-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.test-button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #dc3546a2;
  backdrop-filter: blur(1px);
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: 1px solid red;
  transition: all 0.3s ease;
}

.test-button:hover {
  background-color: #c82333;
  color: white;
}

.corporate-section {
  background-color: #1a1a1a;
  padding: 60px 0;
  border-top: 1px solid #333;
}

.corporate-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.contact-link {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  display: inline-block;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  border-color: white;
  color: white;
}

.footer {
  background-color: #1a1a1a;
  padding: 60px 0 30px;
  border-top: 1px solid #333;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  right: 172px;
  position: absolute;
  bottom: 10px;
  z-index: 2;
}
.social-links .bi {
  font-size: 20px;
  margin-right: 10px;
}

.social-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
}

.blog-slide.active {
  width: 70%;
}
.blog-slide.next {
  right: 270px;
}

.clients-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.section-title {
  color: white;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
}

.client-logo {
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: 20px auto;
  display: block;
  max-width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  min-height: 120px;
}

.modal {
}
.modal-header {
  background-color: #f8f9fa;
  border-bottom: none;
  padding: 1rem 1.5rem;
}

.modal-title {
  font-weight: 600;
  font-size: 20px;
}

.close-button {
  background: none;
  border: none;
  font-size: 1.5rem;
}

.steps-container {
  /* padding: 2rem; */
}
.question p {
  font-size: 12px;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.step-number {
  background-color: #28a745;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 1rem;
  font-weight: bold;
}

.step-content h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.step-content p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.progress-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.progress-text {
  color: #28a745;
  margin-left: 1rem;
}

.question {
  /* margin-bottom: 1.5rem; */
}

.btn-option {
  margin-right: 1rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  padding: 0.2rem 0.5rem;
  background-color: black;
  border: 1px solid #dee2e6;
  color: white;
  font-size: 8px;
}

.btn-option:hover {
  background-color: #28a745;
  color: white;
  border-color: #28a745;
}

.btn-option.active {
  background-color: #28a745;
  color: white;
  border-color: #28a745;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
}

/* .btn-previous {
  background-color: #dc3545;
  color: white;
  border-radius: 20px;
  padding: 0.5rem 2rem;
}

.btn-next {
  background-color: #dc3545;
  color: white;
  border-radius: 20px;
  padding: 0.5rem 2rem;
} */

.start-test-btn,
.btn-previous,
.btn-next {
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 9px;
  padding: 0.2rem 1rem;
  /* margin: 1rem auto; */
  display: block;
  font-size: 12px;
}

.start-test-btn:hover,
.btn-previous:hover,
.btn-next:hover {
  background-color: rgb(162, 1, 1);
  color: white;
}

.projects-section {
  color: white;
}
@media (max-width: 768px) {
  .project-con {
    flex-direction: column;
    align-items: center;
  }
  .project-image-container {
    position: absolute !important;
    inset: 0;
    height: 100% !important;
    left: -184px !important;
  }
  .project-image{
    opacity: 1;
    display: block;
    scale: 2.1;
    left: 87px;
    top: 56%;
    filter: brightness(0.3);
    height: 400px !important;
  }
  .project-content{
    right: 0;
    bottom: 5px;
    color: #ffff8f !important;
  }
  .project-showcase {
    height: 510px;
  }
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

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

.first-row,
.second-row {
  display: flex;
  gap: 1rem;
}

.service-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #333;
  color: white;
  transition: all 0.3s ease;
}

.project-showcase {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  height: 518px;
}

.project-image-container {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.project-image {
  position: absolute;
  width: 100%;
  height: 809px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
}

.project-image.active {
  opacity: 1;
  display: block;
}

.project-content-container {
  flex: 1;
  position: relative;
}

.project-content {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
  width: 100%;
}

.project-content.active {
  opacity: 1;
  display: block;
}

.project-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.project-location {
  margin-bottom: 1rem;
}

.project-description {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more {
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: calc(2rem + 2vw);
  }

  .hero-subtitle {
    font-size: calc(1rem + 1vw);
  }

  .about-title {
    text-align: center;
  }

  .stats-container {
    margin-top: 2rem;
  }
  .hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  .blog-slide.next {
    right: 0 !important;
  }
  .blog-slide.prev {
    left: 0;
  }
  .blog-slide.active {
    width: 100%;
    left: 10px;
  }
  .service-btn {
    height: auto;
  }
  .left-shadow,
  .right-shadow {
    display: none;
  }
}
.progress-ring {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#28a745 120deg, #ffffff 0deg);
}

.progress-ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: black;
  border-radius: 50%;
}

.progress-text-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 500;
  color: white;
}
.project-image-container {
  position: absolute;
  inset: 0;
  left: -584px;
}
.project-image-container img {
  margin-left: 190px;
}
