:root{
    --black-color :#141417;
    --blue-color:#055aa4;
    --grey-color:#676767;
    --white-color:#fff;
}

*{
    padding: 0;
    margin: 0;
}
img{
    max-width: 100%; 
    height: auto;
}

h1,h2,h3,h4,h5,h6{
    font-family: dinneuzeitgroteskltw01-_812426,sans-serif;
    color: var(--black-color);
    font-weight: 600 !important;
}
body{
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.8;
    padding-top: 115px;
}
body.home{
    overflow-x: hidden;
}

p,li,a,button,span{
    font-family:avenir-lt-w01_35-light1475496,sans-serif;
        line-height: 1.8;
}
a{
    outline: none;
    transition: 0.3s ease-out;
    text-decoration: none !important;
    display: inline-block;
}

/*----------Header------------*/
.navigation ul li a.active,
.header_res_ul ul li a.active span{
  color: #ff6600;      /* example active color */
  /* font-weight: bold; */
  /* add more styling if you want */
}
.header_res_ul ul li a.active span{
    font-weight: bold;
}
header{
       background-color: #f7f7f7;
    padding: 20px 0;
    box-shadow: 0 0 5px 2px #36b5484f;
        position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}
header .logo{
    text-align: start;
}
header .logo a{
    max-width: 200px;
    height: 75px;
    margin: 0 auto;
}
header .logo a img{
    width: 100%;
    height: 100%;
}
header .row{
    align-items: center;
}

header .navigation ul{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: space-between;
}
header .navigation ul li a{
    color: var(--black-color);
    font-weight: 400;
    font-family:avenir-lt-w01_35-light1475496,sans-serif;
}
header .navigation ul li:hover a{
    color: #ff6600;
}

header .link{
    text-align: end;
}
header .link a{
    padding: 6px 30px;
    background-color: #007702;
    color: #fff;
}
/*---------Header Mobile-------*/
.header_mobile {
    background-color: #f7f7f7;
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 0 5px 2px #36b5484f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.header_mobile.active {
    transform: translateY(0);
    opacity: 1;
}
.header_mobile a.logo{
    max-width: 70px;
    height: 50px;
}
.header_mobile .buttons button{
       width: 38px;
    height: 34px;
    /* background-color: #007702; */
    border: none;
    background-color: transparent;
}
.header_mobile .buttons button i{
    color: #007702;
    font-size: 24px;
}

.header_res_nav {
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: var(--white-color);
    z-index: 100;
    box-shadow: 0 0 4px 4px #0000001c;
}
.header_res_nav{
        height: 100vh;
    padding: 25px 30px;
    background-color: #007702;
}
.header_res_nav .close-btn{
    text-align: end;
}
.header_res_nav .close-btn button{
    width: 38px;
    height: 39px;
    box-shadow: 0 0 8px 2px rgb(0 0 0 / 34%);
    border: none;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-bottom: 37px;
}
.header_res_nav .close-btn button i{
    color: #fff;
    font-size: 23px;
}
.header_res_nav .header_res_ul ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.header_res_nav .header_res_ul li a{
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    color: #fff;
}







/* Show the menu when active */
.header_res_nav.active {
    transform: translateX(0%);
}


/*--------Slider---------*/
 .slider {
    position: relative;
    width: 100%;
    height: 600px; 
    overflow: hidden;
}

.slider video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.slider .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.3); /* Optional overlay */
    padding: 1rem;
}

.slider .content h1 {
    font-size: 80px;
    font-weight: bold;
    font-family: dinneuzeitgroteskltw01-_812426,sans-serif;
    margin-bottom: 55px;
}
.slider .content a{
    padding: 7px 50px;
    font-size: 18px;
    border: none;
    font-weight: 400;
    background-color: #007702;
    color: #fff;
    text-decoration: none;
}
/*---------Services-------*/
.services{
    display: flex;
}
.services .service{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-basis: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}
.services .service::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.services .service .content{
    margin: 40px;
        text-align: center;
}
.services img{
    width: 90px;
    margin: 0 0 12px;    
}
.services .service .content h2{
        color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 100 !important;
}
.services .service .content p{
         color: #fff;
    font-size: 28px;
    line-height: 1.7;
    font-weight: 600;
}
.services .service .content a img{
    width: 35px;
}
.services .service-1{
    background-image: url('../assets/images/service-1.avif');
}
.services .service-2{
    background-image: url('../assets/images/service-2.avif');
}
.services .service-3{
    background-image: url('../assets/images/service-3.avif');
}
.services .service-4{
    background-image: url('../assets/images/service-4.avif');
}
.services .service-1::before{
    background-color: color(srgb 0 0.47 0.01 / 0.90);
}
.services .service-2::before{
    background-color: color(srgb 0.34 0.54 0.93 / 0.90);
}
.services .service-3::before{
    background-color: color(srgb 0.65 0.8 0.59 / 0.90);
}
.services .service-4::before{
    background-color: color(srgb 0.85 0.82 0.42 / 0.90);
}

