/* Top Contact Bar Styling begins */
.top-contact-bar {
  background: linear-gradient(90deg, #0a1f44, #122b5a); /* Dark blue to navy */
  color: #d1d1d1; /* Shiny grey text */
  font-size: 0.9rem;
}

.top-contact-bar a {
  color: #d1d1d1;
  text-decoration: none;
}

.top-contact-bar a:hover {
  color: #ffdd00; /* Yellow highlight on hover */
}

.top-contact-bar i {
  font-size: 1rem;
}

/* =================== PRELOADER =================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b3b; /* deep navy background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ffd700; /* gold accent */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#preloader.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ==============PRELOADER END =========*/

/* ---------- Desktop Navbar Styling ---------- */
@media (min-width: 992px) { /* Only for large screens */
  .navbar-nav {
    display: flex;
    gap: 2rem; /* Adjust spacing between links */
    align-items: center;
    justify-content: center; /* Center links in navbar */
  }

  .navbar-nav .nav-link {
    font-size: 1.1rem; /* Increase font size */
    font-weight: 500;  /* Medium weight */
    padding: 0.5rem 0.75rem;
    transition: color 0.3s, transform 0.2s;
  }

  /* Hover / Active effect */
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: #ffd700; /* Yellow accent */
    transform: translateY(-2px); /* Slight lift effect */
  }

  /* Dropdown items on desktop */
  .dropdown-item:hover {
  background-color: #FFD700; /* Yellow background on hover */
  color: #000;
}

  .navbar-nav .dropdown-item {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

/* Mobile dropdown styling */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    background-color: #fff; /* white background for mobile dropdowns */
    border: 1px solid #ddd; /* subtle border */
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .navbar .dropdown-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    border-radius: 4px;
    margin: 0.25rem;
    transition: background 0.3s;
  }

  .navbar .dropdown-item:hover {
    background-color: #ffd700; /* yellow accent on hover */
    color: #000;
  }

  /* Optional: remove bottom border for last item */
  .navbar .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
  }
}

/* Hover dropdown for large screens */
@media(min-width:992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* optional */
    animation: slideDown 0.3s ease-in-out forwards;
  }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Add spacing & modern font */
.navbar .nav-link {
  padding: 0.8rem 1.2rem;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 500;
}

/* CONTACT & NAVBAR ENDS */

/* =================== HERO SECTION START =================== */
.hero-section {
  position: relative;
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 90vh;
  margin-top: -56px; /* pull under sticky navbar */
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 40, 0.55); /* dark overlay for contrast */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.hero-title span {
  color: #FFD700; /* shining yellow */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
}

.welcome-text {
  font-size: 1.3rem;
  color: #ddd;
  letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 0.1rem;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #f1f1f1;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
}


@media (max-width: 768px) {
  .hero-tagline {
    font-size: 1rem;
    margin-top: 6px;
  }
}

.tracking-box {
  background: rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}

.tracking-box input {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 1px;
}

.tracking-box button {
  border-radius: 8px;
  background: #FFD700;
  border: none;
  transition: all 0.3s ease;
}

.tracking-box button:hover {
  background: #ffca2c;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .tracking-box input,
  .tracking-box button {
    padding: 2px 4px;
    font-size: 14px;
  }
}
/* ====== Extra Style: Tracking Box Glow on Hover ====== */
.tracking-box:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 35px rgba(255, 215, 0, 0.2);
  transform: scale(1.02);
  transition: all 0.4s ease;
}
/* =================== hero animation =================== */
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}
/* =================== HERO SECTION END =================== */

/* ---------- WHO WE ARE SECTION ---------- */

/* Section background */
.who-we-are-section {
  position: relative;
  background: url('../images/who-background.jpg') no-repeat center center/cover;
}

/* Top 5 boxes */
.top-boxes {
  gap: 1.5rem;
  margin-top: -80px; /* overlap hero bottom */
  z-index: 5;
  position: relative;
}

.service-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  width: 180px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-box i {
  font-size: 2rem;
  color: #ffc107; /* yellow */
  margin-bottom: 0.5rem;
}

.service-box p {
  font-weight: bold;
  color: #001f3f; /* navy */
  margin: 0;
}

.service-box:hover {
  background-color: #001f3f;
  color: #fff;
}

.service-box:hover i {
  color: #ffc107;
}

