/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --first-color: hsl(31, 100%, 70%);
  --button-color: hsl(0, 0%, 17%);
  --button-color-alt: hsl(0, 0%, 21%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --text-color-light: hsl(0, 0%, 55%);
  --body-color: hsl(0, 0%, 99%);
  --container-color: #fff;
  --border-color: hsl(0, 0%, 94%);

  /*========== Font and typography ==========*/
  --body-font: 'Roboto', sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-bold: 700;

  /*========== Margenes Bottom ==========*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}
body{
  font-weight: "Montserrat";
  text-align: center;
  background-color: hsl(0, 0%, 99%);
}
.nav1{
  position: sticky !important;
  top: 0 !important;
  z-index: 999999 !important;
}
/* Force top navbar color */
.nav1,
.nav1 .navbar {
  background-color: hsl(0, 0%, 99%) !important;
}
.section-title {
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

/* Brand layout */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.1;
}
/* Make the toggle button huge and important */
.navbar-toggler {
    padding: 0.5rem; /* optional: more clickable area */
}

.navbar-toggler-icon {
    width: 3.2em !important;   /* big width */
    height: 3.2em !important;  /* big height */
    background-size: 3.2em 3.2em !important; /* scale the icon lines */
}
/* Force ALL states of btn-outline-success */
.btn-outline-success {
  color: hsl(31, 100%, 70%) !important;
  border-color: hsl(31, 100%, 70%) !important;
  background-color: transparent !important;
}

/* Hover */
.btn-outline-success:hover {
  color: #fff !important;
  background-color: hsl(31, 100%, 70%) !important;
  border-color: hsl(31, 100%, 70%) !important;
}

/* Focus */
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success.active {
  color: #fff !important;
  background-color: hsl(31, 100%, 70%) !important;
  border-color: hsl(31, 100%, 70%) !important;
  box-shadow: 0 0 0 0.2rem hsla(31, 100%, 70%, 0.4) !important;
}

/* Optional: add a subtle hover effect */
.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(1.2);
}

/* Smaller logo */
.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* iPad + phone */
@media (max-width: 991px) {
  .brand-logo {
    margin-left: -50px;   /* pull left */
  }
}

/* Small phones (optional stronger) */
@media (max-width: 576px) {
  .brand-logo {
    margin-left: -60px;
  }
}


/* Brand text */
.brand-main {
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-sub {
    font-size: 0.8rem;
    color: #555;
    display: block;
    line-height: 1.1;      /* reduces vertical spacing */
    margin-bottom: -2px;  /* pulls .brand-rc closer */
}

.brand-rc {
    font-size: 0.65rem;
    color: #0d6efd;
    display: block;
    line-height: 1.1;
    margin-top: -2px;     /* pulls it up */
    position: relative;
    top: -15px;            /* moves both up slightly */
}


/* Space between nav links */
.navbar-nav .nav-item {
    margin-left: 22px;
}

/* Cleaner links */
.nav-link {
    font-weight: 500;
}

.title-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.5;
}

/* iPad & below */
@media (max-width: 991px) {
  .title-h1 {
    font-size: 3.5rem;
    line-height: 1.5;
    position: static; /* disables relative positioning */
    top: -5%;
    left: 0;          /* removes offset */
  }
}

/* Phone */
@media (max-width: 575px) {
  .title-h1 {
    font-size: 3.5rem;
    line-height: 1.5;
    position: static; /* disables relative positioning */
    top: -5%;
    left: 0;          /* removes offset */
  }
}


