*{
margin:0;
padding:0;
box-sizing:border-box;
}


body{
font-family:Arial,sans-serif;
}



header{

background:white;

position:sticky;

top:0;

z-index:999;

box-shadow:0 3px 15px rgba(0,0,0,.15);

}



.container{

max-width:1200px;

margin:auto;

padding:0 15px;

}



.navbar{

display:flex;

align-items:center;

justify-content:space-between;

padding:10px 0;

}




/* LOGO */


.logo{

display:flex;

align-items:center;

gap:10px;

}


.logo img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

}


.logo-text h2{

font-size:20px;

color:#0066cc;

}


.logo-text p{

font-size:13px;

color:#555;

}





/* MENU */


nav{

display:flex;

gap:18px;

align-items:center;

}


nav a{

text-decoration:none;

color:#333;

font-weight:600;

font-size:15px;

}


nav a:hover{

color:#0066cc;

}





/* SOCIAL */


.icons{

display:flex;

gap:8px;

}


.icons a{

width:36px;

height:36px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:white;

}



.icons a:nth-child(1){

background:#25D366;

}


.icons a:nth-child(2){

background:red;

}


.icons a:nth-child(3){

background:#1877F2;

}


.icons a:nth-child(4){

background:#d62976;

}





/* MOBILE BUTTON */


.menu-btn{

display:none;

font-size:30px;

color:#0066cc;

cursor:pointer;

}





/* MOBILE DESIGN */


@media(max-width:950px){


.navbar{

flex-wrap:wrap;

}



.menu-btn{

display:block;

order:2;

}



.icons{

order:3;

}



nav{

order:4;

width:100%;

display:none;

flex-direction:column;

align-items:flex-start;

background:white;

padding:20px 0;

}



nav.active{

display:flex;

}



nav a{

width:100%;

padding:12px;

border-bottom:1px solid #eee;

}



}






@media(max-width:600px){


.logo img{

width:50px;

height:50px;

}



.logo-text h2{

font-size:16px;

}



.logo-text p{

font-size:11px;

}



.icons a{

width:30px;

height:30px;

font-size:14px;

}



}



/* ================= HERO SECTION ================= */

.hero{
    min-height: 90vh;

    background:
    linear-gradient(
        120deg,
        rgba(0, 70, 67, 0.70),
        rgba(16, 185, 129, 0.45)
    ),
    url("image/1.jpeg") no-repeat center center/cover;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:40px 20px;
    color:white;

    position:relative;
    overflow:hidden;
}


/* Background Light Effect */
.hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.12);
    border-radius:50%;
    top:-200px;
    right:-200px;
}


/* Content Box */
.hero-content{

    max-width:800px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(8px);

    padding:45px 35px;
    border-radius:25px;

    border:1px solid rgba(255,255,255,0.2);

    position:relative;
    z-index:2;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}


/* Heading */

.hero h1{

    font-size:52px;
    font-weight:800;

    line-height:1.15;

    margin-bottom:20px;

    letter-spacing:-1px;

    text-shadow:
    0 5px 20px rgba(0,0,0,0.4);

}


/* Paragraph */

.hero p{

    font-size:19px;

    line-height:1.8;

    color:#f0fdf4;

    margin-bottom:35px;

}


/* Buttons */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


.btn{

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:.35s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}


/* Appointment Button */

.book-btn{

    background:#10b981;

    color:white;

    box-shadow:
    0 10px 25px rgba(16,185,129,.4);

}


.book-btn:hover{

    background:#059669;

    transform:translateY(-5px);

}


/* Call Button */

.call-btn{

    background:white;

    color:#047857;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);

}


.call-btn:hover{

    background:aqua;

    transform:translateY(-5px);

}



/* Mobile */

@media(max-width:768px){

.hero{

    min-height:85vh;

}


.hero-content{

    padding:30px 20px;

}


.hero h1{

    font-size:34px;

}


.hero p{

    font-size:16px;

}


.hero-buttons{

    gap:12px;

}


.btn{

    width:100%;

}

}
/* Initially hide the form */
.appointment-section {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.6s ease, max-height 0.6s ease;
}

