/* ===== BODY & CONTENT ===== */
body,
html {
  margin: 0;
  width: 100%;
  padding-top: 30px;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Noto Sans", sans-serif;
  color: black;
  box-sizing: border-box;
}

/* Smooth fade transition */
.content {
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* When page is visible */
.content.show {
  opacity: 1;
}


@media (max-width: 768px) {
  .content {
  opacity: 0;
  transition: opacity 0s ease;
}

/* When page is visible */
.content.show {
  opacity: 1;
}

}

/* ===== Navbar ===== */
.navbar {
  position: fixed; /* Fix navbar so content fade doesn't shift page */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white; /* Keep it solid or transparent as needed */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* optional subtle shadow */
}

/* Container */
.navbar-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}
/* Wrapper relative so children can overlap */
.logo-wrapper {
  position: relative;
  width: 200px; /* adjust to fit logo + image */
  height: 60px; /* navbar height */
}

.navbar-logo {
  height: 32px;
}

a.navbar-logo-link {
  display: flex;            /* makes it a flex container */
  align-items: center;      /* vertically centers the image */
  text-decoration: none;    /* remove underline */
  color: inherit;           /* prevent default purple link color */
  line-height: 0;           /* remove extra space from font */
  font-size: 0;             /* prevent font size affecting height */
}


/* Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* ===== Links ===== */
.nav-link {
  text-decoration: none;
  color: black;
  font-size: 16px;
  padding-bottom: 4px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease; /* Smooth text color change */
}

/* ===== Animated Underline ===== */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px; /* Thickness of underline */
  width: 0%;
  background: #bb1a1a;
  transition: width 0.4s ease; /* Smooth grow effect */
  border-radius: 1px;
}

/* Hover effect */
.nav-link:hover::after {
  width: 100%; /* Animate underline to full width */
}

.nav-link:hover {
  color: #bb1a1a;
}

/* Active link */
.nav-link.active,
.dropdown-toggle.active {
  color: #bb1a1a;
}

.nav-link.active::after {
  width: 100%; /* Active underline stays full */
}


/* Contact Button */
.contact-btn {
  font-family: "Noto Sans";
  background: #bb1a1a;
  color: white;
  font-weight: 600;
  border: 2px solid #bb1a1a;
  padding: 6px 18px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: transparent;
  color: #bb1a1a;
}
/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 45px; /* Slightly below navbar */
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 380px;
  max-width: 95vw;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
  border: 1px solid rgba(71, 71, 71, 0.3);

  /* ✅ Start hidden for animation */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
  filter: drop-shadow(
    0 -1px 1px rgba(0, 0, 0, 0.1)
  ); /* subtle shadow for depth */
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.dropdown-menu a:hover {
  color: #bb1a1a;
}

