*{
    padding: 0;
    margin: 0;
    box-sizing:border-box;
}
:root {
  --navbar-bg: #1f2937; /* Slate gray */
  --navbar-text: #f9fafb; /* White text */
  --navbar-hover: #3b82f6; /* Blue hover */
  --whatsapp-green: #10b981; /* WhatsApp button */
}

/* Navbar base */
.navbar-layout {
  background-color: var(--navbar-bg);
  padding: 14px 0;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Logo */
.navbar-logo-img {
  width: 120px;
  height: auto;
}

/* Links */
.navbar-link {
  color: var(--navbar-text) !important;
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}

.navbar-link::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  bottom: -4px;
  height: 2px;
  background: var(--navbar-hover);
  transition: width 0.3s ease-in-out;
}

.navbar-link:hover {
  color: var(--navbar-hover) !important;
}

.navbar-link:hover::after {
  width: 100%;
}

/* WhatsApp button */
.navbar-btn {
  background-color: var(--whatsapp-green);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
}

.navbar-btn:hover {
  background-color: #059669;
}

/* White hamburger icon */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Mobile responsiveness */
@media (max-width: 991px) {
  .navbar-end {
    display: none !important;
  }

  .navbar-center-links {
    flex-direction: column;
    text-align: center;
  }

  .navbar-link {
    margin: 10px 0;
  }
}
/* home-hero-section */
/* Hero Section Base */
.home-hero-section {
  height: 80vh;
  background-image: url('https://5.imimg.com/data5/LB/HQ/MY-10303061/household-shifting-service.jpg'); /* Replace with actual image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.home-hero-section-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text contrast */
  color: #ffffff;
  padding: 20px;
}

.home-hero-section-content {
  max-width: 700px;
  margin: auto;
}

.home-hero-section-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-hero-section-tagline {
  font-size: 1.25rem;
  margin: 20px 0;
  font-weight: 400;
}

.home-hero-section-btn {
  background-color: #10b981;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.home-hero-section-btn:hover {
  background-color: #059669;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .home-hero-section-title {
    font-size: 2rem;
  }

  .home-hero-section-tagline {
    font-size: 1rem;
  }

  .home-hero-section-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
/* home-service-section */
.home-service-section-box {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.home-service-section-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
.home-service-section-box i {
  color: #ffc107; /* Yellow theme for icons */
}
@media (max-width: 768px) {
  .home-service-section-box {
    margin-bottom: 20px;
  }
}
/* home-whychoose-section */
.home-whychoose-section {
  padding: 30px 20px;
}
.home-whychoose-section-container {
  max-width: 1140px;
  margin: auto;
}
.home-whychoose-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.home-whychoose-section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
}
.home-whychoose-section-header p {
  font-size: 1rem;
  color: #666;
}

.home-whychoose-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  align-items: start;
}

.home-whychoose-section-item {
  text-align: center;
  padding: 20px 10px;
  transition: transform 0.3s ease;
}
.home-whychoose-section-item i {
  font-size: 2.6rem;
  color:blue;
  margin-bottom: 15px;
}
.home-whychoose-section-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.home-whychoose-section-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
/* home-cta-section-wrapper */
.home-cta-section-wrapper {
  padding: 40px 20px;
  background: #fdfdfd;
  border-top: 3px solid #ffcc00;
  display: flex;
  justify-content: center;
}

.home-cta-section-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.home-cta-section-heading {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

.home-cta-section-subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.home-cta-section-whatsapp-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #25d366;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}

.home-cta-section-whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.home-cta-section-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.home-cta-section-input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.home-cta-section-submit {
  padding: 12px;
  background-color: #ffcc00;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  transition: background-color 0.3s;
}

.home-cta-section-submit:hover {
  background-color: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
  .home-cta-section-container {
    padding: 0 10px;
  }

  .home-cta-section-heading {
    font-size: 20px;
  }

  .home-cta-section-input,
  .home-cta-section-submit {
    font-size: 15px;
  }
}
/* footer */
.footer-container {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1;
  padding: 10px;
  max-width: 280px;
  box-sizing: border-box;
}

.footer-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 12px;
}

.footer-description {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.footer-heading {
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: #3b82f6;
  text-decoration: underline;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #fff;
}

.footer-bottom a {
  color: #FFD700;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }
}

/* service page */
/* service-hero-section-wrapper */
.service-hero-section-wrapper {
  background-image: url('https://www.agarsenpackersandmovers.com/wp-content/uploads/2023/06/packing-services-1.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.service-hero-section-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}

.service-hero-section-content {
  position: relative;
  z-index: 1;
}

.service-hero-section-title {
  font-size: 3rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.service-hero-section-title:hover {
  transform: scale(1.1);
  color: #ffd700; /* Optional highlight color on hover */
}

.service-hero-section-subtext {
  font-size: 1.25rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.service-hero-section-subtext:hover {
  transform: scale(1.05);
}
/*  */
.service-card-section-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card-section-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}

.service-card-section-card p {
  margin-top: 10px;
  color: #555;
}
/*  */
.service-highlight-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}

.service-highlight-section-box {
  text-align: center;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-highlight-section-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-highlight-section-box i {
  font-size: 2.5rem;
  color: #ffc107; /* Yellow icon */
  margin-bottom: 10px;
}

.service-highlight-section-box h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-highlight-section-box p {
  color: #555;
  font-size: 0.95rem;
}
/*  */
.service-cta-section-wrapper {
  background: linear-gradient(to right, #fff8e1, #fff3cd);
  border-top: 2px solid #ffeb3b;
  border-bottom: 2px solid #ffeb3b;
}

.service-cta-section-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}

.service-cta-section-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.service-cta-section-btn i {
  margin-right: 8px;
  font-size: 1.3rem;
}

/* WhatsApp Button */
.service-cta-section-btn.whatsapp {
  background-color: #25d366;
}

.service-cta-section-btn.whatsapp:hover {
  background-color: #1ebe5d;
}

/* Call Button */
.service-cta-section-btn.call {
  background-color: #f57c00;
}

.service-cta-section-btn.call:hover {
  background-color: #ef6c00;
}
/* contact page */
.contact-header-section-wrapper {
  height: 80vh;
  background-image: url('https://llfe.trillionloans.com/images/bg-contactus.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  text-align: center;
}

.contact-header-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  z-index: 0;
}

.contact-header-section-wrapper .container {
  position: relative;
  z-index: 1;
}

.contact-header-section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-header-section-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
}
/* contact-info-section */
.contact-info-section-icon {
  font-size: 2.5rem;
  color: #ffc107; /* Yellow color to match your theme */
  margin-bottom: 10px;
}

.contact-info-section-wrapper h5 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-info-section-wrapper p {
  font-size: 1rem;
  color: #444;
}

.contact-info-section-wrapper a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-section-wrapper a:hover {
  color: #f57c00;
}

.contact-info-section-map iframe {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* contact-info-section end */

/* contact-cta-section */
.contact-cta-section-btn {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-cta-section-btn:hover {
  background-color: #1ebe5d;
}

.contact-cta-section-btn i {
  margin-right: 8px;
  font-size: 1.3rem;
}

/* contact-cta-section end */