:root {
	--primary: #004394;
	--accent: #c00415;
	--bg: #F7FAFC;
	--text: #1b1a18;
}

body {
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
	color: var(--text);
	background: var(--bg);
}

a {
	color: var(--primary);
}

.contact a {
	color: #fff;
}

.topbar {
	font-size: .9rem;
	background: #004394;
	border-bottom: 1px solid #edf2f7;
}

.navbar {
	background: #fff;
}

/* Ensure three zones: brand | center menu | right actions on lg+ */
.main-nav .container {
  gap: .5rem;
}
.main-nav .nav-center .nav-link {
  padding: .5rem .9rem;
}

/* Use CSS Grid only on lg+ to center menu perfectly */
@media (min-width: 992px) {
  .main-nav .container {
    display: grid !important;
  }
  .main-nav .navbar-brand { grid-column: 1; }
  .main-nav #navMain { grid-column: 2; }
  .main-nav .d-lg-flex.ms-auto { grid-column: 3; justify-self: end; }
}

/* Fix: prevent buttons wrapping above/below menu on edge widths */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .main-nav .nav-center { gap: .25rem; }
  .main-nav .nav-center .nav-link { padding: .5rem .7rem; }
}
/* Navbar layout: logo left, menu centered, actions right */
.main-nav .navbar-brand {
	margin-right: 0;
}

.main-nav .nav-center {
	/* Center the nav items between brand and action buttons */
	gap: .25rem;
}

@media (min-width: 992px) {
	.main-nav .navbar-collapse {
		display: grid !important;
		grid-template-columns: auto 1fr auto;
		/* brand | menu | actions */
		align-items: center;
		column-gap: 1rem;
	}

	.main-nav .navbar-brand {
		order: 1;
	}

	.main-nav .nav-center {
		order: 2;
		justify-content: center;
		display: flex;
	}

	.main-nav .d-flex.gap-2.ms-lg-0 {
		order: 3;
		justify-content: flex-end;
	}
}

/* Optional: refine link spacing */
.main-nav .nav-link {
	padding-left: .75rem;
	padding-right: .75rem;
}

.navbar .btn-enquire {
	background: var(--accent);
	color: #fff;
}

/* Animated gradient with your colors */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(-45deg,
    #c00415,
    #1f5aa1,
    #004394,
    #c00415
  );
  background-size: 400% 400%;
  animation: heroGradient 20s ease infinite;
  overflow: hidden;
  will-change: background-position;
}

/* Optional texture overlay (keep subtle or remove) */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("/images/hero.jpg") center/cover no-repeat;
  mix-blend-mode: soft-light;  /* softer than overlay to preserve colors */
  opacity: 0.18;               /* adjust 0.12–0.25 */
  pointer-events: none;
}

/* Keyframes (P1N2O style) */
@keyframes heroGradient {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* Improve legibility on vibrant backgrounds */
/* .hero h1, .hero .display-5, .hero p, .hero {
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
} */
.hero .btn-primary { background:#ffffff; color:#004394; border-color:#ffffff; }
form#enquiry {
    color: #000;
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
}
.hero .badge {
	background: rgb(255 255 255);
	color: var(--accent);
}

.lead-form {
	background: #fff;
	border: 1px solid #e6edf5;
	border-radius: .75rem;
	box-shadow: 0 10px 30px rgba(13, 38, 76, 0.08);
}

.lead-form .btn-primary {
	background: var(--primary);
	border-color: var(--primary);
}

.section-title .subtitle {
	color: #64748b;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-weight: 600;
	font-size: .85rem;
}

.product-card {
	background: #fff;
	border: 1px solid #e6edf5;
	border-radius: .75rem;
	padding: 1rem;
	height: 100%;
	box-shadow: 0 6px 20px rgba(13, 38, 76, 0.06);
}

.product-card .badge {
    background: #004394 !important;
    color: #ffffff;
}
button.btn.btn-outline-primary.btn-sm.mt-2:hover {
    color: #fff;
    background-color: #004394 !important;
    border-color: #004394 !important;
}
button.btn.btn-outline-primary.btn-sm.mt-2 {
    color: #004394;
    border: #004394 1px solid;
}
.icon-grid .icon {
	width: 44px;
	height: 44px;
	border-radius: .5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ecfeff;
	color: #0ea5e9;
}

.cta-band {
	background: var(--primary);
	color: #fff;
}

.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background: #fff;
	border-top: 1px solid #e5e7eb;
}

.sticky-cta .btn {
	flex: 1;
}

.footer {
	background: #0f172a;
	color: #cbd5e1;
}

