/*--------------------------------------------------------------
# Brand Theme — Manoj Kumar
# Palette sampled directly from images/manoj_logo.png (deep green + gold)
# Loaded LAST in _Layout.cshtml so it overrides the old template theme
# (navy/cyan #c8a34d misapplied as navy, etc.) sitewide without editing
# every file.
--------------------------------------------------------------*/
:root {
  --brand-dark: #052e1c;
  --brand: #0b4a2f;
  --brand-soft: #14603d;
  --gold: #c8a34d;
  --gold-hover: #b3872e;
  --gold-soft: #e9d9ae;
  --ink: #20242c;
  --muted: #6b7280;
  --paper: #f7f8fa;
  --line: #e4e7ec;
  --shadow: 0 10px 30px rgba(5, 46, 28, 0.14);
  --shadow-sm: 0 4px 14px rgba(5, 46, 28, 0.10);
  --radius: 10px;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
  color: var(--ink);
}

h1, h2, h3, h4, h5, h6,
.section-title,
.page-title h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

a {
  color: var(--brand);
}

a:hover, a:active, a:focus {
  color: var(--gold-hover);
}

/*--------------------------------------------------------------
# Header & Navigation
# White header lets the logo's own green/gold artwork read at full
# contrast (it was designed on a light ground). Header container is
# forced to a single-row flex layout so the brand-lockup logo and the
# full nav never wrap onto a second line and bleed into the page-title
# banner below.
--------------------------------------------------------------*/
#header {
  background: #fff;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 14px rgba(5, 46, 28, 0.10);
  height: auto;
  min-height: 75px;
  display: flex;
  align-items: center;
}

#header.header-fixed {
  background: #fff;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1600px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-lockup__icon {
  height: 58px;
  width: auto;
  flex-shrink: 0;
}

.brand-lockup__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-lockup__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--brand);
  letter-spacing: 0.2px;
}

.brand-lockup__name span {
  color: var(--gold);
}

.brand-lockup__sub {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* Footer places the same transparent logo on a dark ground — give it a
   light card so the dark-green wordmark inside the artwork stays legible.
   display:inline-flex (not flex) keeps the card hugging the logo instead
   of stretching to the full width of the footer column. */
.footer-brand-lockup {
  display: inline-flex;
  background: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  #header {
    min-height: 64px;
  }
  #header .container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-right: 56px;
  }
  .brand-lockup {
    gap: 8px;
  }
  .brand-lockup__icon {
    height: 38px;
  }
  .brand-lockup__text {
    white-space: normal;
  }
  .brand-lockup__name {
    font-size: 15px;
    line-height: 1.2;
  }
  .brand-lockup__sub {
    font-size: 8px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
}

.nav-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu a {
  color: var(--brand-dark);
  font-size: 18px;
  padding: 15px 5px;
}

.nav-menu > li > a:before {
  background-color: var(--gold);
}

.nav-menu li:hover > a,
.nav-menu .menu-active > a {
  color: var(--gold-hover);
}

.nav-menu ul {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-menu ul li a {
  color: var(--ink);
}

.nav-menu ul li a:hover {
  background: var(--brand);
  color: #fff;
}

.nav-menu ul li a:hover:before {
  background-color: var(--gold);
}

/* Mobile hamburger toggle sits over the (now white) header — needs a
   dark icon to stay visible; it turns white only once the dark slide-out
   panel is open. */
#mobile-nav-toggle i {
  color: var(--brand);
}

body.mobile-nav-active #mobile-nav-toggle i {
  color: #fff;
}

@media (min-width: 1500px) {
  .nav-menu > li {
    margin-left: 10px;
  }
  .nav-menu a {
    font-size: 16px;
    padding: 15px 8px;
  }
}

/*--------------------------------------------------------------
# Page Title Banner (used on nearly every interior page)
--------------------------------------------------------------*/
.page-title {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand) 60%, var(--brand-soft));
  height: 140px;
  position: relative;
  border-bottom: 3px solid var(--gold);
}

.page-title h2 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.page-title h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
}

@media only screen and (max-width: 520px) and (min-width: 220px) {
  .page-title {
    height: 90px;
  }
  .page-title h2 {
    font-size: 18px !important;
  }
}

/*--------------------------------------------------------------
# Section headers
--------------------------------------------------------------*/
.section-header .section-title {
  color: var(--brand);
  position: relative;
  padding-bottom: 18px;
}

.section-header .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--gold);
}

/*--------------------------------------------------------------
# Facts / Services / Call-to-action / Other services cards
--------------------------------------------------------------*/
#facts {
  background: linear-gradient(#f7f8fa, #eef1f6);
}

#facts .counters span {
  color: var(--brand);
}