.title-image {
      display: block;
      width: 100%;           /* bigger width when on the right */
      max-width: 100%;
      position: relative;   /* normal flow */
      margin-left: auto;    /* move to the right */
  }
  #title {
    position: relative;
    background-color: hsl(31, 100%, 70%);
    background-image:
    text-align: left;
    overflow: hidden;
  }

  html{
    scroll-behavior: smooth !important;
  }
  .Container-fluid{
    padding: 5% 5% 5%;

  }

  h1, h2, h3, h4, h5, h6{
    font-family: "Montserrat";

  }

  h2{
    font-family: "Montserrat";
    font-size: 3.5rem;
    line-height: 1.5;
  }

  h3{
    font-family: "Montserrat-bold";
  }

  p {
    color: #8f8f8f;
  }

  /* Carousel-item */
  .item-card {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    font-size: 1.25rem;
  }
  .carousel-inner .row {
    margin: 0 -5px;
  }
  .carousel-inner .col-12,
  .carousel-inner .col-sm-6,
  .carousel-inner .col-md-4 {
    padding: 0 5px;
  }
  .small-img {
    width: 80%; /* 80% of column */
    height: auto;
    margin: 0 auto;
  }
  .carousel-inner .row {
    display: flex;
  }
  #imageCarousel .carousel-inner .carousel-item {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    transition: transform 0.5s ease;
  }

  /* product-section */
  .product-section {
    position: relative;
    padding: 100px 20px;
    background: #E6E6E6;
    font-family: Arial, sans-serif;
  }

  /* Grid */
  .product-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
  }

  /* =======================
     PRODUCT SECTION
     ======================= */

  .product-section {
    position: relative;
    padding: 100px 20px;
    background: hsl(0, 0%, 99%);
    font-family: Arial, sans-serif;
  }

  /* Grid */
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* =======================
     PRODUCT CARD
     ======================= */

  .product-card {
    width: 420px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.6),
      0 0 20px rgba(230, 230, 230, 0.15);
  }
  /* Nuclear override for product-section py-4 */
  .product-section.py-4 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  /* If your HTML has <a> wrapping the card, this is fine.
     If not, it won't break anything. */
  .product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .product-card-line {
    width: 90%;
    height: 1.5px;
    margin: 15px auto;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 1px;
  }

  /* Figure & Image */
  .product-card figure {
    margin: 0;
    overflow: hidden;
  }

  .product-card figure img {
    width: 70%;
    display: block;
    object-fit: cover;
    margin: 0 auto;
    transition: transform 0.3s ease;
  }

  .product-card figure:hover img {
    transform: scale(1.08);
  }

  /* Product Text */
  .product-card .product-text {
    padding: 15px 12px;
  }

  .product-card .product-text strong {
    display: block;
    font-size: 1.1rem;
    color: #001F3D;
    margin-bottom: 10px;
  }

  /* Product info with icons */
  .product-card .proinfo p {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #4a4a4a;
    margin: 6px 0;
  }

  .product-card .proinfo p span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    flex: 0 0 20px;
  }

  .product-card .proinfo p b {
    color: #001F3D;
  }

  /* More button */
  .product-card .promore {
    display: flex;
    align-items: center;
    margin-top: 12px;
    font-weight: bold;
    color: #001F3D;
    cursor: pointer;
  }

  .product-card .promore i {
    font-style: normal;
    margin-left: 4px;
    display: inline-block;
    font-size: 1rem;
    transform: translateY(1px);
    transition: 0.3s;
  }

  .product-card .promore:hover i {
    transform: translateX(4px);
  }

  /* =======================
     THIS IS THE FIX YOU WANT
     Two on a row + last centered
     On PHONE + iPAD only
     ======================= */

  /* PHONE + iPAD: up to lg breakpoint (991.98px) */
  @media (max-width: 991.98px){

    /* Force ALL product columns to be 50% width (2 per row) */
    .product-section .row.g-4 > .col-12{
      flex: 0 0 50% !important;
      max-width: 50% !important;
    }

    /* Center the 3rd card by offsetting it */
    .product-section .row.g-4 > .col-12:nth-child(3){
      margin-left: 25% !important; /* center a 50% card */
    }
  }

  /* Very small phones: keep 1 per row (optional, remove if you still want 2 on tiny screens) */
  @media (max-width: 575.98px){

    .product-section .row.g-4 > .col-12{
      flex: 0 0 100% !important;
      max-width: 100% !important;
      margin-left: 0 !important;
    }

    .product-section .row.g-4 > .col-12:nth-child(3){
      margin-left: 0 !important;
    }
  }
  /* shadow only (no movement) */
  .product-card-bs{
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  }

  .product-card-bs:hover{
    transform: none !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  }

  /* stop any image animation/zoom */
  .product-figure img{
    transition: none !important;
    transform: none !important;
  }

  /* ✅ Layout fix for phone + iPad:
     2 on first row, third centered underneath */
  @media (min-width: 576px) and (max-width: 991.98px){
    /* keep your Bootstrap column sizes, just center the 3rd item */
    .product-section .row.g-4 > .col-12:nth-child(3){
      margin-left: auto !important;
      margin-right: auto !important;
    }
  }
  /* Specs layout inside your cards */
  .proinfo .pro-row{
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
  }

  .proinfo .pro-icon{
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
  }

  .proinfo .pro-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .proinfo{
    margin-top: 10px;
  }

  .proinfo b.pro-value{
    font-weight: 800;
    margin-left: auto;   /* pushes value to the right */
    white-space: nowrap;
  }
  /* ================================
     TITLE: GRAY-BLACK + HEAVY
  ================================ */

  .product-title{
    color: hsl(0, 0%, 18%) !important;   /* 👈 gray-black (very clean, not harsh black) */
    font-weight: 800 !important;        /* 👈 heavy but classy */
    letter-spacing: 0.2px;              /* subtle premium feel */
  }

  /* Spec values (capacity, weight, power) */
  .proinfo b,
  .proinfo b.pro-value{
    color: hsl(0, 0%, 30%) !important;   /* slightly lighter than title */
    font-weight: 700;
  }

  /* <!-- Call to Action --> */
