
/* Quick note: A = About, A-container = About container, O = Our Service, AC = Achievement, AQ = Qualification  */
/* ------------- Variables ----------------------- */

:root {
    --pry-color: #F04A23;
    --main-bg-color: #fff;
    --button-hover: #eb3b00;

}

/* ----------------------------------------------- */
/* ------------- Universal Styling ----------------*/
/* ----------------------------------------------- */

html {
     scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', verdana;
    font-family: 'Open Sans', verdana;
    
}

.header{
    background-color: #fff;
    height: 60px;
    top: 0;
    position: sticky;
    z-index: 5;
    margin-bottom: 10px;
}

button{
    padding: 10px 30px 10px 30px;
    margin-top: 20px;
    border-radius: 5px;
    color: #fff;
    background-color: var(--pry-color);
    border: 1px solid var(--pry-color) ;
    transition: 0.76s ease-in;
}
button:hover{
    color: #fff;
    background-color: var(--button-hover);
}

/* Page scroll animation for styling each section */
.reveal{
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 1.5s ease;
}
.reveal.active{
    transform: translateY(0px);
    opacity: 1;
}

body{
    background-color: #fff;
}

/* -----------Styling Header --------------- */

.logo{
    display: block;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #000;
}
.hamburger {
    display: block;
    cursor: pointer;
}
.navbar {
    background-color: #fff;
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    padding: 20px ;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
.nav-menu {
    position: fixed;
    left: 100%;
    top: 50px;
    /* flex-direction: column; */
    align-items:start ;
    background-color: var(--main-bg-color);
    width: 100%;
    text-align: left;
    transition: 0.5s;
    padding: 20px;
}
.nav-menu.active {
    left: 0;
}
.nav-item {
    margin: 15px 0;
}
.nav-menu .nav-item a .button{
    display:inline ;
}
.nav-link{
    color: #000;
}
.nav-link:hover{
    color: var(--button-hover);
}
.button{
    background-color: var(--pry-color);
    border-radius: 20px;
    text-align: center;
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    display: block;
    color: #fff;
    
}
.button:hover{
    background-color: var(--button-hover);
    color: white;
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

/* -----------Styling Introduction section-------- */

.A-container{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.A-Image img{
    display: none;
}
/* ---------------- FAQs Styling ----------------- */
        .FAQsHeader{
            background-color: var(--button-hover);
            padding: 30px;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 20px;
        }
        .FAQsHeader p{
            font-weight: lighter;
            margin-top: 10px;
        }
        .FAQs{
            margin: 20px;
        }
        .FAQsImage img{
            display: none;
            width: 150px;
            transform: rotate(20deg);
            margin-left: 100px;
        }
        .faq-title {
            cursor: pointer;
            padding: 15px;
            margin: 1px 0;
            background-color: #f1f1f1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            transition: max-height 0.4s ease-out, padding 0.6s ease-out;
            background-color: #f1f1f1;
            color: #5c5c5c;
            
        }
        .faq-answer li{
            list-style: inside;
        }
        .faq-answer.open {
            max-height: 800px;
            padding: 0 15px 15px 15px;
            margin: -1px 0 0 0;
        }
        section a{
            color: var(--pry-color);
            text-decoration: none;
        }

        .arrow {
            transition: transform 0.3s, color 0.3s;
        }
        .arrow.down {
            transform: rotate(0deg);
            color: black;
        }
        .arrow.up {
            transform: rotate(180deg);
            color: var(--pry-color);
        }

/* --------------Styling Footer section ---------- */

.footerCurveEdge{
    width: 100px;
    height: 100px;
    background-color: #000;
}
.footer:before{
    position: absolute;
    width: 100px;
    height: 100px;
    margin-top: -140px;
    content: '';
    z-index: 1;
    left: 0;
    background-color: #fff;
    border-bottom-left-radius: 100px;
}
.footer{
    background-color: #000000;
    color: #ffffff;
    padding: 40px;
    border-top-right-radius: 100px;
}
.footer h4{
    color: var(--pry-color);
    margin-top: 20px;
    margin-bottom: 5px;
    
}
.FooterLinks{
    display: grid;
    flex-wrap: wrap;
    justify-content: space-between;
}
.FooterLinks h2{
    color: #fff;
    font-size: 30px;
    font-weight: lighter;
}
.footer p{
    color: #ffffff;
    margin-bottom: 05px;
    font-weight: lighter;
}
.footer a{
    color: #ffffff;
}
hr{
    border-color: #4d4d4d;
}
.hr{
    text-align: center;
    padding: 20px 0 20px 0;
}
.hr p{
    padding: 20px 0;
}

.footerHR .hr p{
    
    color: #ffffff;
}
.F-newsLetter{
    margin-right: 15px;
}
.F-newsLetter input{
    width: 100%;
    padding: 12px;
    border: 1px solid var(--pry-color);
    border-radius: 5px;
    outline: none;
    color: black;
    font-size: 0.9rem;
    margin-right: 20px;
}
.subFooterLink{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}
.belowHr{
    text-align: center; 
}
.belowHr div{
    margin-top: 20px;
}
.copyright{
    font-weight: lighter;
}
/* ----------------------------------------------- */
/* ---------------- Tablet Styling ----------------*/
/* ----------------------------------------------- */

@media (min-width: 720px) {
    /* Navigation menu */
    .header{
        margin-bottom: 0px;
    }
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        justify-content: flex-end;
        background-color: transparent;

    }

    .hamburger {
        display: none;
    }

        .nav-item {
            margin: 0 10px;
        }

        .nav-link:hover{
            color: var(--button-hover);
        }
        .mainContainer{
            display: flex;
            align-items: center;
            justify-content: space-around;
            text-align: start;
        }
        
        .button{
                display: none;
        }
        .hr{
            padding: 20px 30px 20px 30px;
        }
        .FooterLinks{
            display: flex;
            flex-wrap: wrap;
            justify-content:space-between;
            margin: 0 30px 20px 30px;
        }
        .belowHr{
            text-align: center; 
            display: flex; 
            justify-content: space-between;
            margin: 0 30px;
        }
        .belowHr div{
            margin-top: 0px;
        }

}

@media (min-width: 900px){
        .FAQsHeader{
            padding: 50px 100px;
            font-size: 30px;
        }
        .FAQs{
            margin: 30px 100px;
        }
        .FAQsImage img{
            display: block;
        }


}

/* ----------------------------------------------- */
/* ---------------- Laptop Styling ----------------*/
/* ----------------------------------------------- */
@media ( min-width: 1000px) {

}

/**************** styling arrow for moving fast to top  ********/
#top, #top:link, #top:visited {
    position: fixed; 
    bottom: 10px; 
    right: 10px;
    opacity: 0.5;
    color: #ccc;
    cursor: pointer;
    transition: opacity 0.6s linear;
    text-align: center;
    text-decoration: none;
}
#top:hover, #top:active {
    color: #DD4F05;
    opacity: 1;
    text-decoration: none;
}

/**** hide pwa installation button ***/
#pwaInstallButton {
    display: none;
}

