 body {
      font-family: 'Poppins', sans-serif;
      background-color: #a48aa3;
      color: #fff;
    }

    /* NAVBAR */
    .navbar {
      background: rgba(0, 0, 0, 0.8);
    }

    /* HERO */
    .carousel-item {
      height: 90vh;
      background-size: cover;
      background-position: center;
    }

    .hero-overlay {
      background: rgba(0, 0, 0, 0.6);
      height: 100%;
    }

    /* SECTIONS */
    section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      /* margin-bottom: 10px; */
    }
.heading{
  font-weight: 600;
  font-size: xx-large;

}
.bi {
  font-size: 40px;
  color: white;
}

    .section-title h2 {
      font-weight: 600;
      /* padding-bottom:20px ; */
    }

    .section-title-two{
      padding-bottom:20px ;
      text-align: center;
      font-weight: 600;
    }

    /* STORY */
    .story-box {
      max-width: 900px;
      margin: auto;
      text-align: center;
      color: white;
      font-size: large;
    }

.section-title-two{
  font-weight: 600;
      padding-bottom:20px ;
       text-align: center;
}
    /* SERVICES */
    /* SERVICE HOVER CARD */
    .service-hover-card {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      height: 380px;
      cursor: pointer;
    }

    /* IMAGE */
    .service-hover-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    /* DARK OVERLAY + CONTENT */
    .service-content {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 30px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.5s ease;
    }

    /* TEXT */
    .service-content h5 {
      color: #ffc107;
      margin-bottom: 15px;
    }

    .service-content p {
      color: #ddd;
      font-size: 15px;
    }

    /* HOVER EFFECT */
    .service-hover-card:hover img {
      transform: scale(1.1);
    }

    .service-hover-card:hover .service-content {
      opacity: 1;
      transform: translateY(0);
    }


    /* TABS */
    .nav-tabs .nav-link {
      color: white;
      border: none;
      border-bottom: 2px solid transparent;
    }

    .nav-tabs .nav-link.active {
      color: white;
      border-bottom: 2px solid #5834a26e;
      background-color: #5834a26e;
    }

    .nav-tabs {
      border-bottom: 1px solid #333;
      width: fit-content;
      margin: 0 auto;
    }

    .tab-content {
      margin-top: 30px;
      color: #ccc;
    }

    /* CTA */
    .cta {
      background:
        linear-gradient(rgb(35 34 34),
          /* grey overlay */
          rgba(150, 150, 154, -0.45)),
        url("./bg.jpg");

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      text-align: center;
      padding: 80px 20px;
    }

    .cta .btn {
      margin: 10px;
      padding: 12px 30px;
    }

    /* FOOTER */
    footer {
      background: #000;
      padding: 30px 0;
      text-align: center;
      color: white;
    }

    /* GSAP REVEAL */
    .reveal {
      opacity: 0;
      visibility: hidden;
    }

    /* CONTACT SECTION */
    .contact-section {
      background: linear-gradient(13deg, #0b0b0b, #a998a9);
      padding: 90px 0;
    }

    .contact-section h2 {
      font-weight: 600;
      color: #fff;
    }

    .contact-section p {
      color: #aaa;
      margin-top: 10px;
    }

    /* CONTACT BOX */
    .contact-box {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 35px 20px;
      border-radius: 18px;
      transition: all 0.4s ease;
      height: 100%;
    }

    .contact-box span {
      font-size: 32px;
      display: block;
      margin-bottom: 15px;
    }

    .contact-box h6 {
      font-size: 16px;
      color: #d5bc6f;
      margin-bottom: 8px;
    }

    .contact-box p {
      font-size: 14px;
      color: #ccc;
      margin: 0;
    }

    .contact-box a {
      color: #ccc;
      text-decoration: none;
    }

    .contact-box a:hover {
      color: #d5bc6f;
    }

    /* HOVER EFFECT */
    .contact-box:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.07);
      border-color: #d5bc6f;
    }

    .info-card {
      background: #11111191;
      padding: 30px;
      border-radius: 20px;
      height: 100%;
    }

    .info-card h4 {
      font-weight: 600;
    }

    .info-card img {
      /* width: 100%; */
      height: 220px;
      object-fit: cover;
      border-radius: 14px;
    }

    .info-card p {
      color: #ccc;
      line-height: 1.6;
    }