/* ==========================================================================
   1. Base & Layout Elements
   ========================================================================== */
@font-face {
  font-family: "bootstrap-icons";
  font-display: block; /* Add this line here */
  src: url("../icons/fonts/bootstrap-icons.woff2") format("woff2"),
       url("../icons/fonts/bootstrap-icons.woff") format("woff");
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

.hidden {
  display: none;
}

.bg-teal {
  background-color: #008080; /* Standard teal color */
}

/* ==========================================================================
   2. Navigation Bar & Logo
   ========================================================================== */
.navbar {
  background-color: #1e0505; /* Rich Deep Navy blending into a dark tint */
  background-attachment: fixed;
  background-size: cover;
  position: -webkit-sticky;  /* For Safari compatibility */
  position: fixed;            /* Makes the navbar stick */
  top: 0;                     /* Ensures fixed position sticks to top */
  width: 100%;                /* Full width coverage */
  z-index: 1030;              /* Layer placement below widgets but above page content */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
  height: 40px;               /* Adjust this height to fit your design */
  width: 40px;                /* Keeps the original aspect ratio */
  object-fit: contain;        /* Prevents stretching */
}

/* Enhances user link interactions */
.parallax-navbar .nav-link:hover {
  color: #ffffff !important;
  transition: color 0.2s ease-in-out;
}

/* ==========================================================================
   3. Buttons & Interactive States
   ========================================================================== */
.btn-primary {
  color: #fff !important;
  background-image: linear-gradient(rgb(13, 148, 136), rgb(13, 148, 136)) !important;
  border-color: #0c9488 !important;
  background-color: #0c9488 !important;
}

/* Floating WhatsApp Button Widget */
.wa-float-chat {
  position: fixed;
  bottom: 22vh;
  right: 30px;
  background-color: #0c9488;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  z-index: 1050; /* Stays above Bootstrap elements */
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.wa-float-chat:hover {
  background-color: #128c7e;
  color: #fff;
  transform: translateY(-5px); /* Parallax float effect */
}

.wa-float-chat i {
  font-size: 24px;
}

/* Icons */
.my-custom-icon { 
  color: #0c9488;
  font-size: 2.5rem; 
  -webkit-text-stroke: 2px #0c9488;
}

/* ==========================================================================
   4. Typography & Link Hierarchies
   ========================================================================== */
.homemoving {
  font-size: 19px; 
  white-space: pre-wrap !important; /* Fixed: Removed quotes */
  overflow-wrap: normal !important; 
  line-height: normal !important; 
  color: #1c5854 !important; 
  font-family: 'Segoe UI', sans-serif !important; 
  font-weight: 700 !important; 
  font-style: normal !important; 
  padding: 10px;
}

.homemoving2 {
  font-size: 15px; 
  white-space: pre-wrap !important; /* Fixed: Removed quotes */
  overflow-wrap: normal !important; 
  line-height: normal !important; 
  color: #1c5854 !important; 
  font-family: 'Segoe UI', sans-serif !important; 
  font-weight: 500 !important; 
  font-style: normal !important;  
}
    
/* Link state anchors for Content Components */
.homemoving2 a, .wapcard a {
  color: #0c9488; 
  text-decoration: none; 
}

.homemoving2 a:link, .wapcard a:link {
  color: #0c9488; 
}

.homemoving2 a:visited, .wapcard a:visited {
  color: #6c757d; 
}

.homemoving2 a:hover, .wapcard a:hover {
  color: #28a745; 
  text-decoration: underline; 
}

.homemoving2 a:active, .wapcard a:active {
  color: #dc3545; 
}

.aboutus {
  font-size: 15px; 
  text-align: center;
  white-space: pre-wrap !important; /* Fixed: Removed quotes */
  overflow-wrap: normal !important; 
  line-height: 1.7rem !important; 
  color: #1c5854 !important; 
  font-family: 'Segoe UI', sans-serif !important; 
  font-weight: 500 !important; 
  font-style: normal !important;  
}

/* ==========================================================================
   5. Structs, Imagery, and Sections
   ========================================================================== */
.parallax-section {
  position: relative;
  height: 100vh; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Desktop styling with parallax */
#home {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/move1.avif");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

/* Mobile fix */
@media (max-width: 768px) {
  #home {
    background-attachment: scroll; /* Disables fixed positioning on mobile */
    height: 100svh; /* Uses stable small viewport height */
  }
}

.divider {
  width: 100%;
  height: 30vh; 
  background-image: url("../images/move2.jpg");
  background-size: cover;
  background-position: 25% 60%; 
  background-repeat: no-repeat;
}

.cute-service-card {
  background-color: #ffffff !important;
  border-radius: 24px;
  border: none;
  box-shadow: 0 8px 24px rgba(28, 88, 84, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 340px; 
}

.responsive-layout-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; 
  border-radius: 6px;
}

.img-container {
  height: 100%;
}

.rounded-rectangle {
  background-color: #f0fbfb;
  color: #1c5854 !important;
  border-radius: 15px; 
}

/* FAQ Element Triggers */
.faq-trigger {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px; 
}

.faq-arrow-icon {
  display: inline-block;
  transition: transform 0.2s ease;
}

.faq-trigger.active .faq-arrow-icon {
  transform: rotate(180deg);
}


/* ==========================================================================
   6. Responsive Layout Media Queries
   ========================================================================== */

/* Tablet and Desktop Screens (768px and up) */
@media (min-width: 768px) {
  .responsive-equal-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, max-content), 1fr));
  }
}

/* Large Display Navigation Enforcements (992px and up) */
@media (min-width: 992px) {
  .collapse-custom {
    display: flex !important;
  }
}

/* Mobile Specific Overrides (Screens under 992px wide) */
@media (max-width: 991.98px) {
  .parallax-navbar .navbar-collapse {
    padding-top: 15px;
    background-attachment: fixed;
  }
  
  .parallax-navbar .nav-link {
    padding: 12px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .collapse-custom {
    display: none; 
    width: 50%; 
    margin-left: auto; 
    background-color: #212529; 
    padding: 15px; 
    border-radius: 0 0 0 8px;
  }

  .collapse-custom.show {
    display: block !important;
  }
}

/* Small Smart Phone Screens (Under 768px wide) */
@media (max-width: 767.98px) {
  .img-container {
    height: 250px; 
  }
  
  .responsive-layout-img {
    object-position: center 30%; 
  }
}




