/* Base Section */
.section {
  background-color: #080d2e;
}

/* Background Styling */
.bg {
  background: linear-gradient(90deg, #080d2e 100%, #a9a9a9 51%, #080d2e 100%);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 300px;
}

/* Responsive Height for Background */
@media (max-width: 1024px) {
  .bg {
      height: auto;
  }
}

/* Inner Section Styling */
.bg-section-inner {
  padding: 25px 10px;
  color: #fff;
  background-color: #080d2e;
  text-align: center;
}

/* Hero Text Styling */
.hero-text {
  max-width: 100%;
  text-align: center;
}


.hero-text h1 {
  font-size: clamp(40px, 10vw, 150px);
  line-height: 1.1;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.hero-text h1 span {
  font-weight: 100;
  font-style: normal;
  letter-spacing: -0.039em;
  display: inline !important;
}

.hero-text p {
  margin-top: 16px;
  margin-bottom: 30px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.5;
}



.separator-line {
  background-color: rgb(252, 252, 252);
  content: "";
  display: inline-block;
  height: 2px;
  vertical-align: middle;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 20px;
}

/* About Section */
.about-title h2 {
  font-size: clamp(30px, 5vw, 60px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 15px;
}
.about-content a{color:#c59b6d;font-weight: 600;}
.about-content b{color:#c59b6d;font-weight: 600;}
.about-content h2 {
  font-size: clamp(22px, 4vw, 31px);
  line-height: 1.4;
  color: #fff;
  margin: 0 auto 15px;
}

.about-content p {
  font-size: clamp(14px, 2vw, 21px);
  line-height: 1.5;
  color: #fff;
  margin: 0 auto 30px;
}

.about-content ul li {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  margin-left: 20px;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bg-section-inner {
      padding: 50px 10px 0;
  }

  .hero-text h1 {
      font-size: clamp(30px, 8vw, 80px);
      line-height: 1.2;
  }

  .hero-text p {
      margin-top: 20px;
      margin-bottom: 20px;
      font-size: clamp(16px, 2vw, 20px);
  }

  .about-title h2 {
      font-size: clamp(28px, 5vw, 40px);
  }
}

@media (max-width: 480px) {
  .about-content h2 {
      font-size: 24px;
  }

  .about-content p,
  .about-content ul li {
      font-size: 17px;
      line-height: 1.4;
  }
}