#cta{
  background-color: hsl(31, 100%, 70%);
}
.cta-h3{
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.5;
}

/* Footer */
#footer {
background: #fdfdfd;
padding: 40px 0 20px;
color: #111; /* text color */
}

.footer-icons {
display: flex;
justify-content: center;
gap: 25px;
margin-bottom: 15px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 35%);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-icon i {
  display: block;
  line-height: 1;
}

.social-icon:hover {
  transform: translateY(-3px);
}

/* Hover colors */
.social-icon:hover .fa-instagram { color: #E1306C; }
.social-icon:hover .fa-facebook-f { color: #1877F2;}
.social-icon:hover .fa-envelope  { color: #FFD700; }
.social-icon:hover .fa-whatsapp  { color: #25D366; }




.footer-text {
font-size: 14px;
opacity: 0.85;
color: hsl(0, 0%, 35%);
}

/* Menu */
.menu-header {
  position: relative;
  background-image:
    linear-gradient(
      hsla(31, 100%, 70%, 0.75),
      hsla(31, 100%, 70%, 0.75)
    ),
    url('../img/truck.png');

  background-repeat:
    no-repeat,
    no-repeat;

  background-position:
    center,
    center bottom;

  background-size:
    cover,     /* overlay */
    contain;   /* truck (always no crop) */

  background-color: hsl(31, 100%, 70%);
  height: 500px;
}
@media (min-width: 992px) {
  .menu-header {
    background-size:
      cover,
      60%;

    background-position:
      center,
      center 75%;   /* move truck downward */
  }
}


/* Overlay for menu header */
.menu-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,31,61,0.75);
  transition: background 0.3s ease;
}

.menu-title-h1 {
  position: absolute;
  bottom: 20px;
  left: 50px;
  color: #fff;
  font-size: 70px;
  font-weight: 700;
}

/* Back arrow style */
.back-arrow {
  position: absolute;
  top: 25px;
  left: 45px;
  z-index: 2;
  font-size: 65px;
  color: hsl(0, 0%, 15%);
  background-color: hsl(31, 100%, 90%); /* subtle circular background */
  padding: 8px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.arrow {
  transition: transform 0.35s ease;
}

.back-arrow:hover {
  background-color: hsl(31, 100%, 70%);
  transform: scale(1.2);       /* slight pop effect */
  color: hsl(31, 100%, 70%);
}

.menu-card {
  margin-bottom: 28px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.75);
}

.menu-btn {
  width: 100%;
  background: hsl(31, 100%, 70%);
  border: none;
  padding: 45px 35px;
  font-size: 45px;
  font-weight: 600;
  color: hsl(0, 0%, 35%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 4️⃣ Full-width menu containers (excluding arrow/header) */
.mobile-menu .container {
  max-width: 95%;
}
.menu-btn i:first-child {
  margin-right: 12px;
  font-size: 50px;
}

.menu-link {
  font-size: 45px;
  display: block;
  padding: 35px 25px;
  background: hsl(31, 100%, 80%);
  color: hsl(0, 0%, 55%);
  text-decoration: none;
}

.menu-link:active {
  background: hsl(0, 0%, 55%);
}
.bg-light {
background-color: hsl(0, 0%, 99%) !important;
}
a:hover {
    color: hsl(0, 0%, 15%) !important;
}
.menu-btn:hover i:first-child {
    transform: scale(1.25) rotate(-3deg);
    color: hsl(0, 0%, 15%) !important;
}
/* iOS-style soft glass card */
.menu-card {
background: rgba(255,255,255,0.92);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}

/* Gentle icon animation */
.menu-btn i:first-child {
transition: transform .35s ease, color .35s ease;
}

/* Divider glow (very subtle) */
.menu-card::after {
content: "";
display: block;
height: 1px;
background: linear-gradient(
  to right,
  transparent,
  rgba(0,0,0,.08),
  transparent
);
}

/* ABOUT DROPDOWN – GLASS */
.about-dropdown {
  width: 260px;
  padding: 0;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.about-box {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.45;
  color: #111;
}

.about-box strong {
  font-size: 15px;
  font-weight: 700;
}

.about-box .rc {
  font-size: 13px;
  font-weight: 600;
  color: #0d6efd;
}

.about-box p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #333;
}

/* FORCE our glass dropdown to override Bootstrap */
.dropdown-menu.about-dropdown{
  background: rgba(255, 255, 255, 0.55) !important; /* transparency */
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18) !important;
  border-radius: 14px !important;
  padding: 0 !important;

  /* glass blur (works on most modern browsers) */
  -webkit-backdrop-filter: blur(14px) !important;
  backdrop-filter: blur(14px) !important;
}

/* Make sure the LI content isn't adding a solid fill */
.dropdown-menu.about-dropdown .about-box{
  background: transparent !important;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .dropdown-menu.about-dropdown{
    background: rgba(20, 20, 20, 0.55) !important; /* still see-through */
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18) !important;
  }
  .dropdown-menu.about-dropdown .about-box{
    color: #fff;
  }
  .dropdown-menu.about-dropdown .about-box p{
    color: rgba(255,255,255,0.80);
  }
  .dropdown-menu.about-dropdown .rc{
    color: #ffd27a; /* soft highlight */
  }
}

/* ABOUT INFO BOX — FINAL FIX */
.about-info-box{
  margin: 18px;
  padding: 26px 28px;

  /* ✅ YOUR COLOR — UNCHANGED */
  background: hsl(31, 100%, 80%);

  border-radius: 18px;

  font-size: 24px;          /* increased slightly */
  line-height: 1.7;
  color: #001F3D;
}

/* Company name */
.about-info-box h4{
  margin: 0 0 8px;
  font-size: 54px;          /* bigger, clear heading */
  font-weight: 900;
  letter-spacing: 0.4px;
}

/* RC number */
.about-info-box .rc-no{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 48px;          /* increased */
  font-weight: 800;
  color: #003366;           /* readable on your background */
}

/* Description text */
.about-info-box p{
  margin: 0;
  font-size: 36px;          /* increased */
  color: #001F3D;
}

/* ================= ICON WRAPPER ================= */

.IEW {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

/* One rule for all icons */
.IEW i {
  border: 1px solid hsl(31, 100%, 70%);
  border-radius: 20px;
  width: 55px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  color: #001F3D;
}

/* Brand hover colors */
.IEW .fa-envelope:hover  { color: #ffd700; }
.IEW .fa-instagram:hover { color: #E1306C; }
.IEW .fa-whatsapp:hover  { color: #25D366; }

/* ================= CONTACT LIST ================= */

.contact-icons li {
  font-size: 15px;
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  gap: 20px;
  text-align: center;
}

.contact-icons i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: hsl(31, 100%, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 35%);
}

.contact-icons a {
  color: #001F3D;
  font-weight: 500;
  text-decoration: none;
}

.contact-icons a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE (BS5 WAY) ================= */

/* Mobile & tablet */
@media (max-width: 991px) {
  .col-md-7,
  .col-md-5 {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
}

/* ================= COLLAPSIBLE CONTACT ================= */

.get-in-touch-collapsible .contact-content {
  display: none;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.get-in-touch-collapsible.open .contact-content {
  display: block;
}

.toggle-contact {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 10px;
}

.toggle-contact i {
  transition: transform 0.3s ease;
}

.get-in-touch-collapsible.open .toggle-contact i {
  transform: rotate(180deg);
}

/* iOS glass effect */
@media (max-width: 991px) {
  .get-in-touch-collapsible .contact-content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
  }
}


/* ================= PRODUCTS SECTION ================= */

:root{
  --accent: hsl(31, 100%, 70%);     /* your theme color */
  --text: hsl(0, 0%, 18%);
  --muted: hsl(0, 0%, 45%);
  --card: rgba(255,255,255,0.78);
  --border: rgba(0,0,0,0.08);
  --shadow: 0 12px 30px rgba(0,0,0,0.10);
}

/* Section header */
.product-header h2,
h2.fw-bold {
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--text);
}

.product-header p {
  color: var(--muted);
}

/* Page container */
.product-page {
  position: relative;
}

/* ================= PRODUCT CARD ================= */

.product-item .card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hover effect */
.product-item .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
  border-color: rgba(0,0,0,0.12);
}

/* ================= IMAGE DIM → BRIGHTEN (FIXED SIZE) ================= */

.card-img-top {
  width: 100%;          /* fill card width */
  height: 210px;       /* FIXED height for all images */
  object-fit: contain; /* keeps full image without distortion */

  margin: 20px 0 0;    /* keep your top spacing */
  display: block;
  border-radius: 12px;

  filter: brightness(0.75) contrast(1.05);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}


/* Slight zoom on hover */
.product-item .card:hover .card-img-top {
  transform: scale(1.04);
}

/* Card body spacing */
.product-item .card-body {
  padding: 14px 16px 16px;
}

/* Title */
.product-item .card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

/* Divider line */
.product-item hr {
  border: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.12),
    rgba(0,0,0,0.04),
    rgba(0,0,0,0.12)
  );
  margin: 10px 0;
}

/* Description */
.product-item .card-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 0;
}

/* Nice “accent” glow bar */
.product-item .card::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
}

