@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@200;400;500;600;700;800;900&display=swap');


*{
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body{
   
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    
    
}



:root{
    /* =====CSS VARIABLES====== */

    --primary-color: #3b47a3;
    --brand-color: #52d5d6;
    --white-color: #ffffff;
    --color-bg-1: #42A0E4;
    --color-bg-2: #00C894;
    --color-black: #000;
    --btc-cta-color: #06C41C;


    --font-size-lg: 2rem;
    --font-size-md: 1.5rem;
    --font-size-lg: 1rem;

    --transition: 400ms;

    --container-width-lg: 80%;
    --container-width-md: 90%;
    --container-width-sm: 95%;


    --transition: all 400ms ease;
    
}

.container{
    width: var(--container-width-lg);
    margin: 0 auto;
}

section{
    padding: 6rem 0;
}



section h2{
    text-align: center;
    margin-bottom: 4rem;
}

h1,h2,h3,h4,h5{
    line-height: 1.2;
}

h1{
    font-size: 2.4rem;
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.6rem;
}

h4{
    font-size: 1.3rem;
}

a{
    color: var(--brand-color);
}



img{
    width: 100%;
    display: block;
    object-fit: cover;
}


.logo{
    width: 70px;
}


.btn{
    display: inline-block;
    background-color:var(--primary-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover{
    background: transparent;
    color: var(--primary-color);
    border: var(--primary-color) 1px solid;
    transition: var(--transition);

}

.btn-primary{
    background:  var(--primary-color);
    color: var(--color-black);
    border: none;
    padding: 0.4rem 2rem;
    color: var(--white-color);
    
}

.read{
    color: var(--white-color);
    font-weight: 400;
    font-size: 0.8rem;
    background: transparent;
    cursor: pointer;
}

.btn-read{
    background: var(--white-color);
    color: var(--color-black);
    padding: 1rem 1.9rem;
    font-weight: 500;
}


/*=========== Nav-Bar==============*/

nav{
    background-color: transparent; 
    width: 100vw;
    height: 5rem;
    position: fixed;
    top: 0;
    z-index: 11;
     
}

/* ===========Change Nav bar style on scroll using javascript============= */

.window-scroll{
    background: var(--brand-color);
    box-shadow: 0 1rem 2rem rgba(82, 213, 214, 0.2);
}

.nav-container{
   
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

nav button{
    display: none;
}

.nav-menu{
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a{
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.activeLink{
    color: var(--white-color);
   background-color: var(--white-color);
   padding: 0.3rem 1rem;
  
}


.nav-menu a:hover{
  color: blue; 
  font-size: 1.3rem;

}

header{
    position: relative;
    top: 2rem;
    overflow: hidden;
    margin-bottom: 5rem;
    height: 100vh;
}

.header-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    height: 100%;
}

.header-left h1{
    color: var(--primary-color);
    
}

.header-left p{
    margin: 1rem 0 2.4rem;
}

/* ========Core Values=============== */

.core{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    background: var(--white-color);
    padding: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-bottom: rgba(139, 176, 176, 0.9) 6px solid;
    cursor: pointer;
    transition: var(--transition);
}

.core:hover{
    border-bottom: var(--primary-color) 6px solid;
}


.core-values{
    background: var(--brand-color);
    position: relative;

}

.core-values h1{
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}



.core-right{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.core h5{
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    border-bottom: var(--primary-color) 1px solid;
}

.core p{
    font-size: 1rem;
    line-height: 1.6rem;
    color: var(--primary-color);
    
}



    /* ====Value List===== */



.value-list{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    transition: var(--transition);
    cursor: pointer;
}

.value-list i:hover{
    transform: translateY(-10px);
}

.value-list i{
    font-size: 2.5rem;
    margin-right: 1rem; 
    transition: var(--transition);  
}


/* ==========About Glamoroos=============== */



.about-head{
   text-align: center;
   margin-bottom: 5rem;
}

.about-head h6{
    color: var(--brand-color);
    font-size: 1.2rem;
}

.about-head h1{
    color: var(--primary-color);
    
}

.about--container{
   background: var(--white-color);
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
   margin-top: 2rem;
}

.about--us{
    display: flex;
    justify-content: center;
    align-items: center;
}

.abt--img{
  
    width: 25rem;
    height: 32rem;
   
}

.abt--text{
    width: 40rem;
   
}
.abt--text h3{
    text-align: center;
    font-size: 1.4rem;
    color: var(--primary-color); 
    margin: 1rem auto;
}

.abt--text p{
    width: 35rem;
    padding-left: 4rem;
}

.abt--text .btn-primary{
    margin: 1rem 4rem;
}


/* ============Services & Solutions=============== */

.services-head{
    text-align: center;
}

.services-head h6{
    color: var(--brand-color);
    font-size: 1.2rem;
}

.services-head h1{
    color: var(--primary-color);
    
}

.services-head p{
    margin-bottom: 3rem;
}

.container-services{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    
}

.services-solution{
    box-shadow: 0.3rem 2px 2rem rgba(95, 160, 235, 0.2);
    background: var(--white-color);
    border: 1px solid transparent;
    text-align: center;
    
}

.services-solution:hover{
    box-shadow: 0 0 5px rgba(225, 255, 255, 0.2);
}



.services-info{
    text-align: center;
    padding: 0.5rem;
}


.services-info h4{
    color: var(--color-bg-1);
    margin: 1.2rem 0;
    font-size: 1rem;
    

}

.services-info p{
    
    padding: 0.5rem;
    
}

/* =============Buisness Modal=============== */

.buisness-head{
    text-align: center;
}

.buisness-head h1{
    color: var(--primary-color);
}


.business-modal img{
    width: 5rem;
    background-color: rgba(0, 0, 0, 0.2);
    display: block;
    border-radius: 50%;
    padding: 1rem;
    margin: 1.7rem auto;
    transition: var(--transition);
    cursor: pointer;
}

.business-modal img:hover{
    transform: translateY(-10px);
}

.business-modal h4{
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--primary-color);
    text-align: center;
    cursor: pointer;
    
}

.buisness-box{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
   
}

/* =========Our Partners============ */

.swiper-slide img{
    width: 5rem;
}

.partners-container h2{
    color: var(--primary-color);
}

/* =======Call To Action============ */

.call-to-action{
    background-image: linear-gradient(rgba(0, 0, 0, 0.9),rgba(0, 0, 0, 0.2)), url(../images/driving-less.jpg);
    height: 80vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.call-action-head{
   text-align: center;

}

.call-action-head h3{
    padding-top: 6rem;
    font-size: 2.5rem;
    color: var(--white-color);
    width: 38.0625rem;
    margin: auto;
}

.call-action-head p{
    color: var(--white-color);
    font-weight: 400;
    width: 38.0625rem;
    margin: auto;
    padding: 1.8rem 0;
}

.btn-cta{
    background: var(--primary-color);
    padding: 0.8rem 3rem;
    border: var(--white-color) 2px solid;
}



/* =============Partners Section========== */

.partners-container{
    overflow-x: hidden;
}

.partner-logo{
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center; 
}

.partners-container{
    text-align: center;
}

.partners-container h6{
    color: var(--brand-color);
}



/* =============Testimonals Section========== */


.testimonial-container{
    overflow-x: hidden;
    position: relative;
    margin-bottom: 5rem;

}

.testimonial-container h2{
    color: var(--primary-color);
}

.testimonial-container p{
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
}

.testimonials{
    padding-top: 2rem;
}

.avatar{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
   
}

.testimonial-info{
    text-align: center;
}

.testimonial-body{
    background: var(--color-bg-1);
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    height: 13rem;
}

.testimonial-body p{
    color: var(--white-color);
}

.testimonial-body::before{
    content: '';
    width: 3rem;
    height: 3rem;
    display: block;
    background: linear-gradient( 135deg, transparent, 
    var(--color-bg-1), 
    var(--color-bg-1));
    position: absolute;
    left: 47%;
    top: -1.5rem;
    transform: rotate(45deg);
}


/* ==========Glamoroos News ============== */



.blog-container h2{
    color: var(--primary-color);
}

.blog-head p{
    text-align: center;
    color: var(--brand-color);
    font-weight: 700;
}

.blog-post{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-img img{
    height: 12rem;
}
.blog-info{
    text-align: center;
    box-shadow: 0 8px 1rem rgba(82, 213, 214, 0.2);
    cursor: pointer;
}

.blog-info h4{
    color: var(--color-bg-1);
    padding: 1.5rem 0  0.7rem;
    font-size: 1.4rem;
}

.blog-info a{
    text-decoration: underline;
    color: var(--color-bg-1);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.blog-info a:hover{
    font-size: 1.1rem;
    color: var(--primary-color);

}

.blog-info p{
    overflow-y: scroll;
    height: 5rem;
}

.blog-stars{
    color: #ebc340;
}

.blog-info, small{
    padding-bottom: 1.5rem;
}

/* =====================Faqs======================== */

.faqs{
    background: rgba(82, 213, 214, 0.2);
     box-shadow: inset 0 0 3rem rgba(82, 213, 214, 0.5);
}

.container-faq{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.faq{
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    height: fit-content;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 5px;
    cursor: pointer;
}

.faqs h2{
    color: var(--primary-color);
}

.faq h4{
    font-size: 1rem;
    line-height: 2.2rem;
    color: var(--primary-color);
}

.faq p{
    margin-top: 0.8rem;
    display: none;
}

.faq.open p{
    display: block;
    color: var(--primary-color);
    border-top: var(--primary-color) 1px solid;
    padding: 1.5rem 0;
}

.faq-icon{
    align-self: flex-start;
    font-size: 1.2rem;
    color: var(--primary-color);
}


/* ===============Contact Info================ */

.contact{
    background: rgba(196, 215, 215, 0.302);
    
}

.contact-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
    align-items: center;
}

.contact-left{
    position: relative;
}

.contact-right{
    margin-left: 2rem;
}

.contact-right h3{
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-right p{
    margin-bottom: 2rem;
}



.contact-btn{
    background: var(--primary-color);
    padding: 1rem;
    color: var(--white-color);
    border: none;
    outline: none;
    border-radius: 5px;
    
}

.contact-left img{
   margin-left: 1.5rem;
   margin-top: 1.5rem;
   box-shadow: 1px 1px 1rem 0 rgba(0, 0, 0, 0.9);
}

.contact-bg{
    content: '';
    width: 70%;
    height: 80%;
    display: block;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    z-index: -1;
}






/* ===========Whatsapp Icon================ */

.whatsapp-float{
    position: fixed;
    bottom: 40px;
    right: 20px;

}

.whatsapp-btn{
    width: 70px;
}


/* ===========Footer section================ */


footer{
    background: rgba(196, 215, 215, 0.302);
    background-size: cover;
    background-position: center;
    
}

.footer-divider{
    content: '';
    width: 100%;
    height: 0.3rem;
    background: var(--primary-color);

}

.footer-divider-1{
    content: '';
    width: 100%;
    height: 0.1rem;
    background: var(--primary-color);

}

.social-details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem;
}

.social-links i{
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links i:hover{
    background: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;

}

.details-text p{
    color: var(--primary-color);
    font-weight: 500;
}

.footer-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1.5rem;
}

.footer-logo img{
    width: 5rem;
    margin: auto;
   
}
.footer-logo h4{
    color: var(--primary-color);
    text-align: center;
}

.footer-logo p{
    color: var(--primary-color);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.usful-links p{
    margin-top: 2rem;
    text-align: center;
    color: var(--primary-color);
}
.usful-links a{
    color: var(--primary-color);
}
.usful-links h4{
    color: var(--primary-color);
    text-align: center;
}

.support p{
    margin-top: 2rem;
    text-align: center;
    
   
}

.support a{
    color: var(--white-color);
   
}
.support h4{
    color: var(--primary-color);
    text-align: center;
}

.footer-contact h4{
    color: var(--primary-color);
    text-align: center;
}

.contact-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.office-add:hover{
    box-shadow: 4rem 1px 2rem rgba(82, 213, 214, 0.2);
    cursor: pointer;
}

.office-add{
  background-color: var(--white-color);
  padding: 1rem; 
  border-radius: 10px; 
  width: 16rem;
}

.office-add i{
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: -10px;
}

.office-add h6{
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.phone-num{
    background-color: var(--primary-color);
    padding: 1rem;
    color: var(--white-color);
    margin: 1.4rem 0;
    border-radius: 10px;
}


.emails{
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
}



.copyright{
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    padding: 2rem 0;
}




/* ==============About Us Page=================== */

.about-container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.2)), url(../images/about-us.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    
}

.about-text{
  margin-top: 5rem;
}

.about-text h2{
    color: var(--white-color);
    text-align: center;
    padding-top: 4rem;
}

.about-text p{
    color: var(--white-color);
    font-size: 1rem;
    text-align: center;
}

.about-heading{
    color: var(--primary-color);
}




/* =============About us section============== */

.container-about{
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
   
    
}

.about-image img{
  margin-top: 3rem;
    border: var(--primary-color) 1px solid;
    padding: 1rem;
    
}



.about-solution li{
   
   list-style-type: disc;
   margin-left: 3rem;
   margin-top: 1.5rem;
   margin-bottom: 2rem;
}

.about-content span{
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
}

/* =====Our Commitment===== */

.commitment{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.our-commitment h3{
    margin: 4rem 0;
    text-align: center;
    color: var(--primary-color);
}

.commit-img{
    width: 7rem;
    margin: auto;
}

.commit-text h5{
    text-align: center;
    margin-top: 1rem;
}

.commit-text p{
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.commit-text p:hover{
    background: var(--primary-color);
    color: var(--white-color);
    padding: 1rem;
}


/* ===========vision-mission============== */

.vision-mission{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 3rem;
}

.mission{
    background-color: var(--color-bg-1);
    padding: 1.5rem;
}

.mission h3{
    margin-bottom: 1rem;
    color: var(--white-color);
}

.vision{
    background-color: var(--brand-color);
    padding: 1.5rem;
}
.vision h3{
    margin-bottom: 1rem;
    color: var(--white-color);
}


/* =============About Values============ */

.values-head{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(225, 255, 255, 0.2);
    padding: 1.5rem;
}

.value-icon{
    font-size: 3rem;
    color: var(--primary-color);
}

.value-cont h4{
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;

}

.choose-head h2{
    color: var(--primary-color);
}

.choose-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

/* =============Archivement=============== */
.archivment{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    padding-left: 2rem;
   
}

.archivment-box{
    border-right: var(--brand-color) 1px solid;
}
.archivment-icon{
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 1rem;
}

.archivment-icon i{
    font-size: 2.5rem;
    color: var(--primary-color);
}
.archivment-icon h5{
    font-size: 1.3rem;
    color: var(--primary-color);
}

.archivment-text{
    font-size: 0.9rem;
    
}


/* ===========Team=========== */



.team{
    background: var(--primary-color);
    box-shadow: inset 0 0 3rem rgba(82, 213, 214, 0.3);
   
}

.team h2{

    color: var(--white-color);
}
.team-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member{
    background: var(--color-bg-1);
    padding: 2rem;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-member:hover{
    background: transparent;
    border-color: var(--color-bg-1);

}

.team-member-img img{
    filter: saturate(0);
}

.team-member-img:hover img{
    filter: saturate(1);
}

.team-member-info * {
    text-align: center;
    margin-top: 1.4rem;
    color: var(--white-color);
}

.team-member-social {
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: var(--color-bg-1);
    border-radius: 1rem 0 0 1rem;
    box-shadow: -2rem 0 2rem rgba(59, 71, 163, 0.2);
    transition: var(--transition);
    
}
.team-member-social a{
    padding: 1rem;
    color: var(--white-color);
}

.team-member:hover .team-member-social{
    right: 0;
}


/* Our Facility */

.facility h2{
    color: var(--primary-color);
}

.facility-info{
    color: var(--primary-color);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.7rem;
}

.container-facility {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}



/* ==============Service Page=================== */

.service-container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.9),rgba(0, 0, 0, 0.2)), url(../images/driving-lession.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    margin-top: 5rem;
}



.service--text{
    color: var(--white-color);
    padding-top: 5rem;
    text-align: center;
}

.services--container h2{
    color: var(--primary-color);
}

.services-info-1{
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    place-items: center;
    margin-bottom: 4rem;
    border-radius: 10px;
}


.services-info-2{
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    place-items: center;
    margin-bottom: 4rem;
    border-radius: 10px;
    
   
}

.btn-service{
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0.4rem 1.4rem;
  border: var(--white-color) 2px solid;
  transition: var(--transition);
  cursor: pointer;
}


.btn-service:hover{
  background: transparent;
  color: var(--primary-color);
  border: var(--primary-color) 2px solid;
}

.service-txt{
    width: 30rem;
    margin-top: 1rem;
    margin-right: 3rem;
}

.service-txt h3{
    margin: 1.5rem 0;
    color: var(--primary-color);
}
.service-txt p{
    margin: 1.5rem 0;
   
}
   
   /*=====Services=====*/

   .service-top{
    background: rgba(196, 215, 215, 0.302);
    margin-top: 0;
    margin-bottom: 6rem;
   }

   .service-heading{
    margin: auto;
    text-align: center;
    margin-bottom: 1.2rem;
   }

   .service-heading h3{
    color: var(--primary-color);
    margin-bottom: 0.4rem;
   }

   .service-heading p{
    padding:0 2rem ;
   }
   .service h2{
    color: var(--primary-color);
   }

   .service{
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1rem;
   }

   .service i{
     font-size: 2rem;
     color: var(--primary-color);
   }
   .service h3{
    font-size: 1rem;
    padding: 0.5rem 0;
   }
   .service p{
    font-size: 0.7rem;
    line-height: 1.6;
   }


   /* =====What We Do====== */

.what-we-do{
    background-image: url(../images/blue-bg.jpg);
    height: 70vh;
    background-position: center;
    background-size: cover;
    margin-bottom: 14rem;
    position: relative;
}

.offer-text h1{
    text-align: center;
    color: var(--white-color);
   
    

}

.offer{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 3rem;
    position: absolute;
    top: 30%;
}

.offer-cont{
    background: var(--white-color);
    box-shadow: 0 0 1rem 0 rgba(82, 213, 214, 0.3);
    border-radius: 10px;
    cursor: pointer;
}




.offer-cont h4{
    padding: 1rem 0;
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
}

.offer-cont p{
    text-align: center;
    padding:0 1rem 1rem;
}

.subscribe{
    background-image: url(../images/blue-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 50vh;
    margin-bottom: 12rem;
}

.subscribe-heading{
    text-align: center;
    background-color: var(--white-color);
    padding: 5rem 6rem;
    margin: 0 18rem;
    box-shadow: 0 1px 1rem 0 rgba(82, 213, 214, 0.2);
   
}

.subscribe-heading img{
    width: 5rem;
    margin: auto;
}

.subscribe-heading h4{
    margin: 1rem 0;
}

.subscribe-info form input{
    text-align: center;
    border: var(--color-bg-1) 1px solid;
    padding: 0.6rem;
    border-radius: 5px;
}

.btn-wait{
    padding: 0.6rem 1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    margin-top: 1rem;
}


/* ==============Contact glamoroos============= */

.contact--container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url(../images/contact-us.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 150vh;
    margin-top: 5rem;
   


}

.contact--text h2{
    color: var(--white-color);
    font-size: 2rem;
    text-align: center;
   
}
.contact--text p{
    color: var(--white-color);
    font-size: 1.5rem;
    text-align: center;
  
}

.contact--text{
    padding-top: 6rem;
}





input{
    width: 100%;
    border: var(--white-color) 1px solid;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    background: none;
   
}


textarea{
    width: 100%; 
    border: var(--white-color) 1px solid;
    border-radius: 10px;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
    background: none; 
    
}
 

 .btn-contact{
    padding: 14px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
 }

 .btn-contact:hover{
    padding: 14px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 10px;
 }

 .contact---container{
   background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/driving-shc.jpg);
    background-position: center;
    background-size: cover;
    height: 50vh;
    margin-bottom: 16rem;
 }

 .contact---container h2{
    padding-top: 1.2rem;
    color: var(--white-color);
    
 }

 .office-boxes{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 4rem;
 }

 .contact--details{
    background-color: var(--white-color);
    padding: 2rem;
    box-shadow: 0 1px 1rem 0 rgba(82, 213, 214, 0.2);

    
 }

 .contact--details h4{
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: var(--primary-color) 2px solid;
    color: var(--primary-color);
 }

 
 .contact--details i{
    margin-right: 1rem;
    color: var(--primary-color);
 }

 .contact--details h6 {
   font-size: 0.7rem;
   color: var(--primary-color);
 }





/* ========Media quaries on Tablet========= */

@media screen and (max-width: 1024px){
    .container{
        width: var(--container-width-md);
    }

    h1{
        font-size: 2.2rem;
    }

    h2{
        font-size: 1.7rem;
    }

    h3{
        font-size: 1.4rem;
    }

    h4{
        font-size: 1.2rem;
    }

    /* ===Navbar===== */

    nav button{
        display: inline-block;
        background: transparent;
        font-size: 1.8rem;
        color: var(--primary-color);
        cursor: pointer;
    }

    nav button#close-menu{
        display: none;
    }

    .nav-menu{
        position: fixed;
        top: 5rem;
        right: 5%;
        height: fit-content;
        width: 18rem;
        flex-direction: column;
        gap: 0;
        display: none;
    }

    .nav-menu li{
        width: 100%;
        height: 5.8rem;
        animation: animateNavItems 400ms linear forwards;
        transform-origin: top right;
        opacity: 0;

    }

    .nav-menu li:nth-child(2){
        animation-delay: 200ms;
    }

    .nav-menu li:nth-child(3){
        animation-delay: 300ms;
    }

    .nav-menu li:nth-child(4){
        animation-delay: 400ms;
    }

    .nav-menu li:nth-child(5){
        animation-delay: 500ms;
    }

 
    .nav-menu li a{
        background-color: var(--primary-color);
        box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.2);
        color: var(--white-color);
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;

    }

    .nav-menu li a:hover{
        background: var(--color-bg-1);
        color: var(--white-color);
    }

    /* ====@keyframes===== */

    @keyframes animateNavItems{
        0%{
            transform: rotateZ(-90deg) rotateX(90deg) scale(0.1);
        }

        100%{
            transform: rotateZ(0) rotateX(0) scale(1);
            opacity: 1;
        }
    }


    /* ========Header Section=========== */

    header{
        height: 72vh;
        margin-bottom: 4rem;
        margin-top: 5rem;
    }

    .header-container{
        gap: 0;
        padding-bottom: 3rem;
    }

    .header-left{
        text-align: center;
    }


    /* ===========About Section========= */

    .about--container{
        background: var(--white-color);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        
     }

     .about-head{
        text-align: center;
        margin-bottom: 2rem;
     }
     
     
     .about--us{
         display: flex;
         justify-content: center;
         align-items: center;
     }
     
     .abt--img{
       
         width: 20rem;
         height: 32rem;
        
     }

     .abt--text p{
        width: 20rem;
       
    }
    
    .abt--text .btn-primary{
        margin-left: 4rem;
        padding: 1rem;
    }

    /* =========Buisness Solution========= */

    .buisness-box{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
       
    }

    .business-modal h4{
        font-size: 1rem;
        
    }
    


    /* ===========Services Section========= */

    .container-services{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        
    }

    /* =====News Section====== */

    .blog-info h4{

        font-size: 1.2rem;
    }

    /* Our Facility */

.facility h2{
    color: var(--primary-color);
}

.facility-info{
    color: var(--primary-color);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.container-facility {
   display: grid;
   grid-template-columns: 1fr;
   gap: 2rem;
}

    /* ========About Us Page On Tablet=========*/

    /* ===Our Team=== */

    .team-container{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* ========Services Page On Tablet=========*/

    .services-info-1{
        background: var(--white-color);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        display: grid;
        grid-template-columns: 40% 60%;
        gap: 3rem;
        place-items: center;
        margin-bottom: 4rem;
        border-radius: 10px;
    }
    
    
    .services-info-2{
        background: var(--white-color);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        display: grid;
        grid-template-columns: 60% 40%;
        gap: 0;
        place-items: center;
        margin-bottom: 4rem;
        border-radius: 10px;
        
       
    }
    
    .btn-service{
      background: var(--primary-color);
      color: var(--white-color);
      padding: 0.4rem 1.4rem;
      border: var(--white-color) 2px solid;
      transition: var(--transition);
      cursor: pointer;
      margin-bottom: 1.5rem;
    }

    .service-txt{
        width: 20rem;
        margin-top: 1rem;
        margin-right: 3rem;
    }
    
    .service-txt h3{
        margin: 1.5rem 0;
        color: var(--primary-color);
    }
    .service-txt p{
        margin: 1.5rem 0;
       
    }

    .ewaste-box h3{
        font-size: 0.9rem;
    }

    /* ====What We Do==== */

    
    .offer-text h1{
        text-align: center;
         color: var(--white-color);    
     }

    .offer{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 3rem;
        position: absolute;
        top: 50%;
    }


     /* ========News Page On Tablet=========*/

     .subscribe{
    background-image: url(../images/blue-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 50vh;
    margin-bottom: 12rem;
}

    .subscribe-heading{
    text-align: center;
    background-color: var(--white-color);
    padding: 5rem 6rem;
    margin: 0 5rem;
    box-shadow: 0 1px 1rem 0 rgba(82, 213, 214, 0.2);
   
}

.subscribe-heading img{
    width: 5rem;
    margin: auto;
}

.subscribe-heading h4{
    margin: 1rem 0;
}

.subscribe-info form input{
    text-align: center;
    border: var(--color-bg-1) 1px solid;
    padding: 0.6rem;
    border-radius: 5px;
}

.btn-wait{
    padding: 0.6rem 1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    margin-top: 1rem;
}


    /*========Contact Page On Tablet=========*/


    .office-boxes{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 0 2rem;
     }
    
     .contact--details{
        background-color: var(--white-color);
        padding: 2rem;
        box-shadow: 0 1px 1rem 0 rgba(82, 213, 214, 0.2);
        
     }
    
     .contact--details h4{
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-bottom: var(--primary-color) 2px solid;
        color: var(--primary-color);
     }
    
     .contact--details img{
        width: 8rem;
     }
     .contact--details i{
        margin-right: 0.2rem;
        color: var(--primary-color);
     }
    
     .contact--details h6 {
       font-size: 0.7rem;
       color: var(--primary-color);
     }
    
    





    /* ==========Footer section-Tablet======= */

    .contact-content{
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    margin-bottom: 1.2rem;
    }

}


/* ========Media quaries on Mobile Phone========= */

@media screen and (max-width: 600px){
    .container{
        width: var(--container-width-sm);
    }

    h1{
        font-size: 2rem;
    }

    h2{
        font-size: 1.5rem;
    }

    h3{
        font-size: 1.2rem;
    }

    h4{
        font-size: 1rem;
    }

    section{
        padding: 4rem 0;
    }

    /* ====Header Section=====*/

    header{
        position: relative;
        top: 2rem;
        overflow: hidden;
        margin-bottom: 5rem;
        height: 150vh;
    }
    
    .header-container{
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 5rem;
        height: 100%;
    }


      /* ====Value List===== */

      .core-right{
        display: grid;
        grid-template-columns: 1fr;
      }



    .value-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    }

    .value-list i{
    font-size: 2.5rem;
    margin-right: 1rem;   
    }


    /* ======About Us Section On Phone===== */

    .about--container{
        background: var(--white-color);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        
     }

     .about-head{
        text-align: center;
        margin-bottom: 2rem;
     }
     
     
     .about--us{
         display: flex;
         flex-direction: column;
         gap: 2rem;
         
     }
     
     .abt--img{
         width: 20rem;
         height: 25rem;
        
        
     }

    
    .abt--text p{
        padding: 0 1.3rem;
       
    }


    .abt--text{
       
        width: 20rem;
    }


    .abt--text .btn-primary{
        margin: 1rem 1.5rem;
    }


    /* =====Buisness Modal===== */
      
     .buisness-box{
        display: grid;
        grid-template-columns: 1fr 1fr;
     }
     

     /* ======Services Section On Phone===== */


     .container-services{
        display: grid;
        grid-template-columns: 1fr;
     }

     /* =====Testimonial Section====== */

     
    .testimonial-body{
    background: var(--color-bg-1);
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    height: 17rem;
    }



     
     /* ======News Section On Phone===== */


     .blog-post{
        display: grid;
        grid-template-columns: 1fr;
     }

     .blog-info p{
        padding: 1rem;
     }

     /* =====CTA Section On Phone====== */

     .call-to-action{
        background-image: linear-gradient(rgba(0, 0, 0, 0.9),rgba(0, 0, 0, 0.2)), url(../images/driving-less.jpg);
        height: 100vh;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

     .call-action-head h3{
        padding-top: 6rem;
        font-size: 2.5rem;
        color: var(--white-color);
        width: 20.0625rem;
        margin: auto;
    }
    
    .call-action-head p{
        color: var(--white-color);
        font-weight: 400;
        width: 20.0625rem;
        margin: auto;
        padding: 1.8rem 0.9rem;
    }


     /* ======Faqs Section On Phone===== */


     .container-faq{
        display: grid;
        grid-template-columns: 1fr;
     }


      /* ======Get-in-touch Section On Phone===== */


      .contact-container{
        display: grid;
        grid-template-columns: 1fr;
     }

     .contact-left img{
        margin-left: 1rem;
        margin-top: 1.5rem;
        width: 17rem;
        box-shadow: 1px 1px 1rem 0 rgba(0, 0, 0, 0.9);
     }


  /* ===========Whatsapp Icon================ */

    .whatsapp-float{
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 1;

    }

    .whatsapp-btn{
    width: 60px;
    }


      /* ======Footer Section On Phone===== */


      .footer-container{
        display: grid;
        grid-template-columns: 1fr;
     }



     /* =============About Us Page On Moblie============= */


     /* =====About glamoroos===== */

     .container-about{
        display: grid;
        grid-template-columns: 1fr;
     }

     /* ====Our Commitment===== */

     .commitment{
        grid-template-columns: 1fr;
     }
     

     /* =====Why Choose Us====== */

     .choose-container{
        grid-template-columns: 1fr;
     }

     .archivment{
        grid-template-columns: 1fr;
     }


     /* =========Our Team========= */

     .team-container{
        grid-template-columns: 1fr;
     }
     


     /* =============Services Page On Moblie============= */

     .services-info-1{
        background: var(--white-color);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        place-items: center;
        margin-bottom: 4rem;
        border-radius: 10px;
    }
    
    
    .services-info-2{
        background: var(--white-color);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        place-items: center;
        margin-bottom: 4rem;
        border-radius: 10px;
        
       
    }

    .service-image{
        width: 17rem;
    }
    
    .btn-service{
      background: var(--primary-color);
      color: var(--white-color);
      padding: 0.4rem 1.4rem;
      border: var(--white-color) 2px solid;
      transition: var(--transition);
      cursor: pointer;
      margin-bottom: 1.5rem;
    }

    .service-txt{
        width: 18rem;
        margin-top: 1rem;
        margin-right: 0;
    }
    
    .service-txt h3{
        margin: 1.5rem 0;
        color: var(--primary-color);
    }
    .service-txt p{
        margin: 1.5rem 0;
       
    }

    .ewaste-box h3{
        font-size: 0.9rem;
    }


    /* ======= Services===== */

    .service{
        grid-template-columns: repeat(2,1fr);
    }


    /* ====What We Do===== */
    .what-we-do{
        background-image: url(../images/blue-bg.jpg);
        height: 170vh;
        background-position: center;
        background-size: cover;
        margin-bottom: 14rem;
        position: relative;
    }
    
    .offer-text h1{
       text-align: center;
        color: var(--white-color);
       
        
    
    }
    
    .offer{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        padding: 0 2rem;
        position: absolute;
        top: 13%;
    }
    
    
    

     /* ========News Page On Tablet=========*/

     .subscribe{
        background-image: url(../images/blue-bg.jpg);
        background-position: center;
        background-size: cover;
        height: 50vh;
        margin-bottom: 12rem;
    }
    
        .subscribe-heading{
        text-align: center;
        background-color: var(--white-color);
        padding: 5rem 2rem;
        margin: 0 1rem;
        box-shadow: 0 1px 1rem 0 rgba(82, 213, 214, 0.2);
       
    }
    
    .subscribe-heading img{
        width: 5rem;
        margin: auto;
    }
    
    .subscribe-heading h4{
        margin: 1rem 0;
    }
    
    .subscribe-info form input{
        text-align: center;
        border: var(--color-bg-1) 1px solid;
        padding: 0.6rem;
        border-radius: 5px;
    }
    
    .btn-wait{
        padding: 0.6rem 1rem;
        background-color: var(--primary-color);
        color: var(--white-color);
        border-radius: 5px;
        margin-top: 1rem;
    }


    /* =======Contact Page On Mobile======== */
    

    .contact---container{
        background-image: url(../images/blue-bg.jpg);
        background-position: center;
        background-size: cover;
        height: 150vh;
        margin-bottom: 12rem;
     }
    
     .contact---container h2{
        padding-top: 1.2rem;
        text-align: center;
        color: var(--white-color);
     }
    
     .office-boxes{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        margin: 0 1rem;
     }
    
     .contact--details{
        background-color: var(--white-color);
        padding: 2rem;
        box-shadow: 0 1px 1rem 0 rgba(82, 213, 214, 0.2);
        
     }
    
     .contact--details h4{
        margin-top: 1.4rem;
        margin-bottom: 1.4rem;
        border-bottom: var(--primary-color) 2px solid;
        color: var(--primary-color);
     }
    
     .contact--details img{
        width: 8rem;
     }
     .contact--details i{
        margin-right: 1rem;
        color: var(--primary-color);
     }
    
     .contact--details h6 {
       font-size: 0.7rem;
       color: var(--primary-color);
     }
    
    

}
 