@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;
    /* margin-bottom: var(--padding_1); */
    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;
  }
  
.sidebar a {
    padding: 0px 8px 8px 32px;
    /* border-bottom: 1px solid black; */
    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;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}
.sidebar::-webkit-scrollbar{
    display: none;
} 
.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  */
.about{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.705), rgba(0, 0, 0, 0.918)), url('image/img-8.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 ;
    /* text-shadow: 1px 1px 0 white, 2px 2px 0 #D84801, 3px 3px 0 #D84801, 4px 4px 0 #D84801; */
}

/* END OF ABOUT SECTION ////////////////////////// */

/* BEGGINING OF SECTION-1 ///////////////////////////// */
.whole-page{
    background-color: white;
    /* padding: 0 1rem; */
    margin: -3rem auto 2rem;
    max-width: 80rem;
    z-index: 4;
    border-top: 4px solid #D84801;
    
}
.whole-page-margin{
    margin: 0 2rem;
}

.section-1{
    display: grid;
    grid-template-areas: 'box1 box2';
    max-width: 80rem;
    justify-content: space-between;
    padding: 2rem 1rem;
    gap: 3rem;
}
.section-1__box1{
    grid-area: box1;
}
.section-1__box2{
    grid-area: box2;
}
.company{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 80ch;
}
.company__head{
    font-size: clamp(2rem, 5vw, 2.7rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: var(--head__font);
    /* position: relative; */
    text-align: center;
}
.company__head span{
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    text-transform: inherit;
    position: relative;
    color: var(--primary_color_1);
}
.company__head span::after{
    content: '';
    width: 100%;
    position: absolute;
    height: 4px;
    background-color: black;
    left: 0;
    bottom: .3rem;
}
.company__text{
    line-height: 1.6;
    font-size: clamp(0.8rem, 1.9vw, 1rem);
    margin-bottom: 1rem;
    min-width: 50ch;
    padding-left: 1rem;
}
.company__text span{
    font-weight: bold;
    color: #D84801;
}
.aside{
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 5rem;
    gap: 1rem;
    margin-top: 6rem;
    max-width: 35ch;
    background-color: #ADD8E6;
    padding: 2rem ;
    height: fit-content;
    box-shadow: -5px 5px 0 #251E1E;
    transition: 400ms ease-in-out;
}
.aside:hover{
    box-shadow: -5px 5px 0 #D84801;
    /* transform: translateX(5px) translateY(-5px); */
}
.aside__head{
    font-family: var(--head__font);
    font-size:clamp(1.1rem, 2.5vw, 1.4rem);
}
.aside__text{
    line-height: 1.4;
    font-size: clamp(.8rem, 1.9vw, 1rem);
}
.aside__btn{
    padding: var(--btn_padding);
    background-color: #251e1e9d;
    border: none;
    color: white;
    font-weight: 600;
    text-transform: capitalize;
    transition: 300ms ease-in-out;
}
.aside__btn:hover{
    background-color: #D84801;
  
}
@media (max-width:1100px) {
    .company{
        max-width: none;
    }
    .company__text{
        min-width: min-content !important ;
    }
    .section-1{
        grid-template-areas: 'box1' 'box2';
        gap: 1rem;
        max-width: none;
    }
    .aside{
        display: none;
    }
    
}
@media (max-width:550px) {
    .section-1{
        padding: 1rem 0;
    }
    
}
/* END OF ASIDE ////////////////////////////// */

/* BEGGINING OF CARGO ////////////////////////// */
.cargo{
    background-color: #D84801;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    position: sticky;
    top: 4rem;
}
.cargo__text{
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    font-weight: 600;
    color: white;
}
.cargo__button{
    display: flex;
    gap: 2rem;
}
.cargo-btn{
    padding: var(--btn_padding);
    background-color: #251e1e9d;
    border: none;
    color: white;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 600;
    transition: 400ms ease-in-out;
    text-transform: capitalize;
}
.cargo-btn:hover{
    box-shadow: 4px 4px 0 white;
    transform: translateX(-4px) translateY(-4px);
    background-color: var(--primary_color_3);
    
}
@media (max-width:900px) {
    .cargo{
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
}
@media (max-width:500px) {
    .cargo__text{
        text-align: center;
    }
    .cargo__button{
        /* flex-direction: column; */
        gap: .6rem ;
        align-items:center ;
    }
}

/* END OF CARGO SECTION ///////////////////// */


/* BEGGINING OF SAFETY SECTION ///////////////// */
.safety{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}
.safety__box{
    display: grid;
    grid-template-areas: 'box1 box2';
    align-items: center;
    grid-auto-rows: minmax(13rem,16rem), 1fr;
    gap: 1rem;
    background-color: #ADD8E66b;
    box-shadow: 5px 5px 0 black;
}
.safety-box1{
    grid-area: box1;
}
.safety-box2{
    grid-area: box2;
}
.safety__img{
    width: 100%;
    height: auto;
}
.safety__desc{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem 1rem 1rem;

}
.safety__head{
    font-size: 2.2rem;
    font-weight: 600;
    font-family: var(--head__font);
    text-transform: uppercase;
}
.safety__text{
    line-height: 1.5;
    font-size: clamp(0.8rem, 2vw, 1rem);
}
.safety__text span{
    color: var(--primary_color_1);
    font-weight: 600;

}
@media (max-width:900px) {
    .safety__box{
        grid-template-areas: 'box1' 'box2';
    }  
    .safety__img{ 
        object-fit: cover;
         object-position: top;
        height: 30rem;
    } 
}
@media (max-width:500px) {
    .safety{
        padding: 2rem 0;
    }
    .safety__img{
        height: auto;
        width: 100%;
    }
    
}
/* END OF SAFETY 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;
    }
    
}


/* AT LAST, I'M DONE ////////////////////////////// */

/* 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);
}