
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-red);
}	

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-red) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-red);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-red);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-red);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-red) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-red) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-red);
	font-size:30px;
	
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/* Tablet */
@media (max-width:991px){

.sub-title{
font-size:24px;
}

.section-title .sub-style::before,
.sub-title::before{
width:70px;
margin-left:-70px;
margin-right:-70px;
}

.section-title .sub-style::after,
.sub-title::after{
width:35px;
margin-left:-35px;
margin-right:-35px;
}

}

/* Mobile */
@media (max-width:576px){

.sub-title{
font-size:20px;
}

.section-title .sub-style::before,
.sub-title::before{
width:40px;
margin-left:-40px;
margin-right:-40px;
}

.section-title .sub-style::after,
.sub-title::after{
width:20px;
margin-left:-20px;
margin-right:-20px;
}

}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-red) !important;
}

.navbar-light .navbar-brand img {
    max-height: 66px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 65px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-red);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-red);
        color: var(--bs-red);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-red);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}



/* submenu parent */
.dropdown-submenu{
position: relative;
}

/* submenu desktop */
.dropdown-submenu .submenu{
position: absolute;
top: 0;
left: 100%;
background: #fff;
min-width: 280px;
max-width: 320px;
border: 1px solid #eee;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
display: none;
z-index: 999;
}

/* hover open */
.dropdown-submenu:hover > .submenu{
display: block;
}

/* text wrapping fix */
.dropdown-item{
white-space: normal !important;
word-break: break-word;
line-height: 1.4;
font-size: 16px;
padding: 10px 15px;
}

/* arrow */
.submenu-arrow{
float: right;
font-size: 12px;
margin-top: 4px;
}

/* hover effect */
.dropdown-item:hover{
background: #f5f5f5;
color: #c40000;
}

/* ---------- MOBILE RESPONSIVE ---------- */

@media (max-width:991px){

/* main dropdown */
.dropdown-menu{
width:100%;
}

/* submenu mobile */
.dropdown-submenu .submenu{
position: relative;
left: 0;
top: 0;
width: 100%;
max-width: 100%;
border: none;
box-shadow: none;
display: block;
padding-left: 15px;
}

/* arrow mobile */
.submenu-arrow{
float:right;
}

/* submenu items spacing */
.submenu .dropdown-item{
padding-left:25px;
font-size:14px;
}

}

/* submenu position desktop */
.dropdown-submenu{
position:relative;
}

.dropdown-submenu .submenu{
display:none;
position:absolute;
left:100%;
top:0;
background:#fff;
min-width:250px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-submenu:hover .submenu{
display:block;
}

.submenu-arrow{
float:right;
font-size:12px;
margin-top:5px;
}


/* MOBILE FIX */

@media (max-width:991px){

.dropdown-submenu .submenu{
position:static;
display:none;
box-shadow:none;
}

.dropdown-submenu.active .submenu{
display:block;
}

.submenu-arrow{
transform:rotate(90deg);
}

}

  
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-red);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-red);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 500px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/main-home/sliderinner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, .5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, .5);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/* Service Card Layout */
.service-item{
height:100%;
display:flex;
flex-direction:column;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

/* Hover Effect */
.service-item:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* Image Container */
.service-img{
height:220px;
overflow:hidden;
}

/* Image Size Fix */
.service-img img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

/* Image Hover Zoom */
.service-item:hover .service-img img{
transform:scale(1.08);
}

/* Content Area */
.service-content{
flex:1;
display:flex;
flex-direction:column;
justify-content:space-between;
}

/* Text Fix */
.service-content h5{
font-weight:600;
color:#000;
}

.service-content p{
color:#000;
font-size:14px;
line-height:1.6;
}

/* Button Alignment */
.service-content a{
align-self:flex-start;
}

/*** Service End ***/

/*** About Start ***/

.about p{
font-family:'Poppins',sans-serif;
font-size:15px;
font-weight:400;
line-height:1.8;
text-align:justify;
color:#000;
}

}
.about-img-box{
border:8px solid #fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
min-height:520px;
}

.about-img-grid{
display:grid;
grid-template-columns:2fr 1fr;
grid-template-rows:1fr 1fr;
gap:10px;
height:100%;
}

.about-img-grid img{
width:100%;
height:100%;
object-fit:cover;
border-radius:8px;
transition:0.4s;
}

.about-img-grid img:first-child{
grid-row:1 / span 2;
}

.about-img-grid img:hover{
transform:scale(1.06);
}

/*about end*/


/* Section Background */
.pedgen-section{
    background:#f9fbff;
}

/* Heading Style */
.pedgen-section .sub-title{
    color:#000;
    font-size:30px;
    font-weight:700;
}

