:root {
	--primary: #0e7dc2;
	--accent: #f5811e;
	--bg: #F7FAFC;
	--text: #1b1a18;
}

body {
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
	color: var(--text);
	background: #fff;
}

a {
	color: var(--primary);
}

.contact a {
	color: #fff;
}

.topbar {
    font-size: .9rem;
    background: #f5811e;
    border-bottom: 1px solid #edf2f7;
}

.navbar {
    background: #fff;
    padding: 0px;
}

/* Ensure three zones: brand | center menu | right actions on lg+ */
.main-nav .container {
  gap: .5rem;
}
.main-nav .nav-center .nav-link {
    padding: .5rem .9rem;
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

/* Use CSS Grid only on lg+ to center menu perfectly */
@media (min-width: 992px) {
  .main-nav .container {
    display: grid !important;
  }
  .row.g-4.gallery-row {
    margin-top: 30px;
}
  .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, #f5811e, #1f5aa1, #0e7dc2, #0e7dc2);
    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: #f5811e;
}

.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: #f5811e;
    border-color: #f5811e;
}
.section-title .subtitle {
	color: #f5811e;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-weight: 600;
	font-size: .85rem;
}



.product-card .badge {
    background: #004394 !important;
    color: #ffffff;
}
button.btn.btn-outline-primary.btn-sm.mt-2:hover {
    color: #fff;
    background-color: #0e7dc2 !important;
    border-color: #0e7dc2 !important;
}
button.btn.btn-outline-primary.btn-sm.mt-2 {
    color: #ffffff;
    border: #f5811e 1px solid;
    background-color: #f5811e;
}
.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: #f5811e;
    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: #0e7dc2 !important;
}

    /* Product Cards */
  .product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
    
    .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: 16px;
    font-weight: 400;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.benefit-icon {
    background: #f5811e;
    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: #f5811e !important;
}
.benefit-content h5 {
    color: #0e7dc2;
    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: #f5811e;
    border: none;
    color: #fff;
}

@media (min-width:992px) {
	.hero {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.gallery .g-item img {
		height: 240px;
	}
}

.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: #0e7cc2;
    color: #fff;
    border: none;
}
section#about {
    padding-bottom: 60px;
}
section.certicate.py-5 {
    padding-bottom: 100px !important;
}


@media (max-width:768px) {
  a.btn.btn-primary.call-btn, a.btn.btn-outline-secondary.call-btn {
    display: grid;
}
.bubble {
    display: none !important;
}
.logo-img {
    width: 100%;
    height: 80px;
}
section.certicate.py-5 {
    padding-bottom: 50px !important;
    padding-top: 0px !important;
}
section#about .d-grid {
    display: grid!important;
    grid-template-columns: 3fr 3fr 3fr;
}

.section-padding {
    padding: 50px 0 !important;
}
.cta-wrapper {
    padding: 20px !important;
}
.hero .badge {    
    padding: 8px !important;
}
.bg-shape {    
    display: none;
}
.rts-service-area {  
    padding: 50px 0px !important;
}
.footer-form  {
  display: none;
}
.row.g-4.gallery-row {
    margin-top: 10px;
}
}

.footer-form {
    position: fixed;
    right: 15px;
    bottom: 0;
    z-index: 1000;
    width: 286px;
}
.footer-form .heading-look {
    font-size: 24px;
    background: #f5811e;
    color: #fff;
    text-align: center;
    display: block;
    padding: 4px 0;
    cursor: pointer;
}
p {
font-size: 16px;
}
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;
}




/* new section css */
.industry-service {
    background: #f9f9f9;
    position: relative;
}
.section-padding {
    padding: 100px 0;
}


.industry-service::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: url(../images/service/bg.jpg) no-repeat center center / cover;
}

.single-service {
    background: #fff;
    min-height: fit-content;
    max-width: 370px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}
.single-service .card-body {
    padding: 40px 50px;
    border-radius: 10px;
}

