/* ====== Header Styling ====== */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

 .logo img{
        height: 80px;
        width:auto;
      }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.welcome {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.brand {
  font-size: 20px;
  color: #007bff;
  font-weight: bold;
  margin: 0;
}




.logo1{
    color: aqua;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  
}

  .nav-links li a {
  text-decoration: none;
  color: #000;;
  font-weight: 800; /* bold and thick font */
  transition: color 0.3s ease;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}
/* ----navabar---- */
.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 800; /* bold and thick font */
  transition: color 0.3s ease;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.nav-links li a:hover {
  color: #0077cc;
}

a .fa-user {
  font-size: 22px; /* icon ko bada karne ke liye */
  color: #333; /* optional: icon ka color set karne ke liye */
  transition: transform 0.2s ease; /* hover par smooth animation */
}

a .fa-user:hover {
  transform: scale(1.2); /* hover par thoda zoom effect */
  color: #000; /* optional: hover par thoda dark shade */
}



/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Footer section */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 5% 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #d1a218;
}

.app-links img {
  width: 130px;
  margin: 10px 5px 0 0;
}

.download-btn {
  background: #f6c800;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: blue;
}

.connect-btn {
  background: #f6c800;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.connect-btn:hover {
  background: blue;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: #000;
  background: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #d1a218;
  color: #000;
}

.footer-column p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-bar {
  background: #f6c800; /* Yellow color */
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
}

.footer-bar a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.footer-bar a:hover {
  text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin: 5px;
  }

  .connect-btn {
    width: 100%;
  }
}