/* Paragraph Style */
.pedgen-section p{
    font-size:17px;
    line-height:1.9;
    color:#000;
    text-align:justify;
}

/* Image Style */
.pedgen-section img{
    width:100%;
    border-radius:15px;
    transition:0.4s ease;
}

/* Hover Effect */
.pedgen-section img:hover{
    transform:scale(1.05);
}

/* Image Shadow */
.pedgen-section .shadow{
    box-shadow:0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Spacing Improve */
.pedgen-section .row{
    margin-bottom:60px;
}

/* Responsive for Tablet */
@media (max-width:991px){

.pedgen-section .sub-title{
    font-size:22px;
}

.pedgen-section p{
    font-size:16px;
}

}

/* Responsive for Mobile */
@media (max-width:576px){

.pedgen-section .sub-title{
    font-size:20px;
}

.pedgen-section p{
    font-size:15px;
}

.pedgen-section .row{
    margin-bottom:40px;
}

}


     .about-number-list{
padding-left:20px;
}

.about-number-list li{
margin-bottom:10px;
line-height:1.7;
}

.section-title p{
text-align:justify;
}


/* Title */

.appeal-title{
font-weight:700;
font-size:28px;
color:#000;
line-height:1.5;
}

.appeal-title span{
color:#c40000;
}

/* Subtitle */

.appeal-subtitle{
font-size:17px;
color:#444;
margin-top:10px;
}

/* Heading */

.citizen-heading{
color:#c40000;
font-weight:700;
}

/* Cards */

.appeal-card{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
border-top:4px solid #c40000;
}

.appeal-card:hover{
transform:translateY(-5px);
}

/* Card Number */

.appeal-card h4{
font-size:32px;
color:#c40000;
font-weight:700;
margin-bottom:10px;
}

.appeal-card p{
color:#000;
line-height:1.7;
text-align:justify;
}

/* Donation Section */

.donation-section{
background:#000;
color:#fff;
padding:40px;
border-radius:10px;
}

.donation-section h3{
color:white;
font-weight:900;
margin-bottom:10px;
}

/* Donate Button */

.donate-btn{
background:#ff2a2a;
color:#fff;
padding:12px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.donate-btn:hover{
background:#fff;
color:#000;
}
    

/*** About End ***/

/*** Feature Start ***/
.feature-content p{
color:#000 !important;
}
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-red);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}


/*** Feature End ***/


/*** contact Start ***/

/* CONTACT TEXT */
.contact-text h5{
color:#000;
font-weight:600;
margin-bottom:5px;
}

.contact-text p{
color:#000;
margin-bottom:0;
}


/* CONTACT BOX */
.contact-box{
display:flex;
align-items:flex-start;
margin-bottom:20px;
}


/* CONTACT ICON */
.contact-icon{
width:55px;
height:55px;
border-radius:50%;
background:#e6f6ff;
display:flex;
align-items:center;
justify-content:center;
margin-right:15px;
font-size:20px;
color:#0dcaf0;
transition:0.3s;
}

.contact-box:hover .contact-icon{
background:#dc3545;
color:#fff;
transform:scale(1.1);
}


/* CONTACT FORM CARD */
.contact-form{
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
padding:30px;
background:#fff;
}


/* CONTACT INFO CARD */
.contact-info-box,
.contact-form-box{
background:#fff;
border-radius:10px;
padding:35px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
height:100%;
}


/* CONTACT HEADING */
.contact-box h6{
font-weight:700;
color:#000;
margin-bottom:5px;
}

.contact-box p{
color:#000;
font-weight:400;
line-height:1.6;
}


/* FORM GROUP */
.form-group{
position:relative;
}

.form-group i{
position:absolute;
left:15px;
top:50%;
transform:translateY(-50%);
color:#0dcaf0;
font-size:16px;
}


/* INPUTS */
.form-group input,
.form-group select{
width:100%;
padding:12px 12px 12px 40px;
border:1px solid #ddd;
border-radius:8px;
}

.form-group textarea{
width:100%;
padding:12px 12px 12px 40px;
border:1px solid #ddd;
border-radius:8px;
resize:none;
}

.textarea i{
top:20px;
}


/* INPUT FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
border-color:#dc3545;
outline:none;
}


/* BUTTON */
.contact-form-box .btn,
.contact-form .btn{
border-radius:50px;
font-weight:500;
}


/* GOOGLE MAP */
.contact iframe{
width:100%;
height:350px;
border-radius:10px;
}


/* SOCIAL ICONS */
.btn-lg-square{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
}


/* ================= RESPONSIVE ================= */


