*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

:root{
    --theme-yellow: #ff9900;
    --theme-gray: #333333;
    --theme-whilte: #ffffff;
    --theme-darkgray: #222222;
    --theme-darkbrown: #200101;
}

::-moz-selection{ /* Code for Firefox */
    color: var(--theme-gray);
    background: var(--theme-yellow);
}
  
::selection{
    color: var(--theme-gray);
    background: var(--theme-yellow);
}

.title-bar{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 0 50px;
    background: var(--theme-gray);
    z-index: 999;

    box-shadow: 0px 3px 10px 0px rgba(51,51,51,0.75);
    -webkit-box-shadow: 0px 3px 10px 0px rgba(51,51,51,0.75);
    -moz-box-shadow: 0px 3px 10px 0px rgba(51,51,51,0.75);
}

.logo-container{
    width: 180px;
    height: auto;
    transition: 400ms ease-in-out;
}

.logo-container:hover .org-logo{
    width: 96%;
    height: auto;
}

.org-logo{
    width: 100%;
    height: auto;
}

.nav-container{
    position: absolute;
    right: 50px;
    top: 62%;
    height: 80px;
    background: var(--theme-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    border-radius: 50px;

    box-shadow: 0px 3px 10px 0px rgba(51,51,51,0.75);
    -webkit-box-shadow: 0px 3px 10px 0px rgba(51,51,51,0.75);
    -moz-box-shadow: 0px 3px 10px 0px rgba(51,51,51,0.75);
}

.nav-container::before{
    position: absolute;
    content: '';
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 50px 50px 0 0;
    background: var(--theme-whilte);
    opacity: 0.2;
    z-index: 888;
}

.sm-bar{
    position: absolute;
    display: flex;
    gap: 6px;
    list-style: none;
    z-index: 999;
    top: -36px;
    left: calc(50% - 109px);
}

.sm-item{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: var(--theme-gray);
    display: flex;
    align-items: center;
    justify-content: center;    
}

.sm-link{
    color: var(--theme-yellow);
    font-size: 1.2rem;
    transition: 250ms ease-in-out;
}

.sm-link:hover{
    font-size: 1.6rem;
    color: var(--theme-yellow);
}

.nav-bar{
    display: flex;
    gap: 50px;
    color: var(--theme-gray);
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 999;
}

.nav-bar .fas{
    background: none;
}

.nav-link{
    color: var(--theme-gray);
    transition: 400ms ease-in-out;
}

.nav-link:hover{
    color: var(--theme-darkbrown);
    text-shadow: 0 0 1px var(--theme-gray);
}

.hamburger{
    display: none;
}

.hm-container{
    width: 100%;
    background: var(--theme-gray);    
}

.hm-slider{
    width: 100%;
}

.carousel-item{
    height: 100vh;
    position: relative;
    background-position: center;
    background-size: cover;
}

.container{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 50px;
}

.hm-about{
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.section-hdg{
    color: var(--theme-yellow);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3rem;
}

.hm-about p, .vision p, .mission p{
    color: var(--theme-whilte);
    font-size: 1.4rem;
    line-height: 2.2rem;
    text-align: center;
}

.hm-about img{
    width: 60%;
    height: auto;
    pointer-events: none;
}

.hm-services{
    width: 100%;
    padding-bottom: 100px;
}

.section-hdg-box{
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Owl Carousel Styling*/

.item img{
    height: 280px;
}

.owl-carousel{
    padding: 10px;
    background: var(--theme-darkgray);
}

.item{
    padding: 10px;
}

.card-body{
    background: var(--theme-yellow);
    font-family: 'Poppins', sans-serif;
    color: var(--theme-gray);    
}

/*Owl Carousel Styling*/

footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--theme-darkgray);
    color: var(--theme-whilte);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.p-for-pin{
    color: var(--theme-yellow);
}

.ftr-sec-head{
    color: var(--theme-yellow);
}

.ftr-link{
    color: var(--theme-whilte);
}

.ftr-link:hover{
    text-shadow: 0 0 1px var(--theme-whilte);
}

.d-flex .fas{
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    background: #111111;

    display: flex;
    align-items: center;
    justify-content: center;
}

.location{
    width: 100%;
    height: auto;
    transition: 400ms ease-in-out;
    cursor: pointer;
}

.location:hover{
    transform: scale(0.95);
    opacity: 0.9;
}

.ftr-sm-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
}

.ftr-sm-icon:hover{
    transition: 400ms ease-in-out;
    color: #fafafa;
}

.chat-container{
    width: 110px;
    height: 110px;
    right: 20px;
    bottom: 100px;
    background: var(--theme-gray);
    border: 2px solid #111111;
    transition: 400ms ease-in-out;
}

.chat-container:hover{
    border: 2px solid var(--theme-yellow);
    background: #111111;
    -webkit-box-shadow: 4px 4px 20px 2px rgba(255,153,0,1);
    -moz-box-shadow: 4px 4px 20px 2px rgba(255,153,0,1);
    box-shadow: 4px 4px 20px 2px rgba(255,153,0,1) inset;

}

.chat-container:hover .chat{
    background: var(--theme-gray);
    font-size: 76px;
    color: var(--theme-yellow);
    opacity: 0.8;
}

.chat{
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    background: #111111;
    font-size: 80px;
    color: #cccccc;
    transition: 400px ease-in-out;
}

.ftr-bottom{
    background: var(--theme-darkgray);
}

.ftr-bottom::before{
    position: absolute;
    content: '';
    width: 70%;
    height: 4px;
    border-radius: 50%;
    top: 0;
    left: 15%;
    background: #111111;
}

.kayfold{
    height: 16px;
    width: 16px;
    border-radius: 3px 3px 3px 3px;
    background: #EEE2DC;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.kayfold:hover{
    transform: rotate(30deg);
}

.kayfold:active{
    transform: rotate(-30deg);
}

@media screen and (max-width: 1150px){
    .title-bar{
        align-items: center;
    }

    .hamburger{
        position: relative;                
        display: flex;
        flex-direction: column;
        gap: 4px;
        height: 30px;
        width: 40px;
        cursor: pointer;                
        background: var(--theme-yellow);
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        transition: 0.4s ease-in-out;
        z-index: 1500;
    }

    .bar{
        position: relative;
        width: 30px;
        height: 3px;
        background: var(--theme-darkgray);
        transition: 0.4s;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-7px) rotate(-45deg);
    }

    .hamburger:hover{
        background: var(--theme-darkgray);
    }

    .hamburger:hover .bar{
        background: var(--theme-yellow);
    }

    .nav-container{
        left: -100%;
        top: 100px;
        width: 100%;
        height: 300px;
        padding: 0;
        transition: 400ms ease-in-out;
    }

    .nav-container.active{
        left: 0;
    }

    .nav-container::before{
        height: 20%;        
    }

    .nav-container::after{
        position: absolute;
        content: '';
        height: 20%;
        width: 100%;
        bottom: 0;
        left: 0;
        border-radius: 0 0 50px 50px;
        background: var(--theme-whilte);
        opacity: 0.2;
        z-index: 888;
    }

    .sm-bar{
        top: 4px;
    }
}

@media screen and (max-width: 768px){
    .sm-bar{
        left: calc(45% - 109px);
    }

    .nav-bar{        
        flex-direction: column;
        gap: 20px;
    }

    .nav-container{
        height: 550px;
        justify-content: left;
        padding: 0 100px;
    }

    .hm-about{
        padding: 100px 50px;
    }

    .hm-about p, .vision p, .mission p{
        font-size: 1.2rem;
        line-height: 2rem;
        text-align: left;
    }

    .hm-about img{
        width: 80%;
    }

    .ftr-sm-icon{
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px){

    .ftr-sm-panel{
        padding-bottom: 100px;
    }

}

@media screen and (max-width: 600px){
    .chat-container{
        bottom: 160px;
    }
}

@media screen and (max-width: 576px){
    .hm-about{
        padding: 100px 25px;
    }

    .section-hdg{
        font-weight: 600;
        font-size: 2rem;
    }

    .hm-about p, .vision p, .mission p{
        font-size: 1rem;
        line-height: 2rem;
    }
}

@media screen and (max-width: 470px){

    .ftr-sm-panel{
        padding-bottom: 130px;
    }

    .chat-container{
        bottom: 120px;
    }
}













