:root {
  /* Custom Colors based on the design */
  --marine-hero-bg: #fff2ef;
  --marine-primary: #053b81;
  --marine-dark: #404757;
  --marine-muted: #858a96;
  --marine-light: #ffffff;
  --bg-marine: #053b81;

  /* --- NEW HERO BACKGROUND IMAGE AND OVERLAY --- */
  --hero-bg-image: url("assets/img/banner1.jpg");
  --hero-overlay-color: rgba(0, 0, 0, 0.4);
  /* ------------------------------------------- */
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
button,
input,
select,
textarea {
  font-family: "Roboto", sans-serif;
}

body {
  font-family: "Roboto", sans-serif;
}

.bg-marine {
  background-color: var(--bg-marine);
  color: var(--marine-light);
}

/* Custom Background Colors */
.bg-hero-light {
  background-color: var(--marine-hero-bg) !important;
}

.bg-cta-gray {
  background-color: #f8f9fb !important;
}

/* Custom Text Colors */
.text-marine-primary {
  color: var(--marine-primary) !important;
}

.text-marine-dark {
  color: var(--marine-dark) !important;
}

.text-marine-light {
  color: var(--marine-light) !important;
}

.text-marine-muted {
  color: var(--marine-muted) !important;
}

/* Custom Button Style */
.btn-primary-marine {
  background-color: var(--marine-primary);
  border-color: var(--marine-primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
}

.btn-primary-marine:hover {
  background-color: #fff;
  /* Slightly darker hover */
  border-color: var(--marine-primary);
}

.btn-outline-dark-marine {
  color: var(--marine-dark);
  font-weight: 700;
  text-decoration: none;
}

/* --- NAVBAR OVERLAY STYLES --- */
.navbar-absolute {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000 !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* --- WORDPRESS NAV MENU STYLING --- */
.navbar-nav .menu-item {
  color: var(--marine-primary) !important;
  font-weight: 500;
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
  transition: color 0.2s;
}

.navbar-nav .menu-item a {
  text-decoration: none !important;
  color: var(--marine-primary) !important;
}

.navbar-nav .menu-item a:hover,
.navbar-nav .current-menu-item>a,
.navbar-nav .current_page_item>a {
  color: var(--marine-dark) !important;
}

/* Dark hamburger icon for mobile on light backgrounds */
.navbar-toggler {
  border-color: rgba(5, 59, 129, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%285, 59, 129, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile menu text color */
@media (max-width: 991.98px) {
  .navbar-nav .menu-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* --- HOME PAGE SPECIFIC NAV STYLING REMOVED (Now Global) --- */
/* -------------------------------- */

/* Hero Section adjustments for the overlay navbar and wave */
.hero-section {
  position: relative;
  /* padding-top: 140px; */
  /* Push content down below the absolute navbar */
  /* padding-bottom: 80px; */
  overflow: hidden;
  height: 100dvh;
  background-color: transparent !important;
  /* Must be transparent */
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* *** ACCURATE MULTI-PEAK WAVE SHAPE DIVIDER (SVG) *** */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
  /* Custom SVG Wave with multiple smooth peaks (White fill: %23FFFFFF) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFFFF' d='M0,10 C100,50 350,0 500,40 C650,80 850,30 1000,70 V100 H0 Z' /%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: translateY(10px);
}

/* Feature Box styling */
.feature-box {
  background-color: #ffffff;
  border-radius: 1.25rem;
  /* 20px */
  box-shadow: 0 7px 40px 2px rgba(18, 21, 154, 0.1);
  padding: 30px 10px 25px;
  margin: 0 0.625rem 1.25rem;
  /* 10px 20px */
  text-align: center;
}

.feature-icon-wrapper {
  display: inline-block;
  /* background-color: #FFE5DE; */
  color: var(--marine-primary);
  border-radius: 1.5rem;
  /* 24px */
  padding: 10px;
  margin-bottom: 0.625rem;
}

@media (min-width: 992px) {

  /* Adjust margin-top for stacked features on desktop (per original design) */
  .feature-box.mt-lg-4 {
    margin-top: 2.5rem !important;
  }
}

.feature-round {
  text-align: center;
}

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

li {
  list-style: none;
}

.wrapper {
  padding: 60px 0;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* .item-bg {
  width: 300px;
  height: 500px;
  position: absolute;
  top: 30px;
  background: #053b81;
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.3s;
  left: -30px;
}
.item-bg.active {
  left: 0;
  top: 0;
  opacity: 1;
} */

.news-slider {
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1300px) {
  .news-slider {
    max-width: 1000px;
  }
}

@media screen and (max-width: 576px) {
  .news-slider {
    margin-top: 45px;
  }
}

.news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.news-slider__item {
  width: 400px;
  flex-shrink: 0;
}

@media screen and (max-width: 992px) {
  .news-slider__item {
    width: 340px;
  }
}

.news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.news-slider__item.swiper-slide-active,
.news-slider__item.swiper-slide-prev,
.news-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}

.news-slider__ctr {
  position: relative;
  z-index: 12;
}

.news-slider__arrow {
  background: var(--marine-primary);
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}

.news-slider__arrow:focus {
  outline: none !important;
}

.news-slider__arrow .icon-font,
.news-slider__arrow .icon {
  display: inline-flex;
  color: #fff;
  fill: #fff;
}

.news-slider__arrow.news-slider-prev {
  left: 15px;
  transform: translateY(-50%);
}

.news-slider__arrow.news-slider-next {
  right: 15px;
  transform: translateY(-50%);
}

.news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}

.news-slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #000;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}

.news-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--marine-primary);
  width: 100px;
  transition-delay: 0s;
}

@media screen and (max-width: 576px) {
  .news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}

.news__item {
  padding: 40px;
  color: #000;
  border-radius: 10px;
  display: block;
  transition: all 0.3s;
}

.news__item:hover {
  background-color: #053b81;
  color: #fff;
  transition-delay: 0.1s;
}

@media screen and (min-width: 800px) {
  .news__item:hover {
    color: #fff;
    transition-delay: 0.1s;
  }

  .news__item:hover .news-date,
  .news__item:hover .news__title,
  .news__item:hover .news__txt {
    opacity: 1;
    color: #ffffff;
    transition-delay: 0.1s;
  }

  .news__item:hover .news__img {
    box-shadow: none;
  }
}

.news__item.active {
  color: #ffffff;
  transition: color 0.3s ease;
}

.news__item.active .news-date,
.news__item.active .news__title,
.news__item.active .news__txt {
  opacity: 1;
  color: #ffffff;
}

.news__item.active .news__img {
  box-shadow: none;
}

@media screen and (max-width: 992px) {
  .news__item {
    padding: 30px;
  }
}

@media screen and (max-width: 576px) {
  .news__item {
    padding: 20px;
  }
}

.news-date {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
  .news-date {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    padding-bottom: 0;
  }
}

.news-date__title {
  display: block;
  font-size: 32px;
  margin-bottom: 5px;
  font-weight: 500;
}

@media screen and (max-width: 576px) {
  .news-date__title {
    margin-right: 10px;
  }
}

.news-date__txt {
  font-size: 16px;
}

.news__title {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 0px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
  .news__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.news__txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.news__img {
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  height: 200px;
  margin-top: 30px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
}

@media screen and (max-width: 576px) {
  .news__img {
    height: 180px;
    margin-top: 20px;
  }
}

.news__img img {
  max-width: 100%;
  border-radius: 10px;
  height: 100%;
  width: 100%;
}

/* Activity Section */
.activity-section {
  background-color: #053b81;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.activity-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='0.9' d='M0,224L60,208C120,192,240,160,360,170.7C480,181,600,235,720,229.3C840,224,960,160,1080,154.7C1200,149,1320,203,1380,229.3L1440,256V0H0Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M0,160L80,133.3C160,107,320,53,480,64C640,75,800,149,960,165.3C1120,181,1280,139,1360,117.3L1440,96V0H0Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.25' d='M0,96L60,90.7C120,85,240,75,360,69.3C480,64,600,64,720,80C840,96,960,128,1080,149.3C1200,171,1320,181,1380,186.7L1440,192V0H0Z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

/* .activity-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f8f9fa' d='M0,120 V80 C200,20 450,140 720,70 C1000,0 1250,120 1440,80 V120 H0 Z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
} */

/* Product Section */
.product-box {
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  height: 100%;
  transition: transform 0.3s ease;
}

.product-box:hover {
  transform: translateY(-10px);
}

/* News Section Fixes */
.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.item-bg {
  width: 300px;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--marine-primary);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
  pointer-events: none;
}

.item-bg.active {
  opacity: 1;
}

/* Contact Section Fixes */
.contact-section {
  min-height: 400px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/img/ship bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='0.9' d='M0,224L60,208C120,192,240,160,360,170.7C480,181,600,235,720,229.3C840,224,960,160,1080,154.7C1200,149,1320,203,1380,229.3L1440,256V0H0Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M0,160L80,133.3C160,107,320,53,480,64C640,75,800,149,960,165.3C1120,181,1280,139,1360,117.3L1440,96V0H0Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.25' d='M0,96L60,90.7C120,85,240,75,360,69.3C480,64,600,64,720,80C840,96,960,128,1080,149.3C1200,171,1320,181,1380,186.7L1440,192V0H0Z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,120 V80 C200,20 450,140 720,70 C1000,0 1250,120 1440,80 V120 H0 Z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

/* Responsiveness Fixes */
@media (max-width: 991px) {
  .news-slider__item {
    width: 340px;
  }
}

@media (max-width: 768px) {
  .news-slider__item {
    width: 300px;
  }

  .hero-section h1 {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 576px) {
  .news-slider__item {
    width: 100%;
    max-width: 320px;
  }

  .hero-section h1 {
    font-size: 1.8rem !important;
  }

  .contact-section h3 {
    font-size: 1.5rem;
  }
}

/* --- EXTRACTED FROM INDEX.PHP & FOOTER.PHP --- */

.base-template__wrapper {
  max-width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10%;
}

.base-template__content {
  max-width: 35%;
}

@media screen and (max-width: 767.9px) {
  .base-template__wrapper {
    max-width: 100%;
    height: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .base-template__content {
    max-width: 100%;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  height: auto !important;
}

.vertical-ticker {
  height: 60dvh;
  display: flex;
  column-gap: 30px;
  overflow: hidden;
}

@media screen and (max-width: 767.9px) {
  .vertical-ticker {
    margin: 0 -20px;
    height: 100%;
    flex-direction: column;
    row-gap: 15px;
  }

  .swiper-slide {
    height: auto !important;
    width: auto !important;
  }
}

.vertical-ticker__slide-content {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 205;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(50px);
  height: 144px !important;
  width: 210px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

@media screen and (max-width: 767.9px) {
  .vertical-ticker__slide-content {
    width: 150px;
  }
}

.vertical-ticker__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-out;
}

.vertical-ticker__slide-content img {
  height: 125px !important;
  width: 190px !important;
  object-position: center;
  object-fit: contain;
}

.base-template {
  max-width: 100%;
}

.base-template__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(70dvh - 160px);
}

.base-template__content {
  position: relative;
  z-index: 1;
}

.base-template__heading {
  flex: 1;
  z-index: 1;
  max-width: 55%;
}

@media screen and (max-width: 767.9px) {
  .base-template__heading {
    padding-top: 40px;
    align-items: center;
    flex: 0;
  }
}

.base-template__heading .base-template__title,
.base-template__heading .base-template__text {
  text-align: left;
}

@media screen and (max-width: 767.9px) {

  .base-template__heading .base-template__title,
  .base-template__heading .base-template__text {
    text-align: center;
  }
}

.base-template__title {
  display: block;
  margin: 0;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  transition: color 0.4s ease;
}

.base-template__text {
  display: block;
  margin-bottom: 80px;
  font-weight: 400;
  text-align: center;
  line-height: 1.35;
  color: gray;
  transition: color 0.4s ease;
}

.base-template__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px 90px;
  max-width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
  .base-template__title {
    font-size: 32px;
  }
}

/* Footer styles */
footer::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='0.9' d='M0,224L60,208C120,192,240,160,360,170.7C480,181,600,235,720,229.3C840,224,960,160,1080,154.7C1200,149,1320,203,1380,229.3L1440,256V0H0Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M0,160L80,133.3C160,107,320,53,480,64C640,75,800,149,960,165.3C1120,181,1280,139,1360,117.3L1440,96V0H0Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.25' d='M0,96L60,90.7C120,85,240,75,360,69.3C480,64,600,64,720,80C840,96,960,128,1080,149.3C1200,171,1320,181,1380,186.7L1440,192V0H0Z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: translateY(-50px);
}

footer li {
  padding: 8px 0px;
}

.address p {
  margin-bottom: 10px;
}

.hero-section--contact {
  height: 40vh !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/ship bg.jpg') !important;
}

.section-title {
  font-size: 2.5rem;
}

/* Utility Classes */
.bg-marine-dark {
  background: #002850 !important;
}

.bg-marine-deep {
  background: #001a33 !important;
}

.bg-light-blue {
  background: #f8fbff !important;
  border: 1px solid #e1f0ff;
}

.text-content {
  line-height: 1.8;
  color: #444;
  font-size: 1.05rem;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-75 {
  opacity: 0.75;
}

/* Hero Variations */
.hero-section--product {
  height: 25vh !important;
  background-image: linear-gradient(rgba(0, 10, 25, 0.8), rgba(0, 10, 25, 0.8)), url('assets/img/ship bg.jpg') !important;
  background-position: center;
  background-size: cover;
}

.hero-section--services {
  height: 50vh !important;
  background-image: linear-gradient(rgba(0, 10, 25, 0.7), rgba(0, 10, 25, 0.7)), url('assets/img/ship bg.jpg') !important;
  background-position: center;
  background-size: cover;
}

.hero-section--about {
  height: 50vh !important;
  background-image: linear-gradient(rgba(0, 10, 25, 0.7), rgba(0, 10, 25, 0.7)), url('assets/img/banner1.jpg') !important;
  background-position: center;
  background-size: cover;
}

.hero-section--category {
  height: 35vh !important;
  background-image: linear-gradient(rgba(0, 40, 80, 0.8), rgba(0, 40, 80, 0.8)), url('assets/img/ship bg.jpg') !important;
  background-position: center;
  background-size: cover;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.product-item-card {
  border-color: #e0e6ed !important;
}

.text-primary-marine {
  color: #007bff;
}

.hero-sub {
  position: relative;
  overflow: hidden;
}

.subcat-card {
  border-radius: 8px;
  border: 1px solid #eee !important;
  transition: all 0.3s ease;
}

.subcat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #007bff !important;
}

.tracking-tight {
  letter-spacing: -1px;
}

.bg-marine-gradient {
  background: linear-gradient(135deg, #012850 0%, #007bff 100%) !important;
}

.bg-about-activities {
  background-color: #f0f7ff !important;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--marine-primary);
}

.wave-container {
  height: 120px;
  transform: translateY(-1px);
}

.wave-svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

.min-h-45 {
  min-height: 45px;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.product-item {
  min-height: 50px;
  transition: all 0.2s ease;
}

.product-item:hover {
  background-color: #e9ecef !important;
  transform: translateX(5px);
}

.border-primary-marine {
  border-color: #007bff !important;
}

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

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5) !important;
}

.product-card {
  border-radius: 12px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  border-color: #007bff;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: #007bff;
  border-radius: 2px;
}


@media (max-width: 768px) {
  .product-placeholder {
    min-height: 150px !important;
  }

  .hero-sub {
    height: 20vh !important;
  }
}