@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Raleway&family=Work+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anek+Malayalam&family=Quicksand&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



:root{
    --primary_color_1:#D84801;
    --primary_color_2:#ADD8E6;
    --primary_color_3:#251E1E;
    --primary_color_4:#D3D3D3;
    --padding_1:1rem;
    --padding_2:1.5rem;
    --padding_3:2rem;
    --btn_padding:0.7rem 2rem;
    --head__font:'Raleway';
}
p::selection {
    background-color:#D84801 ;
    color: white;
  }  
h2::selection {
    background-color:#D84801 ;
    color: white;
}  
span::selection {
    background-color:#D84801 ;
    color: black;
} 
div::selection {
    background-color:#D84801 ;
    color: white;
} 
h4::selection {
    background-color:#D84801 ;
    color: white;
} 
h3::selection {
    background-color:#D84801 ;
    color: white;
  }    
a::selection {
    background-color:#D84801 ;
    color: white;
}
button::selection {
    background-color:white ;
    color: black;
}
.cargo p::selection {
    background-color:white;
    color: black;
}
li::selection {
    background-color:#D84801 ;
    color: white;
  }
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}
.top-gradient{
    width: 100%;
    height: .7rem;
    background: linear-gradient(90deg, rgba(166,33,33,1) 0%, rgba(0,0,0,1) 100%);
}
.navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 90;
    background-color: white;
    box-shadow: 1px 2px 5px black;

}
.navbar__logo{
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: 2rem;
    padding: 0.3em 0;
    font-family: 'Raleway';
}
.logo-text{
    font-family: 'Raleway';
}
.navbar__menu{
    display: inline-flex;
    gap: var(--padding_2);
    list-style: none;
    padding-top:var(--padding_1) ;
}
.navbar__list{
    text-transform: capitalize;
    transition: 300ms ease-in-out;

}
.navbar__list:hover{
    color: var(--primary_color_1);
    
}
.navbar__link{
    text-decoration: none;
    color: black;
    font-weight: 600;
}
.active{
    color: var(--primary_color_1);
}
.sidebar {
    height: 0;
    width: 100vw;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: nowrap;
    background-color: var(--primary_color_2);
    overflow-y: scroll;
    transition: 1s ease-out;
    box-shadow: 3px 3px 5px black;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}
.sidebar::-webkit-scrollbar{
    display: none;
} 
  .sidebar a {
    padding: 0px 8px 8px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    font-weight: 600;
    color: black;
    display: block;
    margin-top: 2rem;
    transition: 0.3s;
  }
  .sidebar a:hover {
    color:var(--primary_color_1) ;
  }
.openbtn{
    display: none;
    cursor: pointer;
    background-color:transparent;
    color: var(--primary_color_1);
    font-size:clamp(1.8rem, 6vw, 2.5rem);
    border: none;
}
.closebtn {
    font-size: 2.5em;
    position: absolute;
    top: 5px;
    border: none;
    color: var(--primary_color_1);
    padding: 10px 25px;
    background-color: transparent;
    right: 5px;
}
@media (max-width:900px) {
    .navbar{
        justify-content: space-between;
        padding: 0 1rem;
    }
    .navbar__menu{
        display: none;
    }
    .sidebar{
        display: hidden;
    }
    .openbtn{
        display: block;
    }
    
}
/* END OF NAVBAR DESIGN ///////////////////////*/

/* BEGGINING OF ABOUT /////////////////////// */
.about{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.705), rgba(0, 0, 0, 0.918)), url('image/img-11.jpg');
    background-attachment: fixed;
    background-size: 100%;
}
.about__text{
    font-family: var(--head__font);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    color: var(--primary_color_2);
    text-transform: capitalize;
    padding: 3rem 1rem 5rem ;
}

/* END OF ABOUT SECTION ////////////////////////// */

/* BEGGINING OF MAP ////////////////////////////// */

