*{
  box-sizing: border-box;
}


/* ===== GLOBAL SITE LOADER ===== */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh; /* 👈 important for mobile */
  background: #ffffff;
  z-index: 99999;
}

#loader-lottie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 300px);
  height: min(70vw, 300px);
  transform: translate(-50%, -50%);
}


/*NAVBAR DESIGN*/
.navbar {
  z-index: 10;
}

.brand-text {
  letter-spacing: 1px;
}

.nav-anim {
  position: relative;
}

.nav-anim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #7ed957;
  transition: 0.3s ease;
}

.nav-anim:hover::after {
  width: 100%;
}

/* =========================
   MOBILE FULLSCREEN MENU
   ========================= */
@media (max-width: 991px) {

  /* Make collapsed menu fullscreen */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    padding: 2rem 1.5rem;
    z-index: 999;
  }

  /* Center nav items vertically */
  .navbar-nav {
    margin-top: 4rem;
    text-align: left;
  }

  .navbar-nav .nav-link {
    color: #222 !important;
    font-size: 1.2rem;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  /* Remove underline animation on mobile (optional but cleaner) */
  .nav-anim::after {
    display: none;
  }

  /* Make hamburger more visible */
  .navbar-toggler {
    border: none;
    z-index: 1000;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}
/*Hamburger fix*/
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Prevent brand from wrapping */
.navbar-brand {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 60px); /* leave space for hamburger */
}


@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.05rem; /* adjust if needed */
  }
}
@media (max-width: 576px) {
  .navbar {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
}
/* ===== FINAL NAVBAR BRAND FIX ===== */

.navbar .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* Brand layout */
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

/* First line: Sunrise */
.brand-main {
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap; /* MUST stay on one line */
}

/* Second line: Packers & Movers */
.brand-sub {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Hamburger alignment */
.navbar-toggler {
  align-self: flex-start;
  margin-top: 2px;
}

/* Desktop upgrade */
@media (min-width: 992px) {
  .navbar-brand {
    flex-direction: row;
    gap: 6px;
  }

  .brand-sub {
    font-size: 1.35rem;
    opacity: 1;
  }
}



/*HERO SECTION*/


.hero-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Swiper takes full screen */
.hero-swiper,
.hero-slide {
  height: 100vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
}


.hero-swiper,
.hero-swiper .swiper-wrapper {
  overflow: hidden;
}

.review-swiper {
  overflow: visible;
}
.review-swiper .swiper-slide {
  height: auto;
}



.hero-eyebrow {
  display: inline-block;
  font-size: 1.25rem;        /* Bigger than badge */
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7ed957;            /* Your green */
  margin-bottom: 12px;
}

/* Dark overlay for readability */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* Content on top */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.call-box {
  width: 100%;
  max-width: 360px;
  min-height: 200px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 8px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: pulseGlow 4s infinite ease-in-out;
}

/* Label: Call Us Now */
.call-box .call-label {
  font-size: 1rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 10px;
}

/* Typewriter number */
.call-box h2 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #7ed957;
  margin: 6px 0;
  min-height: 42px;
}

/* Support text */
.call-box .call-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 6px;
}

/* Glow animation */
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 rgba(126,217,87,0); }
  50%  { box-shadow: 0 0 28px rgba(126,217,87,0.28); }
  100% { box-shadow: 0 0 0 rgba(126,217,87,0); }
}

/* Mobile safety */
@media (max-width: 768px) {
  .call-box {
    padding: 22px;
    margin: 0 auto;
    text-align: center;
  }
}
/*Cursor blinking effect*/
.cursor {
  display: inline-block;
  margin-left: 2px;
  color: #7ed957;
  font-weight: 700;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}



/*About Us Section*/
.section-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #7ed957;
}

.about-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(126,217,87,0.18), transparent 45%),
    linear-gradient(180deg, #15241d 0%, #e9f3ec 100%);
  color: #102019;
}

.about-section > .container > .row:first-child p,
.about-section > .container > .row:first-child .section-title {
  color: #ffffff;
}

.about-section .section-title {
  font-weight: 800;
}


.about-section p {
  opacity: 0.95;
}



.section-title {
  font-weight: 700;
}
.about-logo {
  max-width: 220px;
}

.about-image {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/*animated style*/
.stat-box {
  padding: 20px;
}

.stat-box h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #7ed957;
}

.stat-box p {
  margin-top: 5px;
  font-weight: 500;
}

/*review card*/


.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;

  border: 2px solid rgba(126, 217, 87, 0.6);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

/* Stars */
.review-stars {
  color: #7ed957;
  font-size: 1rem;
  margin-bottom: 12px;
}

