/*  ################################################ universal css #################################### */
    *{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
    }

    :root {
        --primary-blue: #1A73E8;
        --dark-blue: #0D47A1;
        --sky-blue: #64B5F6;
        --light-blue: #E1F5FE;

        --text-dark: #222;
        --text-light: #fff;
        
        --accent-orange: #FF9800;
        --accent-orange-dark: #E68900;

        --radius: 8px;
        --shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .breadcrumb-section {
        background-image: url('/assets/img/breadcrumb/banner.png');
        min-height: 14.5833333333vw;
        background-size: 100% 100%;
        background-position: 50%;
        background-repeat: no-repeat;
    }

    @media (max-width: 768px) {  
       .breadcrumb-section {
            min-height: 50.5833333333vw;
            background-size: cover;
        }
    }


    /* Buttons */

    .btn:hover{
        color:white;
    }
    .btn-primary {
        background: var(--primary-blue);
        border: none;
        padding: 10px 18px;
        border-radius: var(--radius);
        color: white;
        cursor: pointer;
    }

    .btn-primary:hover {
        background: var(--dark-blue);
    }

    .btn-blue {
        background: #1A73E8; /* primary blue */
        color: #fff;
        padding: 10px 15px;
        border-radius: 6px;
        font-weight: 600;
        transition: 0.25s;
    }

    .btn-blue:hover {
        background: #0D47A1; /* dark blue */
    }

    .btn-sky {
        background: #64B5F6;
        color: #fff;
        padding: 10px 15px;
        border-radius: 6px;
        font-weight: 600;
        transition: 0.25s;
    }

    .btn-sky:hover {
        background: #1A73E8;
    }

    .btn-dark-blue {
        background: #0D47A1;
        color: #fff;
        padding: 10px 15px;
        border-radius: 6px;
        font-weight: 600;
        transition: 0.25s;
    }

    .btn-dark-blue:hover {
        background: var(--primary-blue);
        /* background: #08357A; */
    }

    /* cards */

    .card-light{
        background-color: #0d47a10d;
    }

    .card-dark{
        background-color: #0d47a10d;
    }



/* Container */
.works-card {
    padding: 25px 15px;
}

/* Circle Icon Style */
.works-card span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #0D47A1; /* dark blue */
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 80, 0.15);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

/* Hover Effect */
.works-card:hover span {
    background: #1A73E8; /* primary blue */
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 80, 0.25);
}

/* Heading */
.works-card h4 {
    color: #083f7e; /* slightly darker blue */
    font-weight: 700;
    margin-bottom: 8px;
}

/* Description */
.works-card p {
    color: #35506b;
    font-size: 15px;
    line-height: 1.6;
}

    /* Card */
    /* .card {
        background: var(--light-blue);
        border-left: 5px solid var(--sky-blue);
        color: var(--text-dark);
    } */


    body {
        color: #012f47;
        background-color: #fdfdff;
    
    }
    .py-50x {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .mt-50x {
        margin-top: 50px;
    }
    .pt-50x {
        padding-top: 50px;
    }
    .pb-50x {
        padding-bottom: 50px;
    }

   .heading {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue); /* #0D47A1 */
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.heading h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--primary-blue); /* #1A73E8 */
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

.heading p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
}



.madona-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--light-blue);
    box-shadow: 0 4px 15px rgba(0, 71, 179, 0.08); /* soft blue shadow */
    transition: all 0.3s ease;
}

.madona-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 71, 179, 0.15);
}

/* Image */
.madona-item .thumb {
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-radius: 10px;
}

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

/* Title according to theme */
.madona-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);   /* Blue heading */
    margin-top: 12px;
}

/* Description text */
.madona-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Donate Button (your theme orange CTA) */
.btn-orange {
    background: var(--accent-orange);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-orange:hover {
    background: var(--accent-orange-dark);
    color: var(--text-light);
}

    
    @media (max-width: 768px) {  
       .heading h2{
            font-size: 1.5rem;
        }

    }

/*  ################################################ header css #################################### */
    #sidebar {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        z-index: 1050;
        padding: 1rem;
    }
    #sidebar.active {
        right: 0;
    }
    #overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: rgba(0,0,0,0.5);
        display: none;
        z-index: 1040;
    }
    #overlay.active {
        display: block;
    }
    .menu-btn {
        border: none;
        background: none;
        font-size: 1.5rem;
    }
    .nav-link.active{
        background-color: #0D47A1 !important;
    }
    .nav-link{
        color: #04090c;
        font-weight: 500;
    }
    .nav-link:focus,.nav-link:hover{
        color: #0D47A1 !important;
    }
    
    @media (max-width: 768px) {  
       .logo{
            width:80%;
        }
    }