.map{
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 3rem;  
    padding: 1.5rem 1rem 2rem;
    background-color: white;
    position: relative;
    margin:-3rem auto 0;
    border-top: 4px solid #D84801;

}
.map-box{
    background-color: white;
    max-width:80rem;
    margin:0 auto;
}
.map-margin{
    margin: 0 2rem;
}
.map__head{
    font-family: var(--head__font);
    font-size: clamp(1.2rem, 5vw, 2.7rem);
    text-transform: capitalize;
    position: relative;
}
.map:hover .map__head span{
     color: #ADD8E6;
}
.map__head span{
    font-family: inherit;
    font-size: inherit;
    text-transform: inherit;
    text-shadow: inherit;
    color: var(--primary_color_1);
    transition: 500ms ease-in-out;
    position: relative;
}
.map__head span::after{
    content: '';
    width: 0%;
    height: 4px;
    background-color: black;
    position: absolute;
    bottom: 2px;
    left: 0;
    transition: 400ms ease-in-out ;
}
.map:hover .map__head span::after{
    width: 100%;
    

}
.map__image{
    filter: drop-shadow(1px 1px 0 #251E1E);
    width: 70%;
    height: auto;
    cursor: pointer;
    border-radius: 20% 20% 0 0;
    align-self: center;
}
@media (max-width:900px) {
    .map__image{
        width: 90%;
    }
    
}
@media (max-width:500px) {
    .map__image{
        width: 100%;
    }
    .map__head{
        text-shadow: none;
    }
    
}
/* BEGGINING OF LOCATION SECTION ///////////////////////// */

.location-section{
    display: grid;
    grid-template-areas: 'box1 box2 box3' 'box4 box5 box6';
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem;
    grid-auto-rows: 1fr 1fr 1fr ;
    grid-auto-columns: 1fr 1fr;

}
.location-box1{
    grid-area: box1;
}
.location-box2{
    grid-area: box2;
}
.location-box3{
    grid-area: box3;
}
.location-box4{
    grid-area: box4;
}
.location-box5{
    grid-area: box5;
}
.location-box6{
    grid-area: box6;
}
.location{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem;
    border: 1px solid black;
    box-shadow: 4px 4px 0 #251E1E;
    background-color: #ADD8E650;
}
.location__head{
    font-family: var(--head__font);
    font-size:clamp(1.1rem, 3vw, 1.4rem);
    text-transform: uppercase;
}
.location__desc{
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--head__font);
    color: #D84801;
}
.location__text{
    font-size: clamp(.7rem, 2.5vw, 1rem);
}
@media (max-width:900px) {
    .location-section{
        grid-template-areas: 'box1 box2' 'box3 box4' 'box5 box6' ;
    }
}
@media (max-width:500px) {
    .location-section{
        grid-template-areas: 'box1' 'box2' 'box3' 'box4' 'box5' 'box6';
    }
    
}
/* END OF LOCATION SECTION //////////////////////// */



/* BEGGINING OF FOOTER SECTION////////////////////////////////// */

.foot{
    /* padding: 4rem  2rem 2rem; */
    background-color: #000;

}
.footer{
    display: grid;
    padding: 4rem  2rem 2rem;
    /* display: flex; */
    justify-content: space-around;
    background-color: #000;
    border-top: 2px solid #ADD8E6;
    gap: 2rem;
    grid-template-areas: 'box1 box2 box3';

}
.footer__box1{
    grid-area: box1;
}
.footer__box2{
    grid-area: box2;
}
.footer__box3{
    grid-area: box3;
}
.footer__head{
    max-width: 20ch;
    text-transform: uppercase;
    font-family: var(--head__font);
    font-size:clamp(1.3rem, 2.5vw, 1.8rem) ;
    border-right: 1px solid #ADD8E6;
    align-self: center;
    padding: 2rem 0;
    color: #fff;
}
.footer__head span{
    font-family: inherit;

    font-size: inherit;
    color: var(--primary_color_1);
}
.footer-info{
    display:flex ;
    flex-direction: column;
    gap: 2rem;
    
}
.footer-info__head{
    text-transform: uppercase;
    font-family: var(--head__font);
    font-weight: 600;
    font-size:clamp(1.1rem, 2vw, 1.4rem);
    color: #D84801;
    position: relative;
    /* border-bottom: 3px solid #251E1E; */
}
/* .footer-info__head::after{
    content: '';
    height: 3px;
    width: 0;
    background-color: black;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 400ms ease;
}
.footer-info:hover .footer-info__head::after{
    width: 50%; */

