/* === styles.css === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

body {
    background-color: #ffffff;
    color: #1f2f3e;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* header */
.header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e4edf2;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background: #0d6e9e;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a3b4b;
    line-height: 1.2;
}

.logo-highlight {
    color: #0077be;
}

.logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #5b7e95;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1d3b4f;
    transition: 0.2s;
    font-size: 1.1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0a7ab3;
    border-bottom: 2px solid #0a7ab3;
    padding-bottom: 4px;
}

.nav-contact {
    background: #e7f3fa;
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 600;
    color: #015c9b;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1d3b4f;
    cursor: pointer;
}

/* hero slider */
.hero-slider {
    position: relative;
    height: 80vh;
    max-height: 700px;
    min-height: 550px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.15, 1), visibility 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-blend-mode: overlay;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 800px;
    animation: fadeSlideUp 1s ease;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid transparent;
}
.btn-light {
    background: white;
    color: #015c9b;
}
.btn-light:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}
.slider-btn:hover {
    background: white;
    color: #015c9b;
}
.prev { left: 20px; }
.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: white;
    width: 32px;
}

/* sections */
.section {
    padding: 80px 0;
}
.bg-light {
    background: #f5fafd;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.6rem;
    color: #003153;
    margin-bottom: 10px;
}
.subhead {
    font-size: 1.2rem;
    color: #3d627a;
}

/* welcome cards */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.welcome-card {
    background: white;
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 20px 30px -10px rgba(0,90,130,0.1);
    transition: 0.3s;
    border: 1px solid rgba(0,180,255,0.1);
}
.welcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px -10px #015c9b33;
}
.welcome-card i {
    font-size: 3rem;
    color: #0071a5;
    margin-bottom: 20px;
}

/* doctors */
.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.doctor-card {
    background: white;
    border-radius: 24px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 8px 18px #d9e9f3;
    transition: all 0.3s;
}
.doctor-card:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 28px #b3d6ea;
}
.doc-img {
    width: 110px;
    height: 110px;
    background: #d2ecff;
    border-radius: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #01658f;
}
.doctor-card h3 {
    color: #01263a;
    font-size: 1.3rem;
}
.degree {
    font-weight: 700;
    color: #007ab3;
    margin: 6px 0 4px;
}
.role {
    color: #445e71;
    font-size: 0.95rem;
    font-weight: 500;
}

/* services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.service-card {
    background: white;
    border-radius: 40px;
    padding: 45px 20px;
    text-align: center;
    box-shadow: 0 20px 30px #e2eef7;
    transition: 0.3s;
    border-bottom: 6px solid #0073aa;
}
.service-card:hover {
    transform: rotate(0.5deg) scale(1.02);
    background: #f5fcff;
}
.service-icon i {
    font-size: 3.5rem;
    color: #00577a;
    margin-bottom: 20px;
}
.extra-service-note {
    text-align: center;
    background: #e3f0f9;
    padding: 20px;
    border-radius: 80px;
    font-size: 1.2rem;
    color: #014682;
}

/* footer */
.footer {
    background: #032b3d;
    color: #d1e2ed;
    padding-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.footer h4 {
    color: white;
    margin-bottom: 20px;
}
.footer ul {
    list-style: none;
}
.footer ul li a {
    color: #c2d5e4;
    text-decoration: none;
    line-height: 2.2;
}
.social-icons a {
    color: white;
    background: #115a7a;
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 30px;
    text-align: center;
    line-height: 38px;
    margin-right: 8px;
    transition: 0.2s;
}
.social-icons a:hover {
    background: #1f8fc7;
}
.footer-bottom {
    text-align: center;
    padding: 30px 0 20px;
    border-top: 1px solid #1a506b;
    margin-top: 40px;
}

/* animations + effects */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.zoom-in {
    opacity: 0;
    transform: scale(0.92);
    animation: zoomIn 0.7s forwards;
}
@keyframes zoomIn {
    to { opacity: 1; transform: scale(1); }
}

/* responsiveness */
@media (max-width: 860px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .navbar { gap: 1rem; }
    .slide-content h1 { font-size: 2.4rem; }
}
@media (max-width: 600px) {
    .doctor-grid { grid-template-columns: 1fr; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; }
}










/* === additional styles for OUR WORK page (paste into styles.css) === */

/* work hero / page title */
.work-hero {
    background: linear-gradient(135deg, #e0f0f9, #c8e5f2);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 1rem;
}
.work-hero h1 {
    font-size: 3.2rem;
    color: #003153;
    margin-bottom: 0.25rem;
}
.work-hero p {
    font-size: 1.3rem;
    color: #1d577b;
}

/* gallery section */
.gallery-section {
    padding: 40px 0 80px;
}

/* filter buttons */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}
.filter-btn {
    background: white;
    border: 1.5px solid #c4d9e8;
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: 600;
    color: #1e4f6e;
    cursor: pointer;
    transition: 0.25s;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 80, 120, 0.04);
}
.filter-btn.active,
.filter-btn:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
    box-shadow: 0 10px 18px #a3cef0;
    transform: translateY(-2px);
}

/* work grid cards */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.work-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 30px -8px rgba(1, 70, 110, 0.14);
    transition: all 0.4s cubic-bezier(0.15, 0.75, 0.45, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.6s forwards;
    border: 1px solid rgba(0,150,220,0.2);
}
.work-card:nth-child(odd) { animation-delay: 0.1s; }
.work-card:nth-child(even) { animation-delay: 0.2s; }

