/* CONTACT HERO */
.contact-hero {
    
    text-align: left;
    padding: 0px 10%;
}

.contact-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* CONTACT WRAPPER */
.contact-wrapper {
    display: flex;
    gap: 40px;
    padding: 80px 10%;
}

/* CONTACT INFO */
.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-card {
    background: linear-gradient(160deg, #e3f2fd, #e8f5e9);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card h3 {
    color: #0d47a1;
    margin-bottom: 10px;
}

/* CONTACT FORM */
.contact-form-box {
    flex: 1;
    background: linear-gradient(135deg, #1976d2, #388e3c);
    padding: 40px;
    border-radius: 25px;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.contact-form-box h2 {
    margin-bottom: 5px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
}

.contact-form-box textarea {
    height: 120px;
    resize: none;
}

.contact-form-box button {
    background: #ffffff;
    color: #0d47a1;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box button:hover {
    background: #e3f2fd;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 30px;
    margin: 0 0% 0px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
    .map-section iframe {
        margin: 0 5% 30px;
    }
}


/* FOOTER */
.footer {
    background: linear-gradient(135deg, #0d47a1, #2e7d32);
    color: #ffffff;
    padding: 60px 10%;
    font-size: 15px;
    line-height: 1.6;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1 1 250px;
}

/* Logo */
.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links ul li a:hover {
    text-decoration: underline;
}

/* Contact Info */
.footer-contact p {
    margin: 8px 0;
}

/* Social Icons */
.footer-social a {
    display: inline-block;
    margin-right: 12px;
}
.footer-social img {
    width: 25px;
    transition: transform 0.3s;
}
.footer-social img:hover {
    transform: scale(1.2);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media(max-width:900px){
    .footer-container{
        flex-direction: column;
    }
    .footer-about, .footer-links, .footer-contact{
        margin-bottom: 30px;
    }
}



:root{
--blue:#0d47a1;
--blue2:#1976d2;
--green:#2e7d32;
--green2:#66bb6a;
}

body{
margin:0;
font-family:'Poppins',sans-serif;
background:#fff;
}

/* HERO */
.hero{
position:relative;
height:300px;
}
.hero img{
width:100%;
height:300px;
object-fit:cover;
}
.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(13,71,161,.8),rgba(46,125,50,.7));
}
.hero-left{
position:absolute;
left:8%;
top:10%;
color:#fff;
z-index:2;
}
.hero-left h1{font-size:52px;margin:0;}
.hero-left p{font-size:20px;}

.hero-menu{
position:absolute;
top:30px;
right:50px;
z-index:3;
}
.hero-menu a{
color:#fff;
margin-left:20px;
text-decoration:none;
font-weight:600;
padding:8px 16px;
border-radius:30px;
transition:.3s;
}
.hero-menu a:hover,
.hero-menu .cta{
background:rgba(255,255,255,.25);
}

/* SECTIONS */
section{
padding:30px 10%;
}
h2{color:var(--blue);font-size:36px;}
h3{color:var(--green);}

.split{
display:flex;
gap:10px;
align-items:center;
}
.split img{
width:60%;
border-radius:20px;
}

/* SERVICES */
.service-row{
display:flex;
gap:10px;
margin-bottom:10px;
align-items:center;
}
.service-row.reverse{flex-direction:row-reverse;}
.service-row img{
width:45%;
border-radius:20px;
}

/* DOCTORS */
.doctor-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr


/* ABOUT SECTION BOX */
.about-section img {
    width: 50%;
    border-radius: 20px;
}

.about-box {
    background: linear-gradient(135deg, #1976d2, #2e7d32);
    color: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-box h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 5px;
}

/* SERVICE BOX GRID */
.service-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* SERVICE BOX */
.service-box {
    background: linear-gradient(160deg, #e3f2fd, #e8f5e9);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box h3 {
    color: #0d47a1;
    margin-bottom: 12px;
}

.service-box p {
    color: #333;
    line-height: 1.6;
}

/* HOVER EFFECT */
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}



