*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    background: #070b1d;
    color:white;
    overflow-x:hidden;
}

/* Navbar */
.navbar{
    padding:20px 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(15px);
}

.navbar-brand{
    font-size:24px;
}

/* Hero */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:
    linear-gradient(135deg,#0a0f2c,#121d52,#0f2d63);
}

/* Floating blur circles */
.blur{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;
}

.blur1{
    width:300px;
    height:300px;
    background:#00d9ff;
    top:10%;
    left:5%;
}

.blur2{
    width:350px;
    height:350px;
    background:#7d2cff;
    right:5%;
    bottom:10%;
}

.hero-text{
    z-index:2;
}

.hero h1{
    font-size:65px;
    font-weight:800;
    line-height:1.2;
}

.typewriter{
    color:#00d9ff;
    border-right:4px solid white;
    animation: blink 0.8s infinite;
}

@keyframes blink{
    50%{
        border-color:transparent;
    }
}

.hero p{
    margin:30px 0;
    font-size:20px;
    color:#d8d8d8;
}

.hero-btns{
    display:flex;
    gap:20px;
}

.btn-main{
    background:linear-gradient(45deg,#00d9ff,#7d2cff);
    color:white;
    padding:15px 30px;
    border-radius:50px;
    font-weight:bold;
    border:none;
}

.btn-main:hover{
    transform:scale(1.05);
    color:white;
}

.hero-image-box{
    position:relative;
    z-index:2;
}

.hero-image{
    border-radius:30px;
    box-shadow:
    0 0 50px rgba(0,217,255,.4),
    0 0 100px rgba(125,44,255,.2);
}

/* Services */
.services{
    padding:100px 0;
}

.services h2{
    font-size:45px;
    font-weight:bold;
}

.glass-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(15px);
    padding:40px;
    border-radius:25px;
    text-align:center;
    transition:.4s;
}

.glass-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 40px rgba(0,217,255,0.15);
}

.glass-card i{
    font-size:45px;
    margin-bottom:20px;
    background:linear-gradient(45deg,#00d9ff,#7d2cff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.glass-card h4{
    margin-bottom:15px;
}
.about-stats{
    display:flex;
    gap:30px;
    margin-top:30px;
}

.about-stats h3{
    color:#00d9ff;
}

.why-box{
    background:rgba(255,255,255,0.08);
    padding:30px;
    border-radius:20px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.why-box i{
    font-size:40px;
    margin-bottom:20px;
    color:#00d9ff;
}

.doctor-box{
    text-align:center;
}

.doctor-box img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:20px;
}

.testimonial-card{
    max-width:700px;
    margin:auto;
    background:rgba(255,255,255,0.06);
    padding:40px;
    border-radius:20px;
    text-align:center;
}

.cta-section{
    background:linear-gradient(45deg,#00d9ff,#7d2cff);
    border-radius:30px;
    margin:50px;
}

.footer-section{
    position: relative;
    padding: 100px 0 30px;
    background: linear-gradient(180deg,#060b1a,#0c1533);
    overflow: hidden;
}

.footer-section::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0,217,255,0.08);
    filter: blur(120px);
    top: -80px;
    left: -80px;
    border-radius: 50%;
}

.footer-section::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(125,44,255,0.08);
    filter: blur(120px);
    bottom: -100px;
    right: -80px;
    border-radius: 50%;
}

.footer-brand,
.footer-links,
.footer-contact{
    position: relative;
    z-index: 2;
}

.footer-brand h3{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand h3 i{
    color: #00d9ff;
}

.footer-brand p{
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.social-icons{
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    transition: .4s;
}

.social-icons a:hover{
    transform: translateY(-6px);
    background: linear-gradient(45deg,#00d9ff,#7d2cff);
}

.footer-links h5,
.footer-contact h5{
    margin-bottom: 25px;
    font-weight: 600;
    color: white;
}

.footer-links ul{
    list-style: none;
    padding: 0;
}

.footer-links ul li{
    margin-bottom: 14px;
}

.footer-links ul li a{
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    transition: .3s;
}

.footer-links ul li a:hover{
    color: #00d9ff;
    padding-left: 8px;
}

.footer-contact p{
    color: rgba(255,255,255,0.75);
    margin-bottom: 15px;
}

.footer-contact i{
    color: #00d9ff;
    margin-right: 10px;
}

.footer-section hr{
    margin: 50px 0 20px;
    border-color: rgba(255,255,255,0.08);
}

.footer-bottom{
    text-align: center;
}

.footer-bottom p{
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.about-hero{
    padding: 150px 0 100px;
}

.about-hero h1{
    font-size: 55px;
    font-weight: 800;
    margin: 20px 0;
}

.about-hero p{
    font-size: 18px;
    color: rgba(255,255,255,.75);
}

.about-hero-img,
.section-img{
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,217,255,.15);
}

.small-title{
    color: #00d9ff;
    font-weight: bold;
    letter-spacing: 2px;
}

.who-we-are h2,
.vision-mission h2,
.core-values h2{
    font-weight: 700;
}

.value-box{
    background: rgba(255,255,255,.06);
    text-align: center;
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: .4s;
}

.value-box:hover{
    transform: translateY(-10px);
}

.value-box i{
    font-size: 35px;
    margin-bottom: 20px;
    color: #00d9ff;
}

.stats-section{
    background: rgba(255,255,255,.03);
}

.stat-box h2{
    font-size: 45px;
    font-weight: bold;
    color: #00d9ff;
}

.about-cta{
    margin: 60px;
    border-radius: 30px;
    background: linear-gradient(45deg,#00d9ff,#7d2cff);
}
.services-hero{
    padding: 150px 0 100px;
}

.services-hero h1{
    font-size: 55px;
    font-weight: 800;
    margin: 20px 0;
}

.services-hero p{
    color: rgba(255,255,255,.75);
    font-size: 18px;
}

.service-hero-img,
.emergency-img{
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,217,255,.15);
}

.service-card{
    min-height: 280px;
}

.service-card i{
    font-size: 45px;
    margin-bottom: 20px;
}

.process-box{
    text-align: center;
    background: rgba(255,255,255,.06);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.process-box span{
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    color: #00d9ff;
    margin-bottom: 15px;
}

.process-box h5{
    margin-bottom: 15px;
}

.services-cta{
    margin: 60px;
    border-radius: 30px;
    background: linear-gradient(45deg,#00d9ff,#7d2cff);
}

/* Logo */
.logo-img{
    width: 100px;
    height: 60px;
    object-fit: cover;
}

/* Hero buttons */
.hero-btns{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mobile responsive */
@media (max-width: 991px){

    .navbar{
        padding: 15px 0;
    }

    .navbar-collapse{
        background: rgba(10,15,44,.95);
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
    }

    .nav-item{
        margin-bottom: 10px;
    }

    .hero{
        padding-top: 130px;
        text-align: center;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero h1{
        font-size: 40px;
        line-height: 1.3;
    }

    .hero p{
        font-size: 16px;
    }

    .hero-btns{
        justify-content: center;
    }

    .hero-btns .btn{
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-image{
        margin-top: 30px;
    }

    .blur1,
    .blur2{
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px){

    .hero h1{
        font-size: 32px;
    }

    .hero p{
        font-size: 15px;
    }

    .logo-img{
        width: 80px;
        height: 50px;
    }

    .btn-main{
        padding: 14px 20px;
        font-size: 14px;
    }
}