/* Tablet */
@media (max-width:991px){

.contact-info-box,
.contact-form-box{
padding:25px;
}

.contact-icon{
width:50px;
height:50px;
font-size:18px;
}

.contact iframe{
height:300px;
}

}


/* Mobile */
@media (max-width:768px){

.contact-box{
flex-direction:row;
}

.contact-icon{
width:45px;
height:45px;
font-size:16px;
}

.contact-box h6{
font-size:16px;
}

.contact-box p{
font-size:14px;
}

.form-group input,
.form-group select,
.form-group textarea{
padding:10px 10px 10px 38px;
font-size:14px;
}

.contact-form{
margin-bottom:30px;
}

.contact iframe{
height:250px;
}

}


/* Small Mobile */
@media (max-width:576px){

.contact-info-box,
.contact-form-box{
padding:20px;
}

.contact-box{
flex-direction:column;
}

.contact-icon{
margin-bottom:10px;
width:40px;
height:40px;
font-size:15px;
}

.contact-box p{
font-size:13px;
}

.form-group input,
.form-group select,
.form-group textarea{
font-size:13px;
}

.btn-lg-square{
width:40px;
height:40px;
}

.contact iframe{
height:220px;
}

}
/*** contact End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/

.about-list{
padding-left:18px;
}

.about-list li{
margin-bottom:10px;
line-height:1.7;
color:#000;
}

/* Image Box */
.about-img-hover{
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,0.15);
transition:0.4s;
}

.about-img-hover img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

/* Hover Effect */
.about-img-hover:hover img{
transform:scale(1.08);
}
.about-number-list{
padding-left:20px;
}

.about-number-list li{
margin-bottom:12px;
line-height:1.7;
color:#000;
font-size:16px;
text-align:justify;
}


/*about end */

/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
	
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/


/*** Contact Start ***/
.input-icon{
position:relative;
}

.input-icon i{
position:absolute;
left:12px;
top:18px;
color:#000;
font-size:16px;
z-index:2;
}

.input-icon .form-control{
padding-left:40px;
color:#000;
background:transparent;
}

.input-icon label{
padding-left:40px;
color:#000;
}

.form-control:focus{
box-shadow:none;
border-color:#000;
}

/* Button style */

.btn-dark{
background:#000;
border:none;
transition:0.3s;
}

/* Button hover */

.btn-dark:hover{
background:#c40000;
color:#fff;
transform:translateY(-2px);
}


/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
	
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-red);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/


/*** health information ***/

.health-sidebar{
width:300px;
background:#fff;
border-left:6px solid red;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
border-radius:6px;
overflow:hidden;
}

/* Title */

.health-sidebar h3{
background:red;
color:white;
padding:15px;
margin:0;
font-size:18px;
font-weight:bold;
letter-spacing:0.5px;
}

/* Menu */

.menu{
list-style:none;
margin:0;
padding:0;
}

.menu li{
border-bottom:1px solid #eee;
}

/* Main Menu */

.menu-title{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 15px;
font-weight:bold;
color:black;
cursor:pointer;
transition:0.3s;
}

.menu-title:hover{
background:#f9f9f9;
color:red;
}

/* Plus Icon */

.toggle{
font-size:18px;
font-weight:bold;
color:red;
}

/* Submenu */

.submenu{
display:none;
background:#fafafa;
}

.submenu li{
border:none;
}

.submenu li a{
display:block;
padding:9px 30px;
font-size:14px;
font-weight:500;
color:#333;
text-decoration:none;
transition:0.3s;
}

.submenu li a:hover{
color:red;
padding-left:35px;
}

/* Single Links */

