html{
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  width: auto;
  /* margin:  0 30px 10px 30px; */
  height: 90vh;
  background-image: url("../img/overview/ABOUT\ US.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* dark to transparent gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0) 75%
  );
}

/* text */
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-content p {
  font-size: 15px;
  color: #e5e7eb;
}

.hero-content span {
  color: #f59e0b;
  font-weight: 600;
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    background-position: center;
     /* margin:  0 10px 10px 10px; */
  }

  .hero-content {
    padding-left: 24px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}



.about-sectionn {
  padding: 10px 0;
  background: var(--primary-color);
}

@media(max-width:992px) {
  .about-sectionn {
    padding: 0;
    padding-bottom: 40px;
  }
}

.about-containerr {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

/* IMAGE */
.about-imagee {
  flex: 1;
}

.about-imagee img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* CONTENT */
.about-contentt {
  flex: 1;
}

.about-tagg {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--tertiary-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.about-tagg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--tertiary-color);
  transform: translateY(-50%);
}

.about-contentt h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-contentt p {
  font-size: 17px;
  line-height: 1.4;
  color: #444;
  margin-bottom: 16px;
  text-align: justify;
}

.para {
 flex: 1;
 padding-top: 20px;
}

.para p {
  max-width: 1200px;
  margin: auto;
  font-size: 17px;
  line-height: 1.4;
  color: #444;
  margin-bottom: 16px;
  text-align: justify;
}


/* RESPONSIVE */
@media(max-width:992px) {
  .about-containerr {
    gap: 40px;
  }

  .about-contentt h2 {
    font-size: 28px;
  }
}

@media(max-width:768px) {
  .about-containerr {
    flex-direction: column;
    text-align: left;
  }

  .about-imagee img {
    max-height: 320px;
    object-fit: cover;
  }

  .para{
   padding: 0 20px;
  }
}


/* --------------------
    Feature Detail Section (FULL WIDTH)
-------------------- */
.feature-detail {
  width: 100%;
  margin: 0;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
  font-family: 'Arial', sans-serif;
}

/* --------------------
    Feature Row
-------------------- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 10%;
  border-radius: 12px;
}

/* Alternate background colors */
.feature-row:nth-child(odd) {
  background: #eee; /* light grey */
}

.feature-row:nth-child(even) {
  background: #fff; /* light teal */
}

/* Alternate reverse layout for desktop */
.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* --------------------
    Feature Text
-------------------- */
.feature-text {
  flex: 1;
  min-width: 280px;
  order: 1; /* text first on mobile */
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* Feature number as square */
.feature-num {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 7px;
}

/* Custom colors */
.feature-num.blue { background: #394f82; }
.feature-num.lightBlue { background: #299dbb; }

/* Headings */
.feature-head h3 {
  font-size: 24px;
  margin: 0;
  color: #1a1a1a;
}

/* Paragraphs */
.feature-text p {
  font-size: 17px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

/* --------------------
    Feature Image
-------------------- */
.feature-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  order: 2; /* image second on mobile */
}

.feature-image img {
  max-width: 90%;
  height: auto;
  border-radius: 5px;
}


/* --------------------
    Responsive Design
-------------------- */

/* Medium devices (tablets) */
@media (max-width: 992px) {

  .feature-detail{
    padding:  0;
  }

  .feature-row {
    gap: 30px;
    padding: 30px 5%;
  }
  
  .feature-head h3 {
    font-size: 22px;
  }

  .feature-text p {
    font-size: 15px;
  }
}

/* Small devices (mobiles) */
@media (max-width: 768px) {
  .feature-row {
    flex-direction: column !important;
    gap: 25px;
    padding: 20px 5%;
  }

  .feature-text {
    order: 1 !important;
  }

  .feature-image {
    order: 2 !important;
  }

  .feature-head h3 {
    font-size: 20px;
  }

  .feature-text p {
    font-size: 16px;
  }

  .feature-num {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}

/* Extra small devices (phones) */
@media (max-width: 480px) {
  .feature-row {
    padding: 15px 5%;
  }

  .feature-head h3 {
    font-size: 18px;
  }

  .feature-text p {
    font-size: 16px;
    line-height: 1.4;
  }
}



.disclaimer-section {
  position: relative;
  background-image: url("../img/disclaimer-bg.jpg");
  padding: 80px 20px;
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.disclaimer-overlay {
  position: absolute;
  inset: 0;
  background: #ededede4;
}

.disclaimer-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  color: #222;
}

.section-tag {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #f7941d;
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before {
  content: "";
  width: 35px;
  height: 2px;
  background: #f7941d;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.disclaimer-container h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.disclaimer-container p {
  font-size: 17px;
  text-align: justify;
  line-height: 1.5;
  color: #444;
  margin-bottom: 16px;
}

.disclaimer-container strong {
  color: #000;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 50px 15px;
  }

  .disclaimer-container h2 {
    font-size: 26px;
  }

  .disclaimer-container p {
    font-size: 16px;
    line-height: 1.4;
  }
}