.footer__menu{
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}
.footer-info__menu{
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.footer-info__list{
    text-decoration: none;
    list-style: none;
}
.footer-info__link{
    text-decoration: none;
    color:white;
    text-transform: capitalize;
    font-weight: 600;
    font-size:clamp(0.7rem, 1.5vw, 0.9rem);
    transition: 100ms ease-in-out;
}
.footer-info__link:hover{
    color: #D84801;
    text-decoration: underline black;
}
.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-contact__head{
    text-transform: uppercase;
    font-family: var(--head__font);
    font-weight: 600;
    font-size:clamp(1.1rem, 2vw, 1.4rem);
    color: #D84801;
}
.footer-contact__menu{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact__text{
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--head__font);
    font-variant: small-caps;
    color: #fff;
}
.footer-contact__info{
    font-size:clamp(0.7rem, 1.5vw, 0.9rem);
    color: #fff;
    font-weight: 600;
}
.footer-contact__icon{
    color: #D84801;
    margin-right: 7px;
}
.hr-2{
    margin: 1rem auto;
    max-width: 85%;
    border-color: 2px solid #ADD8E6;
    border: none;
    background-color: #ADD8E6;
    padding: .02rem;
}
.footer-copyright{
    display: flex;
    justify-content: space-around;
    padding: 0rem 2rem 1rem ;
    background-color: #000;
}
.footer-copyright__text{
    text-transform: capitalize;
    font-size:clamp(.7rem, 2vw, .9rem);
    align-self: center ;
    color: #fff;
}
.footer-copyright__text span{
    font-weight: 600;
    text-transform: uppercase;
    font-size: inherit;
}
.footer-copyright__icon{
    display: flex;
    gap: 1rem;
    justify-content: space-around;
}
.footer__icon{
    font-size:clamp(0.8rem, 1vw, 1.2rem) ;
    color: var(--primary_color_1);
    background-color: #251E1E;
    padding: .5rem;
    flex: 1 1 3rem;
}
@media (max-width:900px) {
    .footer{
        padding-top: 1rem;
        grid-template-areas: 'box1 box1' 'box2 box3';
        grid-auto-columns: 1fr 1fr;
        grid-auto-rows: auto 1fr;
    }
    .footer__head{
        max-width: 60ch;
        border: none;
        border-bottom: 1px solid black;
    }
    .footer-info__menu2{
        display: none;
    }
}
@media (max-width:400px) {
    .footer{
        grid-template-areas: 'box1' 'box2' 'box3';
        padding-top: 1rem;
    }
    
}


/* PHEW, END OF PAGE ///////////////////////////////// */


/* BACK TO TOP BUTTON ////////////////////////////// */
#myBtn {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
    z-index: 99;
    font-size: 1.5rem;
    border: none;
    outline: none;
    background-color: #D84801;
    color: white;
    cursor: pointer;
    padding: 1rem;
    transition: 200ms ease-in-out;
}  
  #myBtn:hover {
    background-color:#D84801 ;
    box-shadow: 0px 0px 4px 1px #00000091;
    transform: scale(1.01);
  }
  /* ALL RIGHT GUYS, IT'S A WRAP FOR I AND MY BOY /////////////////////////// */