.single-service:hover {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

.single-service .icon {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    background: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: all 0.3s ease;
}

.single-service .icon img {
    width: 85px;
    transition: all 0.3s ease;
}

.single-service h4 {
    color: #282828;
    font-weight: 700;
    font-size: 25px;
    font-family: 'Plus Jakarta Sans';
    margin: 18px 0;
}

.single-service p {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0px;
    font-family: 'Plus Jakarta Sans';
}




@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(254, 90, 14, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(254, 90, 14, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(254, 90, 14, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(254, 90, 14, 0.4);
        box-shadow: 0 0 0 0 rgba(254, 90, 14, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(254, 90, 14, 0);
        box-shadow: 0 0 0 10px rgba(254, 90, 14, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(254, 90, 14, 0);
        box-shadow: 0 0 0 0 rgba(254, 90, 14, 0);
    }
}

.single-service:hover .icon .img-normal,
.single-service .icon .img-hover {
    display: none;
}

.single-service:hover .icon .img-hover {
    display: block;
}

.single-service:hover .icon {
    animation: pulse 2s infinite
}

.single-service:hover .icon,
.single-service:hover .btn-more {
    background: #fe5a0e;
}

.single-service:hover .btn-more {
    color: #fff;
    border-color: #fe5a0e;
}

@media screen and(max-width: 1024px) {
    .single-service .card-body {
        padding: 30px;
    }

    .single-service .icon {
        height: 120px;
        width: 120px;
    }

    .single-service .icon img {
        width: 65px;
    }
}

@media screen and (max-width: 768px) {
    .single-service {
        min-height: 420px;
        margin-bottom: 60px;
    }

    .card-mb-0 {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 425px) {
    .single-service {
        margin: 0 auto 60px;
    }

    .single-service .card-body {
        padding: 40px 30px;
    }
}

/* product catalog */
.rts-service-area {
    position: relative;
    z-index: 1;
    padding: 100px 0px;
    overflow: hidden;

    .bg-shape {
        position: absolute;
        left: 60px;
        top: -30px;
        z-index: -1;
    }
}
.single-service-area:hover {
    transform: translateY(-10px);
}

.title-area-center {
    text-align: center;
}
.title-area-center .pre {
    border-radius: 30px;
    padding: 5px 16px;
    color: #615EFC;
    margin-bottom: 30px;
    text-align: center;
    display: block;
    max-width: max-content;
    margin: auto;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.single-service-area.style-bg-light.border-trnasparent {
    border: 1px solid transparent;
}
.single-service-area.style-bg-light {
    background: #F1F1FF;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.single-service-area {
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    height: 100%;
    transition: 0.3s;
    background: #fff;
}
.single-service-area .icon {
    margin-bottom: 36px;
}
.single-service-area .title {
    font-size: 23px;
    margin-bottom: 16px;
}
.single-service-area p.disc {
    font-size: 16px;
    margin-bottom: 10px;
}

footer {
    background-color: #e65d25;
    color: #fff;
    padding: 80px 0 40px;
}
img.footer-logo {
    width: 150px;
    background-color: #fff;
    padding: 10px;
    border-radius: 7px;
}
footer h4 {
    color: white;
    margin-bottom: 24px;
}
.list-unstyled li {
    margin-bottom: 10px;
}
footer ul li a, footer ul li span {
    font-size: 16px !important;
}
footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

a.btn.btn-outline-secondary.bg-white.text-black, .cta-btn  {
    background-color: #f5811e !important;
    color: #fff !important;
}

.cta-band {
    background: linear-gradient(-45deg, #0e7dc2, #1e5aa8, #2b7de9, #0e7dc2);
    color: #ffffff;
    animation: heroGradient 20s ease infinite;
    background-size: 300% 300%;
    padding: 25px 0px;
}

.cta-wrapper {
  padding: 40px 30px;
}

.cta-title {
  font-size: 28px;
  font-weight: 600;
}

.cta-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.cta-btn {
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}




.faq-section .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-weight: 500;
}
button.accordion-button {
    background-color: #cfe2ff;
}

.faq-form-wrapper {
  background: #ffffff;
  border-radius: 12px;
}

.faq-form-wrapper h4 {
  font-weight: 600;
}

.faq-form-wrapper .form-control {
  border-radius: 8px;
  padding: 12px;
}
.text-muted {
    --bs-text-opacity: 1;
    color: #000 !important;
}
button.btn.btn-primary.w-100, button.btn.color {
    background-color: #f5811e !important;
    border: #f5811e !important;
}

/* Sticky Header */
.main-nav {
    transition: all 0.3s ease;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 9999;
    animation: slideDown 0.4s ease;
}

/* Optional: slightly reduce logo size on sticky */
.main-nav.sticky .navbar-brand img {
    height: 80px !important;
    transition: 0.3s ease;
}

/* Smooth slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Prevent content jump */
body.sticky-active {
    padding-top: 120px; /* Adjust according to navbar height */
}

.footer-form button.btn {
    background-color: #f5811e !important;
}
.btn-primary.call-btn {
    background-color: #f5811e;
    border: #f5811e;
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: xxx-large;
    }
    .display-5 {
    font-size: 56px;
}
#faq .section-title {
    text-align: left;
    margin-bottom: 3rem;
}
}

.bubble {
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    top: 0;
    margin: auto;
    justify-content: center;
    align-items: flex-end;
    z-index: 99;
}
.bubble a.call {
    background: #f5811e;
}
a.call.one {
    background-color: #1a65ab;
}
.bubble a {
    border-radius: 5px 0 0 5px;
    margin-top: 8px;
    box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 46%);
    overflow: hidden;
    color: #fff;
    padding: 10px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 50px;
    transition: all 0.5s linear;
    height: 50px;
    overflow: hidden;
    white-space: nowrap;
}
.bubble label {
    display: none;
    transition: all 0.5s linear;
    margin-bottom: 0;
    margin-right: 35px;
    font-size: 16px;
    text-transform: capitalize;
}
.bubble a.whats {
    background: #25D366;
}
.bubble a:hover {
    width: 100%;
}
.bubble a:hover label {
    display: block;
}