#services {
  background: var(--paper);
}

#services .box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#services .box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

#services .icon {
  background: var(--brand);
  border-color: #fff;
}

#services .icon i {
  color: #fff;
}

#services .box:hover .icon {
  background: #fff;
  border: 2px solid var(--gold);
}

#services .box:hover .icon i {
  color: var(--brand);
}

#call-to-action {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
}

#call-to-action .cta-title,
#call-to-action .cta-text,
#call-to-action .section-header .section-title {
  color: #fff;
}

#call-to-action .section-header .section-title:after {
  background: var(--gold);
}

.OtherServices {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.OtherServices:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.OtherServices .icon {
  border-color: var(--gold);
  background: var(--brand);
}

.OtherServices .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cards / portfolio / testimonials shared framing
--------------------------------------------------------------*/
.snip1539:before {
  border-color: var(--gold);
}

.snip1539:after {
  background-color: var(--brand);
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.portfolio-item img {
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item .details,
#portfolio .portfolio-item .details {
  background: linear-gradient(to top, rgba(5, 46, 28, 0.92), rgba(5, 46, 28, 0.75));
  color: #fff;
}

.portfolio-item .details h4,
#portfolio .portfolio-item .details h4 {
  color: #fff;
  font-size: 15px;
  margin: 0;
}

.Video_blcok .blocks {
  margin-bottom: 30px;
}

.blockstart {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: auto;
  background: var(--brand-dark);
}

.blockstart:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blockstart a {
  display: block;
  position: relative;
}

.blockstart a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(5, 46, 28, 0.75), rgba(5, 46, 28, 0));
  z-index: 1;
}

.blockimg {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blockstart:hover .blockimg {
  transform: scale(1.08);
}

.Video_blcok .blocks .blockstart span {
    text-align: center;
    left: 50%;
    top: 50%;
    margin: 0 !important;
    transform: translate(-50%, -50%);
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    font-size: 30px !important;
    color: var(--brand);
    background: var(--gold);
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    z-index: 2;
    text-indent: 5px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.blockstart a:hover span {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-hover);
}

.Video_blcok .blocks .greenhead {
  background: #fff;
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
  text-align: center !important;
  line-height: 1.4;
  padding: 14px 16px;
  border-top: 3px solid var(--gold);
}

/*--------------------------------------------------------------
# Buttons — restyles .btn / .btn-primary sitewide (Bootstrap classes
# reused as CTAs across ~50 pages)
--------------------------------------------------------------*/
.btn-primary,
.btn-primary:focus {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  border-radius: 30px;
  padding: 8px 22px;
  transition: all 0.25s ease;
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--gold-hover) !important;
  border-color: var(--gold-hover) !important;
  color: #fff !important;
}

.start-sip,
a.start-sip {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
}

.start-sip:hover,
a:hover.start-sip {
  background: var(--gold-hover) !important;
  border-color: var(--gold-hover) !important;
}

/*--------------------------------------------------------------
# Tables — restyles .table / th sitewide (Bootstrap classes reused
# on BonusRate, BranchLocator, DoctorLocator, Forms, Procedure, etc.)
--------------------------------------------------------------*/
th {
  background: var(--brand);
  color: #fff;
}

.table > thead > tr > th {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 500;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: var(--paper);
}

.table-bordered,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td {
  border-color: var(--line);
}

.table-responsive {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
}

#footer h3 {
  color: var(--gold);
  font-size: 20px;
}

footer a:hover {
  color: var(--gold) !important;
}

.li_w {
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Term / Policy / Refund / Disclaimer sit on the dark green footer —
   a solid var(--brand) fill nearly matches the footer background, so
   these read as a ghost button (gold outline) with a guaranteed-white
   label instead. */
#footer .btn-primary,
#footer .btn-primary:focus {
  background: transparent;
  border-color: var(--gold);
  color: #fff !important;
}

#footer .btn-primary:hover,
#footer .btn-primary:active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--brand-dark) !important;
}

.about-link ul li a:hover,
.about-links ul li a:hover {
  background: var(--brand) !important;
}

/*--------------------------------------------------------------
# Misc widgets
--------------------------------------------------------------*/
.wcs_button {
  background: var(--brand) !important;
}

.training a:hover {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
}

@media only screen and (max-width: 520px) and (min-width: 220px) {
  .training {
    border-bottom-color: var(--brand) !important;
  }
}

/* style2.css loads later in the DOM than this file, so these need !important
   to keep the appointment widget on-brand */
#appiontment-now-box .appiontment-now.open {
  border-right-color: var(--gold) !important;
}

#appiontment-now-box .form-control,
#appiontment-now-box .form-control:focus {
  border-color: var(--gold) !important;
}