/* When #contact is targeted via anchor link */
:target {
    opacity: 1;
    max-height: 2000px;
    padding: 80px 20px;
}

/* Form container styling */
.appointment-container {
    max-width: 550px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Headings & paragraph */
.appointment-container h2 {
    text-align: center;
    font-size: 28px;
    color: #1a73e8;
    margin-bottom: 10px;
}

.appointment-container p {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

/* Form fields */
.appointment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.2);
}

.appointment-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit button */
.appointment-form button {
    width: 100%;
    padding: 15px;
    background: #1a73e8;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.appointment-form button:hover {
    background: #155ab6;
    transform: translateY(-2px);
}

#address, #pincode {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#address:focus, #pincode:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.2);
}

/* Container */
.multi-select-dropdown {
    width: 100%;
    max-width: 400px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    position: relative;
    font-family: Arial, sans-serif;
}

/* Clickable box */
.select-box {
    padding: 12px 15px;
    cursor: pointer;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

/* Dropdown checkboxes (hidden by default) */
.checkboxes {
    display: none;
    flex-direction: column;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Show checkboxes on hover */
.multi-select-dropdown:hover .checkboxes {
    display: flex;
}

/* Each checkbox label */
.checkboxes label {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.checkboxes label:last-child {
    border-bottom: none;
}

/* Checkbox style */
.checkboxes input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #1a73e8;
}

/* services section */
.services {
    padding: 60px 20px;
    background: #f9f9f9;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.services-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.services-content {
    flex: 1;
    min-width: 300px;
}

.services-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.services-content ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

/*services section responsive */
.services2 {
    padding: 60px 20px;
    background: #f4f8fb;
}

.services2-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.services2-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.services2-content {
    flex: 1;
    min-width: 300px;
}

.services2-content h2 {
    font-size: 32px;
    color: #1d3c6a;
    margin-bottom: 20px;
}

.services2-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services2-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.services2-content ul li {
    margin-bottom: 10px;
    font-weight: 500;
}
.about {
    padding: 60px 20px;
    background: #f9f9f9;
    color: #333;
}

.about-container {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

.about h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about h2 span {
    color: #1d75bd;
}

.about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.about ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.contact {
    padding: 60px 20px;
    background: #f0f8ff;
    color: #333;
}

.contact-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1d3c6a;
}

.contact h2 span {
    color: #1d75bd;
}

.contact p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    min-width: 250px;
}

.contact-item i {
    font-size: 28px;
    color: #1d75bd;
    margin-right: 15px;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-text p a {
    text-decoration: none;
    color: #1d75bd;
    font-weight: 500;
}

.contact-buttons .btn {
    margin: 10px;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.contact-buttons .call-btn {
    background: #28a745;
}

.contact-buttons .call-btn:hover {
    background: #218838;
}

.contact-buttons .book-btn {
    background: #007bff;
}

.contact-buttons .book-btn:hover {
    background: #0056b3;
}

.footer {
    background: #1d3c6a;
    color: #fff;
    padding: 40px 20px 20px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1d75bd;
}

.footer-left p {
    font-size: 14px;
    color: #dfe6f0;
}

.footer-right h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-right .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-right .social-icons a:hover {
    color: #1d75bd;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
    color: #cfd8dc;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-right {
        margin-top: 20px;
    }
}

.auth-modal{
  display:none;
  position:fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  top:0;
  left:0;
  z-index:999;
}

.auth-box{
  background:#fff;
  width:380px;
  padding:25px;
  border-radius:10px;
  margin:6% auto;
  position:relative;
  animation:fadeIn .3s ease;
}

@keyframes fadeIn{
  from{transform:scale(0.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

.auth-tabs{
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
}

.auth-tabs button{
  width:50%;
  padding:8px;
  border:none;
  background:#eee;
  cursor:pointer;
}

.auth-tabs .active{
  background:#28a745;
  color:#fff;
}

.auth-form{
  display:none;
}

.auth-form.active{
  display:block;
}

.auth-form input{
  width:100%;
  padding:8px;
  margin:8px 0;
  border:1px solid #ccc;
  border-radius:5px;
}

.auth-btn{
  width:100%;
  padding:10px;
  background:#28a745;
  color:#fff;
  border:none;
  border-radius:5px;
  cursor:pointer;
}

.divider{
  text-align:center;
  margin:10px 0;
  color:#777;
}

.close-btn{
  position:absolute;
  right:15px;
  top:10px;
  font-size:20px;
  cursor:pointer;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.back-to-top a {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.back-to-top a:hover {
    background: linear-gradient(135deg, #2e59d9, #17a673);
    transform: translateY(-3px);
}

/* ===== STAFF ===== */
.staff {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

.staff h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.staff p {
    color: #555;
    margin-bottom: 30px;
}

.staff-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.staff-member {
    background: #fff;
    width: 200px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.staff-member img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.staff-member h3 {
    margin: 4px 0;
    font-size: 16px;
}

.staff-member p {
    font-size: 13px;
    color: #777;
}

.delete-btn {
    margin-top: 8px;
    padding: 5px 8px;
    font-size: 12px;
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
}

/* ===== CAREERS ===== */
.careers {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.careers h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.careers p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.job-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.job-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.job-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #007bff;
}

.job-card p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

.job-card button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.job-card button:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .staff-members,
    .job-cards {
        flex-direction: column;
        align-items: center;
    }
}








#adminBtn{
    background: linear-gradient(135deg, #1d75bd, #28a745);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#adminBtn:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #155ab6, #1e8e3e);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

#adminBtn:active{
    transform: scale(0.98);
}









/* ================= HOSPITAL LIST ================= */
#hospitalList{
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#hospitalList li{
    width: 100%;
    max-width: 700px;

    background: #ffffff;
    margin: 12px 0;
    padding: 18px 20px;
    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: 0.3s;
    cursor: pointer;

    border-left: 5px solid #1d75bd;
}

#hospitalList li:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* hospital name */
#hospitalList li span{
    font-size: 18px;
    font-weight: 600;
    color: #1d3c6a;
}

/* delete button */
#hospitalList button{
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
}

#hospitalList button:hover{
    background: #c0392b;
}


/* Whole profile center container */
.profile-container{
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Hospital image */
#image{
    width: 100%;
    max-width: 600px;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* Hospital name */
#name{
    font-size: 50px;
    font-weight: 700;
    color: #1d3c6a;
    margin-bottom: 10px;
}

.info{
    text-align: center;
    font-size: 16px;
    margin: 8px 0;
    color: #333;
}
/* Back button center */
.back-btn{
    display: block;
    margin: 25px auto;
    background: #1d3c6a;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.back-btn:hover{
    background: #14294a;
    transform: scale(1.05);
}
.card{
    text-align: center;
}

/* image center already, but ensure */
#image{
    display: block;
    margin: 20px auto;
}

/* paragraphs center */
.card p{
    text-align: center;
    font-size: 16px;
    margin: 8px 0;
    color: #333;
}

/* bold labels style */
.card b{
    color: #1d3c6a;
}











/* ===== MODAL BACKDROP ===== */
.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* ===== MODAL BOX ===== */
.modal-content{
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    animation: popup 0.3s ease;
    text-align: center;
}

/* ===== TITLE ===== */
.modal-content h2{
    font-size: 22px;
    color: #1d3c6a;
    margin-bottom: 15px;
}

/* ===== CLOSE BUTTON ===== */
.close-modal{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #555;
}

.close-modal:hover{
    color: red;
}

/* ===== INPUT FIELDS ===== */
.modal-content input,
.modal-content textarea{
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #d6e2f0;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus{
    border-color: #1d75bd;
    box-shadow: 0 0 6px rgba(29,117,189,0.2);
}

/* ===== BUTTON ===== */
.modal-content button{
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #1d75bd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-content button:hover{
    background: #155a91;
}

/* ===== FOUNDER LOGIN BUTTON ===== */
#founderLoginBtn{
    justify-content: center;
    margin-top: 10px;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

#founderLoginBtn:hover{
    background: #1e7e34;
}

/* ===== ANIMATION ===== */
@keyframes popup{
    from{
        transform: scale(0.8);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}




/* ===== FORM CONTAINER ===== */
.staff-form{
    max-width: 500px;
    margin: 30px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

/* ===== TITLE ===== */
.staff-form h2{
    font-size: 22px;
    color: #1d3c6a;
    margin-bottom: 15px;
}

/* ===== INPUT FIELDS ===== */
.staff-form input,
.staff-form textarea{
    width: 100%;
    padding: 12px 14px;
    margin: 8px 0;
    border: 1px solid #d6e2f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* focus effect */
.staff-form input:focus,
.staff-form textarea:focus{
    border-color: #1d75bd;
    box-shadow: 0 0 6px rgba(29,117,189,0.2);
}

/* textarea height */
.staff-form textarea{
    resize: none;
    min-height: 80px;
}

/* ===== SUBMIT BUTTON ===== */
.staff-form button{
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #1d75bd;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.staff-form button:hover{
    background: #155a91;
    transform: translateY(-2px);
}

/* ===== PLACEHOLDER STYLE ===== */
.staff-form input::placeholder,
.staff-form textarea::placeholder{
    color: #999;
    font-size: 13px;
}









/* ===== ADD HOSPITAL FORM BOX ===== */
#adminPanel{
    max-width: 500px;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

/* Heading */
#adminPanel h3{
    font-size: 24px;
    color: #1d3c6a;
    margin-bottom: 20px;
}

/* Inputs & textarea */
#adminPanel input,
#adminPanel textarea{
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

#adminPanel input:focus,
#adminPanel textarea:focus{
    border-color: #1a73e8;
    box-shadow: 0 0 8px rgba(26,115,232,0.2);
}

/* Button */
#adminPanel button{
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: linear-gradient(135deg, #1a73e8, #00c6ff);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

#adminPanel button:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Labels look (optional spacing fix) */
#adminPanel br{
    display: none;
}

/* Animation */
@keyframes fadeIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
}




/* Section Background */
.about2 {
  padding: 60px 20px;
  background: linear-gradient(to right, #e6f7ff, #f9fcff);
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.about2-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.about2 h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.about2 h2 span {
  color: #0077b6;
  font-weight: 600;
}

/* Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Cards */
.about-box {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.about-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 119, 182, 0.15);
}

/* Top Border Accent */
.about-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #0077b6, #00b4d8);
}

/* Card Titles */
.about-box h3 {
  color: #0077b6;
  margin-bottom: 12px;
  font-size: 20px;
}

/* List Styling */
.about-box ul {
  padding-left: 18px;
}

.about-box ul li {
  margin-bottom: 8px;
  color: #444;
  line-height: 1.5;
  position: relative;
}

/* Custom Bullet */
.about-box ul li::marker {
  color: #00b4d8;
}

/* Responsive */
@media (max-width: 768px) {
  .about2 h2 {
    font-size: 26px;
  }

  .about-box {
    padding: 20px 15px;
  }
}






/* Section */
.about3 {
  padding: 90px 20px;
  background: #f4fbff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.about3-container {
  max-width: 800px;
  text-align: center;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 119, 182, 0.1);
  transition: 0.3s ease;
}

/* Hover effect */
.about3-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 119, 182, 0.2);
}

