:root {
  --primary-green: #28a745;
  --secondary-green: #20c997;
  --accent-blue: #007bff;
  --dark: #1a1a1a;
  --light-bg: #f8f9fa;
  --gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  
}

html,body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 1) !important;
  padding: 0.1rem 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-green) !important;
}

.navbar-brand img {
  height: 110px;
  /* width: 150px; */
  margin-right: 10px;
  border-radius: 10px;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 100vh;
  /* margin-top: 80px; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  
}

.hero-content {
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  animation: slideInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin: 2rem 0 3rem;
  opacity: 0.95;
  animation: fadeIn 1s ease 0.4s both;
}

.btn-enquiry {
  background: var(--gradient);
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
  animation: bounceIn 1s ease 0.6s both;
}

.btn-hero {
  background: var(--gradient);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
  animation: bounceIn 1s ease 0.6s both;
}

.btn-enquiry:hover {
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.6);
}

.btn-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.6);
}

/* Stats Counter */
.stats-section {
  background: var(--gradient);
  padding: 4rem 0;
}

.counter {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 60px rgba(40, 167, 69, 0.3);
}

.service-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

/* About Section */
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.form-control {
  border-radius: 15px;
  border: 2px solid #e9ecef;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
}

.footer-link {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-green);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .counter {
    font-size: 2.5rem;
  }
}
.plan-wrapper{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* CARD */

.plan-card{

background:#fff;
border-radius:12px;
padding:25px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* HEADER */

.plan-header{
display:flex;
gap:12px;
align-items:center;
}

.logo{
width:60px;
}

.plan-title{
font-size:20px;
font-weight:600;
}

.hospital{
font-size:14px;
color:#666;
margin-top:3px;
}

.view-list{
color:#027a4a;
font-weight:500;
}

/* FEATURES */

.plan-features{
margin-top:18px;
padding-left:20px;
}

.plan-features li{
margin-bottom:8px;
font-size:15px;
}

.plan-features li::marker{
color:#027a4a;
}

/* VIEW FEATURES */

.view-features{
color:#027a4a;
font-size:14px;
margin-top:10px;
display:inline-block;
}

/* PRICE AREA */

.plan-price{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:25px;
}

.cover{
font-size:14px;
}

.cover strong{
display:block;
font-size:20px;
margin-top:5px;
}

.starting{
text-align:right;
}

.month{
font-size:20px;
font-weight:600;
}

.year{
font-size:13px;
color:#777;
}

/* BUTTON */

.btn{
background:#027a4a;
color:#fff;
border:none;
padding:10px 18px;
border-radius:6px;
margin-top:10px;
cursor:pointer;
font-weight:600;
}

.btn:hover{
background:#015f39;
}

/* COMPARE */

.compare{
margin-top:15px;
font-size:14px;
color:#444;
display:flex;
align-items:center;
gap:6px;
}

@media(max-width:900px){

.plan-wrapper{
grid-template-columns:1fr;
}

}