.dropdown-menu img {
  height: 36px;
  width: 36px;
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.dropdown-header img {
  height: 40px;
  width: 40px;
}

.dropdown hr {
  border: none;
  height: 1px;
  background: rgba(71, 71, 71, 0.4);
  margin: 3px 0;
}

/* ✅ When dropdown is open */
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Mobile Styles */
.hamburger {
  font-family: 'Noto Sans', sans-serif;
  display: none;
  font-size: 25px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger.open {
  transform: rotate(90deg); /* small rotation effect when it turns to X */
}

@media (max-width: 900px) {
  .navbar-container {
    flex-wrap: wrap;
    align-items: center;
  }

  .hamburger {
    color: black;
    display: block;
  }
  .navbar-menu {
    max-height: 0;                  /* collapsed height */
    opacity: 0;             /* hide inner links completely */
    pointer-events: none;           /* prevent accidental clicks */
    transition: max-height 0.6s ease, opacity 0.6s ease;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 0;
  }

  .navbar-menu.active {
    max-height: 1000px;             /* big enough to show all links */
    opacity: 1;
    pointer-events: auto;           /* clickable again when open */
    margin-top: 16px;
  }

.navbar-menu.active {
  max-height: 1000px;                /* enough to fit content */
  opacity: 1;
  margin-top: 16px;                  /* restore margin when open */
}


  .dropdown-menu {
    max-width: 350px;
    gap: 5px;
  }

  .dropdown-menu a {
    font-size: 14px;
    padding: 4px 0;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }
  .contact-btn {
    padding: 5px 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .navbar-container{
    padding: 16px;
  }


  .dropdown-menu {
    max-width: 300px;
    gap: 5px;
  }

  .dropdown-menu a {
    font-size: 14px;
    padding: 4px 0;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }
  .contact-btn {
    padding: 5px 40px;
    font-size: 14px;
  }
}

/* ===== I N T R O D U C T I O N ===== */

/* ===== HEADER SECTION ===== */
.home-page {
  font-family: "Noto Sans", sans-serif;
}

.home-section {
  min-height: 75vh;           /* always at least full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;          /* lighter padding */
  position: relative;
  box-sizing: border-box;
  overflow: hidden;            /* prevent weird scrollbars if bg shifts */
}

.home-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* cover the whole section */
  transform: translate(-50%, -50%);
  z-index: -1;             /* behind content */
}

.overlay {
 width: 90%;          /* take 90% of screen width on small devices */
  max-width: 1300px;   /* never exceed 1300px on large screens */
  margin: 0 auto;      /* center horizontally */
  padding: 0 20px;  
  position: relative;          /* ❌ don’t keep absolute, it messes layout */
}

.home-content {
  text-align: center;
}

.home-content h1 {
  font-size: 4rem; /* ✅ scales smoothly */
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

.home-content h2 {
  font-size: 1.2rem; /* ✅ scales smoothly */
  font-weight: 300;
  line-height: 1.6;
}


.home-button {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #bb1a1a;
  color: white;
  border: 2px solid #bb1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-button:hover {
  background-color: transparent;
  color: #bb1a1a;
border: 2px solid #bb1a1a;
}

/* Even lower on very small screens */
@media (max-width: 768px) {
  .home-section {
    min-height: 65vh;
    padding: 1rem;
    position: relative; /* ✅ ensure overlay can position inside */
  }


  
  .home-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .home-button {
    display: none;
  }

.overlay {
  position: absolute;       /* keep as overlay */
  left: 50%;                /* center horizontally */
  transform: translateX(-50%); /* shift back by 50% width */
  width: 90%;               /* responsive width */
  max-width: 800px;         /* optional max width */
  padding: 0;     /* spacing inside overlay */
  box-sizing: border-box;   /* include padding in width */
  text-align: center;
}
  .home-content h1 {
    font-size:3rem;
    font-weight: 800;
  }

  .home-content h2 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .home-content h1 {
    font-size:2.2rem;
    font-weight: 800;
  }

  .home-content h2 {
    font-size: 15px;
  }
}

/* Common fade-in base */
.fade-in,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

/* Fade in from bottom (default) */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  transform: translateY(20px);
}

/* Fade from left */
.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}
.fade-left {
  transform: translateX(-50px); /* start left */
}

/* Fade from right */
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  transform: translateX(50px); /* start right */
}

.two-column-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
}

.two-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* responsive for small screens */
}

/* Left image */
.two-image img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Right content */
.right-content {
  flex: 1;
  min-width: 300px;
}