/*------main-content-------*/
.main-content{
    padding: 60px 0 100px;
    position: relative;
    background-attachment: fixed;
    z-index: 100;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../assets/images/main-bg.jpg');
}
.main-content .map{
    margin-top:20px;
}
.main-content .map iframe{
    margin-bottom: -5px;
}
.main-content::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
     background-color: color(srgb 0 0.47 0.01 / 0.90);
    z-index: -1;
}
.main-content .content .heading h2{
    color: #eade71;
    font-size: 25px;
    margin-bottom: 35px;
    font-weight: 600 !important;
}
.main-content .content.leader .heading h2{
    text-decoration:underline;
        font-size: 34px;
}
.main-content .content.mess .heading h2{
    text-decoration:none;
        font-size: 28px;
}
.main-content .content .heading h1{
    font-size: 80px;
    color: #fff;
    margin-bottom: 40px;
}
.main-content .content-1{
    margin-bottom: 100px;
}
.main-content .leader .heading h2{
    text-align: center;
}
.main-content .content-2{
    margin-bottom: 100px;
}
.main-content .content p{
    color: #fff;
    margin-bottom: 30px;
}
.main-content .content .acc-details p{
    margin-bottom: 10px;
    font-weight: 600;  
}
.main-content .content .acc-details p span{
    font-weight: 600;  
        color: #eade71;
}

.main-content .content .acc-details{
        background-color: #0000002b;
    padding: 20px;
    border-radius: 4px;
}
.main-content table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom:75px;
}
.main-content th{
    color: #eade71 !important;
}
.main-content td,.main-content th {
  border: 2px solid #dddddd;
  text-align: left;
  color:#fff;
  padding: 8px;
}






.main-content .leader .image-widgets {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center;
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background-color: #f9f9f9;
  max-width: 300px;
  margin: 20px auto;
      height: 335px;
}

.main-content .leader .image-widgets .image img {
     width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-bottom: 15px;
}

.main-content .leader .image-widgets .content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #333;
}

.main-content .leader .image-widgets .content p {
  font-size: 16px;
  color: #555;
}
/*-------Donate---------*/
/*.donate .image{*/
/*    display:flex;*/
/*}*/
.donate .image img{
    /*max-width: 300px;*/
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}
.donate .row{
    align-items: center;
}

.donate .donation-list {
    list-style: disc;
    padding-left: 20px;
        margin-bottom: 40px;
}

.donate .donation-list li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #fff;
}

.donate .donate-btn {
    display: inline-block;
    padding: 10px 25px;
      background-color: #90830a;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.donate .donate-btn:hover {
  background-color: #eade71;
}
.donate .main-head{
    text-align: center;
}
.donate .main-head h1{
    color: #fff;
}
.donate .main-head h2{
    color: #eade71;
    margin-bottom: 40px;
}
.donate .content .heading h2{
    margin-bottom: 20px;
    text-decoration: underline;
}
.donate .content .heading h3{
       color: #eade71;
    font-size: 20px;
}
.donate .content-1{
    margin-bottom:50px;
}
.donate .image-ob img{
        width: 100%;
    height: 500px;
    margin-bottom: 25px;
    object-fit: cover;
    border-radius: 6px;
}
/*----------event---------*/
.event .event-view{
    padding: 30px 30px 0;
    border: 2px solid #fff;
    margin-bottom: 50px;
}
.event .event-view h3{
    color: #eade71;
    font-size: 25px;
}
.event .event-view p{
    color: #fff;
}
.event .event-view .image{
    margin-bottom: 30px;
}
.event .image img{
    max-width: 100%;
}