/* Icon Circle */
.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: -80px auto 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Heading */
.about3 h2 {
  font-size: 30px;
  color: #0077b6;
  margin-bottom: 15px;
}

/* Paragraph */
.about3 p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

/* Quote effect */
.about3 p::before {
  content: "“";
  font-size: 40px;
  color: #00b4d8;
}

.about3 p::after {
  content: "”";
  font-size: 40px;
  color: #00b4d8;
}

/* Responsive */
@media (max-width: 768px) {
  .about3-container {
    padding: 40px 20px;
  }

  .about3 h2 {
    font-size: 24px;
  }

  .about3 p {
    font-size: 16px;
  }
}


/* Section Background */
.about4 {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fdfbfb, #ebf7ff);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.about4-container {
  max-width: 850px;
  text-align: center;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  overflow: hidden;
}

/* Glow Border Effect */
.about4-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  mask: linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Hover */
.about4-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 119, 182, 0.2);
}

/* Icon */
.vision-icon {
  font-size: 45px;
  margin-bottom: 15px;
  animation: float 2.5s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Heading */
.about4 h2 {
  font-size: 30px;
  color: #0077b6;
  margin-bottom: 15px;
}

/* Paragraph */
.about4 p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  max-width: 700px;
  margin: auto;
}

/* Highlight line */
.about4 p::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00b4d8;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .about4-container {
    padding: 40px 20px;
  }

  .about4 h2 {
    font-size: 24px;
  }

  .about4 p {
    font-size: 16px;
  }
}