/* ================= PAGINATION ================= */

.pagination {
  gap: 8px;
}

.page-item .page-link {
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  color: var(--text);
  padding: 10px 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.page-item .page-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.85);
}

.page-item.active .page-link {
  background: var(--accent);
  border-color: transparent;
  color: hsl(0, 0%, 12%);
  font-weight: 800;
}

/* Remove focus ring glow that looks harsh */
.page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 179, 102, 0.35);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .product-item .card-img-top {
    height: 190px;
  }
}

@media (max-width: 576px) {
  .product-item .card-img-top {
    height: 160px;
  }
  .product-item .card-body {
    padding: 12px 12px 14px;
  }
  .product-item .card-title {
    font-size: 0.98rem;
  }
}
/* ================= CARD IMG TOP (ENHANCED) ================= */

/* Make sure the image area behaves like a hero */
.product-item .card-img-top{
  width: 100%;
  display: block;

  /* keep your existing sizing */
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;

  /* premium feel */
  filter: contrast(1.02) saturate(1.05);
  transform-origin: center;
}

/* Add a soft overlay + highlight using a pseudo layer on the CARD */
.product-item .card{
  position: relative; /* needed for the overlay */
}

/* Gradient overlay on image area (does not change your layout) */
.product-item .card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  /* must match image height */
  height: 210px;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.00) 55%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.00) 55%
    );

  pointer-events: none;
  z-index: 2;
}

