* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* ===== Header & Navigation ===== */
.top-ticker {
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  padding: 8px 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1050;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.top-ticker.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.ticker-wrapper {
  white-space: nowrap;
  overflow: hidden;
}

.ticker-move {
  display: inline-block;
  padding-left: 100%;
  animation: tickerScroll 25s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

#glassHeader {
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 40px;
  z-index: 1040;
  background: transparent;
  transition: all 0.4s ease;
}

#glassHeader.shift-up {
  top: 0;
}

#glassHeader .nav-link {
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}

#glassHeader .navbar-brand img {
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

#glassHeader.scrolled {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#glassHeader.scrolled .nav-link {
  color: #000000 !important;
}

#glassHeader.scrolled .navbar-brand img {
  filter: none;
}

.nav-link:hover {
  color: #0dcaf0 !important;
  transform: translateY(-2px);
}

.contact-btn {
  background: linear-gradient(135deg, #0dcaf0, #0a58ca);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 202, 240, 0.4);
}

/* Mobile Menu Fixes */
.navbar-toggler {
  border: none !important;
  background: transparent !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.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='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

#glassHeader.scrolled .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='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  /* Close button styling */
  .navbar-collapse.collapsing .close-menu,
  .navbar-collapse.show .close-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1060;
    color: #1e3a8a;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: none;
  }

  .navbar-collapse.collapsing .close-menu:hover,
  .navbar-collapse.show .close-menu:hover {
    background: #0dcaf0;
    color: white;
    transform: rotate(90deg);
  }

  /* Menu items styling for mobile */
  .navbar-nav .nav-link {
    color: #1e3a8a !important;
    font-weight: 600;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link:hover {
    color: #0dcaf0 !important;
    transform: translateX(5px);
  }

  #glassHeader {
    top: 34px;
  }

  #glassHeader.shift-up {
    top: 0;
  }

  .top-ticker {
    font-size: 12px;
    padding: 6px 0;
  }
}

/* ===== Footer ===== */
.pro-footer {
  background: linear-gradient(135deg, #0c1427, #111f3f, #0a1429);
  color: #ffffff;
  padding: 90px 20px 30px;
  position: relative;
  overflow: hidden;
}

.pro-footer::before {
  content: "";
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(13, 202, 240, 0.15),
    transparent 70%
  );
  z-index: 0;
}

.pro-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #0dcaf0;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0dcaf0;
  padding-left: 6px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #0dcaf0;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-right {
  display: flex;
  gap: 20px;
}

.footer-bottom-right a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom-right a:hover {
  color: #0dcaf0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-col {
    text-align: start;
  }

  .footer-col h4::after {
    left: 5%;
    transform: translateX(0);
  }

  .social-icons {
    justify-content: center;
  }

  .contact-details-footer h4::after {
    left: 5%;
    transform: translateX(0);
  }

  .contact-item-footer {
    justify-content: flex-start;
    text-align: left;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-right {
    justify-content: center;
  }

  #glassHeader .nav-link {
    color: #000000;
  }
}

@media (max-width: 480px) {
  
  .contact-item-footer {
    justify-content: flex-start;
    max-width: 100%;
  }

}
