body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  margin: 0;
  color: #ffffff;
  background-color: #0a0e17;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1170px;
  margin: 10px auto;
  padding: 30px;
}

.container img {
  max-width: 100%;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  background: #000;
  color: #fff;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}


.nav ul {
  padding-left: 0;
  list-style: none;
}

.nav ul li {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  padding-left: 30px;
  font-weight: 600;
  transition: 0.32s;
}

.nav ul li a:hover {
  color: #d2c5f1;
}

.nav ul li.login a {
  border: 1px solid #fff;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  display: inline-block;
}

.nav ul li.login a:hover {
  background: #fff;
  color: #090909;
}

.hero {
  background-image: url('futuristic_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.hero .container {
  width: 100%;
}

.hero .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.col-left {
  flex-basis: 50%;
}

.col-left h4 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.col-left h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.col-left p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

.col-right {
  flex-basis: 45%;
}

@media (max-width: 768px) {
  .hero {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    align-items: flex-start;
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero .row {
    flex-direction: column;
    text-align: center;
  }

  .col-left,
  .col-right {
    flex-basis: 100%;
  }

  .col-left h1 {
    font-size: 36px;
  }

  .col-left p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}


/* Standard Navbar Styles matching reference */
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease;
  height: auto;
  padding: 0 !important;
  /* Force removal of all padding */
  width: 100%;
}

.navbar.scrolled {
  background-color: #0a0e17 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-wrapper {
  padding: 0;
  width: 100%;
}

.navbar-brand img {
  height: 1.8rem;
  /* Reduced from 2.5rem */
  margin: 0;
  filter: brightness(0) invert(1);
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  font-size: 1rem;
}

.navbar-nav .nav-link:hover {
  color: #007bff !important;
}

/* Remove the underline effect for a cleaner look like reference */
/* Restore underline effect using ::before to avoid conflict with dropdown caret */
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: -5px;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

@media (max-width: 991px) {
  .navbar {
    background-color: #0a0e17;
    /* Solid dark background on mobile */
    padding: 5px 0 !important;
  }

  .navbar-collapse {
    background-color: #0a0e17;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav {
    margin-top: 10px;
    align-items: flex-start;
  }

  .navbar-nav .nav-link {
    display: block;
    margin: 10px 0;
  }
}

.sec-slide {
  background-color: #0a0e17;
  padding: 0px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-heading {
  text-align: center;
  margin: 0px auto 50px;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00c9ff, #0072ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  padding: 10px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(0, 201, 255, 0.3);
}

@media (max-width: 991px) {
  .features-heading {
    margin-top: -50px;
  }
}

.sec-slide .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.card {
  width: 300px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #151c2f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2d3748;
  padding: 16px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.3s ease;
}

.card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.10);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}

.card:hover img {
  transform: scale(1.1) translateY(-15%);
  height: 73%;
  object-fit: contain;
}

.card:hover .card-body {
  transform: translateY(0);
}

.card .btn:hover {
  background-color: black;
  color: #fff;
}

.button {
  background-color: #00c9ff;
  color: #f9f9f9
}

.main-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.image-side,
.content-side {
  flex: 1 1 50%;
}

.image-side img {
  width: 70%;
  height: 55%;
  object-fit: cover;
  padding-left: 20px;
}

.content-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.card-hover {
  background-color: #151c2f;
  border: 1px solid #2d3748;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.card-hover:hover {
  box-shadow: 0 1rem 2rem rgba(0, 201, 255, 0.15);
  transition: 0.3s ease-in-out;
}

.rounded-2xl {
  border-radius: 1rem;
  height: 12rem;
  width: 17rem;
}

.fs-2 {
  text-align: center;
  padding-right: 20px;
}


@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
  }

  .image-side,
  .content-side {
    flex: 1 1 100%;
    width: 100%;
    padding: 20px;
  }

  .image-side img {
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .content-side {
    padding: 1rem;
  }
}

.image-side {
  height: 85%;
  width: 90%;
  padding: 30px 0 30px 7%;
  object-fit: contain;
}

