
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;

}


/* 🎨 Navbar colors */
:root {
  --nav-bg: #052a4e;    /* Navy Blue */
  --gold: #FFD700;
  --white: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 🔴 Top red bar */
.top-bar {
  background: #9c1111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

/* Left side (contact info) */
.top-left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* Contact item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  white-space: nowrap;
}

/* Right side (socials) */
.top-right {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* Circle effect */
.icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9c1111;
  font-size: 13px;
  transition: 0.3s;
}

.icon-circle:hover {
  background: #ffd54f;
  color: #000;
}

/* 🔵 Scrolling Section */
.scrolling-section {
  background: #fff;
  color: #052a4e; /* Dark Blue */
  text-align: center;
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%; /* start off-screen */
  font-size: 14px;
  font-weight: 500;
  animation: scrollText 45s linear infinite;
}

@keyframes scrollText {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* 📱 Mobile Adjustments */
@media (max-width: 600px) {
  .scrolling-text {
    font-size: 12px;      /* smaller text */
    animation-duration: 60s; /* slower for readability */
  }
}


html {
  scroll-behavior: smooth;
}

#quote {
  scroll-margin-top: 120px; /* adjust to your navbar height */
}


.topnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--nav-bg);
  padding: 5px 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 45px;
  width: auto;
  margin-right: 20px;
}

/* Links */
.topnav a {
  color: var(--white);
  padding: 12px 16px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topnav a:hover {
  color: var(--gold);
}

.topnav a.active {
  border: 2px solid var(--gold);
  color: var(--gold);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--nav-bg);
  min-width: 220px;
  z-index: 1;
  flex-direction: column;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  padding: 12px 16px;
  color: var(--white);
}

.dropdown-content a:hover {
  background-color: var(--gold);
  color: var(--nav-bg);
}
.dropdown.show .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Free Quote Button Styling */
.free-quote-btn {
  position: absolute;
  right: 20px;   /* Push to right corner */
  top: 50%;
  transform: translateY(-50%);
  background-color: gold;
  color: red;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text break */
  animation: slideInQuote 1.1s cubic-bezier(.79,-0.01,.04,.99) both; /* animate box, not text */

}

.free-quote-btn:hover {
   background: gold;
   color: #fff;
}
@media (max-width: 768px) {
  .logo img {
    height: 70px;   /* bigger logo */
  }

  .hamburger {
    font-size: 32px;  /* bigger icon */
  }
}
/* 📱 Mobile View */
@media (max-width: 768px) {
  .top-bar {
    justify-content: flex-end; /* push items to right */
  }

  .top-left {
    flex-direction: row;
    gap: 10px;
    width: auto;
  }

  /* Hide text labels on mobile */
  .contact-item span {
    display: none;
  }

  /* Hide socials on mobile */
  .top-right {
    display: none;
  }

  .scrolling-section marquee {
    font-size: 12px;
  }

}

.free-quote-btn.hide-text .quote-btn-text {
  display: inline !important;  /* keep text always visible */
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  font-size: 25px;
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
}

/* 📱 Mobile Styles */
@media screen and (max-width: 768px) {
  .topnav {
    flex-direction: row;
    align-items: center;
   justify-content: space-betweens;
  }
  .topnav.logo{
    flex: 1;
  }
.topnav a,
  .topnav .dropdown {
    display: flex;      /* show all links and dropdowns */
    align-items: center;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    flex-direction: column;
    background: var(--nav-bg);
    z-index: 1000;
  }
  /* Make dropdown content stack properly */
  .topnav .dropdown-content {
    position: relative;
    width: 100%;
  }

  .topnav.responsive {
    flex-direction: column;       /* expand menu vertically */
    align-items: flex-start;
  }

  .topnav.responsive a,
  .topnav.responsive .dropdown {
    display: block;               /* show menu items on toggle */
    width: 100%;
  }

  /* Dropdown content inside mobile */
  .topnav.responsive .dropdown-content {
    position: relative;
    width: 100%;
    background: var(--nav-bg);
  }

  .topnav.responsive a,
  .topnav.responsive.dropdown {
    display: block;
    width:100%;
  }
}