.menu li a{
display:block;
padding:12px 15px;
color:black;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

.menu li a:hover{
color:red;
background:#fafafa;
}

/* Responsive */

@media(max-width:768px){

.health-sidebar{
width:100%;
margin-bottom:20px;
}

}

.health-section{
padding:60px 0;
background:#f5f5f5;
}

/* Layout */

.health-layout{
display:flex;
gap:30px;
align-items:flex-start;
}

/* Sidebar */

.health-sidebar{
width:300px;
background:#fff;
border-left:6px solid red;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
border-radius:6px;
overflow:hidden;
}

/* Title */

.health-sidebar h3{
background:red;
color:#fff;
padding:15px;
margin:0;
font-size:18px;
font-weight:bold;
}

/* Menu */

.menu{
list-style:none;
margin:0;
padding:0;
}

.menu li{
border-bottom:1px solid #eee;
}

.menu-title{
display:flex;
justify-content:space-between;
padding:12px 15px;
font-weight:bold;
cursor:pointer;
color:#000;
}

.menu-title:hover{
color:red;
background:#fafafa;
}

.toggle{
color:red;
font-size:18px;
}

/* Submenu */

.submenu{
display:none;
background:#fafafa;
}

.submenu li a{
display:block;
padding:8px 30px;
font-size:14px;
color:#333;
text-decoration:none;
}

.submenu li a:hover{
color:red;
padding-left:35px;
}

/* Single links */

.menu li a{
display:block;
padding:12px 15px;
color:#000;
font-weight:600;
text-decoration:none;
}

.menu li a:hover{
color:red;
background:#fafafa;
}

/* Right Content */

.health-content{
flex:1;
background:#fff;
padding:25px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
border-radius:6px;
}

.health-content h2{
border-bottom:2px solid red;
padding-bottom:10px;
margin-bottom:20px;
}

.health-content img{
width:100%;
max-width:500px;
border-radius:6px;
margin-bottom:15px;
}
     
/* Tablet */

@media(max-width:992px){

.health-sidebar{
width:260px;
}

}

/* Mobile */

@media(max-width:768px){

.health-layout{
flex-direction:column;
}

.health-sidebar{
width:100%;
}

.health-content{
width:100%;
}

}

    /*harms start*/   
      
   /* Harms Section Image */
.harms-img{
width:100%;
max-width:100%;
height:420px;
object-fit:cover;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
display:block;
}

/* List Style */
.harms-list{
line-height:1.8;
font-size:16px;
color:#000;
text-align:justify;
padding-left:18px;
}

.harms-list li{
margin-bottom:10px;
}

/* Tablet */
@media (max-width:991px){

.harms-img{
height:320px;
}

}

/* Mobile */
@media (max-width:768px){

.harms-img{
height:auto;   /* important fix */
margin-bottom:20px;
}

.harms-list{
font-size:14px;
line-height:1.7;
}

}

/* Small Mobile */
@media (max-width:576px){

.harms-img{
height:auto;
}

.harms-list{
font-size:13px;
}

}
     /*harms end*/   
      
/* Main container styling */
.health-content {
  color: #000; /* Text black */
  text-align: justify; /* Justify all paragraphs and lists */
  font-family: Arial, sans-serif; /* Optional: clean readable font */
  line-height: 1.6; /* Better spacing */
}

/* Headings styling */
.health-content h2,
.health-content h3 {
  color: #000; /* Ensure headings are black */
  text-align: left; /* Keep headings left-aligned */
  margin-bottom: 15px;
}

/* Paragraphs styling */
.health-content p {
  margin-bottom: 15px;
  color: #000; /* Black text */
  text-align: justify;
}

/* List styling */
.health-content ul.content-list {
  padding-left: 20px; /* Indent bullets */
  color: #000; /* Black text */
}

/* Stacked content blocks */
.health-content .stacked-content > div {
  background-color: #f9f9f9; /* Optional: light background for distinction */
  padding: 20px;
  border-radius: 10px;
  color: #000; /* Black text */
  text-align: justify;
}

/* Optional: make images responsive */
.health-content img.content-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
/* Optional: style lists inside info-card */
.info-card ul {
    color: #333333; /* dark gray text instead of pure black */
    list-style-type: disc; /* you can also use circle or square */
    padding-left: 20px; /* proper indentation */
}

.info-card ul li {
    margin-bottom: 10px; /* space between list items */
    line-height: 1.6; /* make it more readable */
}


.info-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .info-card h3 {
    color: #000;
    margin-bottom: 15px;
  }

  .info-card p {
    color: #000;
    text-align: justify;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  /* Image Hover Effect */
  .info-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

  @media (max-width: 991px) {
    .info-card, .info-image {
      margin-bottom: 25px;
    }
  }
    

	
	/* Section Title */
.breastfeeding-difficulties h4 {
    color: #000; /* title black */
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Text */
.breastfeeding-difficulties p,
.breastfeeding-difficulties ul {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000; /* text black */
    text-align: justify; /* justify text */
}

/* List spacing */
.breastfeeding-difficulties ul li {
    margin-bottom: 5px;
}

/* Image hover zoom effect */
.hover-zoom {
    transition: transform 0.5s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}

/* Alternate spacing for rows */
.difficulty-row {
    margin-bottom: 60px;
}

/* Responsive adjustment */
@media(max-width:991px){
    .flex-lg-row-reverse {
        flex-direction: column !important;
    }
    .difficulty-row {
        margin-bottom: 40px;
    }
}


/* Section Headings */
.breastmilk-nutrition h4 {
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Paragraphs and Lists */
.breastmilk-nutrition p,
.breastmilk-nutrition ul {
    font-size: 15px;
    margin-bottom: 10px;
    color: #000;
    text-align: justify;
}

/* Image hover zoom */
.hover-zoom {
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Row spacing */
.difficulty-row {
    margin-bottom: 60px;
}

/* Responsive adjustment */
@media(max-width:991px){
    .flex-lg-row-reverse {
        flex-direction: column !important;
    }
    .difficulty-row {
        margin-bottom: 40px;
    }
}

/* Headings */
.breastfeeding-position h4 {
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Paragraphs and Lists */
.breastfeeding-position p,
.breastfeeding-position ul {
    font-size: 15px;
    margin-bottom: 10px;
    color: #000;
    text-align: justify;
}

/* Image hover zoom */
.hover-zoom {
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Row spacing */
.difficulty-row {
    margin-bottom: 60px;
}

/* Responsive adjustment */
@media(max-width:991px){
    .flex-lg-row-reverse {
        flex-direction: column !important;
    }
    .difficulty-row {
        margin-bottom: 40px;
    }
}

.breastmilk-nutrition img{
width:100%;
height:350px;
object-fit:cover;
border-radius:10px;
}

.hover-zoom{
transition:0.4s;
}

.hover-zoom:hover{
transform:scale(1.05);
}

    .breastfeeding-position img{
width:100%;
height:350px;
object-fit:cover;
border-radius:10px;
}

.breastfeeding-position .hover-zoom{
transition:0.4s ease;
}

.breastfeeding-position .hover-zoom:hover{
transform:scale(1.05);
}
/**/
        .premature-feeding h4{
color:#000;
font-weight:600;
margin-bottom:10px;
}

.premature-feeding p,
.premature-feeding ul{
color:#000;
text-align:justify;
font-size:15px;
}

.hover-zoom{
transition:0.4s;
}

.hover-zoom:hover{
transform:scale(1.05);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}


    .info-box{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
height:100%;
transition:0.3s;
}

.info-box:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.info-box h4{
color:#000;
margin-bottom:10px;
font-weight:600;
}

.info-box p{
color:#000;
text-align:justify;
}

/**/
.vaccine-section{
    padding:60px 0;
    background:#f8fbff;
}

.vaccine-container{
    max-width:1200px;
    margin:auto;
}

.vaccine-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#000;
    margin-bottom:30px;
}

.vaccine-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    margin-bottom:40px;
}

.vaccine-box p{
    color:#000;
    line-height:1.8;
    font-size:16px;
}

.vaccine-table{
    width:100%;
    border-collapse:collapse;
}

.vaccine-table th{
    background:#2c7be5;
    color:#fff;
    padding:12px;
    font-size:16px;
}

.vaccine-table td{
    border:1px solid #ddd;
    padding:12px;
    color:#000;
    vertical-align:top;
}

.vaccine-table tr:nth-child(even){
    background:#f5f9ff;
}

.vaccine-table ul{
    padding-left:18px;
}

.vaccine-table li{
    margin-bottom:5px;
}
.vaccine-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}



/* Image styling */
.vaccine-img {
  padding-left: 20px;
}

.vaccine-img img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s ease;
  cursor: pointer;
}

/* Hover effect */
.vaccine-img img:hover {
  transform: scale(1.05);
  filter: brightness(0.85);
}

/* Mobile responsive fix */
@media (max-width: 768px) {
  .vaccine-img {
    padding-left: 0;
    margin-top: 15px;
  }
}

/*tele start*/ 

.tele-section{
padding:60px 0;
background:#f5f8ff;
}

.tele-container{
max-width:1200px;
margin:auto;
}

.tele-title{
text-align:center;
font-size:32px;
font-weight:700;
color:#000;
margin-bottom:35px;
}

.tele-card{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
margin-bottom:30px;
}

.tele-card h3{
color:#2c7be5;
margin-bottom:15px;
}

.tele-card p{
color:#000;
line-height:1.8;
}

.tele-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:30px;
}

/* TABLE WRAPPER */
.table-responsive{
width:100%;
overflow-x:auto;
}

/* TABLE */
.tele-table{
width:100%;
min-width:750px; /* important for scroll */
border-collapse:collapse;
margin-top:30px;
background:#fff;
}

.tele-table th{
background:#2c7be5;
color:#fff;
padding:14px;
text-align:left;
font-weight:600;
}

.tele-table td{
border:1px solid #ddd;
padding:14px;
color:#000;
vertical-align:top;
}

.tele-table tr:nth-child(even){
background:#f7f9ff;
}

.tele-list{
padding-left:18px;
margin:0;
}

.tele-list li{
margin-bottom:8px;
color:#000;
line-height:1.6;
}

/* TABLET */
@media (max-width:991px){

.tele-table{
min-width:650px;
}

}

/* MOBILE */
@media (max-width:768px){

.tele-table{
min-width:600px;
}

.tele-table th,
.tele-table td{
padding:10px;
font-size:14px;
}

.tele-list li{
font-size:14px;
}

}

/* SMALL MOBILE */
@media (max-width:576px){

.tele-table{
min-width:550px;
}

.tele-table th,
.tele-table td{
font-size:13px;
padding:8px;
}

.tele-list li{
font-size:13px;
}

}
.tele-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Text */
.tele-text h3 {
  font-size: 22px;
  margin-top: 15px;
  color: #000;   /* black heading */
}

.tele-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;   /* black text */
}

/* Image */
.tele-img {
  padding-left: 20px;
}

.tele-img img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s ease;
  cursor: pointer;
}

