:root{
    --primary-color:rgb(0 128 1);
    --rowdies-font:"Rowdies", sans-serif;
    --josefin-sans-font:"Figtree", sans-serif;
    --poetsen-one-font:"Open Sans", sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');
/*==================================================================
                        common styles
==================================================================*/
*{
    /* font-family: var(--josefin-sans-font); */
    font-family: var(--poetsen-one-font);
    
}
p{
    font-family: var(--josefin-sans-font);
}
.sctn-1,.sctn-2,.sctn-3,.sctn-4,.sctn-5,.sctn-6{
    position: relative;
    z-index: 5;
    padding: 100px 0;
}
h2{
    font-size: 3rem;
    text-transform: capitalize;
    padding-bottom: 30px;
}
body{
    user-select: none;
    background: #f2f9f6 !important;
}
@media screen and (min-width:992px) {
    .hide-lg{
        display: none !important;
    }
    .d-flex.hide-lg{
        display: none !important;
    }
}
@media screen and (min-width:765px) and (max-width:992px) {
    .hide-md{
        display: none !important;
    }
}
@media screen and (max-width:765px) {
    h2{
        font-size: 2.5rem;
    }
    .hide-sm{
        display: none !important;
    }
}



/*==================================================================
                        navbar
==================================================================*/
@keyframes dropdown-anime {
    0%{
        display: block !important;
        transform: translateY(50px);
        opacity: 0;
    }
    100%{
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes drpdwn {
    0%{
        display: block;
        opacity: 0;
    }
    100%{
        display: block;
        opacity: 1;
    }
    
}
.navbar{

    .sub_drp {
        display: none;
        list-style-type: none;
        position: absolute; 
        padding-left: 0;
      .nav-link{
        box-shadow: 0px 0px 5px 0px rgb(122 122 122 / 52%);
        width: 125px;
        text-align: center;
       
      }
    }
    
    /* Show the sub menu on hover of the parent nav item */
    .nav-item:hover .sub_drp {
        display: block;
    }

    
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    transition: 0.5s;
    box-shadow: 10px 9px 33px -24px rgba(0, 0, 0, .76);
    background: white;
    .navbar-brand img{
        height: 70px;
    }
    .navbar-collapse{
        justify-content: flex-end;
        .navbar-nav{
            gap: 5px;
            position: relative;
        }
        .nav-item{
            position: static;
        }
        .nav-item .nav-link{
           
            background-image: linear-gradient(to right, #54b3d6, #54b3d6 50%, #908d8d 50%);
            background-size: 200% 100%;
            background-position: 100%;
            background-clip: text;
            transition: transform 0.4s, background-position 1s;
            color: #636363;
            letter-spacing: 1px;
            font-size: 16px;
            font-family: "Rubik", sans-serif;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .nav-item .dropdown-toggle::after{
            display: none;
        }
        .nav-item .nav-link:hover{
            background-position: 0;
            transform: translateY(-3px);
        }


        @media (min-width:991px){
            .nav-item .dropdown-menu{/* dropdown */
                width: 60%;
                position: fixed;
                left: 0;
                right: 0;
                margin: auto;
                top: 0;
                transform: translateY(70px);
                border: none;
                padding: 1rem 0;
                color: #2b2b2b;
                font-weight: bold;
                padding: 1rem;
                box-shadow: -1px -2px 64px -13px rgb(0 0 0 / 75%);
        border-radius: 4px;
                .ser_menu{
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                     div{
                        width: 100%;
                        margin: 0 5px;
                     }
                }
                
    
                li {
                    background-color: white;
                    width: 100%;
                    padding: 5px 0;
                    margin: 5px 0;
                    border-radius: 5px;
                    border: 1px solid rgba(0, 0, 0, 0.212);
    
                
                a{
                    font-family: "Rubik", sans-serif;
                    /* text-transform: uppercase; */
                    font-size: 15px;
                  
                    /* font-weight: bold; */
                    color: #41464b;
    
                }
              
            }
            li:hover{
                background: linear-gradient(266deg, #198754, #6ee7af);
              
                a{
                    color: white;
                    background: transparent;
                }
            }
                background: #efefef;
            
            }   
        }
        @media (max-width:991px){
            .nav-item .dropdown-menu{/* dropdown */
                width: 100%;
                position: absolute;
                left: 0;
                /* right: 0;
                margin: auto;
                top: 0;
                transform: translateY(70px); */
                border: none;
                padding: 1rem 0;
                color: #2b2b2b;
                font-weight: bold;
                padding: 1rem;
                box-shadow: -1px -2px 64px -13px rgb(0 0 0 / 75%);
        border-radius: 4px;
                .ser_menu{
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    align-items: center;
                     div{
                        width: 100%;
                        margin: 0 5px;
                     }
                }
                
    
                li {
                    background-color: white;
                    width: 100%;
                    padding: 5px 0;
                    margin: 5px 0;
                    border-radius: 5px;
                    border: 1px solid rgba(0, 0, 0, 0.212);
    
                
                a{
                    font-family: "Rubik", sans-serif;
                    /* text-transform: uppercase; */
                    font-size: 15px;
                  
                    /* font-weight: bold; */
                    color: #41464b;
    
                }
              
            }
            li:hover{
                background: linear-gradient(266deg, #198754, #0f5132);
              
                a{
                    color: white;
                    background: transparent;
                }
            }
                background: #efefef;
            
            }  
        }
      
        #dropdown-menu-b{/* service dropdown */
            border: 0;
            border-radius: 10px;
            .services-li{
                display: grid;
                grid-template-columns: repeat(4,1fr);
                gap: 10px;
                padding: 15px 20px;
                .dropdown-itm{
                    text-decoration: none;
                    .img-div{
                        width: 100%;
                        height: 100px;
                        border-radius: 5px;
                        overflow: hidden;
                        transition: 0.4s;
                        img{
                            width: 100%;
                            height: 100%;
                            transition: transform 0.5s;
                            filter: blur(0.8px) grayscale(0.47);
                        }
                    }
                    .heading{
                        font-weight: bold;
                        text-transform: capitalize;
                        letter-spacing: 1px;
                        color: #454141b6;
                        transition: 0.4s;
                    }
                }
                .dropdown-itm:hover{
                    .img-div{
                        border-radius: 15px;
                    }
                    .img-div img{
                        transform: scale(1.2);
                        filter: none;
                    }
                    .heading{
                        background: linear-gradient(45deg, #198754, #0f5132);
                        background-clip: text;
                        color: transparent;
                    }
                }
            }
        }
    }
    
    
svg {/* navbar toggler */
    height: 50px;
    position: absolute;
    width: 50px;
    left: 0;
    top: 0;
  }
  .plate {
    height: 50px;
    position: relative;
    width: 50px;
    cursor: pointer;
    border: 0;
    z-index: 21;
  }
  .burger {
    filter: url(#gooeyness);
  }
  .x {
    transform: scale(0);
    transition: transform 400ms;
  }
  .line {
    fill: none;
    stroke: black;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 50%;
    transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
  }
  .x .line {
    stroke-width: 5.5px;
  }
  .plate1 .line2 {
    stroke-dasharray: 40 200;
    stroke-dashoffset: 0px;
  }
  .plate1 .line3 {
    stroke-dasharray: 40 179;
    stroke-dashoffset: 0px;
  }
  .active .line {
    transition: stroke-dasharray 500ms, stroke-dashoffset 500ms, transform 500ms;
  }
  .active.plate1 .line1 {
    transform: scale(0, 1);
    transition: transform 500ms 100ms;
  }
  .active.plate1 .line2 {
    stroke-dasharray: 5px 200;
    stroke-dashoffset: -164px;
  }
  .active.plate1 .line3 {
    stroke-dasharray: 5px 179;
    stroke-dashoffset: -142px;
  }
  .active .x {
    transform: scale(1);
    transition: transform 400ms 350ms;
  }/* navbar toggler END */

  /* scroll indicator*/
.progress-container {
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .progress-bar {
    height: 5px;
    width: 0%;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(45deg, #176c44, #2aac70);
  }
  /* scroll indicator end*/
}
.navbar.hide{
    transform: translateY(-100%);
    transition: 0.5s;
}
.navbar.show,.navbar.hide.show{
    transform: translateY(0) !important;
}

@media screen and (min-width:992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: drpdwn 0.5s linear both;
    }
}
@media screen and (min-width:1056px) and (max-width:1200px) {
    .navbar .navbar-collapse .nav-item .nav-link{
        font-size: 15px;
    }
}
@media screen and (min-width:992px) and (max-width:1056px) {
    .navbar .navbar-collapse .nav-item .nav-link{
        font-size: 14px;
        padding: 5px;
    }
}
@media screen and (max-width:992px) {
    .navbar{
        padding: 20px;
        .navbar-brand{
            z-index: 21;
        }
        .navbar-brand.z-index{
            z-index: 19;
        }
        .navbar-collapse{
            display: block;
            position: fixed;
            z-index: 20;
            padding-top: 100px;
            padding-left: 30px;
            background: white;
            transform: translateX(100%);
            right: 0;
            top: 0;
            height: 100vh;
            width: 100%;
            max-width: 350px;
            transition: 0.5s;
            .navbar-nav .nav-item:nth-child(1){
                border-top: 1px solid #a5a5e2;
            }
            .navbar-nav .nav-item{
                border-bottom: 1px solid #a5a5e2;
            }
            .nav-item .dropdown-menu{/* dropdown menu */
                position: fixed;
                display: block;
                left: 0;
                top: 0;
                border: 0;
                transform: translateX(100%) translateY(0);
                height: 100vh;
                z-index: 600;
                transition: 0.5s;
                /* padding-left: 30px; */
                padding-top: 0;
                .back-btn-li{
                    height: 100px;
                    padding: 0;
                    border: none;
                    background: transparent;
                    .back{
                        background: transparent;
                        border: 0;
                        font-size: 20px;
                    }
                }
                .back-btn-li:hover{
                    background: transparent;
                }
            }
            #dropdown-menu-b{/* service dropdown */
                .services-li{
                    display: flex;
                    flex-direction: column;
                    .img-div{
                        max-width: 200px;
                        img{
                            filter: none !important; 
                        }
                    }
                }
            }
            .nav-item .dropdown-menu.show-l{
                transform: translateX(0) translateY(0);
                transition: 0.5s;
            }
            .nav-item .dropdown-menu.show-l.hide-l{
                transform: translateX(100%) translateY(0);
                transition: 0.5s;
            }
        }
        .navbar-collapse.show{
            transform: translateX(0);
        }
        
    }


   
}
@media (min-width:991px){
    .tab {
        float: left;
        /* border: 1px solid #ccc; */
      
        width: 40%;
        height: 400px;
        overflow-y: scroll;
      }
      .tab button:active .tabcontent{
       
      }
      /* Style the buttons that are used to open the tab content */
      .tab button {
        display: block;
       
        color: gray;
        padding: 8px;
        width: 100%;
        border: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
        text-transform: capitalize;
        font-size: 16px;
        font-weight: 600;
        /* border-bottom: 1px solid #06060652; */
        letter-spacing: 1px;
      }
      
      /* Change background color of buttons on hover */
      .tab button:hover {
        background-color: white;
      }
      
      /* Create an active/current "tab button" class */
      .tab button.active {
        background-color: white#ccc;
      }
      
      /* Style the tab content */
      .tabcontent {
        float: left;
        padding: 0px 12px;
        height: 400px;
        overflow-y: scroll;
      
        width: 60%;
        border-left: none;
    
        i{
            display: none;
        }
       a {
    
       text-decoration: none;
       
       p{
        font-size: 14px;
        font-weight: 400;
        /* text-decoration: none !important; */
        color: #636363;
        }
    }
      
       
      }
    .ser_tab{
      
        padding: 0 5rem;
        background: #efefef;
    }
}
/*==================================================================
                        navbar END
==================================================================*/






/*==================================================================
                        Banner 
==================================================================*/
@media (max-width:765px){
    .carousel{
        margin-top: 10rem;
        h2{
        background: linear-gradient(174deg, #125329, #317541);
        background-clip: text;
        color: transparent;
        font-weight: bold;
        font-size: 2rem !important;
        text-align: center;
        margin: auto;
        }
    }
    
}
@media (min-width:765px){
    .carousel{
        margin-top: 10rem;

        h2{
            background: linear-gradient(174deg, #125329, #317541);
        background-clip: text;
        color: transparent;
        font-weight: bold;
        }
    }
   
}
.carousel{
    transform: translateY(-80px);
  
   
    
    img{
        width: 100%;
    }
    /* .col-md-6:nth-child(1){
        display: flex;
        align-items: center;
    } */
   
}
@media(min-width:765px){
    .banner1::before{
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 37%;
        height: 100%;
        z-index: -1;
        background: linear-gradient(174deg, #54ff91, #4dbd67);
    }
}
.banner1{
    @media(max-width:765px){
        
    }
    @media(min-width:765px){
        .img_div{
            width: 400px;
        }
    }
    padding: 100px 0;
    position: relative;
    .cnt{
        display: flex;
        align-items: center;
        height: 100%;
    }
   
    
    .img_div{
      
        margin: auto;
        border-radius: 10px;
        overflow: hidden;
        border: 5px solid white;
    }
}


/*==================================================================
                        Banner END
==================================================================*/



/*==================================================================
                        about 
==================================================================*/
.about-sctn-1{
    @media(min-width:765px){
        .img_div{
            width: 400px;
        }
        h2{
            width: max-content;
            border-radius: 0 5px 5px 0;
        }
    }
    @media(max-width:765px){
        h2{
            border-radius: 5px;
            width: max-content;
            margin: auto;
        }
        .cnt{
            text-align: center;
        }
    }
.img_div{
  
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

    h2{
        position: relative;
        font-weight: 600;
        color: white;
        padding-bottom: 5px;
        margin-bottom: 1rem;
        background: #2a7b3f;
       
        padding: 5px 10px;
        font-size: 2rem;
      
    }
    h2::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 10%;
        background: #1b7c3b;
    }
    padding: 50px 0;
    .img-col{/* image column */
        .img-div{
            width: 80%;
        }
    }
}
/*==================================================================
                        about END
==================================================================*/



/*==================================================================
                        mission/vision
==================================================================*/
.misn-visn{
    .col-md-6:nth-child(1) .card{
        background: linear-gradient(45deg, #0f5132, #35ac75);
    }
    .col-md-6:nth-child(2) .card{
        background: linear-gradient(45deg, #14366a, #5e8dd2);
    }
    .card{
        height: 100%;
        padding: 20px;
        border-radius: 15px;
        border: 0;
        .icon img{
            height: 50px;
            filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(322deg) brightness(102%) contrast(101%);
        }
        .card-title{
            text-transform: capitalize;
            color: white;
        }
        .cnt{
            color: #ffffff94;
            margin-bottom: 0;
        }
    }
}
/*==================================================================
                        mission/vision END
==================================================================*/


/*==================================================================
                        footer
==================================================================*/
/* wave Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }
  
footer{
    min-height: 80vh;
    margin-top: 200px;
    display: flex;
    z-index: 5;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    background:#0f5132;
    padding-top: 100px;
    a{
        text-decoration: none;
        text-transform: capitalize;
    }
    .footer-logo{
        height: 70px;
    }


    .copyright-div{/* copyright part */
    display: flex;
    justify-content: space-between;
      span,span a{
        font-family: var(--josefin-sans-font);
      }
    }

    .waves{/* wave animation */
        position:absolute;
        width: 100%;
        height:15vh;
        top: 0;
        left: 0;
        transform: translateY(-100%);
        margin-bottom:-7px; /*Fix for safari gap*/
        min-height:150px;
        max-height:200px;
        padding-top: 50px;
        display: none;
      }
}
footer::before{
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    height: 100%;
    width: 100%;
    background: url(../img/banner/footer-bnr.gif);
    background-size: 100% auto;
    background-position: bottom;
}
/*Shrinking for mobile*/
@media screen and (max-width: 768px) {
    footer{
        .copyright-div{
            flex-direction: column;
            gap: 20px;
        }
        .social-md{
            flex-direction: column;
        }
    }
    footer .waves {
      min-height:40px;
    }
  }
/*==================================================================
                        footer END
==================================================================*/

















/*==================================================================
                        blog page
==================================================================*/
@keyframes blog-card-img {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0);
    }
}
.blog-sctn{
    padding: 50px 0;
    .row{
        grid-template-columns: repeat(4,1fr);
        gap: 30px;
        .card-col{
            padding: 0;
        }
        .card{
            padding: 0;
            cursor: pointer;
            height: 400px;
            border: 0;
            transition: 0.5s;
            text-decoration: none;
            color: rgb(22, 21, 21);
            .img-part{
                width: 90%;
                height: 50%;
                border-radius: 10px;
                overflow: hidden;
                z-index: 1;
                .card-img{
                    object-fit: cover;
                }
            }
            .card-body{
                z-index: 1;
                .subject{
                    opacity: 0.8;
                    font-family: var(--josefin-sans-font);
                    margin-bottom: 0;
                    text-transform: capitalize;
                }
                .card-title{
                    display: -webkit-box;
                   -webkit-box-orient: vertical;
                    overflow: hidden;
                   -webkit-line-clamp: 2;
                }
                .cnt{
                    display: -webkit-box;
                   -webkit-box-orient: vertical;
                    overflow: hidden;
                   -webkit-line-clamp: 2;
                   text-transform: lowercase;
                   font-size: 14px;
                   color: grey;
                }
            }
            .card-footer{
                z-index: 2;
                background-color: white;
                overflow: hidden;
                border-radius: 0 0 10px 10px;
                color: grey;
                /* background-color: transparent; */
                border: 0;
                .profile-name-div .profile{
                    width: 25px;
                    height: 25px;
                    border-radius: 50%;
                    background: linear-gradient(45deg, #198754, #0f5132);
                    color: white;
                    text-transform: uppercase;
                    margin-right: 5px;
                    font-weight: 400;
                }
            }
        }
        .card::after{
            content: '';
            z-index: 0;
            width: 100%;
            position: absolute;
            left: 0;
            bottom: 0;
            height: 90%;
            box-shadow: 0px 0px 5px 1px #2c2a2a7a;
            /* border: 2px solid #0188b4; */
            border-radius: 10px;
            transition: 0.5s;
        }
        .card:hover{
            transform: translateY(-10px);
            .img-part{
                animation: blog-card-img 1s linear both;
            }
            .card-body .subject{
                /* color: #ffffffba; */
                opacity: 1;
            }
            .card-body .card-title{
                /* color: white; */
                opacity: 1;
            }
            .card-body .cnt{
                /* color: wheat; */
                opacity: 1;
            }
        }
        .card:hover::after{
            box-shadow: 0px 4px 5px 1px #2c2a2a7a;
            /* background: linear-gradient(331deg, #0e2b57, #99c2ff); */
        }
        
        .card-col:nth-child(4n+1){
            .card .card-body .subject{
                color:#0188b4;
            }
        }
        .card-col:nth-child(4n+2){
            .card .card-body .subject{
                color:#dce315;
            }
        }
        .card-col:nth-child(4n+3){
            .card .card-body .subject{
                color:#23e315;
            }
        }
        .card-col:nth-child(4n+4){
            .card .card-body .subject{
                color:#e31515;
            }
        }
    }
}
@media screen and (min-width:1200px) {
    .blog-sctn{
        .row{
            .card-col:nth-child(2n+2){
                transform: translateY(-30px);
            }
        }
    }
}
@media screen and (min-width:992px) and (max-width:1200px){
    .blog-sctn{
        .row{
            grid-template-columns: repeat(3,1fr);
            .card-col:nth-child(3n+2){
                transform: translateY(-30px);
            }
        }
    }
}
@media screen and (max-width:992px) and (min-width:765px){
    .blog-sctn{
        .row{
            grid-template-columns: repeat(2,1fr);
        gap: 30px;
        }
    }
}
@media screen and (max-width:765px) {
    .blog-sctn{
        .row{
            grid-template-columns: repeat(1,1fr);
        gap: 30px;
        padding: 0 50px;
        }
    }
}
/*==================================================================
                        blog page END
==================================================================*/





/*==================================================================
                        gallery page END
==================================================================*/
.sctn-gallery{
    padding: 50px 0;
    ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }
       ul li img {
        display: block;
        height: auto;
        width: 100%;
        max-width: 100%;
      }
      
       ul {
        columns: 11rem;
        column-gap: 1rem;
      }
       ul li {
        break-inside: avoid;
        margin: 0 0 1rem;
      }
}
@media screen and (min-width:992px) {
    .sctn-gallery{
        ul {
            columns: 15rem;
        }
    }
}
/*==================================================================
                        gallery page END
==================================================================*/


/* ==========================================================
                              r1                             
=================================================================*/



@media (max-width:765px){
    .sec_res,.sec_res1{

        padding: 20px 0;
        
    }
    .ser_h2 h2{
        font-size: 2rem;
        text-align: center;
    }
    .sec_res {
        p {
            background: #e9ecef;
            padding: 5px;
            border-radius: 5px;
            color: #0f5132;
            font-size: 12px;
            padding-left: 1rem;
        }
    }
    .sec_res1{
        h2{
            font-size: 2rem !important;
            text-align: center;
        }
        .card{
            .card-header{
                h5{
                    font-size: 16px !important;
                }
            }

            .card-body{
                p{
                    margin-left: 4rem !important;
                    font-size: 14px;
                }
            }
        }
    }
}
@media (min-width:765px){
    .sec_res,.sec_res1{

        padding: 50px 0;
        
    }
    .sec_res{

        p{
            background: #e9ecef;
        padding: 10px;
        border-radius: 5px;
        color: #0f5132;
        font-size: 1.2rem;
        padding-left: 1rem;
        }
    }
}

	
.sec_res1{
    .col-md-6{
        margin-bottom: 2rem;
    }
    h3{
        margin-bottom: 2rem;
    }

    .card{
        box-shadow: 0px 0px 5px 1px #2c2a2a7a;
        border: none;
        transition: .5s;
        height: 100%;
        padding-top: 10px;
        .card-header{

            border-bottom: 0;
            background: transparent;
            display: flex;
            align-items: center;

            h5{
                margin-bottom: 0;
                color: #21805b;
            }
            img{
                width: 30px;
                margin-right: 1rem;
                transform: translateY(5px);
                filter: invert(20%) sepia(11%) saturate(5288%) hue-rotate(113deg) brightness(98%) contrast(88%);

            }
        }
        .card-body{
            padding: 0;
            padding-bottom: 1rem;
            p{
                margin-bottom: 0;
                margin-left: 4rem;
            }
        }

    }
    .card:hover{
        background: linear-gradient(49deg, #0f5132, #198754);
        .card-header{

           

            h5{
               
                color: white;
            }
            img{
                filter: invert(99%) sepia(4%) saturate(0%) hue-rotate(156deg) brightness(108%) contrast(101%);  


            }
        }
        .card-body{
            p{
              color: white;
            }
        }

    }
    img{
        width: 100%;
    }

   
}
/* ==========================================================
                              r1   end                           
=================================================================*/

/* =======================n_firms=================================== */
.n_firms{
    background: #32924c;
    padding: 50px 0;
img{
    width: 100%;
}
.col-md-4{
    margin-bottom: 2rem;

}
.card{
    /* box-shadow: 0px 0px 5px 0px rgb(122 122 122 / 52%); */
    border: none;
    height: 100%;
    .card-body{
        h6{
            font-weight: 700;
        }
        display: flex;
                    align-items: flex-start;
                    flex-direction: column;
                    /* text-align: center; */
                    font-size: 14px;
                    color: #41464b;
        .icon{
            width: 50px;
            img{
                filter: invert(16%) sepia(94%) saturate(5679%) hue-rotate(156deg) brightness(95%) contrast(87%);
            }
        }
    }
}
   
}
.n_services{
    @media (max-width:765px){
      .col-md-6{
        margin-bottom: 2rem;
      }
    }
    .card{
        box-shadow: 0px 0px 5px 0px rgb(122 122 122 / 52%);
      
        height: 100%;
        p{
            margin-bottom: 2px;
            font-size: 13px;
        }
    }
    padding: 30px 0;
    img{
        width: 100%;
    }
    h2{
        color: #1b7c3b;
        font-weight: bold;
        text-align: center;
    }
h3{
    font-weight: 700;
    color: #1b7c3b;
}
h5{
    color: #0f5132;
        font-weight: 600;
        margin-bottom: 1rem
}
ul{
    li{
        list-style: none;
        img{
            width: 34px;
                margin-right: 10px;

        }
    }
}

}
.n_contact{
    .col-md-3{
        margin-bottom: 2rem;
    }
  
    .col-md-3:nth-child(1){
        .card{
            i{
                color: #bf0f0f;
            }
        }
        
    }
    .col-md-3:nth-child(2){
        .card{
            i{
                color: #033b14;
            }
        }
        
    }
    .col-md-3:nth-child(3){
        .card{
            i{
                color: #3b8bff;
            }
        }
        
    }
    .col-md-3:nth-child(4){
        .card{
            i{
                color: #011635;
            }
        }
        
    }
    .card{
        box-shadow: 0px 0px 5px 0px rgb(122 122 122 / 52%);
        padding: 1rem;
        height: 100%;
        
        i{
            font-size: 25px;
            margin-bottom: 10px;

        }
       
     
      
        span{
            font-weight: 600;
            color: #001837;
        }
    }
    .col-md-4{
        margin-bottom: 2rem;
    }
}
/* =======================n_firms=================================== */

/* ==========================team================================== */
.team{
    padding: 30px 0;
}

/* ==============================team================================= */
/* =====================y_sec=========================== */
.y_sec{
    h2{
        color: #188548;
        font-weight: bold;
        text-align: center;
    }
    padding: 50px 0;
    .slide{
        padding: 10px;

        .card{
            border-radius: 10px;
            overflow: hidden;
            height: 170px;
            border: none;

            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }
}
    /* ======================y_sec==================== */

    .asoctd{
        padding: 50px 0;
        h2{
            color: #188548;
            font-weight: bold;
            text-align: center;
        }
        .slick-slider{
            margin-bottom: 0;
        }
        .slider{
            background: #eef7f4;
            
            .slide{
                padding: 1rem;
            }
        }
        h2{
            text-align: center;
        }
        img{
            width: 100%;
            object-fit: cover;
            object-position: center;
            height: 100%;
        }
        background: #eef7f4;
    
        
    
        @media (max-width:765px){
            .card{
          
                box-shadow: 0px 0px 5px 0px rgb(122 122 122 / 52%);
              
                border: 1px solid #3e3e3e40;
                /* min-height: 100px; */
                display: flex;
                justify-content: center;
                background: transparent;
        
           
            }
        }
        @media (min-width:765px){
            .card{
          
                box-shadow: 0px 0px 5px 0px rgb(122 122 122 / 52%);
                padding: 10px;
                border: 1px solid #3e3e3e40;
                /* min-height: 135px; */
                display: flex
    ;
                justify-content: center;
                background: transparent;
        
           
            } 
        }
    }

/* =====================servic_sec============================== */
.servic_sec{
@media (max-width:765px){
    .servic{
        .col1{
     border-radius: 22px 22px 0 0;
        }
        .col2{
            border-radius: 0 0 22px 22px;

        }
        
    h3{
        text-align: center;
    }
    } 
}
@media (min-width:765px){
.servic{
    width: 80%;
    display: flex;
    justify-content: center;
   
    margin: auto;
    .col1{
        width: 40%;
        border-radius: 22px 0 0 22px;
    }
    .col2{
        width: 60%;
        border-radius: 0 22px 22px 0;
    }
}
}
padding: 50px 0;
.servic{
   

    .col1{
     
        background: #32924c;
        
    }
    .col2{
      
        background: #e9e9e9;
       
    }
    .col1,.col2{
        padding: 20px;
    }
    h3{
        font-weight: bold;
        color: white;
    }
    li{
        list-style: none;
        margin: 10px 0;
        i{
            color: #32924c;
                margin-right: 10px;
        }
    }
}

}



/* =====================servic_sec============================== */

/* ==============================servic_sec1======================= */
    .servic_sec1{
        @media(max-width:765px){
            .servic{
                .cnt{
                    display: flex;
                   flex-direction: column;
                   .col1,.col2{
                    padding:  0 10px;
                }
                }
            }

        }
        @media(min-width:765px){
              .servic{
                width: 80%;
                .cnt{
                    display: flex;
            justify-content: space-around;
            
            .col1,.col2{
                padding: 20px;
            } 
                }
            }
        }
        padding: 50px 0;

        .servic{
         
          margin: auto;
            .cnt{
               
            background: #e9e9e9;
            ul{
                padding-left: 0;
            }
               
                li{
                    list-style: none;
                    margin: 10px 0;
                    i{
                        color: #32924c;
                            margin-right: 10px;
                    }
                }

                
            }
        }
        h3{
           font-weight: bold;
           background: #32924c;
           border-radius: 15px 15px 0 0;
           text-align: center;
           padding: 10px;
           color: white;
           margin: 0;

        }
    }                                 

/* ==============================servic_sec1======================= */

 /* side icons */

 .call-btn img,.whats-btn img{
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(15deg) brightness(107%) contrast(101%);
    height: 1.5rem;
    width: 1.5rem;
    }
    .call-btn:hover{
    width: fit-content;
    }
    .call-btn:hover .title,.whats-btn:hover .title,.insta-btn:hover .title{
    width: 100px;
    color: white;
    }
    .call-btn .img-div,.whats-btn .img-div,.insta-btn .img-div{
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .call-btn .title,.whats-btn .title,.insta-btn .title{
    /* transform: translateX(100%); */
    /* visibility: hidden; */
    /* display: none; */
    width: 0px;
    overflow: hidden;
    transition: 0.5s;
    white-space: nowrap;
    
    }
    .call-btn,.whats-btn,.insta-btn{
    position: fixed;
    /* left: 2rem; */
    bottom: 2rem;
    height: 3rem;
    /* width: 3rem; */
    z-index: 999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    right: 0;
    text-decoration: none;
    border-radius: 5px 0 0 5px;
    }
    .call-btn{
    background: #1d87d9;
    /* left: 2rem; */
    }
    .whats-btn{
    background:rgb(0, 151, 96);
    transform: translateY(-50px);
    /* right: 2rem; */
    }
    .insta-btn{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    transform: translateY(-100px);
    /* width: 100px; */
    }
    .insta-btn img{
    height: 22px;
    filter: invert(100%) sepia(0%) saturate(1503%) hue-rotate(327deg) brightness(105%) contrast(94%);
    }
    

    /* ====================popup================ */

/* Popup container */
.form-popup {
    display: none;
    position: fixed;
    top: 1%;
    left: 0;
    /* transform: translate(-50%, -50%); */
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    height: 500px;
    /* margin-top: 10px; */
    margin: auto;
    right: 0;
    
    h2{
        font-size: 18px;
        text-align: center;
        color: #172077;
    }
  
    .frm_select{
      padding: 12px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
      width: 100%;
      transition: border-color 0.3s ease;
      margin-bottom:10px
      
    }
  }
  
  
  
  
  .popup_modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  }
  
  .popup_content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #ccc;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .close_btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close_btn:hover,
  .close_btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .form_group {
    margin-bottom: 15px;
  }
  
  .form_group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .form_group input,
  .form_group textarea {
    width: 100%;
    padding: 10px;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .submit_btn {
    background-color: #28a745;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }
  
  .submit_btn:hover {
    background-color: #218838;
  }
  
  .close_popup {
    background-color: #dc3545;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
  }
  
  .close_popup:hover {
    background-color: #c82333;
  }
  
  
  /* Form container */
  .form-container {
    display: flex;
    flex-direction: column;
   
  }
  
  /* Buttons */
  button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
  }
  
  button[type="submit"] {
    background-color: #4CAF50;
  }
  
  button[type="submit"]:hover {
    background-color: #45a049;
  }
  
  .cancelbtn {
    background-color: #f44336;
  }
  
  .cancelbtn:hover {
    background-color: #d73833;
  }
  
  /* Input fields */
  input[type="text"], input[type="email"],textarea[type="text"] {
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
    transition: border-color 0.3s ease;
  }
  
  input[type="text"]:focus, input[type="email"]:focus,textarea[type="text"]:focus {
    border-color: #4CAF50;
    outline: none;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .form-popup {
      padding: 20px;
    }
  
    button {
      font-size: 14px;
      padding: 10px;
    }
  
    input[type="text"], input[type="email"] {
      font-size: 12px;
    }
  }
  
  .bnr_img-1 img {
      width:2000px; 
      height:300%;
      object-fit: cover; 
      border-radius: 10px;
  }
  h2, h3 {
    color: #333;
  }
  
  .list-unstyled li {
    font-size: 1rem;
  }
  
  .bi-check-circle-fill {
    margin-right: 8px;
  }
  
  
  .aply_btn{
    background: linear-gradient(180deg, #2ccf5e 0%, #104d24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    text-transform: capitalize;
    padding: 0px 20px;
    color: white;
    font-size: 15px;
    border: none;
    width: 150px;
    height: 40px;
  
}

/* ====================popup================ */