/* Section */
.about5 {
  padding: 80px 20px;
  background-color: #f8fafc;
}

/* Container */
.about5-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

/* Icon */
.values-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Heading */
.about5 h2 {
  font-size: 26px;
  color: #1f2937;
  margin-bottom: 25px;
  font-weight: 600;
}

/* List */
.about5 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List Items */
.about5 ul li {
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  line-height: 1.6;
  font-size: 16px;
}

/* Remove last border */
.about5 ul li:last-child {
  border-bottom: none;
}

/* Highlight titles */
.about5 ul li strong {
  color: #0f172a;
  font-weight: 600;
}

/* Subtle spacing */
.about5 ul li + li {
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .about5-container {
    padding: 30px 20px;
  }

  .about5 h2 {
    font-size: 22px;
  }

  .about5 ul li {
    font-size: 15px;
  }
}








/* ===== CEO SECTION PREMIUM DESIGN ===== */

.services3 {
    padding: 100px 8%;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    position: relative;
    overflow: hidden;
}

.services3::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

.services3-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Area */
.services3-image {
    flex: 1;
    position: relative;
}

.services3-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.services3-image img:hover {
    transform: translateY(-10px);
}

.services3-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #2563eb;
    border-radius: 30px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

/* Content */
.services3-content {
    flex: 1.2;
}

