/* Navbar base */
.navbar {
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
 

  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364); /* 🔥 same as footer */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Logo container */
.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Logo image */
.navbar-brand img {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;

  filter: drop-shadow(0 0 5px rgba(255,255,255,0.3)); /* glow effect */
}

/* Navbar items */
.navbar-nav {
  display: flex;
  align-items: center;
}

/* Nav links */
.navbar-nav .nav-link {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 15px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #00d4ff;
}
@media (max-width: 768px) {
  .navbar {
    height: 65px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    overflow: visible; /* important */
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    height: 65px;
  }

  .navbar-brand img {
    height: 150px;      /* ✅ tumhari requirement */
    width: auto;
    object-fit: contain;

    position: relative;
    top: 8px;         /* 🔥 upar shift karega */
  }
}
.navbar-toggler {
  border-color: #fff;
}
.navbar-toggler-icon {
  filter: invert(1);
}
.navbar {
  justify-content: space-between;
}

.navbar-brand {
  margin-right: 10px;
}

.navbar-collapse {
  margin-left: auto;
}

.footer-pro {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-size: 15px;
}

.footer-logo {
    height: 65px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-link {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    text-decoration: none;
    transition: 0.3s;
}
.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-desc {
    color: #bbb;
    line-height: 1.6;
}

.btn-gradient {
    background: linear-gradient(90deg, #ff7b00, #ff3d00);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-gradient:hover {
    transform: scale(1.05);
}

.social-icons a {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #00d4ff;
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
}

.footer-badge {
    font-size: 13px;
    color: #aaa;
}
/* Footer responsiveness */
.footer-pro .row { text-align: center; }
.footer-pro .col-lg-4, .footer-pro .col-lg-3, .footer-pro .col-lg-2 { margin-bottom: 1.5rem; }
@media(min-width: 992px){
  .footer-pro .row { text-align: left; }
}

/* Offcanvas menu styling */
.offcanvas-body .btn-link {
  display: block;
  text-align: left;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  color: #333;
  text-decoration: none;
}
.offcanvas-body .btn-link:hover {
  color: #2575fc;
}