:root{
    --text-color: #F19C1A;
    --white-color: #fff;
    --black-color: #333;
    --text-light-color: #4d4d4d;
    --about-bg-color: #f2e9f6;
    --footer-bg-color: #7B1FA2;
}

/*================================================
01 - import fonts
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

/*================================================
02 - global css
==================================================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;

}
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1;
    overflow: hidden;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

.container{
    max-width: 114rem;
    margin: 0 auto;
}
.heading{
    font-size: 3.2rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1rem;
    line-height: 1.6;
    color: var(--black-color);
}

.description{
    font-size: 1.6rem;
    line-height: 1.7;
    text-transform: none;
    letter-spacing: 1.2px;
    color: var(--text-light-color);
}

.btn:link,
.btn:visited{
    padding: 1.6rem 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--text-color);
    color: var(--white-color);
    border-radius: 25rem;
    transition: all 0.3s linear;
}
.btn:hover,
.btn:active{
    background-color: var(--white-color);
    color: var(--black-color);
    box-shadow: inset 0 0 0 4px var(--text-color) ;
}

.grid{
    display: grid;
}
.grid-cols-2{
    grid-template-columns: repeat(2,1fr);
}
.grid-col-2{
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
}

/*================================================
03 - header css
==================================================*/
.home-bg{
    background-image: url(../img/hero/hero-bg1.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70rem; 
}

.header{
    position: relative;
    height: 9rem;
    padding: 2rem 0;
    z-index: 1;
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo{
    height: 3.5rem;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    list-style: none;
}

.navbar .main-nav-link{
    font-size: 1.6rem;
    padding: 0.5rem 0rem;
    padding-right: 2.4rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--white-color); 
}

.navbar .main-nav-link:active,
.navbar .main-nav-link:hover{
    color: var(--text-color);
}

/* MOBILE-NAVIGATION */

.btn-mobile-nav{
    border: none;
    background: none;
    cursor: pointer;
    display: none;
}

.icon-mobile-nav{
    height: 4.8rem;
    width: 4.8rem;
    color: var(--white-color);
}

.icon-mobile-nav[name="close-outline"]{
    display: none;
}

/*================================================
04 - hero section css
==================================================*/
.hero{
    position: relative;
    padding: 6.4rem 0;
}

.hero .grid{
    padding-top: 4.8rem;
}
.sub-heading{
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: 1.2px;
    color: var(--text-color);
  
}
.main-heading{
    font-size: 5.2rem;
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 2.4rem;
}
.main-heading span{
    text-transform: uppercase;
}

.hero-des{
    font-size: 2rem;
    text-transform: none;
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 4.8rem;
}
.hero-img{
    margin-top: -4.8rem;
}

.hero-img img{
    max-width: 100%;
}

/*================================================
05 - band section css
==================================================*/
.our-band{
    padding: 9.6rem 0;
}
.heading-box{
    margin-bottom: 4.8rem;
}
.band-logo{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    justify-content: center;
    align-items: center;
    column-gap: 3.2rem;
    row-gap: 6.4rem;
}
.band-logo a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.band-logo img{
    max-width: 100%;
    max-height: 10.5rem;
    opacity: 80%;
}

/*================================================
06 - about section css
==================================================*/
.about{
    padding: 8.4rem;
    background: var(--about-bg-color);
}
.about-2{
    margin-bottom: 20%;
}
.description{
    color: var(--text-light-color);
}
.about .description:last-child{
    margin-top: 3.2rem;
}
.about .about-img{
   max-width: 100%;
}

/*================================================
07 - client section css
==================================================*/
.our-client{
    padding: 9.6rem 0;
}
.our-client .band-logo img{
    justify-self: center;
}

/*================================================
08 - faq css
==================================================*/
.faq{
    padding: 9.6rem 0;
}
.faq-box .heading-box{
    margin-bottom: 6.4rem;
}
.faq-box .heading-box .heading{
    font-size: 4rem;
    color: var(--black-color);
}

.accoridian{
    background-color: var(--white-color);
    color: var(--black-color);
    cursor: pointer;
    width: 100%;
    padding: 1.8rem;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
    text-align: left;
    transition: all 0.2s ease-in;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);

}

.accoridian i{
    font-size: 1.6rem;
    margin-right: 1rem;
    color: var(--text-color);
}

.accoridian::after{
    content: '\002B';
    color: var(--black-color);
    float: right;
    margin-left: 5px;
}

.active .accoridian::after{
    content: "\2212";
    color: var(--white-color);
}

.panel{
    padding: 0 1.8rem;
    margin-bottom: 1.6rem;
    max-height: 0;
    background-color: var(--gray-color);
    overflow: hidden;
    transition: all 0.2s ease-out;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);

}  

.faq_content_box.active .panel{
    max-height: 22rem;
    padding-top: 2rem;
}

.faq_content_box.active .accoridian{
    background: var(--text-color);
    color: var(--white-color);
}
.faq_content_box.active .accoridian i{
    color: var(--white-color);
}

.panel p{
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: justify;
    text-transform: none;
    padding: 1.6rem;
    padding-top: 0;
    color: var(--text-light-color); 
}

.faqs-image .faq-img-01{
    width: 100%;
}


/*================================================
09 - footer area css
==================================================*/
.footer{
    position: relative;
    background: var(--footer-bg-color);
    padding: 2rem 0;
}

.footer .grid{
    display: flex;
    justify-content: center;
    column-gap: 6.4rem;
    margin-bottom: 4.8rem;
    padding-top: 3.2rem;
}

.footer-logo .logo{
    max-width: 35rem;
    margin-bottom: 3.2rem;
}
.footer .social-link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}
.footer .social-link .fa-brands{
    font-size: 2.8rem;
    color: var(--white-color);
    cursor: pointer;
}

.footer .social-link .fa-brands:hover{
    transform: translateY(-1rem);
    color: var(--text-color);
}
.footer-heading{
    font-size: 2.4rem;
    line-height: 1.6;
    color: var(--white-color);
    margin-bottom: .5rem;
}
.address{
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--white-color);
    margin-bottom: .5rem;
}
.address-col .address-link{
    text-transform: none;
    font-size: 1.8rem;
    color: var(--text-color);
}
.copyright{
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--white-color);
    border-top: .1rem solid var(--text-color);
    padding: 1.2rem 0;
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
}
.copyright a{
    color: var(--text-color);
}

.home-back-btn{
    position: fixed;
    top: 85%;
    right: 2%;
    width: 6.4rem;
    height: 6.4rem;
    padding: 1.6rem;
    background: var(--text-color);
    box-shadow: -3px 8px 16px -9px rgba(0,0,0,0.36);
    text-align: center;
    z-index: 10000000;
    border-radius: 25rem;
    cursor: pointer;
}
.home-back-btn .arrow-up-btn{
    font-size: 3.2rem;
    color: var(--white-color);
}