@keyframes cardAppear {
    to { opacity: 1; transform: translateY(0); }
}

.work-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 45px -8px #0077b3;
}

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
    background-color: #6a757b59;
    background-blend-mode: overlay;
}

.image-tag {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 700;
    color: #015c8c;
    font-size: 1rem;
    border: 1px solid white;
}

.card-content {
    padding: 22px 20px 28px;
    background: white;
}
.card-content h3 {
    font-size: 1.6rem;
    color: #003153;
    margin-bottom: 8px;
}
.card-content p {
    color: #2d5779;
    margin-bottom: 20px;
    line-height: 1.5;
}
.doctor-badge {
    display: inline-block;
    background: #ecf6fc;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e618b;
    margin-right: 8px;
    margin-bottom: 8px;
}
.btn-outline {
    border: 2px solid #0073aa;
    background: transparent;
    padding: 10px 22px;
    border-radius: 50px;
    color: #0073aa;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
    transition: 0.3s;
}
.btn-outline:hover {
    background: #0073aa;
    color: white;
}

/* stats row */
.stats-row {
    display: flex;
    justify-content: space-around;
    background: #e1f0f9;
    border-radius: 100px;
    padding: 30px 20px;
    margin: 60px 0 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #003f66;
}
.stat-label {
    color: #2b627f;
    font-weight: 500;
}

/* responsive */
@media (max-width: 600px) {
    .work-hero h1 { font-size: 2.4rem; }
    .stats-row { flex-direction: column; border-radius: 60px; }
}


















/* === additional styles for CONTACT page (paste into styles.css) === */

.contact-hero {
    background: linear-gradient(135deg, #d4eaf7, #b8ddf0);
    padding: 3.5rem 0;
    text-align: center;
    margin-bottom: 1rem;
}
.contact-hero h1 {
    font-size: 3.2rem;
    color: #003153;
    margin-bottom: 0.5rem;
}
.contact-hero p {
    font-size: 1.3rem;
    color: #1d577b;
}

.contact-section {
    padding: 50px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* info cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.info-card {
    background: white;
    border-radius: 28px;
    padding: 28px 18px;
    text-align: center;
    box-shadow: 0 15px 25px rgba(0, 80, 130, 0.08);
    transition: 0.3s;
    border: 1px solid #e1f0fa;
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 32px #aac9e2;
}
.info-icon {
    width: 65px;
    height: 65px;
    background: #ddf0fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: #0073aa;
}
.info-card h3 {
    margin-bottom: 12px;
    color: #003153;
}
.info-card p {
    color: #2b4d66;
    line-height: 1.6;
}

/* form container */
.contact-form-container {
    background: white;
    border-radius: 40px;
    padding: 40px 38px;
    box-shadow: 0 25px 40px -10px #9bbdd2;
    border: 1px solid rgba(0,150,220,0.15);
}
.contact-form-container h2 {
    font-size: 2.2rem;
    color: #003153;
    margin-bottom: 8px;
}
.contact-form-container p {
    color: #336688;
    margin-bottom: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #1b4c6f;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #cbe0ee;
    border-radius: 30px;
    font-size: 1rem;
    transition: 0.2s;
    background: #f9fcff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077be;
    box-shadow: 0 0 0 4px rgba(0,119,190,0.1);
}
.form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 30px;
}
.form-check input {
    width: 20px;
    height: 20px;
    accent-color: #0077be;
}
.btn-submit {
    background: #0077be;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px #b1d1e9;
}
.btn-submit:hover {
    background: #005f99;
    transform: translateY(-3px);
    box-shadow: 0 20px 25px #8bb9da;
}
.form-success {
    text-align: center;
    padding: 30px;
    background: #e2f3e9;
    border-radius: 40px;
    margin-top: 20px;
}
.form-success i {
    font-size: 4rem;
    color: #0e7b4e;
    margin-bottom: 15px;
}

/* map */
.map-container {
    margin: 50px 0 40px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 30px #b8d1e4;
    height: 380px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* emergency note */
.emergency-note {
    background: #ffe9db;
    border-radius: 60px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    border-left: 8px solid #cc5a2a;
}
.emergency-note i {
    font-size: 3rem;
    color: #b13e0b;
}
.emergency-note h4 {
    font-size: 1.5rem;
    color: #7b320e;
}
.emergency-note p {
    font-size: 1.1rem;
    color: #542a0f;
}

/* responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-hero h1 { font-size: 2.5rem; }
}









.welcome-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.welcome-image{
    flex:1;
}

.welcome-image img{
    width:100%;
    border-radius:10px;
}

.welcome-content{
    flex:1;
}

.welcome-content h2{
    font-size:32px;
    margin-bottom:15px;
}

.welcome-content p{
    margin-bottom:15px;
    line-height:1.7;
}

@media(max-width:768px){
    .welcome-wrapper{
        flex-direction:column;
    }
}






.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:999;
    
}

.float-call,
.float-whatsapp,
#backToTop{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    border:none;
    cursor:pointer;
    text-decoration: none;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.float-call{
    background:#007bff;
}

.float-whatsapp{
    background:#25D366;
}

#backToTop{
    background:#333;
}












.doc-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}