/*header*/
    :root {
      --primary-color: #fed700;
      --text-dark: #fff;
      --bg-white: #fff;
      --bg-black: #000;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg-white);
      color: var(--text-dark);
    }

    /* Topbar Styles */
    .topbar {
      background: var(--primary-color);
      font-size: 14px;
      padding: 8px 0;
      color: #000;
    }

    .topbar a {
      text-decoration:none;
    }

    .topbar i {
      color: #fff;
    }

    .topbar .social-icon {
      width: 32px;
      height: 32px;
      background: #000;
      color: #fed700 !important;
      border-radius: 50%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      margin-left: 8px;
      transition: all 0.3s ease;
    }

    /* Navbar Styles */
    .navbar {
      background-color: var(--bg-black) !important;
      box-shadow: box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px !important;
    }

    .navbar-brand {
      font-weight: bold;
      font-size: 24px;
      color: var(--primary-color) !important;
    }

    .nav-link {
      color: #fff !important;
      font-weight: 500;
      margin: 0 10px;
    }

      .nav-link:hover {
        color: var(--primary-color) !important;
      }

    .drt {
      background-color: var(--primary-color);
      border: none;
      color: #000 !important;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 30px;
      transition: 0.3s;
      width: 200px !important;
      text-align: center;
    }

    .drt:hover {
      background-color: #fff;
      color: #000 !important;
    }
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

    /* Responsive: Hide email & social icons on small screens */
    @media (max-width: 576px) {
      .topbar .hide-sm {
        display: none !important;
      }
      .navbar-nav{ 
        height: 100vh;
        text-align: center;
      }
      .drt{
        width: 100% !important;
        margin-top: 10px;
      }
      .nav-lin{
        margin: 10px;
      }
    }

    /* Logo size responsive */
    .navbar-brand img {
      max-height: 50px;
      width: auto;
    }




/*    crousal*/

  .carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }

  .slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
  }

  .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .caption {
    position: absolute;
    top: 40%;
    left: 1%;
    transform: translateY(-50%);
    max-width: 600px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .slide.active .caption {
    opacity: 1;
  }

  .slide.active .caption h1 {
    /*color: #000;*/
    font-size: 28px;
    animation: fadeLeft 1s ease forwards;
  }

  .slide.active .caption p {
    /*color: #000;*/
    animation: fadeLeft 1s ease forwards;
    animation-delay: 0.3s;
  }

  .slide.active .caption a {
    animation: fadeLeft 1s ease forwards;
    animation-delay: 0.6s;
  }

  .caption h1, .caption p, .caption a {
    opacity: 0;
  }

  .caption h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: var(--text-dark);
  }

  .caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
  }

  .caption a {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    background: var(--primary-color);
    color: var(--bg-black);
    text-decoration: none;
    font-weight: bold;
    border-radius:30px;
  }

  @keyframes fadeLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .nav-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: var(--primary-color);
  }

   /* About Us Section */
    .about-us {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding:40px 5%;
      background: var(--bg-black);
      color: var(--text-dark);
      text-align: justify;
    }

    .about-us .content {
      flex: 1;
      padding-right: 20px;
      animation: fadeInUp 1s ease-in-out;
    }

    .about-us .image {
      flex: 1;
      text-align: center;
    }

    .about-us .image img {
      width: 80%;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .about-us .title {
      font-size: 3rem;
      margin-bottom: 20px;
      color: var(--primary-color);
      font-weight: 700;
    }

    .about-us .description {
      font-size: 1.2rem;
      margin-bottom: 20px;
      line-height: 1.6;
      color: var(--text-dark);
      text-align: justify;
    }

    .about-us .cta-button {
      padding: 12px 30px;
      background-color: var(--primary-color);
      color: var(--bg-black);
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 4px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
    }

    .about-us .cta-button:hover {
      background-color: #e0c300;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    /* Animation for content */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .about-us {
        flex-direction: column;
        text-align: center;
      }

      .about-us .image {
        margin-bottom: 20px;
      }

      .about-us .title {
        font-size: 2.5rem;
      }

      .about-us .description {
        font-size: 1rem;
        text-align:justify !important;
      }

      .about-us .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
      }
    }

/*    contact*/

    .contact-section {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 5%;
      gap: 40px;
      background: var(--bg-black);
    }

    /* Left Side - Info */
    .contact-info {
      flex: 1;
      min-width: 280px;
    }

    .contact-info h2 {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .info-item {
      margin-bottom: 20px;
    }

    .info-item i {
      margin-right: 15px;
      font-size: 1.3rem;
      color: var(--primary-color);
    }

    .social-icons {
      margin-top: 30px;
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      width: 45px;
      height: 45px;
      background: var(--primary-color);
      color: var(--bg-black);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      font-size: 1.2rem;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #e0c300;
    }

    /* Right Side - Form */
    .contact-form {
      flex: 1;
      min-width: 300px;
    }

    .contact-form h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: var(--primary-color);
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px;
      margin-bottom: 15px;
      border: none;
      border-radius: 5px;
      background: #1a1a1a;
      color: var(--text-dark);
      font-size: 1rem;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #aaa;
    }

    .contact-form button {
      padding: 12px;
      background-color: var(--primary-color);
      color: var(--bg-black);
      font-weight: bold;
      font-size: 1rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background: #e0c300;
    }

    .map-container {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }

      .contact-info,
      .contact-form {
        width: 100%;
      }

      .contact-form form input,
      .contact-form textarea {
        font-size: 0.95rem;
      }
    }

/*    footer*/
.footer {
  background-color: #0d0d0d;
  color: var(--text-dark);
  padding: 60px 5% 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-about {
  flex: 1;
  min-width: 250px;
}

.footer-about h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-social h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social .social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--bg-black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 1rem;
}

.footer-social .social-icons a:hover {
  background: #e0c300;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    width: 100%;
  }
}


/*capsule*/
  .custom-breadcrumb{
background:url(../img/bred_bg.png);
  }
  .custom-breadcrumb .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.custom-breadcrumb .breadcrumb-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #0d6efd; /* Bootstrap primary */
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #999;
  font-size: 1rem;
  padding: 0 8px;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #6c757d; /* muted/gray for current page */
  font-weight: 500;
}
.custom-breadcrumb .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #6c757d;
  font-weight: 500;
  padding: 0 10px;
}

.custom-breadcrumb .breadcrumb-item a {
  font-weight: 500;
  transition: color 0.2s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #0a58ca; /* darker primary on hover */
}
.carousel-inner img {
  object-fit: cover;
  height: 300px;
}
 .card-body{
  border-bottom: 4px solid var( --primary-color);
 }
  .facility-card img {
    object-fit: cover;
    transition: transform 0.3s ease;
  }