/* reset css */
:root {
    --theme-bg:#181818;
    --font-color:#ffffff;
    --theme-color:#f99c5c;
    --black-color:#000000;
    --card-bg:#080808;
}
body {
    background-color: var(--theme-bg);
    font-family:"Lato";
}
ul , li , a,p,h1.h2.h3,h4,h5,h6 {
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
}
p {
    font-size: 18px;
}
.donate-btn {
    background: var(--theme-color);
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid #dddddd78;
    transition: 0.3s ease-in-out;
    color: var(--font-color);
    font-size: 17px;
}
a.donate-btn:hover {
    background: transparent;
    transition: 0.3s ease-in-out;
    color: var(--theme-color);
}
.title {
    color: var(--font-color);
}

.big-tittle {
    font-size: 50px;
    color: var(--font-color);
    font-family: Poetsen One, sans-serif;
}
.title p {
    color: var(--font-color);
}
.small-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--theme-color);
}
.small-text-add {
    font-size: 20px;
        border-bottom: 1px solid #dddddd38;
        padding-bottom:10px;
    color: var(--theme-color);
    font-weight: bold;
}
.paragraph {
    font-size: 26px;
    color: var(--font-color);
}
.middle-font {
    font-size: 30px;
    font-family: Poetsen One, sans-serif;
    color: var(--theme-color);
}
.normal-font {
    font-size: 26px;
    color: var(--font-color);
}
.themeColor{
    color: var(--theme-color);
}

/* ============================ header-start ============================*/

header {
    width: 100%;
    display: inline-block;
    background-color: var(--black-color);
}
.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #dddddd52;
}
.header-top .header-contact ul , .header-social  {
    display: inline-block;
}
.header-top .header-contact ul li a , .header-social ul li a {
    color: var(--font-color);
}
.header-top .header-contact ul li , .header-social ul li{
    display: inline-block;
    padding: 0 20px;
}
.header-top .header-contact ul li:first-child{
    padding-left: 0;
}


#header-main {
    width: 100%;
    display: inline-block;
    transition: 0.3s ease-in-out;
   
}
.header-logo img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.header-menu ul li {
    display: inline-block;
    padding-right: 15px;
}
.header-menu ul li a {
   color:var(--font-color);
   font-weight: 600;
   font-size: 20px;
   transition: 0.3s ease-in-out;
   text-transform: capitalize;
}
.header-menu ul li a:hover {
    color: var(--theme-color);
    transition: 0.3s ease-in-out;
}
.header-menu ul li:last-child {
    padding-right: 0;
} 
.header {
    border-radius: 5px;
  
    padding: 5px 0;
}
.header-bottom.sticky {
    position: fixed;
    top: 0;
    background: var(--black-color);
    z-index: 11;
    margin-top:0;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 15px var(--shadow);
}
.header-bottom {
    display: inline-block;
    width: 100%;
}

/* ============================ header-end ============================*/


#breadcrumb-main {
    width: 100%;
    display: inline-block;
    background: url(../images/banner/bread.jpg);
    height: 200px;
    position: relative;
}
#breadcrumb-main::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    opacity: 0.7;
}
.breadcrumb-text {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 1;
    color: var(--font-color);
    text-align: center;
}
.breadcrumb-text ul li {
    display: inline-block;
}
.breadcrumb-text ul li  a {
    color: var(--theme-color);
    font-size: 20px;
}


