:root{
    --primary:#1CA7EC;
    --secondary:#0FB9B1;
    --accent:#22C55E;
    --light-bg:#F2FAFF;
    --card-bg:#ffffff;
    --text-dark:#1E293B;
    --text-muted:#64748B;
}

body{
    font-family:'Poppins', sans-serif;
    background:var(--light-bg);
    color:var(--text-dark);
}
/* ================= NAVBAR ================= */
.custom-navbar {
  background: #ffffff;
    min-height: 70px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  padding: 12px 0;
  transition: all 0.3s ease;
}

/* ================= LOGO ================= */
.navbar-brand img {
  width: 100%;
  height: 50px;    
  object-fit: contain;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* ================= NAV LINKS ================= */
.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #2c3e50 !important;
  padding: 8px 4px;
  transition: all 0.3s ease;
}

/* Hover effect */
.nav-link:hover {
  color: #4f8cff !important;
}

/* Animated underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #4f8cff, #6fb1ff);
  transition: width 0.3s ease;
  border-radius: 5px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active page underline */
.nav-link.active {
  color: #4f8cff !important;
}

.nav-link.active::after {
  width: 100%;
}

/* ================= LOGIN BUTTON ================= */
.btn_lg {
  background: linear-gradient(135deg, #4f8cff, #6fb1ff);
  color: white !important;
  padding: 8px 22px;
  font-size: 14px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(79, 140, 255, 0.25);
}

.btn_lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(79, 140, 255, 0.35);
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px) {

  .navbar-brand img {
    width: 190px;
  }

  .nav-link {
    font-size: 15px;
    padding: 10px 0;
  }

  .btn_lg {
    margin-top: 10px;
  }
}
/* * ========hero section start============= */ 

/* Section Titles */
.section-title{
    font-weight:700;
    color:var(--text-dark);
}

.section-subtitle{
    color:var(--text-muted);
    margin-bottom:40px;
}

/* ===== HERO SECTION ===== */

.cta-section{
    background:linear-gradient(135deg,#1CA7EC,#0FB9B1);
    color:#fff;
    padding:140px 0;
    margin-top: 30px;
}

.cta-section h3{
    font-weight:700;
    font-size:32px;
}

.btn-custom{
    background:#fff;
    color:var(--primary);
    border:none;
    padding:12px 30px;
    border-radius:30px;
    font-weight:500;
    transition:0.3s;
}

.btn-custom:hover{
    background:var(--accent);
    color:#fff;
}
/* ===============================
   SPECIALITY CARDS – PREMIUM DESIGN
================================= */

.service-card{
    position:relative;
    background:linear-gradient(145deg,#ffffff,#f8fcff);
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:all 0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    overflow:hidden;
}

/* Top Accent Line */
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#1CA7EC,#0FB9B1);
    transition:0.4s;
}

/* Soft Background Glow */
.service-card::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(28,167,236,0.08);
    border-radius:50%;
    top:-30px;
    right:-30px;
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(28,167,236,0.25);
}

.service-card:hover::before{
    height:100%;
    opacity:0.05;
}

.service-card:hover::after{
    transform:scale(1.3);
    background:rgba(15,185,177,0.15);
}

.service-icon{
    font-size:50px;
    margin-bottom:20px;
    background:linear-gradient(135deg,#1CA7EC,#0FB9B1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    transition:0.4s;
}

.service-card:hover .service-icon{
    transform:scale(1.15);
}


.service-img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    padding: 10px;
    background: #f1f7ff;
}
/* ===============================
   HOSPITAL CARDS – GLASS + GRADIENT STYLE
================================= */

.hospital-card{
    position:relative;
    background:linear-gradient(135deg,#e2f3fc,#f9f4f4);
    border-radius:20px;
    padding:30px;
    font-weight:600;
    text-align:center;
    transition:all 0.4s ease;
    border:1px solid rgba(28,167,236,0.15);
    backdrop-filter:blur(10px);
    overflow:hidden;
}

/* Animated Gradient Border */
.hospital-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    padding:2px;
    background:linear-gradient(135deg,#1CA7EC,#0FB9B1,#22C55E);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:destination-out;
    mask-composite:exclude;
    opacity:0;
    transition:0.4s;
}

.hospital-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 45px rgba(15,185,177,0.25);
    color:#0FB9B1;
}

.hospital-card:hover::before{
    opacity:1;
}

/* =========================
   FOOTER BASE
========================= */
.footer-area {
  background: linear-gradient(145deg, #0b2c3d, #0f3b52);
  color: #eaf2f6;
  padding:  25px 0 15px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.footer-area .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

/* =========================
   FOOTER SECTIONS
========================= */
.footer-section {
  display: flex;
  flex-direction: column;
  
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

.footer-logo {
  width: 40px;
  height: auto;
  /* object-fit: contain; */
border-radius: 10px;
}


/* =========================
   HEADINGS
========================= */
.footer-section h3,
.footer-section h4 {
  color: #56c0e8; /* soft blue */
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section h3 { font-size: 20px; }
.footer-section h4 { font-size: 17px; }

/* =========================
   TEXT
========================= */
.footer-text, .contact-info {
  font-size: 14px;
  line-height: 1.7;
  color: #dce9f0;
}

/* =========================
   LISTS
========================= */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  transition: 0.3s ease;
  color: #dce9f0;
}

.footer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #56c0e8;
  font-size: 12px;
}

.footer-list li:hover {
  color: #56c0e8;
  transform: translateX(4px);
}

/* =========================
   CONTACT INFO
========================= */
.contact-info a {
  color: #56c0e8;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* =========================
   SEO PARAGRAPH
========================= */
.footer-seo {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.05);
  
  border-radius: 12px;
   padding: 12px 16px; 
  margin: 15px 0 10px; 
  text-align: center;
}

.footer-seo p {
  font-size: 14px;
  line-height: 1.7;
  color: #dce9f0;
  margin: 6px 0;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
   padding-top: 10px;  
  margin-top: 10px; 
}

.footer-bottom p {
  font-size: 13px;
  color: #c9d6df;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-area .container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-list li {
    justify-content: center;
  }
}