/* 🖥️ Desktop: keep links inline */
@media screen and (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}
/* Mobile View (Show only Logo + Free Quote) */
@media (max-width: 768px) {
  nav ul { 
    display: none; /* Hide menu links */
  }

  .free-quote-btn {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    display: block;
    margin: 10px auto;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* 🌟 HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

/* 🔥 Hero Text */
.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
  animation: slideIn 1.5s ease forwards;
}

.hero-text h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-text h2 span {
  color: var(--gold);
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-text p span {
  color: var(--gold);
  font-weight: bold;
}

/* ✨ Enquire Button */
.btn-enquire {
  display: inline-block;
  padding: 12px 22px;
  background: var(--gold);
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  right: -50px;
}

.btn-enquire:hover {
  background: white;
  color: #d62828;
  box-shadow: 0 0 12px var(--gold);
}

/* 🔄 Animation */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-50%); }
  to { opacity: 1; transform: translateX(0) translateY(-50%); }
}

@keyframes slideInQuote {
  from { right: -120px; opacity: 0; }
  to { right: 20px; opacity: 1; }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-text {
    left: 5%;
    max-width: 90%;
    text-align: center;
  }
  .hero-text h2 {
    font-size: 26px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .btn-enquire {
    right: 0;
  }
}

/* Enquiry Now Vertical Button */
.enquiry-btn {
  position: fixed;   /* Change absolute → fixed */
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: red;
  color: #fff;
  padding: 12px 18px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 5px 0 0 5px;
  z-index: 2000;   /* stays on top of slider */
  transition: background 0.3s ease;
}

.enquiry-btn:hover {
  background: darkred;
}

/* 📱 Responsive Mobile */
@media (max-width: 768px) {
  .enquiry-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    top: 40%;  /* adjust for smaller screens */
  }
}
/* ----- MOBILE NAVBAR ----- */
.mobile-navbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #052a4e;
  position: sticky;
  top: 0;
  z-index: 2000;
}
.mobile-logo {
  height: 55px;
  width: auto;
}
.mobile-hamburger {
  font-size: 32px;
  color: gold;
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 768px) {
  .mobile-navbar { display: flex; }
  .topnav { display: none !important; }
}

/* ----- MOBILE NAV OVERLAY ----- */
.mobile-nav-overlay {
  position: fixed;
  z-index: 3000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 29, 62, 0.96);
  display: none;
  flex-direction: column;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
.mobile-nav-overlay.show { display: flex; }

.mobile-nav-content {
  margin: 80px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 96vw;
  font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
}
.mobile-link {
  color: #fff;
  background: none;
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  padding: 15px 22px;
  border: none;
  border-bottom: 1px solid #173864;
  cursor: pointer;
  outline: none;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-link:hover,
.mobile-link.active {
  background: #FFD700;
  color: #052a4e;
}
.mobile-dropdown {
  width: 100%;
}
.mobile-dropdown-toggle {
  justify-content: space-between;
}
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  background: #0f3464;
  padding-left: 14px;
}
.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}
.mobile-dropdown-menu a {
  color: #FFD700;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-bottom: 1px solid #173864;
  background: none;
}
.mobile-dropdown-menu a:hover {
  background: #FFD700;
  color: #0f3464;
}
.free-quote-btn-mobile {
  background: #FFD700;
  color: white;
  border-radius: 9px;
  font-weight: bold;
  text-align: center;
  margin: 18px 22px 0 22px;
  font-size: 20px;
  padding: 17px 0;
  display: block;
  transition: background 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}


@media (max-width: 768px) {
  .free-quote-btn-mobile { font-size: 21px; padding: 20px 0; }
}

/* Hide overlay scrollbar */
.mobile-nav-overlay::-webkit-scrollbar { display: none; }


.hero-text, .hero-text *, .hero-slider, .hero-slider *, .enquiry-btn, .btn-enquire {
  font-family: 'Poppins', 'Open Sans', Arial, sans-serif !important;
}

@keyframes slideInQuote {
  from { right: -70px; opacity: 0; }
  to { right: 20px; opacity: 1; }
}
.free-quote-btn {
  animation: slideInQuote 1.1s cubic-bezier(.79,-0.01,.04,.99) both;
}



/* Outer box centering and perfect side spacing */
.outer-quote-box {
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0; /* Top/bottom breathing space */
}

