/* ——— ABOUT —————————————————————————————————————————————— */
.new_file-about-section {
  padding: 40px 0;
  background-color: black;
  color: #e96f00;
  height: 100vh;
}

/* Tablet view */
@media (max-width: 1024px) {
  .new_file-about-section {
    padding: 30px 0;
    height: auto;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .new_file-about-section {
    padding: 20px 10px;
    height: auto;
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .new_file-about-section {
    padding: 15px 5px;
    font-size: 14px;
  }
}

body,
html.rg {
  background-color: #2a2929 !important;
}

.new_file-about-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.new_file-about-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}

.new_file-about-image {
  border-radius: 8px;
  overflow: hidden;
}

.new_file-about-image img {
  width: 800px;
  height: auto;
  object-fit: cover;
}

/* Media query for tablets and smaller devices */
@media (max-width: 1024px) {
  .new_file-about-image img {
    width: 100%;
  }
}

/* Media query for phones */
@media (max-width: 600px) {
  .new_file-about-image img {
    width: 100%;
  }
}

/* Small screens */
@media (max-width: 768px) {
  .new_file-about-section {
    padding: 40px 0;
  }

  .new_file-about-heading {
    font-size: 2.5rem;
    margin-top: 20px;
  }

  .new_file-about-image {
    margin-bottom: 20px;
  }
}

/* ——— STORY —————————————————————————————————————————————— */
.new_file-story-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.new_file-small-heading {
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 2.2rem;
}

.new_file-main-heading {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #e96f00;
}

.new_file-story-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.new_file-story-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.new_file-story-content {
  background-color: #ff6b1a;
  color: #fff;
  padding: 40px;
  border-radius: 0 0 12px 12px;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .new_file-main-heading {
    font-size: 1.8rem;
  }

  .new_file-story-content {
    padding: 25px;
    font-size: 1rem;
  }
}

/* ——— WHY CHOOSE US —————————————————————————————————————— */
.new_file-why-choose-section {
  margin: 0 auto;
  background-color: rgb(0, 0, 0);
  padding: 60px 20px;
}

/* Re-use headings */
.new_file-feature-icon {
  width: 80px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #ff6b1a;
  font-size: 1.5rem;
  background-color: #e96f00;
}

.new_file-feature-item {
  display: flex;
  margin-bottom: 30px;
  color: #e96f00;
}

.new_file-feature-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e96f00;
}

.new_file-feature-content p {
  color: #555;
  line-height: 1.6;
  color: #cabfbf;
}

.new_file-intro-text {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cabfbf;
}

.new_file-image-container {
  border-radius: 12px;
  overflow: hidden;
}

.new_file-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991px) {
  .new_file-main-heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .new_file-right-column {
    margin-top: 40px;
  }
}

.navbar {
  background-color: var(--dark-bg) !important;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-link {
  color: var(--text-light) !important;
  margin: 0 1rem;
  font-weight: 500;
}

.btn-download {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s;
}

.btn-download:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}
.footer-section::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    to right,
    #e96f00,
    #da8205
  ); /* Adjust as needed */
  margin-bottom: 20px;
}