.right-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.right-content p {
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Button grid */
.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

.button-grid button {
  background: transparent;
  border: 2px solid black;
  color: black;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-grid button:hover {
  border: 2px solid #bb1a1a;
  background: #bb1a1a;
color: white;}

@media (max-width: 768px) {
  .two-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .two-image img {
    width: 100%;
    height: auto; /* maintain aspect ratio */
  }

  .right-content {
    min-width: 100%;
  }

  .button-grid {
    grid-template-columns: 1fr; /* stack buttons in 1 column */
    gap: 12px;
  }

  .button-grid button {
    width: 100%; /* full width buttons */
  }
}


/* Small phones (≤486px) */
@media (max-width: 550px) {
  .two-column-section {
    padding: 30px; /* tighter padding */
  }

  .two-container{
    gap: 0;
  }

  .two-image img {
   margin: 0 auto;
  }

  .right-content h2 {
    font-size: 2rem;
  }

  .right-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .button-grid button {
    font-size: 16px;
    padding: 12px 16px;
  }
}
/* benefits secition ======================*/

.benefits-title {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom:5rem;
  text-align: left;
  font-size: 2rem;
  font-weight: 800;
}
.customer-benefits {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  font-family: "Noto Sans", sans-serif;
}

.customer-benefits .container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 2;
  padding: 0 1rem; /* safe horizontal padding */
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.benefit-card {
  display: flex;
  align-items: stretch;
  gap: 150px;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.benefit-card.reverse {
  flex-direction: row-reverse;
}

.icon-box {
  flex: 1;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0;
}

.icon-box img {
  width:90%;
  height: auto;
  object-fit: cover;
  
}


.text-box {
  
  flex: 2;
  max-width: 550px;
  display: flex;
  align-items: left;
  flex-direction: column;
  justify-content: center;
}

.text-box h3 {
  font-size: 2rem;
  font-weight: 800;
}

.text-box p {
  
  text-align: justify;
  text-justify: inter-word;
  font-size: 18px;
  color: black;
  line-height: 1.6;
  font-weight: 400;
}
/* Button for visibility */
.text-box .btn-red {
  display: block; /* makes it adjustable */
  width: fit-content; /* adjusts to content size */
  margin-top: 20px;
  background: #bb1a1a;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #bb1a1a;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}


.text-box .btn-red:hover {
  background:transparent;
}


/* Logo container */
.logos-box {
  display: flex;
  gap: 20px;              /* space between logos */
  margin-top: 5px;       /* spacing above logos */
  align-items: center;
  justify-content: flex-start; /* left aligned */
}

.logos-box img {
  max-width: 100px;
  height: 100%;
  object-fit: contain;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logos-box {
    justify-content: center; /* center on mobile */
    flex-wrap: wrap;         /* allow wrapping if small */
    gap: 15px;
  }

  .logos-box img {
    max-width: 100px;  /* smaller logos on mobile */
  }
}

@media (max-width: 480px) {
  .logos-box img {
    max-width: 80px;   /* even smaller for very small screens */
  }
}


/* ✅ Tablet and below (768px) */
@media (max-width: 768px) {
  .benefit-card,
  .benefit-card.reverse {
    flex-direction: column;   /* image first, then text */
    gap: 30px;
    align-items: center;     /* center text for mobile */
  }

  .icon-box {
    max-width: 100%;          /* allow full width */
  }

  .icon-box img {
    width: 100%;
    height: auto;             /* adjust height naturally */
    max-height: 300px;
  }

  .text-box {
    max-width: 100%;
  }

  .text-box h3 {
    font-size: 1.3rem;
  }

  .text-box p {
    font-size: 15px;
  }
}

/* ✅ Small mobile (486px) */
@media (max-width: 486px) {

  .customer-benefits{
    padding: 20px 0;
  }
  .benefits-grid {
    gap: 50px;
  }

  .benefit-card {
    gap: 20px;
  }

  .text-box h3 {
    font-size: 1.5rem;
  }

  .text-box p {
    font-size: 15px;
    line-height: 1.5;
  }

  .text-box .btn-red {
    padding: 8px 16px;
    font-size: 14px;
  }
}


/* footersection */

.footer {
  padding: 2rem;
  background-color: #bb1a1a; /* Red background */
  color: white;
  font-family: "Noto Sans", sans-serif;
}

.footer-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 130px;
}

.footer-left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: left;
}
.footer-left-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes logo to top & text to bottom */
  height: 100%; /* so it stretches full height of footer */
}

.copy-right {
  max-width: 1190px;
  margin: 0 auto;
}

.footer-logo {
  margin-top:5px;
  max-width: 250px;
  height: auto;
}

.footer-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 22px;
  font-weight: 300;
  margin: 0;
}

.footer-section ul {
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
  list-style: none;
  padding-left: 0;
  margin: 0;
  
}

.footer-bottom {
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-section ul li a {
  color: white !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4f4f4f;
}


@media (max-width: 1230px) {
  
.footer-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}


.footer-columns {
  gap: 50px;
}


.copy-right {
  max-width: 1000px;
  margin: left;
}
}

