/* ================================
   General Styles
================================ */
body {
  font-family: Arial, sans-serif;
  background-image: url("../images/OBbg.png"); /* Background */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}


/* ================================
   Header Text
================================ */
.brand-name {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #FF9913;
  letter-spacing: 2px;
  text-align: center;
}

.tagline-line {
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

/* ================================
   Navbar
================================ */
.custom-nav {
  border: 2px solid #FF9913;
  border-radius: 20px;
  padding: 10px 20px;
  margin-top: 20px;
  text-align: center;
}

.custom-nav a {
  color: #FF9913;
  font-weight: bold;
  margin: 0 20px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.custom-nav a:hover {
  border-bottom: 2px solid #FF9913;
}

.custom-nav a.active {
  color: #FF9913;
  border-bottom: 2px solid #FF9913;
}

/* ================================
   Buttons
================================ */
.text-end .btn-orange {
  margin-left: 10px;
  padding: 8px 20px;
  border: none;
  background: #FF9913;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.text-end .btn-orange:hover {
  background: #e2830f;
  transform: translateY(-2px);
}

/* White Button with Orange Text */
.btn-white-orange {
  background: #fff;
  color: #FF9913;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 25px;
  border: 2px solid #FF9913;
  transition: 0.3s;
}

.btn-white-orange:hover {
  background: #FF9913;
  color: #fff;
}

/* ================================
   Form Section
================================ */
#formContainer {
  position: absolute;
  top: 50px;
  right: 0;
  width: 300px;
  z-index: 1000;
}

.form-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  margin-top: 10px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form-card.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-card h4 {
  color: #FF9913;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.form-card input.form-control {
  margin-bottom: 12px;
  border-radius: 10px;
  padding: 10px;
}

.form-card .btn-orange {
  width: 100%;
  font-weight: bold;
}

.form-switch-link {
  color: #FF9913;
  cursor: pointer;
  font-weight: bold;
}

.form-switch-link:hover {
  text-decoration: underline;
}

/* ================================
   Hero Section
================================ */
.hero-box h1 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 2.8rem;
      letter-spacing: 1px;
      color: #fff; /* Orange highlight */
    }
    .hero-box p {
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      font-size: 2rem;
      color: #FF9913;
      margin-top: 15px;
    }

/* ================================
   Info Boxes (Why Choose Us)
================================ */
.info-box {
  background: #FF9913;
  color: #fff;
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
}

.info-box i {
  color: #fff;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ================================
   Expert Cards
================================ */
.card {
  background-color: #FF9913 !important;
  color: #fff !important;
  border: none;
  border-radius: 15px;
}

.card h5 {
  color: #fff !important;
  font-weight: bold;
}

/* ================================
   Footer
================================ */
footer {
  margin-top: auto;
  background: #FF9913;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  position: relative; /* optional if you want it at bottom */
  left: 0;
}
.container .info-box:last-child {
  margin-bottom: 50px; /* Extra space before footer */
}
.bg-orange {
  background-color: #FF9913;
}
/* Logo Card Specific Style */
.logo-card {
  display: inline-block;
  background-color: #fff; /* White background */
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
/* Equal square expert images */
.expert-img {
  width: 100%;           /* takes full column width */
  aspect-ratio: 1 / 1;   /* makes image a perfect square */
  object-fit: cover;     /* auto-crops to fill square */
  border-radius: 10px;   /* rounded corners */
}