/* Hover effect */
.tele-img img:hover {
  transform: scale(1.05);
  filter: brightness(0.85);
}

/* Responsive */
@media (max-width: 768px) {
  .tele-img {
    padding-left: 0;
    margin-top: 15px;
  }
}

/**/
.nbs-section{
    padding:60px 0;
    background:#f7f9fc;
}

.nbs-container{
    max-width:1200px;
    margin:auto;
}

.nbs-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#000;
    margin-bottom:40px;
}

.nbs-intro{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    margin-bottom:40px;
    line-height:1.8;
    color:#000;
}

.nbs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.nbs-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.nbs-card h3{
    color:#2c7be5;
    margin-bottom:15px;
}

.nbs-card ul{
    padding-left:18px;
    color:#000;
}

.nbs-card li{
    margin-bottom:8px;
}
.nbs-intro {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Text */
.nbs-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;   /* black text */
}

/* Image */
.nbs-img {
  padding-left: 20px;
}

.nbs-img img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s ease;
  cursor: pointer;
}

/* Hover effect */
.nbs-img img:hover {
  transform: scale(1.05);
  filter: brightness(0.85);
}

/* Responsive */
@media (max-width: 768px) {
  .nbs-img {
    padding-left: 0;
    margin-top: 15px;
  }
}

