/* =============================
   🌐 GLOBAL RESET & BASE
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  padding-top: 70px; /* ✅ Space for fixed navbar */
}

/* =============================
   🧭 NAVBAR
============================= */
.navbar {
  position: fixed; /* ✅ Stays on top */
  top: 0;
  left: 0;
  width: 100%;
  /*background: #fff !important;*/
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 10000;
  transition: background 0.3s ease;
}

/* NAV BAR FIX */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;   /* Prevent menu from going to next line */
    padding: 10px 20px;
}

/* LOGO IMAGE */
nav img {
    max-width: 120px;    /* Adjust size as needed */
    height: auto;
}

/* MENU LINKS */
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    font-size: 16px;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
    nav img {
        max-width: 90px;  /* Smaller logo on mobile */
    }

    nav ul {
        gap: 12px;
    }

    nav ul li a {
        font-size: 14px;
    }
}


.navbar-brand {
  color: #000 !important;
  font-weight: 600;
  
  
}

.navbar-nav .nav-link {
  /*color: #000 !important;*/
  padding: 6px 20px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-brand:hover {
  color: #ff004c !important;
}

.navbar-toggler {
  padding: 8px 10px;
}

/* =============================
   🦸 HERO / BANNER SECTION
============================= */
.hero-section {
  position: relative;
  max-width: 2560px;
  width: 100%;
  height: calc(100vh - 70px); /* ✅ Fill screen under navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background: #000;
  margin-top: -70px; /* ✅ Removes extra gray gap */
}
/* Base style for brand text */
.brand-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: #212529; /* Default text-dark */
  letter-spacing: 0.3px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .brand-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 0.85rem;
  }
}

/* Hover effect */
.navbar-brand:hover .brand-text {
  opacity: 0.85;
  transform: translateY(-1px);
}


/* ✅ Background Image (<img>) */
.hero-section img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ✅ Content Layer */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 0 15px;
  /*text-shadow: 0 2px 6px rgba(0,0,0,0.4);*/
  /*text-shadow:0 8px 2px rgba(0,0,0,0.4);*/
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.25;
    /*margin-right: 27%;*/
    margin-right: 8%;
  animation: fadeInDown 1s ease-in-out;
  color: #fff;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 25px auto;
  color: #f1f1f1;
  animation: fadeInUp 1.2s ease-in-out;
}

/* ✅ Make CTA button more visible but policy-safe (no misleading gradients or brand colors) */
.hero-content .btn {
  padding: 12px 32px;
  background: linear-gradient(90deg, #ff004c, #ff3366);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

.hero-content .btn:hover {
  background: linear-gradient(90deg, #ff3366, #ff004c);
  transform: translateY(-3px);
}

/* ✅ Optional fade animations (if not already defined) */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-content .btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* =============================
   📦 SECTIONS BASE STYLE
============================= */
section {
  padding: 80px 20px;
  margin: auto;
  max-width: 2560px;
}

section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
  position: relative;
}

section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff004c;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* =============================
   🔧 SERVICES
============================= */
#services ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  padding: 0;
}

#services li {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s forwards;
}

#services li:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

#services b {
  color: #ff004c;
  font-size: 1.1rem;
}

/* =============================
   🧩 FAQ & PRIVACY
============================= */
#faq p,
#privacy p {
  font-size: 1.1rem;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-width: 850px;
  margin: 15px auto;
  animation: fadeInUp 0.8s forwards;
}

/* =============================
   📞 CALL BUTTON
============================= */
.call-btn {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background-image: linear-gradient(45deg, #ffec41, #ff4b2b, #7b00ff, #ffb347);
  background-size: 300% 300%;
  color: #fff;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  animation: pulse 2s infinite, gradientShift 6s ease-in-out infinite;
  white-space: nowrap;
}

.call-btn:hover {
  transform: translateX(-50%) scale(1.1);
  opacity: 0.95;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid #fff;
}

/* ✅ Pulse + Gradient Animations */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 65, 108, 0.6); }
  70% { box-shadow: 0 0 25px 15px rgba(255, 65, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 65, 108, 0.6); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =============================
   📸 CARD IMAGES
============================= */
.card-img,
.card-img-top {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* =============================
   ⚙️ FOOTER
============================= */
footer {
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-columns > div {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.footer-columns > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

/* Remove divider on mobile */
@media (max-width: 767px) {
  .footer-columns > div:not(:last-child)::after {
    display: none;
  }
}

/* =============================
   ✨ ANIMATIONS
============================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================
   📱 RESPONSIVE TWEAKS
============================= */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1rem; }
  section { padding: 70px 15px; }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
    padding: 120px 15px;
  }
  /*.hero-content h1 { font-size: 2rem; }*/
  .hero-content p { font-size: 1.5rem; }
  #services ul { grid-template-columns: 1fr; }
  .call-btn {
    font-size: 1rem;
    padding: 12px 30px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  /*.hero-content h1 { font-size: 1rem; }*/
  .hero-content p { font-size: 0.8rem; }
  .call-btn {
    font-size: 0.9rem;
    padding: 20px 25px;
    bottom: 15px;
  }
  footer { text-align: center; }
}

@media (min-width: 1600px) {
  .hero-section { height: 80vh; }
  .hero-content h1 { font-size: 4rem; }
  section { max-width: 1400px; }
}

/**/
@keyframes popupFadeIn {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}