*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f8f9fa;

}
/* Start NavBar */
.navbar{
    background:white;
    padding:15px 0;
    transition:.4s;
}
.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#dc3545 !important;
}
.navbar-brand i{
    margin-right:8px;
}
.nav-link{
    color:#333;
    margin-left:15px;
    font-weight:500;
    transition:.3s;
}
.nav-link:hover{
    color:#dc3545;
}
.nav-link.active{
    color:#dc3545 !important;
}
.btn{
    border-radius:30px;
    padding:8px 22px;
}
/* End NavBar */

/* Start Hero Sec */
.hero{
    padding-top:120px;
    background:#fff;
    overflow:hidden;
}
.hero h1{
    font-size:58px;
    font-weight:700;
    line-height:1.2;
    margin:20px 0;
}
.hero h1 span{
    color:#dc3545;
}
.hero p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}
.hero-tag{
    background:#ffe5e8;
    color:#dc3545;
    padding:10px 20px;
    border-radius:30px;
    display:inline-block;
    font-weight:600;
}
.hero-buttons .btn{
    padding:14px 35px;
    border-radius:40px;
    margin-right:15px;
}
.hero-image{
    width:90%;
    animation:float 4s ease-in-out infinite;
}
.hero-info{
    display:flex;
    gap:60px;
}
.hero-info h3{
    color:#dc3545;
    font-weight:700;
}
.hero-info p{
    margin:0;
}
.floating-card{
    position:absolute;
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    text-align:center;
}
.card-one{
    top:80px;
    left:0;
}
.card-two{
    bottom:60px;
    right:0;
}
@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}
/* End Hero Sec */