/**/
.iycf-section{
background:#f7f9fc;
}

.iycf-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:20px;
}

.iycf-intro{
text-align:center;
max-width:900px;
margin:auto;
margin-bottom:30px;
color:#000;
}

.iycf-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 8px 22px rgba(0,0,0,0.08);
margin-bottom:25px;
color:#000;
}

.iycf-card h3{
margin-bottom:15px;
font-weight:600;
}

.iycf-card ul{
padding-left:18px;
}

.iycf-card li{
margin-bottom:6px;
}

.iycf-warning{
background:#fff3cd;
border-left:6px solid #ff9800;
padding:20px;
border-radius:10px;
margin-bottom:25px;
}
.iycf-flex-box{
  display:flex;
  gap:25px;
  align-items:flex-start;
  flex-wrap:wrap;
}

/* LEFT CONTENT */
.iycf-content{
  flex:1;
  min-width:300px;
}

/* CARD */
.iycf-card{
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  color:#000;
}

/* RIGHT IMAGE FIXED */
.iycf-image-box{
  flex:0 0 380px;
  max-width:380px;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

/* IMAGE */
.iycf-image-box img{
  width:100%;
  height:100%;
  max-height:450px;
  object-fit:cover;
  transition:0.4s ease;
  display:block;
}

/* HOVER */
.iycf-image-box img:hover{
  transform:scale(1.05);
  filter:brightness(0.9);
}

/* RESPONSIVE */
@media(max-width:768px){
  .iycf-flex-box{
    flex-direction:column;
  }

  .iycf-image-box{
    max-width:100%;
    flex:100%;
  }
}


/**/
.handwash-section{
background:#f7f9fc;
}

.section-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:35px;
color:#222;
}

.handwash-intro{
max-width:900px;
margin:auto;
text-align:center;
margin-bottom:40px;
font-size:16px;
color:#000;
}

.hand-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 8px 22px rgba(0,0,0,0.08);
height:100%;
color:#000;
}

.hand-card h3{
font-size:22px;
margin-bottom:15px;
font-weight:600;
color:#000;
}

.hand-card h4{
font-size:18px;
margin-top:10px;
margin-bottom:10px;
color:#000;
}

.hand-card ul{
padding-left:18px;
}

.hand-card li{
margin-bottom:6px;
color:#000;
}

.sanitizer{
margin-top:10px;
}

/**/
.preg-card{
  background:#ffffff;
  padding:22px;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
  color:#000;
  height:100%;
  transition:0.4s ease;   /* 👈 hover smooth */
  cursor:pointer;
}

/* CARD HOVER EFFECT */
.preg-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* HEADING */
.preg-card h4{
  margin-bottom:10px;
  font-weight:600;
  color:#000;
}

