
.text-dexter {
    color: #6cdeff;
}

.text-dexter2 {
    color: #1B1F45;
}


.bg-dexter {
    background-color: #1B1F45;
}

.bg-dexter2 {
    background-color: #6cdeff;
}

.bg-dexter-gradient {
  background: linear-gradient(90deg, #1B1F45, #6cdeff);
}


.career-description {
    margin-top: 50px;
  }
  .career-heading {
    color: #6cdeff
  }
  .responsibility-list {
    margin-top: 20px;
    font-size: 1.1rem;
  }
  .responsibility-item {
    margin-bottom: 15px;
  }
  .skills-list {
    font-size: 1.1rem;
    margin-top: 25px;
  }
  .skills-list li {
    margin-bottom: 10px;
  }
  .section-title {
    margin-top: 30px;
    font-weight: bold;
    font-size: 1.3rem;
  }
  .vh-100 {
    height: 100vh;
  }

  .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .caption {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .swiper-container {
    width: 100%;
    height: 100vh;
  }

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

  .swiper-button-next, .swiper-button-prev {
    color: #fff;
  }



 .text-justify {
    text-align: justify !important;
 }

 /* ========================= */
/* 1️⃣ Cover Section Styles */
/* ========================= */

/* Parallax Background */
.parallax-bg {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 100vh;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mouse Movement Effect */
.parallax-mouse {
  transform: translateX(0) translateY(0);
  transition: transform 0.1s ease-out;
}

/* ========================= */
/* 2️⃣ Features Section Styles */
/* ========================= */
.features {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.features.show {
  opacity: 1;
  transform: translateY(0);
}

/* Feature Numbers Styling */
.features h4 {
  font-size: 2.5rem;
  font-weight: bold;
}
.features span {
  font-size: 1.2rem;
  display: block;
  color: #aaa;
}

/* ========================= */
/* 3️⃣ Why Choose Dexter (Accordion) */
/* ========================= */
.accordion-control {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #222;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.accordion-control:hover {
  background: #333;
}
.accordion-control h4 {
  margin-left: 10px;
}

/* Accordion Content */
.accordion-content {
  display: none;
  padding: 10px;
  background: #111;
  border-radius: 5px;
}

/* Active State */
.accordion.active .accordion-content {
  display: block;
}

/* ========================= */
/* 4️⃣ Testimonials Section */
/* ========================= */
.review {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.2);
  transition: transform 0.5s ease;
}
.review:hover {
  transform: scale(1.05);
}
.review-score {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
}

/* ========================= */
/* 5️⃣ Form Section Styles */
/* ========================= */
.form-section {
  background: #f8f9fa;
  padding: 40px 0;
}

/* Form Inputs */
.form-control-minimal {
  border: none;
  border-bottom: 2px solid #ffa500;
  background: transparent;
  padding: 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}
.form-control-minimal:focus {
  border-bottom: 2px solid #ff4500;
  outline: none;
  box-shadow: none;
}

/* Form Button */
.btn-orange {
  background: #ff8c00;
  border: none;
  font-size: 1.2rem;
  padding: 10px 20px;
  transition: 0.3s;
}
.btn-orange:hover {
  background: #ff4500;
}

