/* Minimal styles that reproduce the demo look. Expand as you like. */
:root{ --accent:#2fb8a6; --dark:#0f1724; --muted:#6b7280; }
*{box-sizing:border-box}
body{font-family:Inter, Arial, sans-serif;color:#111;background:#fff;margin:0}
.container{max-width:1100px;margin:0 auto;padding:30px}
.site-header{background:#fff;border-bottom:1px solid #eee}
.site-branding{display:flex;align-items:center;justify-content:space-between}
.main-navigation .nav{list-style:none;margin:0;padding:0;display:flex;gap:18px}
.hero{display:flex;align-items:center;padding:60px 0}
.hero .hero-content{flex:1}
.hero .hero-image img{max-width:420px}
.services-grid{display:flex;gap:20px}
.service-card{flex:1;background:#fafafa;padding:20px;border-radius:8px;text-align:center}
.btn{display:inline-block;padding:12px 20px;border-radius:6px;text-decoration:none}
.btn-primary{background:#fff;color:#0557bc;}
.testimonials-grid{display:flex;gap:16px}
.footer-widgets{padding:40px 0}
@media(max-width:800px){.hero{flex-direction:column}.services-grid{flex-direction:column}}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9; /* <-- soft background color */
  color: #333;
  line-height: 1.6;
}
.section {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 1200px;
}

/* Header layout */
.site-header {
  background-color: #0557bc;
  color: #fff;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}
/* Remove any gaps between header and hero */
.site-header {
  margin-bottom: 0;
  border-bottom: none;
}

.site-header .site-branding, 
.site-header .main-navigation {
  align-items: center;
}
.site-header .nav a {
  color: #fff;
}
.hero.hero-blue-bg {
  background-color: #0557bc; /* deep navy blue similar to demo */
  color: #fff;
  padding: 80px 0;
}
.hero.hero-blue-bg .hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero.hero-blue-bg .hero-content {
  flex: 1;
}
.hero.hero-blue-bg .hero-image {
  flex: 1;
  text-align: right;
}
.hero.hero-blue-bg .hero-image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .hero.hero-blue-bg .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero.hero-blue-bg .hero-image {
    text-align: center;
    margin-top: 30px;
  }
}


.hero.hero-blue-bg {
  background-color: #0557bc;
  color: #fff;
  padding: 0px 0 0; /* top padding only, no bottom */
  position: relative;
  overflow: visible; /* allow image to overflow */
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-image {
  flex: 1;
  position: relative;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  top: 80px; /* pushes image below blue section */
  border-radius: 30px; /* soft rounded corners */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* subtle lift effect */
  z-index: 3;
}


@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    top: 20px;
  }
}


/* Let the menu expand naturally between logo and phone */
.site-branding {
  flex: 0 0 auto;
}

.main-navigation {
  flex: 1; /* takes remaining horizontal space */
  display: flex;
  justify-content: flex-end; /* moves menu towards phone */
}

.main-navigation ul {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

/* Let the menu expand naturally between logo and phone */
.site-branding {
  flex: 0 0 auto;
}

.main-navigation {
  flex: 1; /* takes remaining horizontal space */
  display: flex;
  justify-content: flex-end; /* moves menu towards phone */
}

.main-navigation ul {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-phone {
  flex: 0 0 auto;
  margin-left: 20px;
}


/* Phone number styling */
.header-phone a {
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.header-phone a:hover {
  background-color: #fff;
  color: #0f2461;
}

/* Make sure alignment matches hero image */
@media (min-width: 1024px) {
  .header-phone {
    margin-right: 40px; /* tweak to align perfectly with hero image */
  }
}

/* === Navigation Menu Styles === */

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px; /* equal spacing between menu items */
  align-items: center;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li a {
  color: #fff; /* white menu text */
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.5px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

/* Hover underline effect */
.main-navigation ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
  margin-top: 4px;
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after {
  width: 100%; /* underline expands on hover or active */
}

.main-navigation ul li a:hover {
  color: #fff;
  opacity: 0.9;
}

/* Responsive alignment */
@media (max-width: 900px) {
  .main-navigation ul {
    flex-direction: column;
    gap: 20px;
    background-color: #0f2461;
    padding: 20px;
  }
}
.custom-logo
{
	height:100px;
	width:auto;
}

.about-section {
  width: 100%;
  padding: 100px 0;
  background-color: #ffffff; /* full white background */
  color: #333;
  position: relative;
  z-index: 1;
}


.about-header h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark);
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
  text-align: left;
  min-width: 300px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #444;
}

.about-text .read-more {
  display: inline-block;
  padding: 14px 28px;
  background-color: #0557bc;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-text .read-more:hover {
  background-color: #0557bc;
  transform: translateY(-2px);
}

/* Mobile-friendly layout */
@media (max-width: 900px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    text-align: center;
    margin-bottom: 30px;
  }
}

.front-main {
  background-color: #f8f9fb; /* site body background (light gray like reference) */
}

.about-wrapper {
  background-color: #ffffff; /* full white section for About Us */
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ====== Services Section ====== */
.services-section {
  background-color: #f7f7f7;
  /*padding: 100px 0;*/
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark);
}
.section-subtitle {
  font-size: 1rem;
  color: #0274be;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight:bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #0b2149;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.services-footer {
  text-align: center;
  margin-top: 50px;
}

.btn-read-more {
  display: inline-block;
  background-color: #0557bc; /* Deep blue accent */
  color: #fff;
  padding: 14px 40px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: #0b2149;
  transform: translateY(-2px);
}


.why-choose-us {
  background-color: #fff;
  padding: 80px 0;
}

.why-choose-us-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.why-image {
  flex: 1 1 45%;
}

.why-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.why-content {
  flex: 1 1 50%;
}

.why-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #003366;
}

.why-content .why-subtext {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #555;
}

.why-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.why-points li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #222;
}

.why-points .tick {
  color: #007bff;
  margin-right: 10px;
  font-weight: bold;
}

.btn-primary {
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  display:none;
}
.btn-why-choose-us
{
  background-color:#0557bc;
  color:#fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-why-choose-us:hover {
  background-color: #0056b3;
}

.fa-check-circle::before {
  content: "\f058";
}


.contact-ribbon {
  background-color: #004aad; /* Deep medical blue */
  color: #fff;
  padding: 40px 0;
}

.contact-ribbon .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.contact-item-address{
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
}

.contact-item {
  flex: 1 1 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #fff;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-ribbon-inner {
    flex-direction: column;
  }
}


.site-footer {
  background: #f8f9fb;
  color: #333;
  /*padding: 80px 0 60px;*/
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.2rem;
  color: #004aad;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.footer-desc {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.footer-social a {
  display: inline-block;
  background: #004aad;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  margin-right: 10px;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #007bff;
}

.footer-menu,
.footer-services,
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li,
.footer-services li,
.footer-hours li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #004aad;
}

@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
}


.footer-divider {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 0;
}
.footer-divider {
  background-color: rgba(0, 0, 0, 0.08);
}


.site-info{
	text-align:center;
}

.read-more{
	display:none !important;
}
.services-section{
	display:none;
}
.btn-why-choose-us{
	display:none;
}