/* General Reset */
body {
  background-image: url('../images/common/background.svg')!important;
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

/* ---------------------- */
/* Top Contact Bar */
.topbar {
  background: #333;
  color: white;
  font-size: 14px;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar i { margin-right: 5px; }
.topbar .right a {
  color: white;
  margin-left: 12px;
  text-decoration: none;
  font-size: 16px;
}

/* ---------------------- */
/* Branding */
.brandbar {
  background: #f7f7f7;
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.brandbar .logo-img {
  height: 60px;
  margin-right: 10px;
  vertical-align: middle;
}
.brandbar h1 {
  display: inline-block;
  color: #d35400;
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  vertical-align: middle;
}

/* ---------------------- */
/* Navbar */
header {
  background: linear-gradient(to right, #ff9933, #ffffff, #138808);
  text-align: center;
  padding: 12px;
}
header nav a {
  margin: 0 18px;
  color: #000;
  text-decoration: none;
  /* font-weight: 600; */
  transition: color 0.3s;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
   margin-top: 0; 
  outline: none;
 padding: 8px 20px;

 margin-right: 50px;
   /* thoda smooth dikhane ke liye */
}
header nav a.active,
header nav a:hover { color: #d35400; }

/* ---------------------- */
/* Announcement Bar (Ticker) */
.announcement {
  background: linear-gradient(90deg, #ff9933, #ff7518); /* saffron gradient */
  border-top: 2px solid #138808;  /* Indian flag green */
  border-bottom: 2px solid #138808;
  overflow: hidden;
  position: relative;
  height: 45px;
  display: flex;
  align-items: center;
  box-shadow: inset 0 -2px 5px rgba(0,0,0,0.1);
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  transform: translateX(0);
}
.ticker:hover {
  animation-play-state: paused;
}

.ticker ul {
  list-style: none;
  display: inline-flex;
  margin: 0;
  padding: 0;
}
.ticker li {
  padding: 0 60px;
  color: #fff;               /* softer warm white */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* glow effect */
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------------------- */
/* Hero Section */
.hero {
  background-image: url('../images/common/background.svg')!important;
  /* height: 90vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}
.btn {
  padding: 12px 25px;
  background: #ff9933;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover { background: #d35400; }

/* ---------------------- */
/* Features */
.features {
  display: flex;
  justify-content: space-around;
  margin: 80px auto;
  max-width: 1200px;
}
.feature {
  background: white;
  padding: 30px;
  width: 30%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}
.feature:hover { transform: translateY(-10px); }
.feature img { width: 80px; margin-bottom: 15px; }
.feature h3 { margin-bottom: 10px; color: #138808; }

/* ---------------------- */
/* About Section */
.about {
  background: #fff;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}
.about img { width: 500px; border-radius: 10px; }
.about-text { max-width: 600px; }
.about-text h2 { color: #ff9933; margin-bottom: 20px; }
.about-text p { line-height: 1.6; }

/* ---------------------- */
/* Footer */
/* =========================
   FOOTER STYLING
========================= */

footer {
  background: #138808;
  color: #ffffff;
  padding: 50px 0 20px 0;
  font-family: 'Roboto', sans-serif;
}

.footer_box {
  margin-bottom: 30px;
}

.footer_head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: uppercase;
  border-left: 3px solid #facc15;
  padding-left: 8px;
}

.footer_para {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.footer_para i {
  margin-right: 8px;
  color: #facc15;
}

footer a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

footer a:hover {
  color: #facc15;
}

.footer_last {
  margin-bottom: 12px;
}

.footer_last i {
  font-size: 18px;
  margin-right: 10px;
  color: #facc15;
}

/* Social Icons */
.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons .facebook {
  background: #1877f2;
}
.social-icons .pinterest {
  background: #e60023;
}
.social-icons .instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285aeb 100%);
}
.social-icons .twitter {
  background: #1da1f2;
}

.social-icons a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

footer img {
  max-width: 160px;
}

footer img.app-badge {
  max-width: 180px;   
  height: auto;       
  display: block;
}

footer .copyright {
  margin-top: 30px;
  font-size: 20px;
  color: hsl(218, 36%, 96%);
  text-align: center;
  border-top: 1px solid #fff;
  padding-top: 15px;
}


.about-list li i {
  color: #FFD700;  
  font-size: 14px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  margin-left: 100px;
 
}
.card {
   margin-top: 70px;}
@media (max-width: 767px) {
  footer {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

 .banner {
      background:wheat; 
      color: hsl(0, 0%, 0%);
      /* padding: 10px 10px; */
      text-align: center;
    }

    .verification-form {
      background: white;
      max-width: 750px;
      margin: 40px auto ;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    }

    .form-control:focus {
      border: 2px solid #dc3545;
      box-shadow: none;
    }

    .btn-fetch {
      background: #ff4b5c;
      border: none;
      padding: 12px 30px;
      font-size: 18px;
      border-radius: 50px;
      transition: 0.3s;
    }

    .btn-fetch:hover {
      background: #c82333;
    }
.contact-header {
  background-color: #6c757d !important;
  color: white !important;
}

/* ---------------------- */
/* Responsive */
@media(max-width: 900px) {
  .features { flex-direction: column; align-items: center; }
  .feature { width: 80%; margin-bottom: 20px; }
  .about { flex-direction: column; }
  .about img { width: 100%; }
  .brandbar h1 { font-size: 20px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }
}