/* Who We Are main box container */
.who-main-box {
  background: #fff; /* box background */
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  gap: 30px; /* spacing between image and text */
  max-width: 1200px;
  margin: -80px auto 0; /* overlap with hero section */
  align-items: center;
  justify-content: center;
}

/* Forklift image container */
.who-img {
  flex: 0 0 auto; /* fixed size container */
  background: #f8f9fa; /* optional light grey box behind image */
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-img img {
  max-width: 350px;
  border-radius: 10px;
  display: block;
}

/* Text + button */
.who-text {
  display: flex;
  flex-direction: column;
  align-items: center; /* center text + button */
  text-align: center;
}

.who-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a2342; /* navy blue */
  margin-bottom: 15px;
}

.who-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 500px; /* optional for better desktop layout */
}

.who-text .btn-warning {
  background-color: #FFD700; /* yellow button */
  color: #0a2342;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  width: fit-content;
}


/* Mobile adjustments */
@media (max-width: 991px) {
  .top-boxes {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem; /* smaller overlap or none */
  }

  .service-box {
    width: 100%;
    border: 2px solid #0a2342 !important;
    border-radius: 10px;
  }

  .top-boxes .service-box:first-child {
    margin-top: -40%;
  }

  .who-main-box {
    flex-direction: column;
    text-align: center;
  }

  .who-img {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .who-img img {
    max-width: 90%;
  }

  .who-text {
    text-align: center;
  }
}

/* ---------- WHO WE ARE SECTION END ---------- */

/* ---------- ABOUT US SECTION BEGIN ------*/
/* About Section */
.about-section {
  background-color: #fff;
  color: #1a1a2e;
  padding: 80px 20px;
}

.about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 20px;
}

.about-section .section-desc {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 3rem auto; /* Center text */
  color: #555;
  text-align: center;
}

/* Container for highlights */
.highlights-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual highlight box */
.highlight-box {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  position: relative;
  text-align: center;
}

/* Image at top of box */
.highlight-box img {
  width: 100%;
  height: 220px; /* fixed height to align all boxes */
  object-fit: cover;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

/* Icon Circle just above text */
.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #ffc107;
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: -30px auto 0 auto; /* overlap bottom of image */
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Text section beneath icon */
.highlight-text {
  padding: 15px 20px 25px 20px;
  text-align: center;
  margin-top: 10px; /* space for icon */
}

.highlight-text h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlight-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Make all boxes same height including text for alignment */
.highlights-container {
  align-items: stretch;
}

.highlight-box {
  display: flex;
  flex-direction: column;
}

.highlight-text {
  flex-grow: 1; /* ensures text area stretches equally */
}

/* Individual highlight box */
.highlight-box {
  /* ... existing styles ... */
  position: relative; /* Ensure pseudo-elements are positioned relative to this */
  overflow: hidden; /* Crucial to clip the overlay */
}

/* Text section beneath icon */
.highlight-text {
  /* ... existing styles ... */
  position: relative; /* Ensure pseudo-element is positioned relative to this */
  z-index: 1; /* Keep text above the pseudo-element overlay */
}

/* NEW: Yellow Overlay Pseudo-element */
.highlight-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 193, 7, 0.05); /* Very subtle yellow (5% opacity) */
  z-index: -1; /* Place it behind the text content */
  transform: scaleY(0); /* Start scaled to 0 height */
  transform-origin: bottom; /* Expand from bottom up */
  transition: transform 0.3s ease-out, background-color 0.3s ease-out; /* Smooth transition */
}

/* NEW: Overlay effect on HOVER (and touch active) */
.highlight-box:hover .highlight-text::before,
.highlight-box:active .highlight-text::before {
  transform: scaleY(1); /* Expand to full height on hover */
  background-color: #ffc107a3; /* Slightly more opaque yellow */
}

/* Ensure text color remains good on hover for readability */
.highlight-box:hover .highlight-text h5,
.highlight-box:active .highlight-text h5 {
  color: #1a1a2e; /* Darker text for better contrast against yellow */
  transition: color 0.3s ease-out;
}

.highlight-box:hover .highlight-text p,
.highlight-box:active .highlight-text p {
  color: #333; /* Darker text for better contrast against yellow */
  transition: color 0.3s ease-out;
}

