/*** Footer + Global Site Styles Start ***/

/* -------------------- Global Elements -------------------- */

/* Links */
a {
  color: #ff7d00; /* Primary Accent */
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff9a33; /* Hover Accent */
}

/* Buttons */
button, .btn {
  background: #ff7d00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,123,255,0.1);
}

button:hover, .btn:hover {
  background: #ff9a33;
  box-shadow: 0 10px 30px rgba(0,123,255,0.15);
  transform: translateY(-2px);
}

/* Card / Box Elements */
.card, .box, .footer-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,123,255,0.1);
  transition: all 0.3s ease;
}

.card:hover, .box:hover, .footer-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,123,255,0.15);
}

/* Inputs & Forms */
input, textarea, select {
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 15px;
  outline: none;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: #ff7d00;
  box-shadow: 0 4px 15px rgba(255,125,0,0.2);
}

/* -------------------- Footer -------------------- */

/* Footer Base */
.footer {
  position: relative;
  background: linear-gradient(180deg, #f9fbff 0%, #ecf7ff 100%);
  color: #1a1a1a;
  overflow: hidden;
  padding: 80px 0 3px;
  font-family: 'Poppins', sans-serif;
}

/* Subtle Background Lighting */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0,123,255,0.12), transparent 60%),
    radial-gradient(circle at bottom right, rgba(0,198,255,0.15), transparent 70%);
  pointer-events: none;
}

/* Footer Container Grid */
.footer-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  padding: 0 30px;
}

/* Footer Headings */
.footer h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ff7d00; /* Accent */
  position: relative;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: #ff7d00;
}

/* Footer Logo */
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

/* Paragraphs */
.footer p {
  color: #555;
  line-height: 1.7;
}

/* Links in Footer */
.footer ul li a {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  color: #ff9a33;
  padding-left: 5px;
}

/* Social Icons - Glowing Style */
.footer-social a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #373b48, #2b2e37);
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: inset 0 0 6px rgba(255,255,255,0.1),
              0 3px 12px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  position: relative;
}

/* Glowing Hover Effect */
.footer-social a:hover {
  background: #ff7d00;
  border-color: #fff;
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 15px rgba(255,125,0,0.5),
              0 8px 25px rgba(0,123,255,0.1),
              inset 0 0 6px rgba(255,255,255,0.3);
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Smooth hover ripple glow */
.footer-social a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,125,0,0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-social a:hover::after {
  opacity: 1;
}

/* Subscribe Form */
.footer form {
  position: relative;
  display: flex;
  align-items: center;
}

.footer input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 30px;
  background: rgba(72,1,75,0.05);
  color: #1a1a1a;
  outline: none;
}

.footer input::placeholder {
  color: rgba(72,1,75,0.5);
}

.footer button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #ff7d00;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 0 12px rgba(255,125,0,0.35), 0 4px 12px rgba(0,123,255,0.1);
}

.footer button:hover {
  background: #ff9a33;
  border-color: #fff;
  box-shadow:
    0 0 18px rgba(255,155,51,0.6),
    0 0 30px rgba(255,125,0,0.4),
    0 6px 20px rgba(0,123,255,0.1);
  transform: translateY(-50%) scale(1.08);
}

.footer button i {
  pointer-events: none;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}

/* Arrow Icon */
.footer-col ul li::before {
  content: "\f105"; /* Font Awesome arrow-right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff7d00;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s ease;
  text-shadow: 0 0 6px rgba(255,125,0,0.4);
}

.footer-col ul li:hover::before {
  color: #ff9a33;
  transform: translateX(3px);
  text-shadow: 0 0 10px rgba(255,154,51,0.7);
}

/* Link Style + Animated Underline */
.footer-col ul li a {
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: 0.3s ease;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff7d00, #ff9a33);
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 0 6px rgba(255,125,0,0.4);
}

.footer-col ul li a:hover {
  color: #ff9a33;
  text-shadow: 0 0 8px rgba(255,154,51,0.6);
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer .copyright {
  position: relative;
  margin-top: 30px;
  text-align: center;
  padding-top: 18px;
  font-size: 15px;
  color: #555;
}

.footer .copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,125,0,0), rgba(255,125,0,0.8), rgba(255,125,0,0));
  border-radius: 2px;
}

.footer .copyright::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to bottom, rgba(255,125,0,0.1), transparent);
  filter: blur(4px);
}

/* Responsive Footer */
@media (max-width: 768px) {
  /* Footer container stacked */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center; /* Wrapper centered */
  }

  /* Section headers underline centered */
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Brand / Links / News / Subscribe Section stacked and centered */
  .footer-col.brand,
  .footer-col.links,
  .footer-col.news,
  .footer-col.subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Social icons centered */
  .footer-social {
    justify-content: center;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }

  /* Footer links list */
  .footer-col ul {
    padding: 0;
    list-style: none;
    text-align: left; /* arrow + text properly aligned */
  }

  /* List items */
  .footer-col ul li {
    padding-left: 25px; /* arrow and text separate */
    margin-bottom: 10px;
    position: relative;
  }

  /* Arrow icons */
  .footer-col ul li::before {
    left: 0;           /* arrow on left */
    transform: none;   /* normal inline arrow */
  }

  /* Subscribe form */
  .footer form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer button {
    position: static;
    margin: 0;
  }
}