/* TEXT */
.preg-card p{
  margin-bottom:10px;
  color:#000;
  line-height:1.6;
}

/* LIST */
.preg-card ul{
  padding-left:20px;
}

.preg-card li{
  margin-bottom:6px;
  color:#000;
}

/* ========================= */
/* IMAGE HOVER STYLE (ADD THIS CLASS ON IMAGE) */
/* ========================= */

.preg-img{
  overflow:hidden;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.preg-img img{
  width:100%;
  display:block;
  transition:0.4s ease;
  object-fit:cover;
}

/* IMAGE HOVER EFFECT */
.preg-img img:hover{
  transform:scale(1.08);
  filter:brightness(0.85);
}


/**/

.nutrition-card{
  background:#ffffff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
  margin-bottom:25px;
  color:#000;
  transition:0.4s ease;   /* 👈 added for hover */
  cursor:pointer;
}

/* CARD HOVER */
.nutrition-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,0.15);
}

.nutrition-card h4{
  margin-bottom:12px;
  font-weight:600;
  color:#000;
}

.nutrition-card p{
  line-height:1.6;
  color:#000;
}

.nutrition-card ul{
  padding-left:20px;
}

.nutrition-card li{
  margin-bottom:6px;
  color:#000;
}

/* ========================= */
/* IMAGE HOVER (NEW ADDITION) */
/* ========================= */

.nutrition-img{
  overflow:hidden;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
  margin-bottom:20px;
}

.nutrition-img img{
  width:100%;
  display:block;
  transition:0.4s ease;
  object-fit:cover;
}

/* IMAGE HOVER */
.nutrition-img img:hover{
  transform:scale(1.08);
  filter:brightness(0.85);
}


/**/

/* GRID SYSTEM */
.risk-grid{
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* NORMAL ROW */
.care-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

/* LEFT CONTENT */
.care-left{
  flex:1;
  min-width:300px;
}

/* CARD STYLE */
.care-card{
  background:#ffffff;
  padding:22px;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
  transition:0.4s ease;
  height:100%;

  /* 🔥 TEXT BLACK ADDED */
  color:#000;
}

/* HOVER CARD */
.care-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,0.15);
}

/* ICON */
.icon{
  font-size:26px;
  margin-bottom:10px;
}

