@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
.doctors{
    text-align: center;
     font-family: 'Poppins';
     font-style: normal;
}
.doctors h1{
    color: #fe3e5d;
    margin-top: 30px;
}
.doctors h1 span{
    color: #335a9a;
}
.doc1{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 70%;
    margin-left: 15%;
    text-align: left;
    margin-top: 30px;
    background-color: #fe3e5d;
    color: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
    font-family: ;
}
.doc1 img{
    width: 100%;
    /* height: 300px; */
    border-radius: 0%;
    object-fit: cover;
    padding: 20px;
}
.doc1 p{
    padding: 5px;
    color: white;
}
.doc1 h2{
    padding: 5px;
    color: white;
}
.doc1 h3{
    padding: 5px;
    color: #335a9a;
    background-color: white;
    display: inline-block;
    border-radius:10px ;
}
.doc1 span{
    color: #ffb703;
    font-size: 18px;
}
.doc1 div p strong{
    color: #ffb703;
}
.fac1 {
    background: linear-gradient(135deg, #335a9a 0%, #1e3a6f 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.fac1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fe3e5d, #ffb703, #fe3e5d);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.fac1 h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.fac1 h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffb703;
    border-radius: 2px;
}

.fac1 p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0.95;
    line-height: 1.6;
}
.fac {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fac > div {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.fac > div h3 {
    background: linear-gradient(135deg, #fe3e5d, #ffb703);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
}

.fac > div::before {
    content: attr(title);
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fe3e5d;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.fac > div:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.fac > div p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.fac > div:hover p {
    color: #ffb703;
}

.fac > div:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.fac div img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.fac > div:hover img {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(254, 62, 93, 0.3);
    border-color: #ffb703;
}
@media (max-width: 991px) {
    .doc1 {
        flex-direction: column;
        width: 90%;
        margin-left: 5%;
    }
    
    .fac1 {
        padding: 40px 15px;
    }
    
    .fac1 h1 {
        font-size: 2.2rem;
    }
    
    .fac {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .fac > div {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .fac1 h1 {
        font-size: 1.9rem;
    }
    
    .fac > div {
        padding: 20px 15px;
    }
    
    .fac div img {
        height: 180px;
    }
}

/* Footer Styles - Responsive Contact Section */
footer {
    /* background: linear-gradient(135deg, #1e3a6f 0%, #335a9a 100%); */
    color: white;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.contact {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-left: -250px;
}

.contact > div:first-child {
    height: 400px;
}

.contact iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 0;
}

.contact > div:nth-child(2) {
    text-align: left;
}

.contact > div:nth-child(2) h2 {
    color: #fe3e5d;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact > div:nth-child(2) h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fe3e5d;
    border-radius: 2px;
}

.contact > div:nth-child(2) a {
    display: block;
    color: #000000;
    text-decoration: none;
    margin-bottom: 15px;
    padding: 10px 0 10px 20px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.contact > div:nth-child(2) a:hover {
    color: #fe3e5d;
    border-left-color: #fe3e5d;
    padding-left: 30px;
    background: rgba(254, 62, 93, 0.1);
    border-radius: 0 5px 5px 0;
}

.contact > div:last-child {
    text-align: left;
}

.contact > div:last-child p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
    padding-left: 20px;
    position: relative;
}

.contact > div:last-child p::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.contact > div:last-child p:not(:first-of-type)::before {
    content: ' ';
}

.contact > div:last-child h2 {
    color: #fe3e5d;
    font-size: 1.5rem;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

@media (max-width: 991px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-left: 3px;
    }
    
    .contact > div:first-child {
        height: 300px;
        order: 3;
    }
    
    .contact > div:nth-child(2),
    .contact > div:last-child {
        order: 1;
        text-align: center;
    }
    
    .contact > div:nth-child(2) a {
        padding-left: 0;
        border-left: none;
        display: inline-block;
        margin: 0 10px 10px 0;
    }
    
    .contact > div:last-child p {
        padding-left: 0;
    }
    
    .contact > div:last-child p::before {
        position: static;
        display: inline;
        margin-right: 10px;
    }
}

@media (max-width: 575px) {
    footer {
        padding: 40px 0 15px;
    }
    
    .contact {
        gap: 25px;
    }
    
    .contact > div:first-child {
        height: 250px;
    }
    
    .contact h2 {
        font-size: 1.3rem;
    }
}