/* Also ensure the icon changes color on hover for consistency */
.highlight-box:hover .icon-circle,
.highlight-box:active .icon-circle {
  background-color: #1a1a2e; /* Dark background */
  color: #ffc107; /* Yellow icon */
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

/* Image at top of box - existing, but ensure it doesn't interfere */
.highlight-box img {
  /* ... existing styles ... */
  transition: transform 0.3s ease-out; /* Add transition for image as well */
}

.highlight-box:hover img,
.highlight-box:active img {
    transform: scale(1.05); /* Slightly zoom the image on hover */
}

/* Mobile adjustments */
@media (max-width: 991px) {
  /* This targets the columns on small screens */
  .services-highlight-section .col-lg-3,
  .services-highlight-section .col-md-6,
  .services-highlight-section .col-12 {
      /* ADDED: Ensures vertical stacking and centering on mobile */
      max-width: 350px; /* Constrains the width on large phones/tablets */
      width: 100%; /* Ensures it takes up full space within its constraint */
  }
 
  /* Bootstrap's justify-content-center on the .row handles the horizontal centering */
 
  .highlight-box {
    margin-bottom: 3rem; /* Keep margin between vertical stacks */
  }

  .highlight-box img {
    height: 180px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: -25px auto 0 auto;
  }

  .highlight-text {
    padding: 10px 15px 20px 15px;
    margin-top: 10px;
    min-height: auto; /* Allow height to adjust on mobile */
  }
}


/* ---------- FAQs SECTION BEGIN ---------- */
.faqs-section {
  background-color: #fefefe;
  color: #1a1a2e;
  padding: 80px 20px;
  text-align: center;
}

.faqs-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
}

.faqs-section .section-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

/* Accordion Custom Styling */
.accordion-item {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item + .accordion-item {
  margin-top: 1rem;
}

.accordion-button {
  background-color: #fff;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  border-radius: 0;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #ffc107; /* Yellow accent when expanded */
  background-color: #e6f0ff;
}

.accordion-button::after {
  filter: invert(0.5);
}

.accordion-body {
  background-color: #fefefe;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
}

/* Hover effect */
.accordion-button:hover {
  background-color: #f0f8ff;
  color: #1a1a2e;
  transition: all 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .accordion-button {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  .accordion-body {
    font-size: 0.95rem;
  }
}

/* -------- FAQ SECTION ENDS ------*/

/* ------TOP REVIEW SECTION ------ */

.top-reviews-section {
  background: url('../images/aeroplane.jpg') no-repeat center center/cover;
  position: relative;
  color: #fff;
  padding: 4rem 2rem 3rem 1rem;
}

.top-reviews-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.634); /* navy blue overlay */
  z-index: 0;
}

.top-reviews-section .container {
  position: relative;
  z-index: 1;
}

.top-reviews-section .section-header .sub-title {
  font-size: 1rem;
  text-transform: uppercase;
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.top-reviews-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

/* Review card */
.review-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(0,0,50,0.85);
  border-radius: 15px;
}

.customer-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid #ffc107;
}

.review-content {
  text-align: left;
}

.review-quote {
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Brush Script MT', cursive;
  margin-bottom: 0.5rem;
}

.customer-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.customer-position {
  font-size: 0.9rem;
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.review-stars i {
  color: #ffc107;
}

/* Responsive */
@media (max-width: 991px) {
  .review-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .review-content {
    text-align: center;
  }
}

/* ------TOP REVIEW SECTION END ------ */

/* ------- OUR SERVICES SECTION BEGINS ---------*/
.services-section {
  position: relative;
  padding: 80px 0;
  color: #1a1a2e; /* navy blue text */
  overflow: hidden;
  text-align: center;
}

/* Background image with white overlay */
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/service-bg.jpg') no-repeat center center/cover;
  z-index: 0;
  filter: brightness(0.9);
}

.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.202); /* white overlay */
  z-index: 1;
}

/* Content inside the section */
.services-section .container {
  position: relative;
  z-index: 2; /* bring content above overlay */
}

.services-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Services Items */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-item {
  width: 250px;
  text-align: center;
  background: transparent; /* keep overlay visible */
  z-index: 2;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: #ffc107;
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.2);
}

.service-item h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    width: 80%;
    margin-bottom: 2rem;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

/*------- OUR SERVICES SECTION ENDS ----------*/