/* Keep overlay height in sync on responsive sizes */
@media (max-width: 991px){
  .product-item .card::before{ height: 190px; }
}

@media (max-width: 576px){
  .product-item .card::before{ height: 160px; }
}

/* Make sure image stays below overlay */
.product-item .card-img-top{
  position: relative;
  z-index: 1;
}

/* Slightly stronger zoom + smoothness on hover */
.product-item .card:hover .card-img-top{
  transform: scale(1.06);
}
/* ================= IMAGE SIZE FIX ================= */

.product-item .card-img-top {
  width: 100%;
  height: 210px;          /* fixed visual height */
  object-fit: contain;   /* IMPORTANT: no cropping */
  background: #f7f7f7;   /* clean neutral background */
  padding: 10px;         /* breathing space for small images */
}

/* Responsive sync */
@media (max-width: 991px) {
  .product-item .card-img-top {
    height: 190px;
  }
}

@media (max-width: 576px) {
  .product-item .card-img-top {
    height: 160px;
  }
}
.pagination .page-item.active .page-link {
  z-index: 3;
  color: hsl(0, 0%, 12%);
  background-color: hsl(31, 100%, 70%) !important;
  border-color: hsl(31, 100%, 70%) !important;
  font-weight: 800;
}


:root{
  --accent: hsl(31, 100%, 70%);
  --text: hsl(0, 0%, 18%);
  --muted: hsl(0, 0%, 40%);
}

