
* {
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}



body {
  margin: 0;
  background: linear-gradient(135deg, #f4f7fb, #eef2f7);
  color: #1f2937;
}

body {
  background: #f4f6f8;
  color:black;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
}












/* =========================
   NAVBAR CSS START
========================= */

.navbar {
  padding: 1rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Logo Styling */
.navbar-brand {
  flex-shrink: 0;
  margin-right: 2rem;
}

.logo-img {
  width: 160px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
  transform: scale(1.05) translateY(-2px);
}

/* Navigation Links */
.navbar-nav {
  gap: 1.5rem;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #2d3748 !important;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0 !important;
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #fdbd0d, #ff9500);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
  color: #ff9500 !important;
}

.nav-link:hover:before {
  width: 100%;
}

/* Navbar Right Section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #fff9e6, #fff5e6);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 189, 13, 0.3);
  box-shadow: 0 4px 15px rgba(255, 189, 13, 0.1);
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff9500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* .contact-phone {
  font-size: 1rem;
  font-weight: 700;
  color: #2d3748;
  background: linear-gradient(90deg, #fdbd0d, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

/* Navbar Buttons */
.navbar-buttons {
  display: flex;
  gap: 1rem;
}

.btn-navbar {
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-login {
  background: linear-gradient(135deg, #fdbd0d, #ff9500);
  color: white;
}

.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
  background: linear-gradient(135deg, #ff9500, #fdbd0d);
  color: white;
}

.btn-register {
  background: white;
  color: #ff9500;
  border: 2px solid #ff9500;
}

.btn-register:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #fdbd0d, #ff9500);
  color: white;
  border-color: #ff9500;
  box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
}

/* Mobile Responsive Navbar */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  margin-left: 1rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff9500' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile View */
@media (max-width: 991px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-brand {
    margin-right: 1rem;
  }

  .logo-img {
    width: 110px;
  }

  .navbar-right {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
  }

  .navbar-buttons {
    width: 100%;
    gap: 0.75rem;
  }

  .btn-navbar {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .contact-info {
    width: 100%;
    justify-content: center;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .nav-link {
    padding: 0.75rem 0 !important;
  }

  .nav-link:before {
    bottom: 0;
  }
}

@media (max-width: 576px) {
  .navbar-container {
    padding: 0 0.75rem;
  }

  .logo-img {
    width: 90px;
  }

  .navbar-right {
    gap: 1rem;
  }

  .btn-navbar {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }

  .contact-info {
    padding: 0.6rem 1rem;
  }

  .contact-label {
    font-size: 0.75rem;
  }

  .contact-phone {
    font-size: 0.9rem;
  }
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #fdbd0d, darkorange);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #fdbd0d, darkorange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}




/* =========================
   NAVBAR CSS END
========================= */


.help-container {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

h1 {
  color: #f7b500;
  margin-bottom: 5px;
}
h5 ,label{
  color: black;
}

.subtitle {
  color: black;
  margin-bottom: 40px;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.card {
  background: #111;
  border: 2px solid #f7b500;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(247, 181, 0, 0.6);
}

.card h2 {
  color: #f7b500;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #ddd;
}

/*footer*/

.footer {
  position: relative;
   background: url("img/ChatGPT\ Image\ Jan\ 29\,\ 2026\,\ 01_18_18\ PM.png") center/cover no-repeat;
  /* background: black; */
  color: #ffffff;
   padding: 40px 20px ; 
  font-family: Arial, sans-serif;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 94%), rgb(0 0 0 / 69%));
}
.footer-container-fluid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
 
}

.footer-box h3 {
  margin-bottom: 15px;
  color:darkorange;
  font-size: 30px;
}

.footer-box p,
.footer-box li {
  font-size: 17px;
  line-height: 1.6;
  color: white;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: #38bdf8;
}

.social-icons a {
  color: #ffffff;
  font-size: 25px;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #334155;
  /* margin-top: 30px; */
  padding-top: 15px;

}
.footer-bottom p{
  position: relative;
  background: #0a0a0a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #999;
}