/* Review text */
.review-text {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  color: #333;
  position: relative;
}

/* Footer */
.review-footer {
  margin-top: 18px;
}

.review-footer h6 {
  font-weight: 600;
  margin-bottom: 2px;
}

.review-footer span {
  font-size: 0.85rem;
  color: #666;
}

.review-text::before {
  content: "“";
  font-size: 3rem;
  color: rgba(126, 217, 87, 0.2);
  position: absolute;
  margin-left: -10px;
  margin-top: -10px;
}

/*scroll behaviour*/
html {
  scroll-behavior: smooth;
}

/*===============Services Section=========================*/

.services-section {
  padding: 100px 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(126,217,87,0.14), transparent 40%),
    radial-gradient(circle at 75% 85%, rgba(126,217,87,0.10), transparent 45%),
    linear-gradient(180deg, #0b120f 0%, #e6efe9 100%);
}



.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

/* Image */
.service-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 5px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Text */
.service-content {
  max-width: 480px;
}

.service-content p {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* WHITE TITLE BOX (important) */
.service-title-box {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.service-row {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  padding: 60px;
  border-radius: 18px;
}
.services-section .service-content p {
  color: rgba(255, 255, 255, 0.9);
}

.service-content {
  background: rgba(0, 0, 0, 0.55);
  padding: 36px 40px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}






/*MOBILE HANDLING*/
@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 80px;
  }

  .service-title-box {
    font-size: 1.25rem;
  }
}
/*Footer*/
.site-footer {
  background: #111;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo styling */
.footer-logo img {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin-top: 12px;
  }

  .footer-logo img {
    max-width: 100px;
  }
}
/* ===============================
   CUSTOMER CARE LOGO LAYOUT
   =============================== */

.customer-care-wrap {
  gap: 40px;
}

/* Logo container */
.customer-logo img {
  max-width: 260px;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

/* Subtle premium look */
.customer-logo img {
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* ===============================
   MOBILE STACK FIX (IMPORTANT)
   =============================== */

@media (max-width: 768px) {
  .customer-care-wrap {
    flex-direction: column;
  }

  .customer-logo {
    margin-top: 20px;
  }
}

/* ===== HAMBURGER → CROSS TOGGLE ===== */

.navbar-toggler {
  position: relative;
  border: none;
}

/* Default: show hamburger, hide cross */
.navbar-close-icon {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

/* When menu is OPEN */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  display: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-close-icon {
  display: inline-block;
}


@media (max-width: 991px) {
  .navbar-close-icon {
    color: #222; /* visible on white */
  }
}
.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-close-icon {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
/*all r changes for the cross button on hamburger menu*/

.hero-wrapper {
  height: 100svh;
}


@media (max-width: 768px) {
  .service-row {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/*safety net to avoid overflowing*/
html, body {
  overflow-x: hidden;
}

/*Floating button*/
.floating-actions {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #28a745; /* Bootstrap green */
}

@media (max-width: 480px) {
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/*pulse animation*/
.floating-btn {
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}



/* ==== HERO LOGO ==== */

.hero-logo {
  position: absolute;
  top: 76px; /* slightly below navbar */
  left: 28px;
  z-index: 9;
}

.hero-logo img {
  width: 210px;   /* wide = more visible */
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.4));
  opacity: 0.98;
}

/* ==== MOBILE RESPONSIVE HANDLING ==== */
@media (max-width: 768px) {
  .hero-logo {
    top: 70px;
    left: 16px;
  }

  .hero-logo img {
    width: 180px; /* keep large even on mobile */
  }

  /* Push hero content downward so it never overlaps */
  .hero-content {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    top: 68px;
    left: 10px;
  }

  .hero-logo img {
    width: 175px;
  }
}

@media (max-width: 480px) {
  .hero-logo img {
    width: 150px;
  }
}



/* default: no space for desktop */
.hero-mobile-spacer {
  height: 0;
}

/* mobile spacer for logo room */
@media (max-width: 768px) {
  .hero-mobile-spacer {
    height: 105px; /* tuned for your logo size */
  }

  /* reduce vertical whitespace between hero elements */
  .hero-eyebrow {
    margin-bottom: 4px !important;
  }

  .hero-content h1 {
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .hero-content .lead {
    margin-top: 6px !important;
    margin-bottom: 8px !important;
    line-height: 1.3;
  }

  .hero-content .btn {
    margin-top: 6px !important;
  }
}

/* smaller phones */
@media (max-width: 480px) {
  .hero-mobile-spacer {
    height: 125px;
  }
}