/* ================= GLASS SEARCH (Desktop-like style) ================= */
/* Keeps your class names: .search-form-mobile, .search-input-mobile, .search-btn-mobile, .search-icon */

.search-form-mobile{
  max-width: 800px;   /* desktop width feel */
  width: 100%;
  margin: 20px auto;  /* centered */

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 6px;       /* slim */
  border-radius: 25px;

  /* glass container */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.30);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Optional icon (if you use it) */
.search-icon{
  width: 38px;
  height: 38px;
  border-radius: 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: rgba(17, 17, 17, 0.65);
}

/* Input Field */
.search-input-mobile{
  flex: 1;
  min-width: 0;

  border: none !important;
  outline: none !important;

  border-radius: 20px;
  padding: 10px 15px;

  background: rgba(255, 255, 255, 0.40);
  color: #111;

  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.10);

  transition: all 0.30s ease;
}

.search-input-mobile::placeholder{
  color: #555;
  opacity: 0.80;
}

.search-input-mobile:focus{
  background: rgba(255, 255, 255, 0.60);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.20);
}

/* Search Button */
.search-btn-mobile{
  border-radius: 20px;
  padding: 8px 15px;

  background: rgba(255, 255, 255, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #111;
  font-weight: 700;

  transition: all 0.30s ease;
}

.search-btn-mobile:hover{
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Tap feel (mobile) */
.search-btn-mobile:active{
  transform: scale(0.98);
}

/* Small phones: tighter */
@media (max-width: 360px){
  .search-form-mobile{
    margin: 14px auto;
    padding: 5px;
    border-radius: 22px;
  }
  .search-icon{
    width: 34px;
    height: 34px;
    border-radius: 18px;
  }
  .search-input-mobile{
    padding: 9px 12px;
  }
  .search-btn-mobile{
    padding: 8px 12px;
  }
}


/* ===== HERO ===== */
.aboutHero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--border);
  padding: 3rem 0 2.4rem;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.80), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(0,0,0,.08), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.04), transparent 55%);
}

/* Accent waves (uses accent heavily) */
.aboutHero::before{
  content:"";
  position:absolute;
  inset:-50% -30% auto -30%;
  height: 520px;
  background:
    radial-gradient(circle at 20% 35%, rgba(255,255,255,.70), transparent 60%),
    radial-gradient(circle at 55% 45%, rgba(255,255,255,.40), transparent 62%),
    radial-gradient(circle at 85% 50%, rgba(0,0,0,.06), transparent 60%),
    radial-gradient(circle at 45% 80%, rgba(255,255,255,.35), transparent 60%);
  opacity:.9;
  animation: heroFloat 10s ease-in-out infinite;
  pointer-events:none;
}
.aboutHero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(0deg, rgba(0,0,0,.03), transparent 45%);
  pointer-events:none;
}
@keyframes heroFloat{
  0%,100%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(18px, 14px, 0); }
}

.heroGrid{
  position:relative;
  z-index:1;
  display:grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px){
  .heroGrid{ grid-template-columns: 1.2fr .8fr; align-items:start; }
}

.heroPill{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.45rem .85rem;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border:1px solid var(--border);
  width: fit-content;
  color: hsl(0, 0%, 65%);
}
.pillDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.heroTitle{
  margin:.8rem 0 .6rem;
  font-weight: 700;
  color: hsl(0, 0%, 85%);
  letter-spacing:-.3px;
  line-height:1.2;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.heroText{
  max-width: 100ch;
  margin:0 0 1.1rem;
  color: hsl(0, 0%, 75%);
}

.heroButtons{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-bottom: 1.2rem;
}

.btnAccent{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.9rem 1.05rem;
  border-radius: 14px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.08);
  transition:.25s ease;
  text-decoration:none;
}
.btnAccent:hover{ transform: translateY(-1px); filter: brightness(.98); }

.btnGhost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.9rem 1.05rem;
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  color: var(--title);
  font-weight: 700;
  border: 1px solid var(--border);
  transition:.25s ease;
  text-decoration:none;
}
.btnGhost:hover{ transform: translateY(-1px); background: rgba(255,255,255,.92); }