/*  ################################################ home-slider css #################################### */
    #heroCarousel .carousel-item {
        height: 90vh; /* Full screen */
        min-height: 500px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero-content h1 {
        font-weight: 800;
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .btn-custom {
        padding: 12px 28px;
        border-radius: 30px;
        font-weight: 600;
        margin-right: 10px;
    }

    .btn-primary-custom {
        background-color: #008374;
        color: #fff;
        border: none;
    }

    .btn-dark-custom {
        background-color: #000;
        color: #fff;
        border: none;
    }

    .stats {
        margin-top: 30px;
    }

    .stat-item h3 {
        font-weight: 800;
        font-size: 2rem;
        margin: 0;
    }

    .stat-item p {
        margin: 0;
    }



    .carousel-item > .container {
        position: relative;
        z-index: 2;
    }

    @media (max-width: 768px) {  
        .hero-content h1{
            font-weight: 800;
            font-size: 1.8rem; 
        }
        #heroCarousel .carousel-item {
            height: 50vh; /* Full screen */
        }
    }



.prel {
    position: relative;
}

.pabs {
    position: absolute;
}

.pabs.stretch {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide {
    padding-bottom: calc( (100% * (4/9)));
}

.slide > img {
    object-fit: cover;
}

.content-box {
    z-index: 1050;
}

.imgdrop {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    position: absolute;
    background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}


.btn-orange {
    color: white;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
    background-color: #f07317;
    /* background-color: #e8750b; */
}
.bg-orange{
    background-color: #f07317;
}

.text-orange{
    color: #f07317;
}
.btn-orange:hover {
    color: white;
    background-color: #e8750b;
}

.btn-themg {
    color: #fff;
    transition: all 500ms ease-in;
    font-weight: 600;
    background-color: #d2a23e;
}

.btn-themg:hover {
    color: #fff;
    background-color: #d99913;
}

.ini-block {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.ini-block .img-thumb {
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
    border-radius: 10px 10px 0 0;
    padding-bottom: calc(100% * (9/16));
    background-color: #ccc;
}

.ini-block .img-thumb > img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.ini-block h4 {
    color: #0a101c;
	min-height: 60px;
    font-weight: 700;
}

.content .info {
    margin-top: 15px
}

.content .info .progb {
	height: 4px;
	position: relative;
	border-radius: 4px;
	background-color: #e2e2e2;
}

.content .info .prog {
	top: 0;
	left: 0;
	width: 0%;
	height: 4px;
	position: absolute;
	border-radius: 4px;
	background-color: #c59a31;
}

.howiw span.bi {
    color: white;
    width: 64px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    font-size: 24px;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    background-color: navy;
}

/* 
.works-card {
    transition: all 0.3s ease;
}
.works-card:hover{
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    border-radius: 4px;
    padding:10px;
} */

.prog-box {
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.prog-box > .thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding-bottom: calc(100% * (7/16));
    background-color: #ccc;
}

.prog-box .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mem-img {
	width: 280px;
	height: 280px;
	background: #ccc;
	box-shadow: inset 0 0 5px;
	border-radius: 8px;
}

section.empow {
    padding: 100px 0;
    position: relative;
    background: url(../img/empow_bg.jpg) no-repeat;
    background-size: cover;
}

section.empow .col-12 {
    z-index: 1;
    position: relative;
}

section.empow .bgds {
    top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	background: linear-gradient(#fff 0%, rgba(0, 0, 0, 0.25) 60%);
}

section.empow  .h1 {
	color: navy;
	font-size: 4rem;
	font-weight: bold;
}

@media (max-width: 768px) {  
     section.empow  .h1 {
        font-size: 2rem;
    }
}
section.empow  .h1 > span {
	color: orangered;
}

section.empow  p {
    color: white;
	font-size: 24px;
}

section.madona .madona-item {
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
}

section.madona .madona-item > .thumb {
    width: 100%;
    padding-bottom: calc(100% * (8 / 16));
}

section.madona .madona-item > .thumb > img {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    object-fit: cover;
}

section.initiatives .init-box {
    height: 100%;
    padding: 2rem 1.5rem;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    background-color: #0d47a10d;
    color:#0d47a1;
}



section.makead {
    background-color: #f9f5ea;
}

/*  ################################################ Footer css #################################### */
        /* Background */
    .footer-bg {
        background: #e8f3ff;   /* Light Blue Background */
    }

    /* Logo */
    .footer-logo {
        width: auto;
    }

    /* About Text */
    .footer-about {
        line-height: 1.6;
        font-size: 15px;
        color: #0c326f;
    }

    /* Section Titles */
    .footer-title {
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 18px;
        color: #0c326f;
    }

    /* Footer Links */
    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #0a2f60;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-links a:hover {
        color: #ff9500;
        padding-left: 5px;
    }

    /* Contact Info */
    .footer-contact li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: #0c326f;
    }

    /* Social Icons */
    .social-icons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        background: rgba(12, 50, 111, 0.1);
        border-radius: 50%;
        font-size: 18px;
        color: #0c326f;
        transition: 0.3s;
    }

    .social-icons a:hover {
        background: #0c326f;
        color: white;
    }

    /* Divider Line */
    .footer-divider {
        border-color: rgba(0, 0, 0, 0.2);
    }

    /* Bottom Links */
    .footer-bottom-link {
        color: #0c326f;
        text-decoration: none;
    }

    .footer-bottom-link:hover {
        color: #ff9500;
    }

    /* Copyright */
    .footer-copy {
        font-size: 14px;
        opacity: 0.9;
        color: #0c326f;
    }

.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-control:focus{
    z-index:2 !important;
}