.footer a {
	color: #e2e8f0;
	text-decoration: none;
}

/* About */
.section-title {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .section-title .subtitle {
      color: var(--accent);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    
    .section-title h2 {
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 1rem;
    }
	.why-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}
.why-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}
.display-6.fw-bold.text-primary {
    color: #004394 !important;
}

    /* Product Cards */
    .product-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      padding: 1.5rem;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .product-card h3 {
      color: var(--primary);
      font-weight: 600;
      font-size: 1.1rem;
    }
	#cardio a.btn.btn-primary, section#diabetic a.btn.btn-primary {
    background-color: #004394 !important;
    border: none !important;
    margin-top: 30px;
}
.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
section#about-third {
    padding: 60px 0;
}
section#why-choose {
    background: #fff;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.benefit-icon {
    background: #004394;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.flex-shrink-0 i {
    color: #004394 !important;
}
.benefit-content h5 {
    color: #004394;
    margin-bottom: 0.5rem;
}
section.hair-range {
    padding: 60px 0;
    background-color: #fff;
}
.item h3 {
    text-align: center;
    font-size: 20px;
    margin-top: 30px;
}

/* Gallery */
.gallery .g-item {
	position: relative;
	overflow: hidden;
	border-radius: .75rem;
	border: 1px solid #e6edf5;
}

.gallery .g-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform .4s ease;
}

.gallery .g-item:hover img {
	transform: scale(1.06);
}

.gallery .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0));
	opacity: 0;
	transition: opacity .3s;
}

.gallery .g-item:hover .overlay {
	opacity: 1;
}

.gallery .zoom {
	position: absolute;
	bottom: .5rem;
	right: .5rem;
	background: rgba(255, 255, 255, .9);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Positioning arrows */
.product-section .owl-nav .owl-prev,
.product-section .owl-nav .owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #333;
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-section .owl-nav .owl-prev:hover,
.product-section .owl-nav .owl-next:hover {
  background: #ff6600; /* hover color */
}

.product-section .owl-nav .owl-prev {
  left: -40px; /* move outside slider */
}

.product-section .owl-nav .owl-next {
  right: -40px; /* move outside slider */
}


/* Why Choose Us (expanded) */
.why-choose .why-card {
	background: #fff;
	border: 1px solid #e6edf5;
	border-radius: .75rem;
	padding: 1.25rem;
	height: 100%;
}

.why-choose .why-card .icon {
	width: 44px;
	height: 44px;
	border-radius: .5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef2ff;
	color: #4338ca;
}
button.btn.btn-outline-primary.envelope {
    background-color: #004394;
    border: none;
    color: #fff;
}

@media (min-width:992px) {
	.hero {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.gallery .g-item img {
		height: 240px;
	}
}
section.product-section {
    padding: 60px;
    background-color: #fff;
}
.item {
    box-shadow: 0 0 10px 0px #00000038;
    margin: 10px;
    border-radius: 10px;
    padding: 9px;
}
.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 1.5rem;
    height: 100%;
    position: relative;
}
section#faq {
    background-color: #fff;
}
a.btn.btn-outline-secondary.call-btn {
    background-color: #c00415;
    color: #fff;
    border: none;
}

@media (max-width:768px) {
  a.btn.btn-primary.call-btn, a.btn.btn-outline-secondary.call-btn {
    display: grid;
}
.footer-form  {
  display: none;
}
.scrolled img.me-2.logo-img {
    width: 100% !important;
    height: 74px !important;
    transition: 0.1s;
}
}

.footer-form {
    position: fixed;
    right: 15px;
    bottom: 0;
    z-index: 1000;
    width: 286px;
}
.footer-form .heading-look {
    font-size: 24px;
    background: #c00415;
    color: #fff;
    text-align: center;
    display: block;
    padding: 4px 0;
    cursor: pointer;
}
div#mini_contact_form {
    padding: 10px;
    display:none;
    background: #ffff;
}
.footer-form  button.btn.first.btn-primary.text-center {
    background-color: #004394;
    border: none;
    margin-top: 15px;
}
button.btn.btn-primary.w-100.color {
    background-color: #004394;
}

a.btn.btn-primary.call-btn.mobile {
    background-color: #004394;
    border: none;
}
nav.navbar.navbar-expand-lg.border-bottom.main-nav.scrolled {
    position: sticky;
    top: 0px !important;
    z-index: 999;
    background-color: #fff;
    transition: 0.2s cubic-bezier(0, 0.54, 0, 1.08) all;
    width: 100% !important;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.scrolled img.me-2.logo-img {
    width: 220px;
    height: 80px;
    transition: 0.1s;
}