.heroMini{
  display:grid;
  gap:.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px){
  .heroMini{ grid-template-columns: repeat(3, 1fr); }
}
.miniCard{
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: .95rem;
  display:flex;
  gap:.75rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.miniIcon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color:#111;
  flex:0 0 auto;
}
.miniCard b{ display:block; color: var(--title); }
.miniCard span{ display:block; color: var(--textLight); font-size:.85rem; }

.glassCard{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}
.cardTitle{
  margin:0 0 .25rem;
  color: var(--title);
  font-weight: 700;
}
.cardSub{ margin:0 0 1rem; color: var(--textLight); }

.addrBlock{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: .9rem;
  background: rgba(0,0,0,0.01);
  margin-bottom: .85rem;
}
.addrBadge{
  display:inline-block;
  background: var(--accent);
  color:#111;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}
.addrText{ margin:0; color: var(--text); }
.muted{ color: var(--textLight); }

.noteStrip{
  margin-top:.25rem;
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  padding:.75rem .85rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.03);
  border: 1px dashed var(--border);
}
.noteDot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  margin-top:.25rem;
  flex:0 0 auto;
}

/* ===== MAIN ===== */
.sectionPad{ padding: 2.5rem 0 3rem; }
.sectionHead{ margin-bottom: 1rem; }
.sectionTitle{ color: var(--title); font-weight: 800; margin:0; }
.sectionDesc{ color: var(--textLight); margin:.25rem 0 0; }

.aboutAccordion{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.aboutItem{ border-bottom: 1px solid var(--border); }
.aboutItem:last-child{ border-bottom:none; }

/* Bootstrap accordion styling */
.accordion-button{
  font-weight: 800;
  color: var(--title);
  background: linear-gradient(90deg, rgba(0,0,0,0.02), transparent 60%);
}
.accordion-button::after{
  filter: grayscale(1);
}
.accordion-button:not(.collapsed){
  background: linear-gradient(90deg, rgba(255,255,255,0.75), rgba(255,255,255,0.35));
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.02);
}

/* Accent left bar (heavy accent usage) */
.accordion-button{
  position:relative;
}
.accordion-button::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 10px;
  background: var(--accent);
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  opacity: .95;
}

.aboutBody{
  color: var(--text);
  padding: 1.1rem 1.25rem 1.25rem;
}

.svcGrid{
  display:grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px){
  .svcGrid{ grid-template-columns: 1fr 1fr; }
}
.svcCard{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(0,0,0,0.01);
}
.svcTop{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  margin-bottom:.5rem;
}
.svcChip{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color:#111;
  flex:0 0 auto;
}
.svcCard h3{
  margin: .15rem 0 0;
  font-size: 1.05rem;
  color: var(--title);
  font-weight: 800;
}
.svcCard p{ margin: .4rem 0 0; }

.trackList{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.7rem;
}
.trackList li{
  display:flex;
  gap:.7rem;
  align-items:flex-start;
  padding:.85rem .9rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.01);
}
.liDot{
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: var(--accent);
  margin-top:.35rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  flex:0 0 auto;
}

.vmvGrid{
  display:grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px){
  .vmvGrid{ grid-template-columns: repeat(3, 1fr); }
}
.vmvCard{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(0,0,0,0.01);
}
.vmvCard h3{
  margin: 0 0 .35rem;
  color: var(--title);
  font-weight: 900;
}
.vmvCard p{ margin:0; }

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top: 1rem;
}

.aboutFooter{
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  color: var(--textLight);
  text-align:center;
  font-size:.9rem;
}

/* =========================================================
   MOBILE: PUSH DOWN + MAKE EVERYTHING VERY BIG
   Paste at the BOTTOM of about.css
   ========================================================= */