/* The main form */
.free-quote-form {
  box-sizing: border-box;
  max-width: 420px;
  width: 100%;
  margin: 0;
  background: #f0f4f8;
  padding: 30px;
  border-radius: 18px;
  font-family: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border: 2px solid #052a4e;
  position: relative;
}

/* Inner form spacing */
.free-quote-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Left align only labels and inputs inside the form */
.free-quote-form label,
.free-quote-form input,
.free-quote-form select {
  text-align: left;
  display: block;
  width: 100%;
  margin: 0 0 8px 0;
}

/* Heading */
.free-quote-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  background: linear-gradient(90deg, #052a4e, #526c87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Labels */
.free-quote-form label {
  font-weight: 500;
  color: #0077cc;
  font-size: 14px;
  margin-bottom: 4px;
}

/* Inputs & Select */
.free-quote-form input,
.free-quote-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #052a4e;
  padding: 10px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  margin-bottom: 16px;

}

.free-quote-form input:focus,
.free-quote-form select:focus {
  border-color: #052a4e;
  box-shadow: 0 0 6px rgba(0,191,255,0.3);
}

/* Submit Button */
.free-quote-form button {
  width: 100%;
  padding: 13px;
  background: linear-gradient(90deg, #052a4e, #526c87);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.free-quote-form button:hover {
  background: linear-gradient(90deg, #052a4e, #526c87);
  transform: translateY(-2px);
}

/* Success Active */
.free-quote-form button.active {
  background: green !important;
  color: #fff;
  transform: scale(1.05);
}

/* Checkmark */
.checkmark {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #28a745;
  animation: scaleUp 0.5s ease forwards;
}
@keyframes scaleUp {
  0% { transform: translate(-50%, -50%) scale(0); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

/* Confetti */
#confetti-canvas {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index: 1000;
}

/* Responsive */
@media (max-width: 600px) {
  .outer-quote-box {
    padding: 18px 0;
  }
  .free-quote-form {
    max-width: 99vw;
    width: 100%;
    padding: 14px 7vw 18px 7vw; /* side space via padding */
    border-radius: 14px;
    margin: 0;
  }
  .free-quote-form h2 {
    font-size: 22px;
  }
  .free-quote-form input,
  .free-quote-form select,
  .free-quote-form button {
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .outer-quote-box {
    padding: 25px 0;
  }
  .free-quote-form {
    max-width: 95vw;
    padding-left: 40px;
    padding-right: 40px;
  }
}



  .about-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .about-card {
    background:#fff;
    border-radius:18px;
    padding:2rem 1.5rem;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.1);
    transition: transform .35s ease, box-shadow .35s ease;
    opacity:0;
    transform: translateY(40px);
  }
  .about-card i {
    font-size:2.6rem;
    color:#ff5733;
    margin-bottom:1rem;
    animation: popIcon 1.3s ease forwards;
  }
  .about-card h3 {
    font-size:1.2rem;
    font-weight:700;
    color:#222;
    margin-bottom:0.7rem;
  }
  .about-card p {
    font-size:0.95rem;
    color:#555;
    line-height:1.5;
  }
  .about-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow:0 12px 30px rgba(255,87,51,0.25);
  }
  /* Animation for scroll reveal */
  .about-card.show {
    opacity:1;
    transform: translateY(0);
    transition: all .7s ease;
  }
  @keyframes popIcon {
    0% {transform: scale(0.7); opacity:0;}
    100% {transform: scale(1); opacity:1;}
  }

  /* Responsive */
  @media(max-width:600px){
    .about-card{padding:1.5rem;}
    .about-card h3{font-size:1.05rem;}
    .about-card p{font-size:0.87rem;}
  }

 .services {
  padding: 4rem 6%;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 1000;
  color: #000; /* black */
}

.services h2 span {
  color: red; /* "Services" in red */
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
  font-size: 1.4rem;
  color: red; /* Service title in red */
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: navy; /* or black if you prefer */
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}


.service-card:hover img {
  transform: scale(1.05);
}

 .strength-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      padding: 60px 20px;
      flex-wrap: wrap;
    }

    .strength-image img {
      max-width: 350px;
      border-radius: 20px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }

    .strength-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
      flex: 1;
      min-width: 260px;
    }

    .strength-box {
      background: white;
      border-radius: 15px;
      padding: 15px 20px;
      cursor: pointer;
      transition: all 0.4s ease-in-out;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      position: relative;
      overflow: hidden;
    }

    .strength-box h3 {
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
    }

    .strength-box p {
      max-height: 0;
      overflow: hidden;
      margin: 10px 0 0;
      opacity: 0;
      transition: all 0.5s ease;
    }

    .strength-box:hover {
      background: #052a4e;
      color: white;
      transform: translateY(-4px);
    }

    .strength-box:hover p {
      max-height: 200px;
      opacity: 1;
    }

    .strength-box i {
      color: #052a4e;
      transition: transform 0.5s;
      font-size: 1.3rem;
      animation: bounce 2s infinite;
    }

    .strength-box:hover i {
      color: #FFD700;
      transform: rotate(15deg);
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    /* Responsive */
    @media(max-width: 992px) {
      .strength-section {
        flex-direction: column;
      }
      .strength-image img {
        max-width: 80%;
      }
    }


    /* 🔹 Section Headings */
.enquiry-section h2,
.why-section h2,
.gallery-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 800;
  color: #052a4e;
}
.enquiry-section h2 span,
.why-section h2 span,
.gallery-section h2 span {
  color: red;
}