/* Start about Sec */
.about{
    background:#f8f9fa;
}
.section-title{
    color:#dc3545;
    font-weight:600;
    letter-spacing:2px;
}
.about h2{
    font-size:42px;
    font-weight:700;
    margin:20px 0;
}
.about p{
    color:#666;
    line-height:1.9;
}
.main-img{
    width:80%;
    border-radius:20px;
}
.second-img{
    width:45%;
    position:absolute;
    bottom:-40px;
    right:20px;
    border:8px solid white;
}
.experience-box{
    position:absolute;
    top:30px;
    left:-10px;
    background:#dc3545;
    color:white;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.experience-box h3{
    margin:10px 0;
    font-size:32px;
}
.feature-box{
    display:flex;
    align-items:center;
    gap:20px;
}
.feature-box i{
    width:60px;
    height:60px;
    background:#dc3545;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
}
.feature-box h5{
    margin-bottom:5px;
    font-weight:600;
}
.feature-box p{
    margin:0;
}
/* End about Sec */

/* Start counter Sec */
.counter-section{
    background:white;
}
.counter-box{
    background:#fff;
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.counter-box:hover{
    transform:translateY(-10px);
}
.counter-box i{
    font-size:45px;
    color:#dc3545;
}
.counter-box h2{
    font-size:42px;
    font-weight:700;
    margin:20px 0;
}
.counter-box p{
    color:#666;
    margin:0;
}
/* End counter sec */

/* Start types Sec*/

.blood-types{

    padding:100px 0;

    background:linear-gradient(to bottom,#ffffff,#f8f9fa);

}

.section-title{

    color:#dc3545;

    font-weight:600;

    letter-spacing:2px;

    display:inline-block;

    margin-bottom:15px;

}

.blood-types h2{

    font-size:45px;

    font-weight:700;

    margin-bottom:15px;

}

.blood-types p{

    color:#777;

}

/*=========================
        Card
==========================*/

.blood-card{

    perspective:1200px;

    cursor:pointer;

}

.blood-card-inner{

    position:relative;

    width:100%;

    height:280px;

    transform-style:preserve-3d;

    transition:1s;

}

.blood-card:hover .blood-card-inner{

    transform:rotateY(180deg);

}

.blood-front,
.blood-back{

    position:absolute;

    width:100%;

    height:100%;

    border-radius:25px;

    backface-visibility:hidden;

    overflow:hidden;

}

/*=========================
      Front
==========================*/

.blood-front{

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.4s;

}

.blood-front::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:#ffe5e5;

    border-radius:50%;

    top:-60px;

    right:-60px;

}

.blood-front::after{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#fff2f2;

    border-radius:50%;

    bottom:-40px;

    left:-40px;

}

.blood-front i{

    font-size:55px;

    color:#dc3545;

    z-index:2;

}

.blood-front h2{

    font-size:45px;

    margin:15px 0;

    font-weight:700;

    color:#222;

    z-index:2;

}

.blood-front span{

    color:#777;

    z-index:2;

}

/*=========================
        Back
==========================*/

.blood-back{

    background:linear-gradient(135deg,#dc3545,#ff6b6b);

    color:white;

    transform:rotateY(180deg);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:25px;

}

.blood-back h5{

    font-weight:700;

}

.blood-back p{

    margin:3px;

    color:white;

}

.blood-back hr{

    width:70%;

    opacity:.4;

}

/*=========================
      Hover
==========================*/

.blood-card:hover{

    transform:translateY(-10px);

    transition:.4s;

}

/*=========================
        Modal
==========================*/

.modal-content{

    border:none;

    border-radius:25px;

    overflow:hidden;

}

.modal-header{

    background:#dc3545;

    color:white;

    padding:20px;

}

.modal-title{

    font-weight:700;

}

.modal-body{

    padding:35px;

}

.modal-body ul{

    list-style:none;

    padding:0;

}

.modal-body li{

    margin-bottom:12px;

    padding:10px;

    border-radius:10px;

    background:#f8f9fa;

}

.modal-footer{

    border:none;

    padding:20px;

}

.alert{

    border-radius:15px;

}

/*=========================
        Button
==========================*/

#findRequest{

    border-radius:40px;

    padding:12px 30px;

}

/*=========================
      Responsive
==========================*/

@media(max-width:992px){

.blood-types h2{

font-size:35px;

}

.blood-card-inner{

height:250px;

}

}

@media(max-width:768px){

.blood-types{

padding:70px 0;

}

.blood-card{

margin-bottom:20px;

}

}

@media(max-width:576px){

.blood-types h2{

font-size:28px;

}

.blood-front h2{

font-size:35px;

}

}


/*=========================
        Hospital Swiper
=========================*/

.hospitalSwiper{

    padding:20px 10px 70px;

}

.swiper-slide{

    height:auto;

}

.hospital-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:100%;

}

.hospital-card:hover{

    transform:translateY(-10px);

}

.hospital-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.hospital-card .card-body{

    padding:20px;

}

.rating{

    color:#ffc107;

    font-size:18px;

}

.swiper-button-next,
.swiper-button-prev{

    color:#dc3545;

}

.swiper-pagination-bullet-active{

    background:#dc3545;

}


/*=========================
      Testimonials
=========================*/

.testimonials{

    background:#f8f9fa;

}

.testimonial-card{

    background:white;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:100%;

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin:auto;

    margin-bottom:20px;

    border:4px solid #dc3545;

}

.testimonial-card h4{

    font-weight:700;

}

.testimonial-card p{

    color:#777;

    margin:20px 0;

}

.stars{

    color:#ffc107;

    font-size:18px;

}

.swiper-pagination-bullet-active{

    background:#dc3545;

}


/*=========================
          CTA
==========================*/

.cta{

    background:linear-gradient(135deg,#dc3545,#ff6b6b);

    overflow:hidden;

}

.doctor-img{

    max-height:450px;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

.cta .btn{

border-radius:50px;

padding:14px 35px;

font-weight:600;

transition:.4s;

}

.cta .btn:hover{

transform:translateY(-5px);

}

/*=========================
        Footer
==========================*/

.footer{

background:#1f1f1f;

padding:80px 0 20px;

color:#ccc;

}

.footer h5,
.footer h3{

color:#fff;

margin-bottom:20px;

}

.footer ul{

list-style:none;

padding:0;

}

.footer li{

margin-bottom:12px;

}

.footer a{

text-decoration:none;

color:#ccc;

transition:.3s;

}

.footer a:hover{

color:#dc3545;

}

.social-links a{

width:45px;

height:45px;

display:inline-flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#333;

margin-right:10px;

transition:.3s;

}

.social-links a:hover{

background:#dc3545;

color:#fff;

transform:translateY(-5px);

}

.footer hr{

border-color:#444;

margin:40px 0;

}



/* About Page  */
/*=========================
        About Hero
==========================*/

.about-hero{

    background:#f8f9fa;

    min-height:90vh;

    display:flex;

    align-items:center;

}

.about-hero h1{

    color:#212529;

    line-height:1.3;

}

.about-hero p{

    font-size:18px;

    line-height:1.8;

}

.hero-image{

    max-width:90%;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}


/* Start Story Sec */

/*=========================
        Our Story
==========================*/

.our-story{

background:#fff;

}

.story-image{

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.1);

transition:.4s;

}

.story-image:hover{

transform:scale(1.03);

}

.story-features{

display:flex;

flex-direction:column;

gap:18px;

}

.feature-item{

display:flex;

align-items:center;

gap:15px;

font-size:18px;

font-weight:500;

}

.feature-item i{

font-size:24px;

color:#dc3545;

}

.our-story p{

line-height:1.9;

font-size:17px;

}
/* End Story Sec */


/* Start Mission & Vision Sec */


.mission-vision{

background:#f8f9fa;

}

.purpose-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.purpose-card:hover{

transform:translateY(-10px);

}

.purpose-icon{

width:90px;

height:90px;

background:#dc3545;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

margin-bottom:25px;

font-size:40px;

}

.purpose-card h3{

font-weight:700;

margin-bottom:20px;

}

.purpose-card p{

color:#6c757d;

line-height:1.8;

}
/* End Mission & Vision Sec */


/* Start choose Sec */
/*=========================
        Why Us
==========================*/

.why-us{

background:#fff;

}

.why-card{

background:#fff;

padding:35px 25px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.why-card:hover{

transform:translateY(-12px);

}

.why-icon{

width:80px;

height:80px;

background:#ffe5e8;

color:#dc3545;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

margin-bottom:20px;

font-size:35px;

transition:.4s;

}

.why-card:hover .why-icon{

background:#dc3545;

color:#fff;

transform:rotate(360deg);

}

.why-card h4{

font-weight:700;

margin-bottom:15px;

}

.why-card p{

color:#6c757d;

line-height:1.7;

font-size:15px;

}
/* End choose Sec */

/* Start work sec */

/*=========================
      How It Works
==========================*/

.how-work{

    background:#f8f9fa;

}

.timeline{

    position:relative;

    margin-top:70px;

}

.timeline-line{

    position:absolute;

    top:20px;

    left:12%;

    width:76%;

    height:5px;

    background:#dc3545;

    border-radius:50px;

    animation:growLine 2s ease;

}

@keyframes growLine{

    from{

        width:0;

    }

    to{

        width:76%;

    }

}

.step-card{

    position:relative;

    background:#fff;

    padding:70px 25px 35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.step-card:hover{

    transform:translateY(-10px);

}

.step-circle{

    position:absolute;

    top:-5px;

    left:50%;

    transform:translateX(-50%);

    width:50px;

    height:50px;

    border-radius:50%;

    background:#fff;

    border:4px solid #dc3545;

    color:#dc3545;

    font-weight:bold;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:10;

}

.step-icon{

    width:90px;

    height:90px;

    margin:auto;

    background:#ffe5e8;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    color:#dc3545;

    margin-bottom:25px;

    transition:.4s;

}

.step-card:hover .step-icon{

    background:#dc3545;

    color:#fff;

    transform:rotate(8deg) scale(1.08);

}

.step-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.step-card p{

    color:#6c757d;

    line-height:1.8;

}

@media(max-width:991px){

.timeline-line{

display:none;

}

.step-circle{

top:-25px;

}

.step-card{

margin-top:30px;

}

}
/* End work sec */

/* Start Impact Sec */
/*=========================
        Our Impact
==========================*/

.impact{

    background:linear-gradient(135deg,#dc3545,#ff6b6b);

}

.impact .section-title{

    color:#fff;

    background:rgba(255,255,255,.2);

}

.impact h2{

    color:#fff;

}

.impact p{

    color:#f8f9fa;

}

.impact-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    height:100%;

}

.impact-card:hover{

    transform:translateY(-10px);

}

.impact-card i{

    font-size:45px;

    color:#dc3545;

    margin-bottom:20px;

}

.impact-card .counter{

    font-size:42px;

    font-weight:700;

    color:#212529;

}

.impact-card h5{

    margin-top:15px;

    color:#6c757d;

}
/* End Impact Sec */

/* Start FAQ Sec */
/*=========================
            FAQ
==========================*/

.faq{

    background:#fff;

}

.faq .accordion{

    max-width:900px;

    margin:auto;

}

.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:15px !important;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.accordion-button{

    font-weight:600;

    padding:20px;

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#dc3545;

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:20px;

    color:#6c757d;

    line-height:1.8;

}
/* End FAQ Sec */

/*====================================== Dashboard ===================================== */

/* Start Dashboard Hero  */
.dashboard-hero{

    padding:150px 0 80px;

    background:linear-gradient(135deg,#fff8f8 0%,#ffffff 60%,#ffeaea 100%);

}

.dashboard-hero h1{

    font-size:55px;

    font-weight:700;

}

.dashboard-hero h1 span{

    color:#dc3545;

}

.dashboard-hero p{

    color:#666;

    line-height:1.9;

    max-width:650px;

}

.dashboard-buttons .btn{

    border-radius:40px;

    padding:13px 30px;

    margin-right:15px;

}

.profile-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.profile-image{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:#ffe5e8;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#dc3545;

    font-size:70px;

    margin-bottom:20px;

}

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #eee;

}

.info-row:last-child{

    border:none;

}

.dashboard-stats{

    background:#fff;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#ffe5e8;

    color:#dc3545;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:20px;

}

.stat-card h2{

    color:#dc3545;

    font-size:36px;

    font-weight:700;

}

.stat-card p{

    color:#666;

    margin:0;

}
/* End Dashboard Hero  */


/* Start Statistic Sec*/

.dashboard-stats{

    background:#fff;

}

.stat-card{

    background:white;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-icon{

    width:70px;

    height:70px;

    margin:auto;

    background:#ffe5e8;

    color:#dc3545;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:20px;

}

.stat-card h2{

    font-size:36px;

    font-weight:700;

    color:#dc3545;

    margin-bottom:10px;

}

.stat-card p{

    margin:0;

    color:#666;

    font-weight:500;

}
/* End Statistic sec */

/* Start Matching Sec */

.matching-requests{

    background:#f8f9fa;

}

.request-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.request-card:hover{

    transform:translateY(-8px);

}

.request-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.blood-badge{

    background:#dc3545;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

}

.request-card h4{

    font-size:24px;

    font-weight:700;

}

.request-card p{

    color:#666;

    margin-bottom:10px;

}

.request-card .btn{

    border-radius:30px;

}
/* End Matching Sec */

/* Start quick action sec */


.quick-actions{

    background:#f8f9fa;

}

.action-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.action-card:hover{

    transform:translateY(-10px);

}

.action-card i{

    font-size:55px;

    color:#dc3545;

    margin-bottom:20px;

}

.action-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.action-card p{

    color:#666;

    min-height:55px;

}

.action-card .btn{

    border-radius:30px;

    padding:10px 25px;

}
/* End quick action sec */

/* End Dahboard */





/* ================= Register ================= */

.register-section{

    min-height:100vh;

    background:#f8f9fa;

    display:flex;

    align-items:center;

}

.register-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.1);

}

.logo{

    color:#dc3545;

    font-size:40px;

    font-weight:700;

}

.logo i{

    margin-right:10px;

}

.form-label{

    font-weight:600;

    color:#333;

}

.form-control,
.form-select{

    height:50px;

    border-radius:12px;

    border:1px solid #ddd;

}

.form-control:focus,
.form-select:focus{

    border-color:#dc3545;

    box-shadow:0 0 0 .2rem rgba(220,53,69,.2);

}

.btn-danger{

    padding:14px;

    border-radius:12px;

    font-weight:600;

}

.btn-danger i{

    margin-right:8px;

}

.register-card a{

    color:#dc3545;

    text-decoration:none;

    font-weight:600;

}

.register-card a:hover{

    text-decoration:underline;

}
/* end register */
/* ======================================================================== */

/* ================= Login ================= */

.login-section{

    background:#f8f9fa;

}

.login-image{

    position:relative;

    text-align:center;

}

.login-image img{

    width:90%;

    animation:float 4s ease-in-out infinite;

}

.login-text{

    margin-top:30px;

}

.login-text h2{

    font-size:45px;

    font-weight:700;

    margin:20px 0;

}

.login-text h2 span{

    color:#dc3545;

}

.login-text p{

    color:#666;

    line-height:1.8;

}

.login-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.1);

}

.logo{

    color:#dc3545;

    font-weight:700;

}

.logo i{

    margin-right:10px;

}

.form-control{

    height:55px;

    border-radius:12px;

}

.form-control:focus{

    border-color:#dc3545;

    box-shadow:0 0 0 .2rem rgba(220,53,69,.2);

}

.btn-danger{

    padding:14px;

    border-radius:12px;

    font-weight:600;

}

.login-card a{

    color:#dc3545;

    text-decoration:none;

    font-weight:600;

}

.login-card a:hover{

    text-decoration:underline;

}
/* ============================================================================ */

/* ================= Blood Request ============================================ */
/* Start hero sec */
/*================ Blood Request Hero ================*/

.request-hero{

    background:linear-gradient(135deg,#fff8f8,#ffffff,#ffe9e9);

    padding:130px 0 80px;

}

.request-hero h1{

    font-size:58px;

    font-weight:700;

    margin:20px 0;

}

.request-hero h1 span{

    color:#dc3545;

}

.request-hero p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.request-image{

    width:90%;

    animation:float 4s ease-in-out infinite;

}
/* End hero sec */

/* Start search sec */
/*================ Search Filter ================*/

.search-filter{

    background:#f8f9fa;

}

.filter-box{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.input-group-text{

    background:#dc3545;

    color:white;

    border:none;

}

.form-control{

    border-left:none;

}

.form-control:focus,

.form-select:focus{

    box-shadow:none;

    border-color:#dc3545;

}

.result-box{

    background:#dc3545;

    color:white;

    text-align:center;

    padding:12px;

    border-radius:15px;

}

.result-box h5{

    margin:0;

    font-size:18px;

    font-weight:700;

}
/* End search sec */

/* Start Tips */

.tips{

    background:#f8f9fa;

}

.tip-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.tip-card:hover{

    transform:translateY(-10px);

}

.tip-card i{

    font-size:50px;

    color:#dc3545;

    margin-bottom:20px;

}

.tip-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.tip-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

/* End Tips */

/* ================= Hospitals ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hospital-header {

    background: #FFF6F6;

    padding: 80px 0;

}

.badge-title {

    background: #ffe6e6;

    padding: 10px 20px;

    border-radius: 30px;

    color: #dc3545;

    font-weight: 600;

}

.hospital-header h1 {

    font-size: 55px;

    font-weight: 800;

    color: #dc3545;

    margin: 20px 0;

}

.hospital-header p {

    color: #777;

    font-size: 18px;

}

.stats {
    background-color: #FFF;
}

.stat-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    border: 2px solid transparent;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: #dc3545;
    box-shadow: 0 12px 30px rgba(220, 53, 69, .25);
}

.stat-box i {
    font-size: 45px;
    color: #dc3545;
    margin-bottom: 15px;
}

.stat-box h2 {
    color: #dc3545;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    color: #555;
    font-size: 18px;
    margin: 0;
}



.search-section {

    margin: 60px 0;

}

.search-input,
.form-select {

    height: 55px;

    border-radius: 15px;

}

.search-input:focus {

    box-shadow: none;

    border-color: #dc3545;

}



.hospital-card {

    background: white;

    border-radius: 20px;

    padding: 30px;

    margin-bottom: 25px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);

    transition: .3s;

    border-left: 6px solid transparent;

}

.hospital-card:hover {

    transform: translateY(-5px);

    border-left: 6px solid #dc3545;

}

.hospital-card img {

    width: 120px;

    height: 120px;

    border-radius: 50%;

    background: #ffe8e8;

    display: flex;

    justify-content: center;

    align-items: center;

    margin: auto;

}

.hospital-icon i {

    font-size: 38px;

    color: #dc3545;

}

.info {

    display: flex;

    gap: 25px;

    margin: 15px 0;

    color: #666;

}

.blood-types span {

    background: #ffe6e6;

    padding: 8px 16px;

    border-radius: 20px;

    margin-right: 8px;

    color: #dc3545;

    font-weight: 600;

}

.details-btn {

    text-decoration: none;

    font-weight: 600;

    color: #dc3545;

    transition: .3s;

}

.details-btn:hover {

    letter-spacing: 1px;

}

.hospital-card {
    display: none;
}
/* contact */
.contact{
    padding: 80px 0;
}

.contact h2{
    color: #b30000;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact p{
    color: #777;
}

.contact-box{
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.contact-box h4{
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.contact-box h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px dashed #ccc;
}

.form-control{
    border-radius: 6px;
    padding: 12px;
    transition: .3s;
}

.form-control:focus{
    border-color:#dc3545;
    box-shadow: 0 0 8px rgba(179,0,0,.25);
}

textarea{
    resize: none;
}

.btn-danger{
    background-color:#dc3545;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    transition: .3s;
}

.btn-danger:hover{
    background-color: #8a0000;
}

.info-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon{
    width: 55px;
    height: 55px;
    background-color:#dc3545;
    color: white;
    border-radius: 8px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;
    margin-right: 15px;

    transition: .3s;
}

.icon:hover{
    background-color:#dc3545;
    transform: scale(1.08);
}

.info-item h6{
    font-weight: bold;
    margin-bottom: 5px;
    color: #222;
}

.info-item p{
    margin: 0;
    color: #666;
    line-height: 1.7;
}

iframe{
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    margin-top: 40px;
}

.alert{
    margin-top: 20px;
}