/* ===========================
   GLOBAL RESETS & FONTS
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Ubuntu", sans-serif;
  background: #ffffff; /* White background */
  color: #000;         /* Black text */
  line-height: 1.6;
  scroll-behavior: smooth;
  text-transform: uppercase; /* Matches your style usage on home */
}

/* ===========================
   NAVBAR (EXACT STYLES)
=========================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  z-index: 100;
}

/* Directly from your snippet, unmodified except for formatting */
.navbar {
  justify-content: space-between;
}

/* Force margins for the brand logo */
.navbar-brand {
  margin-left: 230px !important;
  position: relative !important;
  transform: translateX(70px);
  display: flex;
  user-select: none;
}

.navbar-brand img {
  width: 250px;
  height: auto;
  max-height: 200px;
}

.top_options_wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 18px;
}

.top_options {
  height: 10px;
  width: 63.5%;
  bottom: 40px;
  display: flex;
  gap: 3rem;
  font-weight: bold;
  justify-content: right;
  user-select: none;
  font-weight: bold;
}

.top_options_call {
  margin-top: 1px;
  color: red;
}

.top_options_login {
  font-size: 18px !important;
  color: black;
  text-decoration: none;
  transition: color 0.2s ease;
}
.top_options_login:hover {
  color: red;
}

/* Navbar links */
.navbar-nav {
  margin-left: auto;
  gap: 2rem;
  padding-right: 350px;
}

.nav-link {
  display: inline-block;
  color: black;
  text-decoration: none;
  transition: 0.2s;
  font-family: "Ubuntu", sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  font-size: 20px;
}

.nav-link:hover {
  color: red;
}

/* For the toggler icon on smaller screens */
.bg-body-tertiary {
  box-shadow: 0 1px 50px rgba(0, 0, 0, 0.5);
}

/* On smaller screens, the collapsed menu is absolute */
@media (max-width: 992px) {
  .navbar-collapse.collapse {
    position: absolute;
    z-index: 100;
    top: 100%;
    background-color: rgb(248, 249, 250);
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .navbar-toggler-icon {
    height: 65px !important;
    width: 65px !important;
  }
}

/* ===========================
   HERO SECTION
=========================== */
.about-hero {
  margin-top: 100px; /* So content sits below fixed navbar */
  padding: 7rem 0;
  background: #f2f2f2;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 900;
}

.tagline {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  text-transform: none; /* Slightly softer style for tagline */
}

.hero-text p {
  font-size: 1rem;
  text-transform: none;
  line-height: 1.5;
  color: #666;
}

/* For the hero image on the right */
.hero-image img {
  border: 3px solid rgb(255, 71, 71);
}

/* ===========================
   OUR STORY SECTION
=========================== */
.our-story {
  background: #fff;
  padding: 5rem 1rem;
}

.our-story h2.red-heading {
  color: rgb(255, 71, 71);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* ===========================
   TEAM / STATS SECTION
=========================== */
.team-stats {
  background: #f9f9f9;
  padding: 5rem 1rem;
}

.team-stats .red-heading {
  color: rgb(255, 71, 71);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.about-list {
  text-align: left;
  margin-top: 1rem;
}

.about-list li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: none; /* So it looks more natural in bullet form */
  display: flex;
  align-items: center;
}

.red-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  margin-right: 10px;
}

/* Stats boxes on the right side */
.stat-box {
  background: #fff;
  border: 2px solid rgb(255, 71, 71);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.stat-box:hover {
  transform: scale(1.05);
}

.stat-box h4 {
  font-size: 2rem;
  color: rgb(255, 71, 71);
  margin-bottom: 0.5rem;
  font-weight: 900;
}
.stat-box p {
  color: #333;
  margin: 0;
  text-transform: none;
}

/* ===========================
   FOOTER SECTION
=========================== */
.footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 3rem;
}

.footer-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.footer-content p {
  margin: 5px 0;
}

.footer-nav {
  margin: 10px 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}
.footer-nav a:hover {
  color: #ddd;
}

.social-media {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}
.social-media a img {
  width: 24px;
  height: 24px;
  filter: invert(100%);
}

#nav-about{
  color: red;
}

/* ===========================
   MEDIA QUERIES
=========================== */

@media (max-width: 1800px){
  .navbar-brand{
      right: 100px;
  }
}

@media (max-width: 1600px){
  .navbar-brand{
      right: 100px;
  }
}

@media (max-width: 1440px){
  .navbar-brand{
      right: 100px;
  }
}

@media (max-width: 1024px){
  .navbar-brand{
      right: 100px;
  }
}

@media (max-width: 1020px) { /* Changing min to max will fix the normal screen view, but will undo changes from mobile view, and vise-versa*/

  .top_options_wrapper{
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }
  
  .top_options{
      height: 60px;
      width: 100%;
      bottom: 40px;
      display: flex;
      gap: 1rem;
      font-weight: bold;
  }
  
  .top_options_login{
      font-size: 15px !important;
      bottom: 43px;
      
  }

  .navbar-toggler-icon {
      height: 65px !important;
      width: 65px !important;
  }

  .navbar-nav {
      font-size: 30px;
      position: relative;
      right: 50px !important;
      padding-left: 90px;
  }

  .navbar-brand{
      margin-left: 75px !important; /* Forces the margin */
      position: relative !important;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-image img {
    margin-top: 2rem;
    border-width: 2px;
  }
  .team-stats .red-heading {
    font-size: 1.5rem;
  }
  .stat-box h4 {
    font-size: 1.8rem;
  }
  .stat-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .navbar-collapse.collapse{
      position: absolute;
      z-index: 100;
      top: 100%;
      background-color: rgb(248, 249, 250);
      /* width: 200px; */
      width: 100%;
      left: 50%;
      transform: translateX(-50%);
  }
}