@media (max-width: 576px){

  /* Push the whole hero section downward */
  .menu-header{
    padding-top: 28px !important;
    padding-bottom: 10px !important;
  }

  .aboutHero{
    padding-top: 32px !important;
    padding-bottom: 18px !important;
    margin-top: 18px !important;
  }

  /* Make containers feel bigger and less "tight" */
  .aboutHero .container,
  .sectionPad.container{
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Make the two big cards bigger */
  .heroLeft,
  .heroRight .glassCard{
    padding: 30px 22px !important;
    border-radius: 26px !important;
  }

  .heroGrid{
    gap: 22px !important;
  }

  /* Bigger pill */
  .heroPill{
    padding: 14px 16px !important;
    font-size: 1.08rem !important;
  }

  /* BIGGER HERO TEXT */
  .heroTitle{
    font-size: 2.6rem !important;   /* VERY BIG */
    line-height: 1.08 !important;
    margin-top: 16px !important;
    margin-bottom: 14px !important;
  }

  .heroText{
    font-size: 1.22rem !important;  /* VERY BIG paragraph */
    line-height: 2.0 !important;
    margin-bottom: 22px !important;
  }

  /* Buttons: big + full width */
  .heroButtons{
    gap: 12px !important;
    margin-bottom: 22px !important;
  }

  .btnAccent,
  .btnGhost{
    width: 100%;
    padding: 16px 18px !important;
    font-size: 1.12rem !important;
    border-radius: 18px !important;
  }

  /* Mini cards: bigger */
  .heroMini{
    gap: 14px !important;
  }

  .miniCard{
    padding: 18px 16px !important;
    border-radius: 20px !important;
  }

  .miniIcon{
    width: 46px !important;
    height: 46px !important;
    border-radius: 16px !important;
    font-size: 1.2rem !important;
  }

  .miniCard b{
    font-size: 1.12rem !important;
  }

  .miniCard span{
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
  }

  /* Right card text bigger */
  .cardTitle{
    font-size: 1.55rem !important;
    margin-bottom: 10px !important;
  }

  .cardSub{
    font-size: 1.12rem !important;
    line-height: 1.9 !important;
    margin-bottom: 18px !important;
  }

  .addrBlock{
    padding: 18px 16px !important;
    border-radius: 20px !important;
  }

  .addrBadge{
    font-size: 1.05rem !important;
    padding: 10px 14px !important;
    margin-bottom: 12px !important;
  }

  .addrText{
    font-size: 1.12rem !important;
    line-height: 1.9 !important;
  }

  .noteStrip{
    padding: 16px 14px !important;
    font-size: 1.10rem !important;
    line-height: 1.75 !important;
    margin-top: 16px !important;
    border-radius: 18px !important;
  }

  /* Accordion section: add space above so it sits lower too */
  .sectionPad{
    padding-top: 30px !important;
    padding-bottom: 50px !important;
  }

  .sectionTitle{
    font-size: 1.7rem !important;
  }

  /* Accordion: big tap targets */
  .aboutAccordion .accordion-button{
    padding: 20px 18px !important;
    font-size: 1.18rem !important;
  }

  .aboutAccordion .accordion-body{
    padding: 20px 18px 22px !important;
    font-size: 1.15rem !important;
    line-height: 2.0 !important;
  }

  /* Services / cards bigger */
  .svcGrid{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 12px !important;
  }

  .svcCard{
    padding: 20px 18px !important;
    border-radius: 20px !important;
  }

  .svcChip{
    width: 44px !important;
    height: 44px !important;
    border-radius: 16px !important;
    font-size: 1.05rem !important;
  }

  .svcCard h3{
    font-size: 1.18rem !important;
    line-height: 1.35 !important;
  }

  .svcCard p{
    font-size: 1.12rem !important;
    line-height: 1.9 !important;
  }

  .ctaRow a{
    width: 100%;
  }

  /* Track list bigger */
  .trackList li{
    padding: 18px 16px !important;
    font-size: 1.12rem !important;
    line-height: 1.9 !important;
    border-radius: 18px !important;
  }

  /* VMV grid bigger */
  .vmvGrid{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 12px !important;
  }

  .vmvCard{
    padding: 20px 18px !important;
    border-radius: 20px !important;
  }

  .vmvCard h3{
    font-size: 1.22rem !important;
  }

  .vmvCard p{
    font-size: 1.12rem !important;
    line-height: 1.9 !important;
  }
}
/* ======================================
   FT2 = FORCE EVERYTHING DOWN (BIG SPACE)
   ====================================== */

.FT2 {
  margin-top: 120px !important;   /* desktop */
  padding-top: 60px !important;
}

/* On phones: push WAY WAY DOWN */
@media (max-width: 576px){
  .FT2 {
    margin-top: 120px !important;  /* HUGE DROP */
    padding-top: 60px !important;
  }
}