/* 🔹 Gallery */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 0 20px;
}
.gallery-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
  .enquiry-section h2,
  .why-section h2,
  .gallery-section h2 {
    font-size: 1.6rem;
  }
  .gallery-container img {
    height: 180px;
  }
}


/* 🎨 Section Styling */
.service-areas {
  padding: 50px 20px;
  text-align: center;
  background: #fff; /* ❌ removed outer box look */
}

.service-areas h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #052a4e;
}

.service-areas h2 span {
  color: #e63946;
}

.service-areas .intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

/* 📍 Areas Grid */
.areas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.areas-column h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #e63946;
}

.areas-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.areas-column ul li {
  font-size: 1rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 📦 Parcel Icon Animation */
.icon {
  display: inline-block;
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .areas-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .areas-container {
    grid-template-columns: 1fr;
  }
}

.city-heading {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #052a4e;
  margin: 20px 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.city-heading .icon {
  display: inline-block;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* 🔹 Enquiry Section */
.enquiry-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.enquiry-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #052a4e;
}

.enquiry-section h2 span {
  color: #e63946;
}

/* 🔹 Flex Layout */
.enquiry-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left-side image */
.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 1000px; /* Bigger size */
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent; /* remove white background */
  border-radius: 0; /* no rounding to keep it clean */
  box-shadow: none; /* no box shadow for clean transparent look */
  transition: transform 1.3s ease;
}

/* Scroll animation effect */
.image-container img.animate {
  transform: translateX(80px) scale(1.2); /* Bigger forward move */
}

/* For laptop/desktop */
@media (min-width: 769px) {
  .image-container img {
    transform: translateX(-80px) scale(1.35); /* Start from left & bigger */
    opacity: 0;
    transition: transform 1.3s ease, opacity 1s;
  }
  .image-container img.animate {
    transform: translateX(0) scale(1.2); /* Animates to final position */
    opacity: 1;
  }
}

/* For mobile, keep as is */
@media (max-width: 768px) {
.image-container img {
    transform: translateX(-40px) scale(1.1); /* Start left & a bit bigger */
    opacity: 0;
    transition: transform 1.3s ease, opacity 1s;
  }
  .image-container img.animate {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* Right-side form */
.outer-quote-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .enquiry-container {
    flex-direction: column;
    gap: 30px;
  }

  .image-container img {
    max-width: 90%;
  }

  .outer-quote-box {
    width: 100%;
  }
}




.process-section {
  background: #052a4e;
  padding: 20px 5px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-section h2 {
  font-size: 22px;
  margin-bottom: 25px;
  color: gold;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.process-step {
  flex: 1;
  background: #052a4e;
  border: 1px solid gold;
  border-radius: 8px;
  padding: 20px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-step i {
  font-size: 32px;
  color: gold;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 16px;
  margin: 5px 0;
  color: gold;
}

.process-step p {
  font-size: 13px;
  color: #ddd;
  margin: 0;
}

/* Truck animation inside process-flow */
.truck {
  position: absolute;
  bottom: -90px; /* below the boxes */
  left: 0;
  font-size: 75px;
  color: gold;
  animation: moveTruck 10s linear infinite;
}

@keyframes moveTruck {
  0%   { transform: translateX(0); }
  100% { transform: translateX(100vw); }
}


/* Mobile view */
@media (max-width: 768px) {
  .process-flow {
    gap: 5px;
  }

  .process-step {
    flex: 1;
    min-height: 60px;
    padding: 6px;
  }

  .process-step i {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .process-step h3 {
    font-size: 9px;
    margin: 0;
  }

  .process-step p {
    display: none; /* hide text in mobile */
  }

  .truck {
    bottom: -85px; /* closer in mobile */
    font-size: 65px;
  }
}

/* Map */
.map-section {
  background: #fff;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* Company Name */
.company-name {
  text-align: center;
  padding: 40px 20px 20px;
  background: #062b3d !important; /* Ensure background always applies */
  width: 100%;
  box-sizing: border-box;

}
.company-name h1 {
  font-size: 40px;
  font-weight: 700;
  color: #FFD700;
}
.company-name p {
  font-size: 18px;
  color: #FFF;
  margin-top: 8px;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
   background: #062b3d !important; /* Ensure background always applies */
  color: #eee;
  width: 100%;
  box-sizing: border-box;
}

/* Left Column */
.contact-info {
  flex: 1 1 30%;
  min-width: 280px;
}
.contact-info h3 {
  color: #FFD700;
  margin-top: 20px;
}
.catchy-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.hours-list {
  list-style: none;
  padding: 0;
}
.hours-list li {
  margin: 6px 0;
  font-size: 14px;
  animation: fadeIn 1s ease forwards;
}
.hours-list li span {
  color: #FFD700;
  font-weight: 600;
}

/* Right Columns */
.contact-links {
  display: flex;
  flex: 1 1 60%;
  flex-wrap: wrap;
  gap: 30px;
}
.links-block {
  flex: 1 1 30%;
  min-width: 200px;
}
.links-block h3 {
  color: #FFD700;
  margin-bottom: 10px;
}
.links-block ul {
  list-style: none;
  padding: 0;
}
.links-block ul li {
  margin: 6px 0;
}
.links-block ul li a {
  text-decoration: none;
  color: #eee;
  transition: color 0.3s ease;
}
.links-block ul li a:hover {
  color: #FFD700;
}

/* Contact Details */
.contact-details {
  text-align: center;
  padding: 20px;
  background: #062b3d !important; /* Ensure background always applies */
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.contact-details h3 {
  color: #FFD700;
  margin-bottom: 10px;
}
.contact-details p {
  font-size: 14px;
  margin: 6px 0;
  color: #FFF;
}
.contact-details i {
  color: #FFD700;
  margin-right: 6px;
}
/* Add or update these: */
.contact-links.contact-row {
  background: #062b3d !important;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 20px;
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #eee;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}
.social-icons a {
  margin: 0 10px;
  font-size: 22px;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #fff;
}

/* Payments */
.payments {
  text-align: center;
  padding: 20px;
  background: white;
  color: #7a0e0e;
}
.payments h4 {
  margin-bottom: 10px;
  color: #7a0e0e;
}
.payments i,
.payments .upi {
  font-size: 32px;
  margin: 0 10px;
  color: #FFD700;
  transition: transform 0.3s ease;
}
.payments i:hover,
.payments .upi:hover {
  transform: scale(1.2);
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 12px;
  background: #041c29;
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom::-webkit-scrollbar {
  display: none; /* hide scrollbar for clean look */
}

.footer-bottom .movify-name {
  font-weight: bold;
  color: #ffffff; /* white bold */
}

.footer-bottom .alkj-link {
  font-weight: bold;
  color: gold;
  text-decoration: none;
}

.footer-bottom .alkj-link:hover {
  color: #ffd700; /* brighter gold on hover */
}

/* Hide line break by default (desktop) */
.mobile-break {
  display: none;
} 

/* 📱 Mobile optimization */
@media (max-width: 600px) {
  .footer-bottom {
    font-size: 12px; /* smaller text so it fits */
    padding: 10px;
   
  }
  mobile-break {
    display: inline;   /* ✅ forces line break only on mobile */
  }
}


/* Icon Animation */
.footer-block i,
.social-icons a i,
.payments i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-block i:hover,
.social-icons a:hover i,
.payments i:hover {
  transform: scale(1.2) rotate(8deg);
  color: #fff; /* or gold depending on bg */
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 18px;
    padding: 30px 8px;
  }
  .contact-info,
  .contact-links {
    width: 100%;
    min-width: 0;
  }
 .contact-links.contact-row {
    flex-direction: column;
    gap: 18px;
    padding: 30px 8px;
  }
  .links-block {
    min-width: 140px;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .company-name {
    padding: 25px 6px 12px;
  }
  .company-name h1 {
    font-size: 28px;
  }
  .company-name p {
    font-size: 14px;
  }
  .contact-container {
    flex-direction: column;
    gap: 16px;
    padding: 18px 4px;
  }
  .contact-details {
    padding: 12px 4px;
  }

   .contact-links.contact-row {
    padding: 18px 4px;
    gap: 10px;
  
}
}

.footer-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px; /* Reduce this value for less gap */
  background: #062b3d;
  padding: 30px 10px;
  width: 100%;
  box-sizing: border-box;
}

.footer-block {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 260px;
  padding: 8px;
  color: #eee;
  background: none;
}

.footer-block h3 {
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-block ul li {
  margin: 6px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-block i {
  color: #FFD700;
  min-width: 18px;
}

/* Footer Contact Button */
.footer-contact-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  border: 2px solid #000;
  border-radius: 7px;
  background: linear-gradient(90deg, #FFD700, #ffb74d);
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.28s, color 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.footer-contact-btn:hover {
  background: #000;
  color: #FFD700;
  border-color: #FFD700;
  box-shadow: 0 5px 25px #FFD70080;
  transform: scale(1.05);
}

/* Responsive: stack blocks and center on mobile */
@media (max-width: 900px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 4px;
  }
  .footer-block {
    min-width: 0;
    width: 100%;
    max-width: 430px;
    text-align: center;
    padding: 10px 4px;
  }   
  .footer-block h3 {
    text-align: center;
  }
  .footer-block ul {
    text-align: left; /* keep links/items aligned left */
    display: inline-block; /* keeps them tidy under center heading */
  }
}
/* Floating Container */
.floating-icons {
  position: fixed;
  bottom: 90px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Call Button */
.floating-icons a.call {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #fff;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.floating-icons a.call:hover {
  transform: scale(1.12);
  background: #FFD700;
  color: #fff;
}

/* WhatsApp Button */
.floating-icons a.whatsapp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #25d366; /* WhatsApp green */
  color: #fff;
  border: 2px solid #1ebe57;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.floating-icons a.whatsapp:hover {
  transform: scale(1.12);
  background: #fff;
  color: #25d366;
  border: 2px solid #25d366;
}

/* Scroll To Top */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #062b3d;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Rotating Ring */
#scrollTopBtn .circle-anim {
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 2px solid #FFD700;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: rotateCircle 1.5s linear infinite;
}
@keyframes rotateCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#scrollTopBtn:hover {
  transform: scale(1.12);
  background: #FFD700;
  color: #fff;
}

/* Responsive Sizes */
@media (max-width: 600px) {
  .floating-icons a.call,
  .floating-icons a.whatsapp,
  #scrollTopBtn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #062b3d;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  color: #FFD700;
  font-family: Arial, sans-serif;
  transition: opacity 1s ease, visibility 1s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}
/* Loader Content */
.loader-content {
  text-align: center;
  color: #FFD700;
}

.loader-content i {
  font-size: 48px;
  color: #FFD700; /* Gold Yellow */
  background: #062b3d; /* Blue background behind it */
  padding: 12px;
  border-radius: 50%; /* Circle shape */
}



@keyframes fly {
  0% { transform: translateX(-60px) rotate(-20deg); opacity: 0; }
  30% { opacity: 1; }
  50% { transform: translateX(0) rotate(0deg); opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateX(60px) rotate(20deg); opacity: 0; }
}

/* Loading Text */
.loader-content p {
  margin-top: 10px;
  font-size: 16px;
  animation: fadeText 1.5s infinite ease-in-out;
}

@keyframes fadeText {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
  .loader-content i {
    font-size: 32px;
  }
  .loader-content p {
    font-size: 14px;
  }
}