/* COLORS */
.normal .icon{ color:#2a9d8f; }
.risk .icon{ color:#e63946; }
.labour .icon{ color:#f77f00; }

/* RIGHT IMAGE */
.care-right{
  flex:0 0 380px;
  max-width:380px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.care-right img{
  width:100%;
  display:block;
  object-fit:cover;
  transition:0.4s ease;
}

/* IMAGE HOVER */
.care-right:hover img{
  transform:scale(1.06);
  filter:brightness(0.85);
}

/* LIST */
.care-card ul{
  padding-left:18px;
}

/* 🔥 TEXT BLACK FIX */
.care-card,
.care-card p,
.care-card li,
.care-card h2,
.care-card h3,
.care-card h4{
  color:#000;
}

.care-card li{
  margin-bottom:6px;
}

/* ========================= */
/* 🔥 MOBILE FIX (IMPORTANT) */
/* ========================= */

@media(max-width:768px){

  .care-row{
    flex-direction:column;
  }

  .care-right{
    max-width:100%;
    flex:100%;
  }

  .care-card{
    width:100%;
  }

}

/**/
.newborn-problems{
    background: #f7f9fc;
}

/* TITLE */
.newborn-problems h2{
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* CARD STYLE */
.problem-card{
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* HOVER LIFT EFFECT */
.problem-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* IMAGE BOX */
.img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
}

/* IMAGE */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* IMAGE HOVER ZOOM */
.img-box:hover img {
    transform: scale(1.1);
}

/* HEADING STYLE */
.newborn-problems h3{
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

/* SMALL ACCENT LINE */
.newborn-problems h3::after{
    content: "";
    width: 60px;
    height: 3px;
    background: #4a90e2;
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

/* LIST STYLE */
.newborn-problems ul{
    padding-left: 18px;
}

.newborn-problems ul li{
    margin-bottom: 6px;
    line-height: 1.6;
}
.newborn-problems p {
    color: #111;
}

.newborn-problems li {
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .img-box{ height: 250px; }
}

@media (max-width: 576px){
    .img-box{ height: 220px; }
    .problem-card{ text-align: center; }
}

/**/
.breastfeed-support h2,
.breastfeed-support p,
.breastfeed-support li {
    color: #000;
}

/* IMAGE FIX */
.img-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CARE BOX STYLE */
.care-box {
    padding: 10px;
}

.care-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .img-box {
        height: 250px;
        margin-top: 20px;
    }
}

/**/
.danger-signs h2,
.danger-signs h3,
.danger-signs li {
    color: #000;
}

/* IMAGE FIX (MOST IMPORTANT) */
.img-box{
    width: 100%;
    height: 420px;   /* full visible area */
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.img-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;  /* ⭐ FULL IMAGE SHOW (no cut) */
    background: #fff;     /* white background for empty space */
}

/* CARD STYLE */
.danger-card{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px){
    .img-box{
        height: 280px;
    }
}

/**/
.guidance-box{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
	 color: #000;
}

.guidance-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.guidance-box ul li{
    margin-bottom: 12px;
    line-height: 1.7;
}

.img-box{
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 15px;
    transition: 0.3s ease;
}

/* IMAGE HOVER EFFECT */
.img-box:hover{
    transform: scale(1.02);
}

.img-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.condition-card{
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
    text-align: center;
}

/* HOVER EFFECT */
.condition-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.condition-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.condition-card h4{
    margin-bottom: 10px;
    color: #000;
}

.condition-card p{
    color: #000;
    font-size: 14px;
    line-height: 1.6;
}

.main-img{
    max-height: 450px;
    object-fit: cover;
}

/**/
.content-box{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    height: 100%;
}

.content-box h4{
    color: #000;
    font-weight: 600;
}

.img-box{
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 15px;
}

.img-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}
.milestone-table{
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
background:#fff;
}

.milestone-table thead{
background:#0d6efd;
color:#000;
font-size:17px;
}

.milestone-table th{
padding:16px;
font-weight:600;
}

.milestone-table td{
padding:14px;
color:#000;
}

.milestone-table tbody tr:nth-child(even){
background:#f7f9fc;
}

.milestone-table tbody tr:hover{
background:#eaf2ff;
transition:0.3s;
}

/* Age column highlight */

.age{
font-weight:600;
background:#e9f2ff;
}

/**/
.growth-card{
background:#fff;
padding:30px;
margin-bottom:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.growth-card h3{
margin-bottom:15px;
font-weight:600;
}

.growth-table thead{
background:#0d6efd;
color:#000;
}

.growth-table td,
.growth-table th{
padding:12px;
color:#000;
}

.growth-list{
padding-left:20px;
}

.formula-box{
background:#eaf2ff;
padding:12px 18px;
border-radius:8px;
font-weight:600;
display:inline-block;
margin-top:5px;
}
.content-box{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    height: 100%;
}

.content-box h4{
    color: #000;
    font-weight: 600;
}

.img-box{
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.img-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

/*buy now*/
.kmc-section{
    background: #f8f9fc;
}

.kmc-title{
    font-weight: 700;
    color: #000;
}

/* CARD STYLE */
.kmc-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
    height: 100%;
}

.kmc-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* PRICE BADGE */
.price-tag{
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e63946;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
}

/* IMAGE */
.kmc-img img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.kmc-content{
    padding: 20px;
}

.kmc-content h3{
    color: #000;
    margin-bottom: 12px;
    font-size: 18px;
}

/* LIST */
.kmc-content ul{
    padding-left: 18px;
    color: #000;
    line-height: 1.7;
}

/* BUTTON */
.order-btn{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #198754;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.order-btn:hover{
    background: #146c43;
    transform: scale(1.05);
}

/* DESCRIPTION BOX */
.kmc-desc{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.kmc-desc h4{
    color: #000;
    margin-bottom: 10px;
}

.kmc-desc p,
.kmc-desc ul li{
    color: #000;
    line-height: 1.8;
}


/*gallery*/
.gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  cursor: pointer;
}

.gallery-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover Zoom Effect */
.gallery-box:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Optional Overlay Effect */
.gallery-box::after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0);
  transition: 0.4s;
}

.gallery-box:hover::after {
  background: rgba(0,0,0,0.2);
}

/*order now*/
.order-section{
    background: #f4f6f9;
}

.order-card{
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* ALL TEXT BLACK (as you asked) */
.order-card label,
.order-card h2,
.order-card h3,
.order-card p{
    color: #000;
}

/* INPUT STYLE */
.order-card .form-control{
    border-radius: 12px;
    padding: 11px;
    border: 1px solid #ddd;
    transition: 0.3s;
    color: #000;
}

.order-card .form-control:focus{
    border-color: #28a745;
    box-shadow: 0 0 10px rgba(40,167,69,0.25);
}

/* BUTTON */
.order-btn{
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.order-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(40,167,69,0.3);
}

/*whatapp icon*/
/* WhatsApp Floating Icon */

.whatsapp-float{
position:fixed;
left:20px;
bottom:20px;
width:55px;
height:55px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:9999;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
background:#1ebe5d;
}



