/*  Topbar */
.topbar {
  background: linear-gradient(90deg, #000, #b8860b, #d4af37, #000);
  color: #fff;
  font-size: 14px;
  flex-wrap: wrap;
}
.topbar .social-icons a {
  color: #fff;
  margin-right: 20px;
  font-size: 16px;
  transition: 0.3s;
}
.topbar .social-icons a:last-child {
  margin-right: 0;
}
.topbar .social-icons a:hover {
  color: #d4af37;
  transform: scale(1.2);
}
.topbar .contact-info {
  color: #fff;
  flex-wrap: wrap;
  gap: 10px;
}

/*  Navbar  */
.custom-navbar {
  background: transparent;
  transition: background 0.5s, box-shadow 0.5s;
  padding: 2px 0;
}
.custom-navbar .navbar-brand .brand-text {
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(90deg, #b8860b, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.custom-navbar .nav-link {
  color: #d4af37 !important;
  margin: 0 14px;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #b8860b, #d4af37);
  transition: width 0.4s;
}
.custom-navbar .nav-link:hover::after {
  width: 100%;
}
.custom-navbar .nav-link:hover {
  transform: translateY(-3px);
}
.small-icon {
  font-size: 12px;
  transition: transform 0.3s ease, color 0.3s;
  color: #d4af37;
}
.custom-navbar.scrolled {
  background: linear-gradient(90deg, #000, #1a1a1a, #000);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Carousel*/
.carousel-item {
  height: 70vh;
  min-height: 400px;
}
.carousel-img {
  max-height: 350px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.custom-caption {
  position: static;
  padding-left: 60px;
  max-width: 500px;
}
.custom-caption h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #212529;
}
.custom-caption p {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 15px 0;
}
.btn-custom {
  border: 2px solid #dc3545;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
}
.btn-custom:hover{
  background: #dc3545;
  color: #fff;
  box-shadow: 0 4px 10px rgba(220,53,69,0.4);
}

/* Image */
.job-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.modal-content {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.modal-header h5 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
}
.modal-body p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 15px;
}
.modal .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
}
.modal .btn-danger {
  border-radius: 30px;
  font-weight: 500;
  padding: 10px;
  transition: 0.3s ease;
}
.modal .btn-danger:hover {
  background: #b8860b;
}

/* Placement Agency Section */
.agency-section {
  background-color: #f5e5bd;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
}
.section-title .highlight {
  color: #b8860b;
  position: relative;
}
.section-title .highlight::after {
  content: '';
  width: 100%;
  height: 4px;
  background: #b8860b;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 2px;
}
.lead {
  font-weight: 500;
  color: #333;
}
ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #444;
}
.btn-dark {
  background-color: #b8860b;
  border: none;
}
.btn-dark:hover {
  background-color: #5c2b2b;
}
.briefcase-img {
  width: 100%;
  height: 100%;
}

/* Who we are */
.placement-info-section {
  font-family: 'Segoe UI', sans-serif;
  color: #2e2e2e;
}
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 5px;
  line-height: 1.1;
  color: #1a1a1a;
  border-bottom: 3px solid #b8860b;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.section-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
  border-left: 4px solid #b8860b;
}
.intro-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #444;
}
.highlight {
  color: #b8860b;
  font-weight: 600;
}
.industry-list {
  padding-left: 20px;
  columns: 2;
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}
.industry-list li {
  margin-bottom: 8px;
  list-style-type: disc;
}
.highlighted-quote {
  margin-top: 10px;
  font-style: italic;
  font-size: 1.05rem;
  border-left: 4px solid #b8860b;
  padding-left: 5px;
  color: #2a2a2a;
}

/* How we support */
.services-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
}
.highlight-text {
  color: #f9d342;
  border-bottom: 3px solid #f9d342;
}
.custom-card {
  background-color: #1a1a1a;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(249, 211, 66, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(249, 211, 66, 0.4);
}
.icon-circle {
  width: 60px;
  height: 60px;
  color: #f9d342;
  border: 2px solid #f9d342;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 1rem auto;
}
.card-title {
  color: #f9d342;
  font-weight: 700;
}
.card-text {
  color: #ccc;
}

/* Advantages Of Working With US */
.advantages-section {
  background-color: #f9f5e1;
  color: #4b2e36;
  width: 100%;
  font-family: Arial, sans-serif;
  border: 2px solid #d85a5a;
  border-radius: 5px;
}
.subheading {
  color: #d4af37;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
}
h2 {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}
.highlight {
  background-color: #f0d6d6;
  padding: 0 8px;
  border-radius: 4px;
}
.description {
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 700px;
}
.list-columns {
  gap: 3rem;
}
.list-column {
  list-style: none;
  padding-left: 0;
}
.list-column li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #5a3b40;
}
.list-icon {
  color: #d85a5a;
  margin-right: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}
.img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(216, 90, 90, 0.35);
}

/* Footer Section */
.footer-section {
  position: relative;
  background: url("../images/footer_image.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 50px 0 10px;
}
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}
.footer-section .container {
  position: relative;
  z-index: 1;
}
.footer-logo {
  max-width: 160px;
  animation: fadeInDown 1.2s ease;
}
.footer-about {
  font-size: 14px;
  line-height: 1.7;
  animation: fadeInUp 1.2s ease;
}
.footer-heading {
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  animation: fadeInLeft 1.2s ease;
}
.footer-heading::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #b8860b, #d4af37);
  display: block;
  margin-top: 5px;
}
.footer-links li {
  margin-bottom: 10px;
  animation: fadeInRight 1.2s ease;
}
.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #d4af37;
  padding-left: 5px;
}
.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: #d4af37;
  transform: translateY(-3px) scale(1.2);
}
.footer-bottom {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9),
    rgba(212, 175, 55, 0.9),
    rgba(0, 0, 0, 0.9)
  );
  font-size: 14px;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