/* ============================ banner-start ============================*/
.banner-main {
    width: 100%;
    display: inline-block;
    position: relative;
}
.banner-main::after {
    content: "";
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    opacity: 0.5;
}
.banner-main .carousel-item img {
    height: 600px;
    object-fit: cover;
    object-position: center;
}
.banner-text {
    z-index: 1;
    color: var(--font-color);
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.banner-heading {
    font-size: 30px;
    color:var(--theme-color);
  text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
    
}
.banner-sb {
    font-size: 27px;
}
/* ============================ banner-end ============================*/

.lets-content {
    width: 100%;
    height:100%;
    display: inline-block;
    text-align: center;
    background: var(--card-bg);
    border-radius: 5px;
    
}
.lets-text h3 {
    padding: 10px 0;
    margin: 0;
    background: #535151;
    color: var(--font-color);
    border-radius: 5px 5px 0 0;
    position: relative;
}
.lets-text h3::after {
    content: "";
    width: 200px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    border-radius: 5px;
    border-top: 2px solid darkorange;
    transform: translateX(-50%);
}
.lets-img {
    padding: 0 15px;
}
.lets-img img {
    width: 120px;
    aspect-ratio: 2 / 2;
    object-fit: contain;
}
.lets-content:hover {
    background-image: linear-gradient(to right, #6e3107 0%, #f99c5c 51%, #f99c5c 100%);
    border-bottom: 2px solid #249cb3;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}
.lets-content:hover .do_btn a {
    background: black;

}
/* ============================ misstion-start ============================*/
#misstion-main {
    background: var(--black-color);
}
.misstion-content {
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}
.misstion-content h5 , h4 {
    font-size: 40px;
    position: relative;
    color: var(--theme-color);
}
.tittle span {
    color: var(--theme-color);
}
.misstion-content p {
    color: var(--font-color);
}
.misstion-content h5::after  {
    content: "";
    width: 70px;
    height: 100%;
    position: absolute;
    top: 5px;
    left: 0;
    border-bottom: 5px solid;
}
.misstion-content h4::before {
    content: "";
    width: 70px;
    height: 100%;
    position: absolute;
     top: 5px;
    border-bottom: 5px solid;
}

.misstion-content:hover {
    box-shadow: 0 0 10px #f99c5c7a;
    padding: 10px;
    border-radius: 5px;
    transform: translateY(-10px);
    transition: 0.3s ease-in-out;
}
/* ============================ misstion-end ============================*/

/* ===================service-start================= */
.book-service {
    display: flex;
    justify-content: space-between;
}
#service-main {
    width: 100%;
    display: inline-block;
    background-color: var(--bg-color);
}
.service {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--black-color);
    border-radius: 25px;
    padding: 30px;
    border-bottom: 2px solid var(--theme-color);
    transition: all 0.3s ease-in-out;
}
.service:hover .hover-effect {
    background: black;
}

.service-icon img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}
.service-text {
    width: 100%;
    text-align: center;
    color: var(--font-color);
}

.service:hover {
    background-image: linear-gradient(to right, #6e3107 0%, #f99c5c 51%, #f99c5c 100%);
    border-bottom: 2px solid #249cb3;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}
.service:hover .small-text , .service:hover p.paragraph {
    color: var(--white-color);
}
.service:hover .read {
    color:var(--white-color);
}
a:hover {
        color:var(--white-color);

}
.qrimg img {
    width:250px;
}
.qrimg {
    text-align:center;
}
/* ===================service-end================= */

/* counter-area */
#counter-area {
    width: 100%;
    height: 300px;
    background-image: url(../images/gallery/back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    object-position: top;
   background-attachment: fixed;
   display: flex;
   align-items: center;
   position: relative;
}
#counter-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    /* z-index: 2; */
    opacity: .7;
}
#counter-area .area_service {
    z-index: 1;
    position: relative;
}

/* ============================ gallery-start ============================*/
.gallery-img {
    position: relative;
}
.gallery-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

/* ============================ gallery-start ============================*/
/* Team */
 #organizer-main {
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url(../images/banner/1720990056.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
#organizer-main::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    opacity: .8;

}
#organizer-main .big-tittle {
    z-index: 1;
    position: relative;
}
.news {
    width: 100%;

}
.news-text {
    text-align: center;
}
.newsimg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}
.newsimg {
    position: relative;
}

.latest-news {
    z-index: 1;
    height:100%;
    position: relative;
    border: 1px solid var(--theme-color);
    padding: 15px;
    background-color: var(--black-color);
}
/* ============================ latest-event-start ============================*/

#latest-event {
    background-color: var(--black-color);
}
.event-content {
    width: 100%;
    box-shadow: 0 0 15px #000;
    background: #181818;
    transition: .3s ease-in-out;
    overflow: hidden;
}
.event-img-main {
    position: relative;
    overflow: hidden;
}
.event-img-main span {
    position: absolute;
    left: 10px;
    top: 10px;
    background:var(--theme-color);
    color: var(--font-color);
    padding: 10px 20px;
    text-align: center;
}
.event-content .event-img-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    transition: .3s ease-in-out;
}
.event-content:hover img {
    transform: scale(1.2);
    transition: .3s ease-in-out;
}
.event-content:hover {
    transform: translateY(-10px);
    transition: .3s ease-in-out;
}
/* ============================ latest-event-end ============================*/


/* ============================ faq-start ============================*/
#faq-main {
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url(../images/banner/footer-banner.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#faq-main::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%), black);
}

 .faq-content {
    z-index: 1;
    position: relative;
}

/* ============================ faq-end ============================*/


/* ===================about-start================= */
#about-main {
    width: 100%;
    display: inline-block;
}
.about-img img {
    width: 100%;
    aspect-ratio: 7 / 5;
    object-fit: contain;
}
.about-icon {
    width: 100px;
    float: left;
}
.about-text {
    width: 100%;
    display: inline-block;
}
.about-right-text {
    width: calc(100% - 100px);
    float: right;
}

.aboutpage .misstion-content h4::before, .aboutpage .misstion-content h5::after  {
    display: none;
}
.all-events {
    background-color: #181818 !important;
}