@media (max-width: 1000px) {
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    padding: 5px 5px;
    gap: 10px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-left-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0; /* Add this to reset if needed */
    margin-left: 0; /* Reset any margin */
  }

  
  .footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin-left: -30px;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-section h4 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    padding: 5px 0;
    border-bottom: 1px solid #ffffff;
  }

  .footer-section ul {
    font-size: 14px;
  }

  .footer-section.open ul {
    display: block;
  }

  
.footer-bottom {
  text-align: left;
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  padding-top: 0;
  border: none;
}
}

@media (max-width: 480px) {
  .footer-wrapper {
    padding: 8px 4px;
    gap: 15px;
  }

  .footer-logo {
    max-width: 190px;
  }

  .footer-section h4 {
    font-size: 16px;
    padding: 8px 0;
  }

  .footer-section ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }

}
.footer-section ul {
  display: none;
  margin-top: 10px;
}

.footer-section.open ul {
  display: block;
}

.footer-section h4 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-section ul {
    display: block !important;
  }

  .footer-section h4 .arrow {
    display: none;
  }
}
/* Client section */
.quote-section {
  background: #fff;
  padding: 40px 20px;
}

.quote-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Left side */
.quote-left {
  flex: 1;
}

.quote-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.quote-left p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.quote-nav {
  display: flex;
  gap: 15px;
}

.quote-btn {
  width: 45px;
  height: 45px;
  border: 3px solid #000;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  color: black !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.quote-btn:hover {
  background: #f0f0f0;
}

/* Right side fixed box */
.quote-right {
  flex: 1;
  position: relative;
  min-height: 350px; /* stable height for tallest quote */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* prevent overflow on mobile */
  width: 100%;
}

/* Each quote box */
.quote-box {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  width: 100%;
  text-align: left;
}

.quote-box.active {
  opacity: 1;
  position: absolute;
}

.quote-icon {
  font-size: 3rem;
  color: #b22222;
  display: block;
}

.quote-box p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.quote-box h4 {
  font-weight: 700;
  margin: 0;
}

/* =========================
   Responsive Styles
========================= */

/* Tablet and below */
@media (max-width: 1100px) {
  .quote-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .quote-left {
    max-width: 600px;
    margin: 0 auto;
  }

  .quote-right {
    width: 100%;
    position: relative;
    min-height: 280px;
  }

  .quote-box {
    text-align: center;
  }

  .quote-nav {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .quote-section {
    padding: 30px 20px;
  }

  .quote-container {
    gap: 40px;
  }

  .quote-left {
    width: 100%;
  }

  /* Keep all font sizes unchanged */
  .quote-left h2 { font-size: 2rem; }
  .quote-left p { font-size: 1rem; }
  .quote-box p { font-size: 1.2rem; line-height: 1.5; }
  .quote-box h4 { font-size: 1rem; }
  .quote-icon { font-size: 3rem; }
  .quote-btn { width: 38px; height: 38px; font-size: 1rem; }

  .quote-right {
    min-height: 300px; /* slightly taller for mobile readability */
    overflow: hidden;
  }

  .quote-box {
    max-width: 95%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}


/* Mobile */
@media (max-width: 786px) {
 
  .quote-right {
    min-height: 350px; /* slightly taller for mobile readability */
    overflow: hidden;
  }

}



/*Trusted Section.------*/

.trusted{
  background-color: #f3f3f3;
}
.trusted-section {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding:60px 0 60px 0px;
}

.trusted-section h2 {
  font-size: 2rem;
  font-weight: bold;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px 40px;
  align-items: center;
  justify-items: center;
}

.logo-grid img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.05);
}

.btn-wrapper {
  margin-top: 40px;
}

.customer-btn {
  font-size: 15px;
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #bb1a1a;
  background: #bb1a1a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.customer-btn:hover {
  background: transparent;
  color: #bb1a1a;
}

@keyframes fill-progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@media (max-width: 486px) {
  .trusted-section{
    padding: 30px 0;
  }
  .logo-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 logos per row */
    gap: 20px; /* reduce spacing for mobile */
  }

  .logo-grid img {
    max-width: 120px; /* scale down logos */
    max-height: 50px;
    
  }

  .trusted-section h2 {
    font-size: 2rem;
    padding-bottom:20px; /* slightly smaller title */
  }

  .customer-btn {
    font-size: 14px;
    padding: 8px 18px;
  }
}