/* ---------- TRACKING & TRANSPORT SECTION ---------- */
.tracking-section {
  background-color: #edebeb;
}

.tracking-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e; /* consistent color */
  margin-bottom: 1rem;
}

.tracking-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Image box styling */
.tracking-img-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  max-height: fit-content;
}

.tracking-img-box img {
  width: 100%;
  height: 30%;
  display: block;
  border-radius: 20px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .tracking-section .row {
    flex-direction: column;
  }

  .tracking-section .col-lg-6 {
    text-align: center;
  }

  .tracking-title {
    font-size: 2rem;
  }

  .tracking-desc {
    font-size: 1rem;
  }

  .tracking-img-box {
    max-width: 80%;
    margin: 0 auto;
  }
}


/*------- FORKLIFT SECTION END -------*/

/* ---------- NEWSLETTER SECTION BEGIN ---------- */
.newsletter-section {
  background: rgba(10, 22, 58, 0.9);
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* Top small icons */
.newsletter-images {
  display: flex;
  flex-wrap: nowrap; /* prevent wrapping */
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  overflow-x: auto; /* scrollable if too wide */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* hide scrollbar */
}

.newsletter-images::-webkit-scrollbar {
  display: none;
}

.newsletter-images img {
  flex: 0 0 auto; /* prevent resizing */
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #fff;
  padding: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-images img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Newsletter box styling */
.newsletter-box {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid #ffc107dd;
  border-radius: 20px;
  max-width: 1000px;
  backdrop-filter: blur(4px);
  padding: 2rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-left {
  flex: 1 1 45%;
}

.newsletter-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a2e;
}

.newsletter-text {
  font-size: 1rem;
  opacity: 0.9;
}

.newsletter-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-right .form-control {
  border: none;
  border-radius: 10px;
  padding: 12px 15px;
  width: 70%;
}

.newsletter-right .btn {
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
}

/* Popup */
.thank-you-popup {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffc107;
  color: #1a1a2e;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  15% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .newsletter-box {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-right {
    justify-content: center;
    width: 100%;
  }

  .newsletter-right .form-control {
    width: 100%;
    margin-bottom: 10px;
  }

  .newsletter-right .btn {
    width: 100%;
  }

  /* Keep icons in one horizontal scroll row on mobile */
  .newsletter-images {
    justify-content: flex-start;
    padding: 0 10px;
    flex-wrap: nowrap; /* no wrapping on mobile */
  }

  .newsletter-images img {
    width: 40px;
    height: 40px;
  }
}

/* ---------- NEWSLETTER SECTION END ---------- */

/* =================== TOP FOOTER =================== */
.footer-top {
  background-color: #0a163a;
  color: #ccc;
  padding: 3rem 0;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Titles */
.footer-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 1rem;
}

/* Logo + brief */
.footer-logo img {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  max-width: 250px;
}

/* Quick Links */
.footer-links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  color: #ffc107;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

@media (min-width: 992px) {
  .footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .footer-block {
    width: 30%; /* evenly spaced blocks */
  }

  .footer-logo,
  .footer-logo p,
  .footer-contact li,
  .footer-links li {
    text-align: left;
  }

  .footer-social {
    margin-top: 0.5rem;
  }
}

@media (max-width: 991px) {
  .footer-top .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-block {
    width: 100%;
    margin-bottom: 2rem;
    align-items: center;
    text-align: center;
  }

  /* Logo */
  .footer-logo {
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 0.5rem auto;
  }

  .footer-logo p {
    margin: 0 auto;
  }

  /* Quick Links */
  .footer-links {
    align-items: center;
    text-align: center;
  }

  /* Contact */
  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .footer-contact li {
    justify-content: center; /* centers icon + text */
  }

  /* Social Icons */
  .footer-social {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* =================== TOP FOOTER end =================== */

/* ------- BOTTOM FOOTER BEGIN --------*/

.footer-bottom {
  background-color: #1a1a2e; /* white background */
  color: #0a163a; /* navy blue text color */
  font-size: 0.95rem;
  border-top: 1px solid #ccc;
}

.footer-bottom p {
  margin: 0;
  color: #cbcbcfc8; /* consistent black/navy text */
}

.footer-card img {
  max-height: 40px;
  object-fit: contain;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-card img {
    max-height: 35px;
  }
}

/* ===== BOTTOM FOOTER END =====*/
