
:root{
  --ppp-primary:#0d6efd;
  --ppp-dark:#0b2a4a;
  --ppp-accent:#00b8a9;
}
.navbar-brand span{ font-weight:700; letter-spacing:0.5px; }
.hero{
  background: linear-gradient(120deg, rgba(13,110,253,.07), rgba(0,184,169,.07));
  padding: 6rem 0;
}
.hero h1{ color:var(--ppp-dark); font-weight:800; }
.hero p.lead{ max-width:720px; }
.card-price{ font-size:1.15rem; font-weight:700; }
.footer{
  background:#06192e; color:#9fb3c8; padding:2rem 0;
}
.footer a{ color:#cfe3ff; text-decoration:none; }
.footer a:hover{ text-decoration:underline; }
.gallery-img{ transition: transform .2s ease; cursor:pointer; }
.gallery-img:hover{ transform: scale(1.02); }
.badge-pill{ border-radius:50rem; }
.modal-video{ aspect-ratio:16/9; width:100%; border:0; }
.section-title{ font-weight:800; color:var(--ppp-dark); }

 /* Hero Slider Full Height */
#heroSlider .carousel-item {
              /* full screen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#heroSlider .carousel-item > .d-flex {
  min-height: 100vh;              /* center content vertically */
}

.nav-link {
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}

.nav-link.active {
  color: #0d6efd !important; /* Bootstrap primary blue */
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #0d6efd;
}

/* style only the span inside navbar-brand */
.navbar-brand span {
  color: #02436d;      /* blue */
  font-weight: 1000;    /* bold */
}

/* optional hover effect */
.navbar-brand:hover span {
  color: #02436d;      /* green accent */
}



/* Brand Styling */
.navbar-brand span {
  font-weight: 700;
  font-size: 1.2rem;
  color: #222;
}

.navbar-brand .text-primary {
  color: #0d6efd !important; /* Highlight “Plate” */
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
}

/* Hover Effect (underline grow) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #0d6efd;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00d4ff !important; /* light blue hover */
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active Link */
.navbar-nav .nav-link.active {
  color: #00d4ff !important;
  /*text-decoration: underline;*/
}



.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* CTA Button */
.navbar .btn-primary {
  font-weight: 600;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
  background-color: #0056d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Pills Background */
.nav-pill-bg {
  background-color: #1c3b50; /* dark teal like in image */
  border-radius: 50rem;
}


/* Buttons */
.navbar .btn-info {
  border-radius: 50rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  color: #fff;
  background-color: #00bfff;
  border: none;
}

.navbar .btn-info:hover {
  background-color: #0099cc;
}

.navbar .btn-primary {
  border-radius: 50rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
}


.about-section img {
  transition: transform 0.3s ease;
}

.about-section img:hover {
  transform: scale(1.05);
}