.services3-content .tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services3-content h2 {
    font-size: 52px;
    margin: 18px 0 5px;
    color: #0f172a;
    font-weight: 800;
}

.services3-content h4 {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 10px;
}

.services3-content .qualification {
    display: inline-block;
    background: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #dbeafe;
    color: #475569;
    font-weight: 600;
    margin-bottom: 25px;
}

.services3-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 30px;
}

/* Highlights */
.services3-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.services3-highlights div {
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    text-align: center;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.services3-highlights div:hover {
    transform: translateY(-8px);
    background: #2563eb;
    color: #fff;
}

/* Button */
.services3 .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
    transition: 0.4s ease;
}

.services3 .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

/* Mobile */
@media (max-width: 991px) {
    .services3-container {
        flex-direction: column;
        text-align: center;
    }

    .services3-image::after {
        display: none;
    }

    .services3-content h2 {
        font-size: 40px;
    }

    .services3-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services3 {
        padding: 70px 20px;
    }

    .services3-content h2 {
        font-size: 32px;
    }

    .services3-content h4 {
        font-size: 20px;
    }
}

.ceo-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-box {
    background: #fff;
    padding: 20px;
    min-width: 140px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
}

.stat-box h3 {
    font-size: 30px;
    color: #2563eb;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-box span {
    font-size: 14px;
    color: #64748b;
}

@media(max-width:768px){
    .ceo-stats{
        justify-content:center;
    }
}






.tag {
  background: #007bff;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 15px;
  display: inline-block;
}

.services3-content h2 {
  font-size: 34px;
  margin: 5px 0;
  color: #1a1a1a;
}

.services3-content h4 {
  font-size: 18px;
  color: #007bff;
  margin-bottom: 5px;
}

.qualification {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
}

