.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
/* Slide */
.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
/* Active Slide */
.slide.active {
	opacity: 1;
	z-index: 1;
}
/* Image */
.slide img {
	width: 100%;
	height: 800px;
	object-fit: cover;
	animation: zoom 8s linear infinite;
}

/* Zoom Effect */
@keyframes zoom {
 0% {
transform: scale(1);
}
 100% {
transform: scale(1.1);
}
}

/* Overlay */
.slide::before {
 content: "";
 position: absolute;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.5);
}
/* Content */
.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); /* PERFECT CENTER */
	color: #fff;
	text-align: center; /* text bhi center */
	width: 90%;
	width: 840px;
}
.content h1 {
	font-size: 100px;
	color: #fff;
}
.content p {
	font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
 .content h1 {
 font-size: 60px;
 color: #fff;
}
 .content p {
 font-size: 14px;
}
}
/* Features Section Styling */
.features-services-area {
	position: relative;
	z-index: 2;
	margin-top: 0px; /* section ko upar lane ke liye */
	padding: 60px 0;
}
/* Features Box */
.features-box {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	position: relative;
	transition: 0.3s;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
/* Hover Effect */
.features-box:hover {
	transform: translateY(-10px);
}
/* Icon */
.features-icon img {
	width: 60px;
	margin-bottom: 15px;
}
/* Number */
.features-box .number {
	font-size: 40px;
	font-weight: 700;
	color: #f1f1f1;
	position: absolute;
	top: 10px;
	right: 20px;
}
/* Content */
.features-content h4 {
	font-size: 20px;
	margin-bottom: 10px;
}
.features-content p {
	font-size: 14px;
	color: #666;
}

/* Responsive */
@media (max-width: 991px) {
 .features-services-area {
 margin-top: -50px; /* mobile ke liye kam */
}
}
 @media (max-width: 576px) {
 .features-services-area {
 margin-top: 0; /* small screen me normal kar do */
}
}
/* Default (Desktop) */
.whatsapp-float{
  position:fixed;
  bottom:120px;
  right:33px;
  z-index:99999;
}

.whatsapp-float img{
  width:50px;
  height:auto;
}

/* Tablet */
@media (max-width: 991px){
  .whatsapp-float{
    bottom:80px;
    right:20px;
  }
  .whatsapp-float img{
    width:45px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .whatsapp-float{
    bottom:70px;
    right:21px;
  }
  .whatsapp-float img{
    width:42px;
  }
}

 /* COMMON FLOAT BUTTON BASE */
.whatsapp-float,
.call-float{
  position:fixed;
  z-index:99999;
}

/* CALL BUTTON – Desktop */
.call-float{
  bottom:180px;     /* WhatsApp ke upar */
  right:33px;
}

.call-float img{
  width:50px;
  height:auto;
}

/* Tablet */
@media (max-width: 991px){
  .call-float{
    bottom:140px;
    right:20px;
  }
  .call-float img{
    width:45px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .call-float{
    bottom:125px;
    right:21px;
  }
  .call-float img{
    width:42px;
  }
}
.blogss-img img {
	width: 100%;
	height: 240px !important;
	}




.header-logo img {
    width: 140px;
    transition: all 0.3s ease-out 0s; 
    height: 50px;
}

.section-title h2 {
    font-size: 35px;
    margin-top: 20px;
    position: relative;
}
.about-title h2 {
    font-size: 50px;
    margin-bottom: 0 !important;
}
.team-thumb img {
	width: 100%;
	height: 220px !important;
	}
	
.blog-pages h2{
	font-size: 32px;
	}

.gall_bred {
	height: 250px !important;
	
	}

.quote-section{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../../images/nurse-work.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

/* Overlay */
.quote-section::before{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
  top:0;
  left:0;
}

/* Content */
.quote-content{
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0 80px;
}

/* Form Box */
.form-box{
  width: 480px;
  max-width: 100%;
  color:#fff;
  /*background: rgba(0,0,0,0.65);*/
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 12px;
}

/* Heading */
.form-box h2{
  font-size: 36px;
  margin-bottom: 20px;
}

/* Form Layout */
.form-row{
  display: flex;
  gap:15px;
  margin-bottom:15px;
}

.form-group{
  width:100%;
  position:relative;
}

/* Icons */
.form-group i{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  color:#ff3b3b;
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:12px 12px 12px 40px;
  background: transparent;
  border:1px solid rgba(255,255,255,0.4);
  border-radius:6px;
  color:#fff;
  font-size:14px;
}

.form-group textarea{
  height:120px;
  resize:none;
}

/* Button */
.btn-submit{
  margin-top:10px;
  padding:12px 25px;
  border:none;
  background: linear-gradient(45deg,#5f2c82,#ff3b3b);
  color:#fff;
  border-radius:6px;
  cursor:pointer;
  width: 150px;
}
.portfolioppp {
	height:300px !important
	}/* Popup image size control */
.mfp-img {
  width: 90vh !important;   /* ?? width control */
  height: 80vh !important; /* ?? height control */
  margin: auto;
}

/* Center align */
.mfp-figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ---------------- RESPONSIVE ---------------- */

/* Tablet */
@media(max-width:992px){
  .quote-content{
    justify-content: center;
    padding: 0 30px;
  }

  .form-box{
    width: 100%;
    max-width: 500px;
  }
}

/* Mobile */
@media(max-width:768px){
  .quote-section{
    padding: 30px 10px;
  }

  .form-box{
    padding: 20px;
  }

  .form-row{
    flex-direction: column;
  }

  .form-box h2{
    font-size: 26px;
    text-align: center;
  }

  .btn-submit{
    width: 100%;
  }
}

/* Small Mobile */
@media(max-width:480px){
  .form-box h2{
    font-size: 22px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea{
    font-size:13px;
    padding:10px 10px 10px 38px;
  }
}




/* Right box */
.glass-box{
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 👈 heading always top */
  height: 100%;
}
.house-serv p{
	text-align: justify;
	}
/* Heading */
.top-heading{
  margin-bottom: 15px;
}
.service_image img{
    width: 100%;
    height : 400px;
}



/* Mobile */
@media(max-width:768px){
  .glass-box{
    margin-top: 20px;
    text-align: center;
	padding: 5px;
  }
  .house-serv p{
	text-align: justify;
	}

}

.abtsec {
    padding: 20px;
    box-shadow: 0 0 5px 6px #cbcbcb;
    text-align: center;
}

.founders{
    height: 600px;
    border-radius: 20px;
    width: 100%;
}





.client-section {
  background: #f8f9fa;
}

.client-logo {
  text-align: center;
  padding: 20px;
}

.client-logo img {
  max-height: 60px;
  margin: auto;
  /*filter: grayscale(100%);*/
  transition: 0.3s;
}

.client-logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}