/* ===== Top Gradient Border Glow ===== */
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg,
    rgba(0,123,255,0) 0%,
    rgba(0,123,255,0.15) 50%,
    rgba(0,198,255,0.1) 100%);
  box-shadow: 0 0 25px rgba(0,123,255,0.1);
  filter: blur(1px);
  animation: borderGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes borderGlow {
  0% { opacity: 0.6; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(1px); }
}

/*** Footer + Global Site Styles End ***/

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.fw-thin {
    font-weight: 100;
}

.text-uppercase {
    font-size: 14px;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.link-hover {
    transition: 0.5s;
}

.link-hover:hover {
    color: var(--bs-primary) !important;
}


.img-zoomin {
    transition: 0.5s;
}

.img-zoomin:hover {
    transform: scale(1.1);
}

/*** Topbar + Navbar Modern Start ***/

/* Slide-down Navbar (initial hidden above screen) */
.slide-down-navbar {
  position: fixed;
  top: -120px; /* hide above */
  left: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(15px);
  background: rgba(10, 25, 50, 0.85); /* glass effect */
  border-bottom: 2px solid #ff7d00; /* accent border */
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 25px rgba(0,123,255,0.1);
  transition: top 0.5s ease, box-shadow 0.3s ease;
}

/* Active (shown on scroll) */
.slide-down-navbar.active {
  top: 0;
  box-shadow: 0 10px 35px rgba(0,123,255,0.15);
}

/* Logo Neon Gradient Updated */
.logo-text span {
  background: linear-gradient(90deg, #ff7d00, #ff9a33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(255,125,0,0.5), 0 0 25px rgba(255,125,0,0.3);
  animation: neonPulse 3.5s ease-in-out infinite alternate;
}

/* Neon Pulse Animation */
@keyframes neonPulse {
  0% { text-shadow: 0 0 10px rgba(255,125,0,0.3), 0 0 20px rgba(255,125,0,0.2); }
  100% { text-shadow: 0 0 25px rgba(255,125,0,0.8), 0 0 45px rgba(255,125,0,0.5); }
}

/* Navbar Normal */
.ultra-navbar {
  position: relative;
  background: rgba(20,25,40,0.85);
  backdrop-filter: blur(3px);
  transition: all 0.5s ease;
  padding: 7px;
}

/* Sticky Compact Navbar */
.ultra-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0,123,255,0.15);
  border-bottom: 2px solid #ff7d00;
  z-index: 9999;
  animation: slideDown 0.5s ease forwards;
}

/* Slide Down Animation */
@keyframes slideDown {
  from { top: -120px; }
  to { top: 0; }
}

/* Nav Links */
.ultra-navbar .nav-link { 
  color: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
}

.ultra-navbar .nav-link:hover,
.ultra-navbar .nav-link.active { 
  color: #ff7d00; /* accent hover */
  text-shadow: 0 0 8px rgba(255,125,0,0.4);
}

/* Dropdown & Button Styling */
.dropdown-menu { 
  background: rgba(20,25,40,0.95); 
  border-radius:12px; 
  color:#fff; 
  box-shadow: 0 8px 25px rgba(0,123,255,0.1);
}

.dropdown-menu a {
  color:#fff;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  border-radius:7px;
  color:#ff7d00;
  background: rgba(255,125,0,0.08);
  box-shadow: 0 8px 20px rgba(255,125,0,0.15);
}

/* Search Button Modern */
.btn-search-modern { 
  background: rgba(255,255,255,0.1); 
  color: #ff7d00; 
  transition: 0.3s; 
  box-shadow: 0 4px 15px rgba(0,123,255,0.1);
}

.btn-search-modern:hover { 
  background: linear-gradient(90deg,#ff7d00,#ff9a33); 
  color:#fff;
  box-shadow: 0 8px 25px rgba(255,125,0,0.15);
  transform: translateY(-2px);
}

/* Responsive adjustments for Navbar */
@media (max-width: 768px) {
  .ultra-navbar {
    padding: 5px;
  }
  .slide-down-navbar {
    border-radius: 0;
  }
  .logo-text span {
    font-size: 22px;
  }

  /* Navbar links stacked */
  .ultra-navbar .navbar-nav {
    flex-direction: column;
    align-items: center;
  }
  .ultra-navbar .nav-item {
    margin-bottom: 10px;
  }
  .ultra-navbar .navbar-brand h1 {
    font-size: 20px;
  }
  .ultra-navbar .navbar-brand small {
    font-size: 12px;
  }

  /* Weather + Search Centered */
  .ultra-navbar .d-flex.align-items-center.gap-3 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #dfe6e9; /* subtle top border */
    padding-top: 10px;
    margin-top: 10px;
  }

  .ultra-navbar .weather {
    margin: 0;
    justify-content: center;
    gap: 8px;
  }

  .ultra-navbar .btn-search-modern {
    margin: 5px 0 0 0; /* small gap from weather */
  }
  
   .nav-item.dropdown {
    width: 100%;
    text-align: center; /* menu stays centered */
  }

  .nav-item.dropdown .dropdown-toggle {
    width: 100%;
    display: block;
    text-align: center; 
  }

  .dropdown-menu {
    left: 0 !important; 
    right: 0 !important;
  }
  
   .dropdown-menu {
    position: static !important;
    width: 100% !important;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
  }

  .dropdown-menu a {
    width: 100%;
    padding: 10px 0;
  }
 
}

/*** Topbar + Navbar Modern End ***/

/*** Banner Section start ***/
.banner-2 {
    position: relative;
}

.banner-content-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(rgba(26, 125, 255, 0.7), rgba(255, 255, 255, 0.7));
    z-index: 2;
}
/*** Banner Section End ***/