/* Grow Inventory Wrapper for spacing-------------stop knowing start guessing */
.grow-wrapper {
  position: relative;
  background-color: #bb1a1a;
  padding: 4rem;
  display: flex;
  justify-content: center; /* centers .connect-box horizontally */
  align-items: center;
  overflow: hidden; /* hide overflow of image */
}

.grow-box {
  position: relative;
  background-color: #bb1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 0px;
  overflow: hidden;
}

/* Centered red image background */
.red-image {
  position: absolute;
  top: 70%;
  right: 0; /* position on right edge of section */
  transform: translateY(-50%);
  max-width: 800px; /* adjust as needed */
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Tablet */
@media (max-width: 1024px) {
  .red-image {
    max-width: 800px;
  }
}

.grow-left {
  position: relative; /* required to create stacking context above red-image */
  z-index: 1;
  flex: 1;
}

.grow-right {
  position: relative; /* required to create stacking context above red-image */
  z-index: 1;
  flex: 1;
  justify-content: flex-end; /* push content to the right */
  text-align: right;
}

.right-content {
  margin: center;
}

.grow-left h2,
.grow-right h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.grow-left p {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.5;
  color: white;
}

.input-group button {
  background-color: white;
  color: #bb1a1a;
  border: 2px solid white;
  padding: 5px 140px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Noto Sans", sans-serif;
}

.input-group button:hover {
  background-color: transparent;
  color: white;
}
@media (max-width: 900px) {
  .grow-wrapper {
    padding: 2rem 1rem;
  }

  .grow-box {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
  }

  /* ✅ Make h2 centered without manual margin */
  .grow-left {
    text-align: center;
    width: 100%;
  }

  .grow-left h2 {
    font-size: 1.2rem;
    margin: 0 auto;
  }

  /* ✅ Stack input group button under heading */
  .grow-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* spacing between stacked items */
    margin: 0; /* remove hardcoded offsets */
  }

  .input-group button {
    padding: 8px 50px;
    font-size: 14px;
  }

  .grow-right h2 {
    display: none;
  }

  .red-image {
    max-width: 500px;
    top: 60%;
    left: 60%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 486px) {
  .grow-wrapper {
    padding: 10px ;
  }

  .grow-box {
    padding: 1rem;
    text-align: center;
    gap: 0;
  }

  .grow-left {
    text-align: center;
    width: 100%;
  }

  .grow-left h2 {
    font-size: 1.5rem;
    margin: 0 auto; /* no manual left margin */
  }

  .grow-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* ✅ Stack input group buttons in center */
  .input-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0;
  }

  .input-group button {
    padding: 6px 35px;
    font-size: 14px;
    margin: 0; /* remove manual negative margins */
  }

  .grow-left p {
    font-size: 14px;
  }

  .grow-right h2 {
    display: none;
  }

  .red-image {
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 550px;
    opacity: 0.4;
  }
}

/* Stats Section */
.stats-section {
  background-color: #bb1a1a;
  color: white;
  padding: 20px 0;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px; /* space between each stat */
}

.stat {
  display: flex;
  align-items: center; /* align text bottoms */
  gap: 8px; /* space between number and text */
}

.stat h2 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
  line-height: 1;
}

.stat p {
  margin: 0;
  font-size: 1rem; /* smaller text */
  font-weight: 100;
}

/* Video Section */

.video-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.video-section video {
  width: 70%;
  padding: 3rem;
  margin: 0 auto;
  height: auto;
  display: block;
}

@media (max-width: 950px) {
  .stats-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

.video-section video {
  width: 100%;
  padding: 0;
  height: auto;
  display: block;
}

.stat h2 {
    font-size: 2rem;
  }

  .stat p {
    font-size: 1rem;
  }
}

/* Extra small - 480px */
@media (max-width: 480px) {
  .stats-container {
    gap: 10px;
  }

  .stat h2 {
    font-size: 1.5rem;
  }

  .stat p {
    font-size: 0.7rem;
  }
}
