
/* ===== ENHANCED NAVBAR ===== */
header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background: rgba(26, 0, 51, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Logo container */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #fff; /* Change as needed */
}

/* Responsive logo image */
.logo-img {
    /* Remove fixed height/width from HTML */
    max-width: 100%;
    height: auto;
    display: block;
    
    /* Smooth scaling */
    object-fit: contain;
    
    /* Responsive sizing */
    width: 100%;
    max-width: 450px; /* Your original width */
    
    /* Mobile-first approach */
    height: auto;
}

/* For very small screens (phones in portrait) */
@media (max-width: 480px) {
    .logo {
        padding: 0.75rem;
    }
    
    .logo-img {
        max-width: 90%;
        /* Optional: slightly smaller on very small screens */
        transform: scale(0.95);
        transform-origin: center;
    }
}

/* For tablets and small laptops */
@media (min-width: 481px) and (max-width: 768px) {
    .logo {
        padding: 1rem;
    }
    
    .logo-img {
        max-width: 85%;
    }
}

/* For desktop and larger screens */
@media (min-width: 769px) and (max-width: 1200px) {
    .logo {
        padding: 1.5rem;
    }
    
    .logo-img {
        max-width: 70%;
    }
}

/* For extra large screens */
@media (min-width: 1201px) {
    .logo {
        padding: 2rem;
    }
    
    .logo-img {
        max-width: 450px; /* Your original max size */
    }
}

/* For high-density displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        /* Ensure you have a high-res version available */
        /* Consider using srcset in HTML for different resolutions */
    }
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .logo-img {
        transition: none;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .logo {
        /* If logo has transparent background, you might want to adjust container */
        background-color: #1a1a1a; /* Dark background */
    }
    
    /* If the logo is white/light, you might need a different version */
    /* Consider using picture element with different sources for light/dark */
}

/* Navbar scroll effect */
header.scrolled {
  height: 70px;
  background: rgba(10, 0, 20, 0.98);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.hidden {
  transform: translateY(-100%);
}

.logo {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.4s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 5px;
}

.logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.1), rgba(56, 189, 248, 0.1), rgba(168, 85, 247, 0.1));
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.logo:hover::before {
  opacity: 1;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
}

/* Main Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-link {
  text-decoration: none;
  color: #f1f5f9;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff0080, #6366f1);
  border-radius: 30px;
  z-index: -1;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.nav-link:hover::before {
  transform: scale(1);
}

.nav-link:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 128, 0.3);
}

.nav-link.active {
  background: linear-gradient(135deg, #ff0080, #6366f1);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
}

.nav-link i {
  margin-right: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: rotate(15deg);
}

/* Animated underline effect for non-button links */
.nav-link.underline::before {
  display: none;
}

.nav-link.underline::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #facc15, #38bdf8);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-link.underline:hover::after {
  width: 80%;
}

/* Contact button special style */
.contact-btn {
  background: linear-gradient(135deg, #ff0080, #6366f1);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 0, 128, 0.6);
}

.contact-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #facc15, #38bdf8);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu */
@media (max-width: 1024px) {
  header {
    padding: 0 30px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: rgba(10, 0, 20, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 15px 20px;
  }
  
  .contact-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1e2f;
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 999;
  border-radius: 6px;
  padding: 8px 0;
}

/* Dropdown links */
.dropdown-menu a {
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #6c2bd9;
}

/* ✅ Show on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: flex;
}
/* ===== SITE FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 60px 20px 0;
  font-family: Arial, sans-serif;
}

.site-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.site-footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff;
}

.site-footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: #38bdf8;
  margin-bottom: 10px;
}

.site-footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.site-footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #e5e7eb;
  font-size: 16px;
  transition: color 0.3s ease;
}

.site-footer-social a:hover {
  color: #38bdf8;
}

.site-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.site-footer-list a {
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer-list a:hover {
  color: #38bdf8;
}

.site-footer-bottom {
  margin-top: 40px;
  padding: 20px;
  background: #020617;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .site-footer {
    text-align: center;
  }

  .site-footer-social {
    margin-top: 10px;
  }
}
.footer-bg {
  background-image: url("images/footer1.jpg");
  background-size: cover;          /* fills footer */
  background-position: center;     /* center image */
  background-repeat: no-repeat;
  position: relative;
}
/* ===== FOOTER BASE ===== */
.site-footer {
  position: relative;
  padding: 70px 20px 0;
  font-family: Arial, sans-serif;
  color: #f8fafc;
  overflow: hidden;
}

/* ===== VIDEO BACKGROUND ===== */
.footer-video {
  position: relative;
}

.footer-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.footer-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* ===== FOOTER CONTENT ===== */
.site-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.site-footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff;
}

.site-footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: #38bdf8;
  margin-bottom: 12px;
}

.site-footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== SOCIAL ICONS ===== */
.site-footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 16px;
  color: #e5e7eb;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer-social a:hover {
  color: #38bdf8;
  transform: translateY(-3px);
}

/* ===== LINKS ===== */
.site-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.site-footer-list a {
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer-list a:hover {
  color: #38bdf8;
}

/* ===== FOOTER BOTTOM ===== */
.site-footer-bottom {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  color: #94a3b8;
  position: relative;
  z-index: 2;
}

.footer-heart {
  color: #ff0080;
}

/* ===== MOBILE FALLBACK ===== */
@media (max-width: 768px) {
  .footer-bg-video {
    display: none;
  }

  .site-footer {
    background: #020617;
  }

  .site-footer {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-bg-video {
    display: none;
  }


}
@media (max-width: 768px) {

  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute !important;
    bottom: -30% !important;   /* OPEN UP */
    top: auto !important;
    margin-bottom: 2px;
    max-height: none;
    overflow: visible;
    transform: none !important;
  }
}
.filter-bar,
.nav-menu,
header {
  overflow: visible !important;
}