.services3-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Highlights */
.services3-highlights {
  margin-bottom: 25px;
}

.services3-highlights div {
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}








/* SECTION */
.services4 {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
  font-family: "Segoe UI", sans-serif;
}

.services4-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services4 .tag {
  display: inline-block;
  padding: 8px 18px;
  background: #e8f3ff;
  color: #0066cc;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services4 h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.services4 .main-text {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #64748b;
  line-height: 1.8;
  font-size: 17px;
}

/* PROFESSIONAL CARD */
.leader-card {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #fff;
  border-radius: 30px;
  padding: 45px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  text-align: left;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

/* IMAGE */
.leader-image {
  flex: 0 0 320px;
}

.leader-avatar {
  width: 320px;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.leader-info {
  flex: 1;
}

.leader-name {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.leader-role {
  font-size: 18px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 12px;
}

.leader-qualification {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.leader-bio {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

/* MOBILE */
@media (max-width: 768px) {
  .leader-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 30px;
  }

  .leader-image {
    flex: unset;
  }

  .leader-avatar {
    width: 260px;
    height: 320px;
  }

  .leader-name {
    font-size: 28px;
  }

  .services4 h2 {
    font-size: 30px;
  }
}






/* Tag */
.tag {
  background: #0066ff;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 15px;
}

/* Heading */
.services4 h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

/* Main Text */
.main-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Leader Card */
.leader-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

/* Leader Info */
.leader-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #111;
}

.role {
  color: #0066ff;
  font-weight: 600;
  margin-bottom: 5px;
}

.qualification {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.bio {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Features */
.features {
  margin: 25px 0;
}

.features div {
  margin: 8px 0;
  color: #333;
  font-size: 15px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0066ff, #0044cc);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}




.doctors {
  padding: 80px 20px;
  background: #f4f8fc;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Tag */
.tag {
  background: #0d6efd;
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
}

/* Heading */
.doctors h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* Layout */
.doctor-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.doctor-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.doctor-card:hover {
  transform: translateY(-8px);
}

/* Avatar (No Image) */
.avatar {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #0044cc);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Text */
.doctor-card h3 {
  margin: 10px 0 5px;
}

.role {
  color: #0d6efd;
  font-weight: 500;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #555;
}
.section-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}




.doctor-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin: auto;
}

.avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0d6efd;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h3 {
    margin: 10px 0;
    font-size: 24px;
    color: #222;
}

.role {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 12px;
}

.desc {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}






.departments-section{
padding:100px 0;
background:#f5f9ff;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#0d6efd;
font-weight:700;
text-transform:uppercase;
letter-spacing:2px;
}

.section-title h2{
font-size:48px;
font-weight:800;
color:#1a2b49;
margin:15px 0;
}

.section-title p{
color:#6c757d;
max-width:650px;
margin:auto;
}

.department-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.department-box{
position:relative;
background:#fff;
border-radius:25px;
padding:40px 25px;
text-align:center;
overflow:hidden;
transition:.4s ease;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.department-box::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#0d6efd,#00c6ff);
}

.dept-icon{
width:90px;
height:90px;
margin:auto;
border-radius:50%;
background:linear-gradient(135deg,#0d6efd,#00c6ff);
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
color:#fff;
margin-bottom:25px;
}

.department-box h4{
font-size:20px;
color:#1a2b49;
font-weight:700;
}

.department-box:hover{
transform:translateY(-12px);
box-shadow:0 20px 45px rgba(13,110,253,.25);
}

.department-box:hover .dept-icon{
transform:rotateY(360deg);
transition:1s;
}








.ceo-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-box {
    background: #fff;
    padding: 20px;
    min-width: 140px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
}

.stat-box h3 {
    font-size: 30px;
    color: #2563eb;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-box span {
    font-size: 14px;
    color: #64748b;
}

@media(max-width:768px){
    .ceo-stats{
        justify-content:center;
    }
}












/* PMJAY Section */
.pmj-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5fbff, #eef8f3);
}

.pmj-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Content */
.pmj-left {
  flex: 1;
}

.pmj-badge {
  display: inline-block;
  background: #0d9488;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pmj-left h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pmj-left p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 35px;
}

/* Info Cards */
.pmj-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-item {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border-top: 4px solid #0d9488;
}

.info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-item h4 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
}

.info-item span {
  color: #64748b;
  font-size: 14px;
}

/* Right Side Image */
.pmj-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pmj-thumb-card {
  background: #fff;
  padding: 15px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.pmj-thumb img {
  width: 100%;
  max-width: 500px;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.pmj-thumb img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .pmj-container {
    flex-direction: column;
    text-align: center;
  }

  .pmj-info {
    grid-template-columns: 1fr;
  }

  .pmj-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .pmj-section {
    padding: 60px 15px;
  }

  .pmj-left h2 {
    font-size: 28px;
  }

  .pmj-left p {
    font-size: 15px;
    }   
}




/* Gallery Section */
.gallary {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.gallary h2 {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 30px;
    position: relative;
}

.gallary h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0d6efd;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

/* Grid Layout */
.gallary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Images */
.gallary-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.gallary-grid img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    border: 4px solid #fff;
    animation: zoomIn 0.4s ease;
}

/* Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gallary h2 {
        font-size: 2rem;
    }

    .gallary-grid img {
        height: 200px;
    }
}







/* Reviews Section */
.rating-section {
    padding: 90px 0;
    background: #f7fbff;
}

.rating-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    color: #0d6efd;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 42px;
    color: #222;
    margin: 10px 0;
}

.section-header p {
    color: #666;
    max-width: 650px;
    margin: auto;
    line-height: 1.7;
}






/* Donation Section */

.donation-section{
    padding:80px 8%;
    background:#f7fbf8;
}

.donation-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    align-items:flex-start;
}

.donation-left{
    flex:2;
    min-width:320px;
}

.donation-right{
    flex:1;
    min-width:280px;
}

.donation-tag{
    display:inline-block;
    background:#e8f5e9;
    color:#2e7d32;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
    margin-bottom:15px;
}

.donation-left h2{
    color:#1b5e20;
    font-size:36px;
    margin-bottom:15px;
}

.donation-left p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.donation-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.donation-form input,
.donation-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    outline:none;
}

.donation-form input:focus,
.donation-form textarea:focus{
    border-color:#2e7d32;
}

.donation-form textarea{
    height:120px;
    resize:vertical;
}

.donate-btn{
    background:#2e7d32;
    color:#fff;
    border:none;
    padding:15px;
    font-size:17px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.donate-btn:hover{
    background:#1b5e20;
}

.payment-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(19, 218, 19, 0.12);
    border:6px solid aqua;
}

.payment-box h3{
    color:#2e7d32;
    margin-bottom:20px;
}

.payment-box img{
    width:220px;
    max-width:100%;
    border:6px solid aqua;
    border-radius:10px;
    margin-bottom:20px;
}

.payment-box h4{
    margin:10px 0;
}

.payment-box p{
    font-size:18px;
    font-weight:bold;
    color:#333;
}

.payment-box small{
    display:block;
    margin-top:15px;
    color:#666;
    line-height:1.6;
}

@media(max-width:768px){

.donation-container{
    flex-direction:column;
}

.donation-left h2{
    font-size:30px;
}

.payment-box{
    margin-top:20px;
}

}


.report-btn{
    display:inline-block;
    margin-top:20px;
    background:#1565c0;
    color:white;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.report-btn:hover{
    background:#0d47a1;
}




body{
    font-family:Arial;
    background:#f5f9f5;
}

.report-container{
    width:90%;
    max-width:900px;
    margin:auto;
    padding:40px;
}

h1{
    text-align:center;
    color:#2e7d32;
}


.report-card{

background:white;

padding:20px;

margin:20px 0;

border-radius:12px;

box-shadow:0 5px 15px rgba(0,0,0,.1);

border-left:5px solid #2e7d32;

}


.report-card h3{

color:#1b5e20;

}


.report-card p{

margin:8px 0;

color:#555;

}