/*---------Contact------*/
.contact{
    padding-bottom:0 !important;
}
.contact form label{
    width: 100%;
    color: #fff;
    font-weight: 600;
}
.contact form input{
    height: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    margin-bottom: 35px;
    width: 100%;
}
.contact form textarea{
      height: 100px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    margin-bottom: 35px;
    width: 100%;
}
.contact form button{
    background-color: #eade71;
    width: 100%;
    height: 42px;
    border: none;
    font-weight: 400;
}
/*.contact .content .row{*/
/*    align-items: center;*/
/*}*/
.contact .row{
    align-items: center;
}
.contact .numbers a,.contact .numbers span{
    color: #fff;
}
.contact .social-media{
    margin-bottom: 30px;
}
.contact .social-media a{
    color: #fff;
    text-decoration: underline !important;
}
.contact .social-media span{
    color: #fff;
}
.contact .content .heading h2{
    margin-bottom: 10px;
}
.contact .description p{
    color: #fff;
}
.contact .description a{
        background-color: #eade71;
    /* height: 42px; */
    border: none;
    font-weight: 500;
    color: #000;
    padding: 7px 50px;
}
/*----------Footer-----*/
footer{
    padding: 60px 0 100px;
}
footer *{
    font-family: proxima-n-w01-reg,sans-serif;
    color: #007702;
}
footer .heading p{
    text-transform: uppercase;
}
footer .about{
    margin-bottom: 50px;
}

footer .subscribe form > label{
    width: 100%;
    display: inline-block;
    margin-bottom: 5px;
}
footer .subscribe form > input{
        height: 40px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #007702;
}
footer .subscribe form .button{
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    flex-wrap: wrap;
}
footer .subscribe form .button .check{
    display: flex;
    flex-basis: 70%;
    column-gap: 8px;
    align-items: center;
}
footer .subscribe form .button .check input{
    height: 17px;
    width: 17px;
}
footer .subscribe form .button > button{
    flex-basis: 30%;
    height: 38px;
    border: none;
    background-color: #007702;
    color: #fff;
}
footer .social-media ul{
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
footer .social-media ul li a{
    color: #007702;
    text-transform: uppercase;
    text-decoration: underline !important;
    margin-bottom: 4px;
    position:relative;
    margin-left: 26px;
}
footer .social-media ul li a:before{
    position:absolute;
    content:"";
    background-size:20px;
       width: 20px;
    height: 20px;
    left: -27px;
    top: 3px;
    /*background-image:url('../assets/images/ic-1.png');*/
}
footer .social-media ul li:first-child a:before{
    background-image:url('../assets/images/ic-1.png');
}
footer .social-media ul li:nth-child(2) a:before{
    background-image:url('../assets/images/ic-2.png');
}
footer .social-media ul li:nth-child(3) a:before{
    background-image:url('../assets/images/ic-3.png');
}
footer .social-media ul li:nth-child(4) a:before{
    background-image:url('../assets/images/ic-4.png');
}
footer .contact{
    margin-bottom: 30px;
}
footer .contact .heading p{
    margin-bottom: 10px;
}
footer .contact > p{
    text-transform: capitalize;
    margin-bottom: 4px;
}
footer .contact > p a{
    color: #007702;
    text-transform: lowercase;
}

/*----------Tab and Mobile------*/
@media only screen and (max-width: 992px) {
    body {
        margin-top: 90px !important;
        padding-top: 0;
    }
    header {
        display: none;
    }
    .header_mobile {
        transform: translateY(0);
        opacity: 1;
    }
    footer .subscribe form .button .check{
        flex-basis: 100%;
        margin-bottom: 14px;
    }
    footer .subscribe form .button > button{
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    footer{
        padding: 30px 0 50px;
    }
    footer .about{
        margin-bottom: 25px;
    }
    footer .subscribe{
        margin-bottom: 32px;
    }
    .slider {
        height: 450px;
    }
    .slider .content h1{
        font-size: 45px;
        margin-bottom: 25px;
    }
    .services{
        flex-wrap: wrap;
    }
    .services .service{
        flex-basis: 100%;
    }
    .main-content{
        padding: 35px 0 35px;
    }
    .main-content .content .heading h1{
            font-size: 50px;
    }
    .main-content .content-1{
        margin-bottom: 50px;
    }
    .main-content .content .heading h2{
        margin-bottom: 20px;
    }
    .contact form{
        margin-bottom: 50px;
    }
    .contact .description a,.main-content .content .acc-details{
        margin-bottom: 30px;
    }
    .donate .image-ob img{
        height: inherit;
    }
}