/* ===================contact-start================= */
#contact-main {
    width: 100%;
    display: inline-block;
}
.contact {
    width: 100%;
    max-width: 1100px;
    display: flex;
    margin: 0 auto;
    text-align: center;
}
.contact-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid var(--theme-color);
    background-color: var(--font-color);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 0 15px #ffbe3059;
}
.contact-icon {
    width: 120px;
    float: left;
}
.contact-icon i {
    width: 90px;
    height: 90px;
    background-color:var(--theme-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--font-color);
}
.contact-text {
    width: calc(100% - 120px);
    float: right;
    text-align: left;

}
.contact-form {
    width: 100%;
    padding: 40px;
    display: inline-block;
    box-shadow: 0 0 15px #ffbe3059;
    border-radius: 25px;
}
.contact-form input , textarea {
    border-radius: 10px;
    padding: 10px;
    width: 100%;
}
/* ===================contact-end================= */
/* ===================about-end================= */


/* blog details page */




/* ===================blog-details-start================= */
#blog-details .blog-deatils-content{
    width: 100%;
    display: inline-block;
}
.blog-deatils-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}
.blog-details-double {
    width: 100%;
    display: inline-block;
}
.blog-double-first  {
    width: 50%;
    float: left;
    padding-right: 20px;
}
.blog-double-first img , .blog-double-second img  {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}
.blog-double-second {
    width: 50%;
    float: right;
}
.blog-details-right {
    width: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.blog-details-post-img {
    width: 150px;
    float: left;
}
.blog-details-post-img img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}
.blog-details-post-text {
    width: calc(100% - 150px);
    float: right;
}
.blog-popular {
    border-bottom: 1px solid #7878783d;
    position: relative;
}
.blog-popular::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: -1px;
    left: 0;
    border-bottom: 2px solid var(--font-color);
}
.blog-category-right ul li a {
    display: flex;
    justify-content: space-between;
    background-color: var(--theme-color);
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    color: var(--font-color);
}

.blog-category-right ul li a:hover {
    background-color: var(--black-color);
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}
.blog-tags-right ul li {
    display: inline-block;
    background: var(--theme-color);
    padding: 8px;
    border-radius: 3px;
    margin-bottom:10px;
}
.blog-tags-right ul li a {
    color: var(--font-color);
    font-weight: 600;
}
ol.service-count {
    padding-left: 17px;

}
ol.service-count li {
    padding-bottom: 10px;
}
/* ===================blog-details-end================= */

/* ============================ footer-start ============================*/
a.whatsApp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
a.whatsApp img {
    width: 60px;
    object-fit: contain;
}
.whatstext {
    color:var(--theme-color);
}
.whatsapp_icon {
    max-width: 220px;
    opacity: 0;
    visibility: hidden;
    background: white;
    padding: 3px 13px;
    border-radius: 50px;
    z-index:2;
    animation: whatsapp-animation 2s infinite linear;
}
.whatsapp_icon.sticky {
    position: fixed;
    bottom: 48px;
    right: 27px;
      opacity: 1;
    visibility: visible;
}
@keyframes whatsapp-animation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Icon 10px upar move karein */
    }
    100% {
        transform: translateY(0);
    }
}
#footer-main {
    width: 100%;
    display: inline-block;
    background-color:#333333;
}
.footer-top {
    background: var(--black-color);
}
.footer {
    width: 100%;
    display: inline-block;
}
.footer-social ul li {
    display: inline-block;
}

.footer-social ul li a {
    font-size: 24px;
    color: var(--font-color);
    padding-right: 10px;
}
.footer-logo img {
    width: 100px;
}
.footer ul li img {
    width: 33.33%;
    height: 80px;
    float: left;
    object-fit: cover;
    object-position: top;
    padding-right: 10px;
    margin-bottom: 10px;
}
.footer-tittle {
    font-size: 27px;
    color: var(--theme-color);
    font-weight: 600;
}
.footer-social ul li {
    width: 50px;
    height: 50px;
    background-color: var(--theme-color);
    transition: 0.3s ease-in-out;
    border: 1px solid transparent;
}
.footer-social ul li:hover  {
    background-color: transparent;
    transition: 0.3s ease-in-out;
    border-color: var(--theme-color);
}
.footer-social ul li i  {
    color: var(--font-color);
    transition: 0.3s ease-in-out;
}
.footer-social ul li i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.3s ease-in-out;
}
.footer ul li {
    font-size: 18px;
}
.footer ul li a {
    color: var(--font-color);
    transition: 0.3s ease-in-out;

}
.footer ul li a:hover {
    color: var(--theme-color);
    transition: 0.3s ease-in-out;
}
.footer-bottom {
    padding: 10px 0;
    text-align: center;
    color: var(--theme-color);
    font-weight: 600;
}
/* ============================ footer-end ============================*/