.card-hover:hover {
  box-shadow: 0 1rem 2rem rgba(0, 201, 255, 0.15);
  transition: 0.3s ease-in-out;
}

.rounded-2xl {
  border-radius: 1rem;
  height: 12rem;
  width: 17rem;
}

.content-side {
  padding: 0 1rem 0 1rem;
  /* padding-right: 1.3rem; */

}

.fs-2 {
  text-align: center;
  padding-right: 20px;
}

.main-container {
  padding-top: 0;
}

.image-side {
  height: 85%;
  width: 90%;
  padding: 30px 0 30px 7%;
  object-fit: contain;
}

.team-section {
  font-family: 'Poppins', sans-serif;
  background: #0a0e17;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.slider-container {
  min-height: auto;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s ease;
}

.carousel-item {

  padding: 120px;
  padding-top: 50px;
  transition: transform 0.5s ease-in-out;
}

@media (max-width: 768px) {
  .carousel-item {
    padding: 0px;
    padding-bottom: 60px;
    /* Space for indicators/arrows */
  }

  .carousel-caption {
    text-align: center;
    padding: 25px 15px;
    width: 95%;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .carousel-caption .d-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .profile-img {
    margin-right: 0 !important;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
  }

  .reviews {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .qoute-img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .role-badge {
    margin-bottom: 10px;
    padding: 4px 12px;
    font-size: 0.85rem;
  }

  /* Move controls to bottom on mobile to avoid overlapping text */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0;
    opacity: 1;
  }

  .carousel-control-prev {
    left: 20%;
  }

  .carousel-control-next {
    right: 20%;
  }

  .carousel-indicators {
    bottom: -40px;
  }
}

.qoute-img {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.reviews {
  color: #e5e7eb;
}

.profile-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s;
  width: auto;
  object-fit: cover;

}

.carousel-caption {
  position: static;
  text-align: start;
  background-color: #151c2f;
  border: 2px solid #2d3748;
  box-shadow: 0 0 20px rgba(235, 237, 237, 0.3);
  border-radius: 20px;
  /* background: none; */
  padding: 20px;
}

.carousel-caption h5 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}

.role-badge {
  background: linear-gradient(to right, #00c9ff, #0072ff);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: inline-block;
  font-weight: 500;
}

.desc-textarea {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: 100px;
  padding: 12px;
  resize: none;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #f9f9f9;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0%);
}

.carousel-indicators [data-bs-target] {
  background-color: #0072ff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

@media (max-width: 576px) {
  .profile-img {
    width: 130px;
    height: 130px;
  }

  .desc-textarea {
    height: 80px;
  }
}

.custom-footer {
  background-color: #000000dd;
  color: #ffffff;
  padding: 20px 0;
}

.custom-footer h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.custom-footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}

.custom-footer a:hover {
  color: #ff6600;
}

.custom-footer i {
  margin-right: 8px;
}

.custom-footer .row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.custom-footer .col-md-3 {
  text-align: center;
  margin-bottom: 15px;
}

.custom-footer .col-md-3 .d-flex {
  flex-direction: column;
  align-items: center;
}

.custom-footer .col-md-3 a {
  font-size: 1rem;
}

.custom-footer .col-md-3 a:last-child {
  margin-bottom: 0;
}

.custom-footer .small {
  font-size: 0.9rem;
  opacity: 0.7;
}

.custom-footer .fw-bold {
  font-weight: bold;
}

.reviews {
  font-size: 15px;
}

.rev-info {

  color: #9ca3af;
  font-size: 13px;
  line-height: 0.5;
}

.navbar .nav-link {
  color: #ffffff !important;
}

.navbar .dropdown-item {
  background-color: transparent;
  color: white;
  transition: background-color 0.2s ease;
}

.dropdown-menu {
  background-color: #0a0e17;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.dropdown-item:hover {
  background-color: #2d3748 !important;
  color: white !important;
}

.navbar-brand img {
  height: 2.9rem;
  margin-top: 1.3rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
  .rounded-2xl {
    width: 100% !important;
    height: auto !important;
    min-height: 12rem;
  }
}