@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");


:root{
    --primary-color: #050f9c;/* Rich deep blue for professionalism */
    --secondary-color: #df841d;/* Muted dark gray-blue for balance */
    --tertiary-color: #0c0b0a;/* Deep neutral for grounding */
    --white: #F8F9FA;/* Soft white for a refined look */
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
  }

.nav-container{
    width: 100%;
    background-color: var(--primary-color);
    position: relative;
    position: fixed;
    top: 0px;
    z-index: 50;

}


.navbar{
    display: grid;
    grid-template-columns: 0.2fr auto 1fr;
    align-items: center;
    height: 80px;
    width: 90%;
    max-width: 1720px;
    margin: 0 auto;
}

.nav-container a{
    text-decoration: none;

}

#navbar-logo{
    color: var(--white);
    justify-self: start;
    margin-left: 20px;
    cursor: pointer;
    font-family:'Courier New', Courier, monospace
}

span {
    color: var(--secondary-color);
}

.nav-menu{
    display: grid;
    grid-template-columns: repeat(6, auto);
    list-style: none;
    text-align: center;
    justify-self: end;
    width: 70%;
}

.nav-links{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links:hover{
    color: var(--secondary-color);
    transition: all 0.2s ease-out;
}

.nav-links-btn{
    background-color: var(--secondary-color);
    padding: 15px 17px;
    border-radius: 7px;
}

.nav-links-btn:hover{
    background-color: transparent;
    color: var(--white);
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease-out;
}


.menu-toggle .bar{
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--white);
    
}

/* Navigation Bar Media Querry Start original was 768*/
@media screen and (max-width: 839px){ 
    .nav-container{
        position: relative;
        
    }

    .nav-menu{
      display: grid;
      grid-template-columns: auto;
      background: var(--secondary-color);
      width: 100%;
      position: absolute;
      margin: 0;
      top: 80px;
      left: -100%;
      opacity: 0;
      transition: all 0.5s ease;
    }

    #navbar-logo{
        margin-left: 20px;
    }

    .nav-menu.active{
        background: var(--tertiary-color);
        left: 0;
        opacity: 1;
        transition: all 0.5s ease;
    }

    .nav-links{
        text-align: center;
        line-height: 60px;
        width: 100%;
        display: table;
        
    }

    .nav-links:hover{
        color: var(--white);
        background-color: var(--primary-color);
        transition: all 0.4s ease-out;
    }

    .navbar{
        width: 100%;
    }

    .nav-links-btn{
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease-out;
    }

    .nav-links-btn:hover{
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 0;
        border-radius: 0;
        border: none;
        transition: all 0.3s ease-out;
        }

    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5% , 20%);
    }


    .menu-toggle .bar{
        display: block;
        cursor: pointer;
    }

    .menu-toggle:hover{
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }


    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    
    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    
   
}

@media screen and (max-width: 839px){
    .nav-container{
        position: fixed;
    }
}



/* Navigation Bar Media Querry End */


/* Hero area start */
.hero-area{
height: 500px;
width: 100%;
background-color: var(--primary-color);
display: flex;
 
}

.hero-img{
    width: 500px;
    margin-left: 20px;
}

.hero-left{
    margin-left: 20px;
    margin-top: 40px;
}

.hero-right{
    margin-top: 150px;
    margin-left: 200px;
    
}  

.hero-txt , p{
    color: var(--white);
    margin-top: 15px;
    
}

.hero-btn{
    background-color: var(--secondary-color);
    padding: 15px 17px;
    border-radius: 7px;
    text-decoration: none;
    color: var(--white); 
      
}

/*Tablets*/
@media screen and (max-width: 700px){
    .hero-area{
        display: block;
        height: 500px;
    }

    .hero-img{
        height: 200px;
        width: 200px;
        margin-left: 20px;
        opacity: 0;
    }
    
    .hero-right{
        margin-top: -75px;
        margin-left: 20px;
        
    }  
    
    .hero-txt , p{
        color: var(--white);
        margin-top: 15px;
        
    }
    
    .hero-btn{
        background-color: var(--secondary-color);
        padding: 15px 17px;
        border-radius: 7px;
        text-decoration: none;
        color: var(--white); 
          
    }



}

/* Extra Small phones 575.98px and below */
@media (min-width: 265px) and (max-width: 575.98px){
    .hero-area{
        display: block;
        height: 650px;
    }

  }


/* Small devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px){
    .hero-area{
        display: block;
        height: 650px;
    }

    .hero-right{
        margin-top: -45px;
        margin-left: 20px;
        
    }
    
    .hero-img{
        height: 200px;
        width: 200px;
        margin-left: 20px;
        opacity: 0;
    }

}

/* Medium devices (desktops, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px){
    .hero-img{
        height: 250px;
        width: 250px;
        margin-left: 20px;
        margin-top: 150px;
        opacity: 0;
    }


    .hero-right{
        margin-top: 150px;
        margin-left: -220px;
    }

    .nav-menu {
        margin-right: 90px;
        text-wrap: nowrap;
    }

    .nav-menu li{
        margin-right: 8px;

    }

    


}

/* Large devices (larger desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1400px){
    .hero-area{
        height: 670px;
    }

    .hero-right{
        margin-left: 90px;
    }

    .hero-img{
        margin-top: 100px;
    }
}





/* Hero area End */


/* Why Choose us Start */
.choose-us{
  height: 250px;
  width: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  
}

.card-1, .card-2, .card-3{
    height: 160px;
    width: 350px;
    background-color: var(--secondary-color);
    margin: 20px;
    border-radius: 5px;
    text-align: center;
    align-content: center;
    
} 

.choose-us h2{
    color: var(--primary-color);
}

/* Extra Small phones 575.98px and below */
@media (max-width: 575.98px){
    .choose-us{
        display: block;
        width: 100%;
        
          
    }


.card-1, .card-2, .card-3{
    height: 150px;
    width: 350px;
    background-color: var(--secondary-color);
    margin: 20px auto;
    border-radius: 5px;
    text-align: center;
    align-content: center;
    
} 
    
}








/* Choose us End */

/* Support Section Start */
.support-sec{
    height: 300px;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-top: 60px;
    justify-content: space-evenly;
}

.support-btn{

    background-color: var(--secondary-color);
    padding: 15px 17px;
    border-radius: 7px;
    text-decoration: none;
    color: var(--white);
    
}


@media (max-width: 700px){

    .support-sec{
        height: 300px;
        width: 100%;
        background-color: var(--primary-color);
        display: block;
        text-align: center;
        margin-top: 280px;
        
    }

    .left-sec{
        padding-top: 60px;
    }

    .right-sec{
        padding-top: 60px;
    }


        
}


/*Small phones*/


@media (max-width: 480px) {
    .support-sec{
        height: 400px;
        text-align: left;
        padding: 20px;
    }
        
}
    
@media (max-width: 296px){
    .support-sec{
        height: 500px;

    }
}    
    
/* Support Section End*/

/*PRICING (Check price.css)*/

/* FAQ Start*/

.faq-sec{
    height: 300px;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-top: 80px;
    justify-content: space-evenly;
    
}

.accordion{
    
    max-width: 800px;
    background-color: var(--white);
    display: block;
    margin: 100px auto;
    text-align: center;
    box-shadow: 1px 2px 4px var(--tertiary-color);
    line-height: 50px;
    padding: 10px;
    
}

.accordion .faqbox{
    position: relative;
    margin: 10px 20px;
}

.accordion .faqbox .label{
    position: relative;
    background: var(--primary-color);
    padding: 10px;
    cursor: pointer;
    color: var(--white);
}

.accordion .faqbox .label::before{
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.5em;
}


.accordion .faqbox .content{
    position: relative;
    height: 0px;
    background: var(--white);
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
    
}

.accordion .faqbox.active .content{
    height: 150px;
    padding: 10px;
    
}

.faqbox .content p{
    color: var(--primary-color);
    line-height: 18px;
    text-align: left;
}



@media (max-width: 700px){

    .faq-sec{
        display: block;
        text-align: center;
        margin-top: 80px;
        
        
    }
}


/*Small phones*/
@media (max-width: 480px) {
    
    .faq-sec{
        height: 500px;
 
        
    } 
       
    }


/* FAQ End*/



/*TESTIMONIAL START*/
.slider-container{
    width: 100%;
    margin: auto;
    padding: 12% 0;
    
}

.item-content{
    background: var(--secondary-color);
    width: 300px;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.img-area{
    position: relative;
    overflow: hidden;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: auto;
    border: 5px solid var(--white);
    box-shadow: inset 0px 5px 10px var(--tertiary-color),
                0px 3px 6px var(--tertiary-color);
}


.img-area img{
    width: 100%;
}

.txt-content p{
    line-height: 1.8;
}

.txt-content h2{
    text-transform: uppercase;
    font-weight:200;
    color: var(--primary-color);
}


@media (max-width: 768px){
    .slider-container{
        display: block;
        margin-left: 50px;
    }

}


/*Small phones*/
@media (max-width: 480px) {
    .slider-container{
        margin-left: auto;
    }
        
       
    }
        
    


/*TESTIMONIAL END*/

/*Footer Start*/
footer{
    background-color: var(--primary-color);
    position: absolute;
    bottom: 1;
    width: 100%;
    padding: 100px 0 30px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    color: var(--white);
    font-size: 13px;
    line-height: 25px;
    

}

.footer-row{
    width: 85%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content:space-between;

}

.footer-col{

    flex-basis: 25%;
    padding: 10px;
    
}

.footer-logo{
    color: var(--white);
    justify-self: start;
    cursor: pointer;
    font-family:'Courier New', Courier, monospace
    
}

.footer-col h1 a{
    color: var(--white);
    font-size: 25px;
}



.footer-col h4{
    margin-top: 20px;
}

.footer-col h2{
    width: fit-content;
    position: relative;
    margin-bottom: 20px;
}

.footer-col ul{
    margin-top: 20px;
    list-style: none;


}

.footer-col a{
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;

}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 2px auto;
}

.copyright{
    text-align: center;
}

.underline{
    width: 100%;
    height: 4px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span{
    width: 20px;
    height: 100%;
    background: white;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving{
    0%{
        left: -20px;
    }

    100%{
        left: 100%;
    }
}

@media (max-width: 700px){
    footer{
        bottom: unset;
    }

    .footer-row{
        display: block;
          
    }
}




/*About, privacy, terms pages*/

.about_content, .privacy_content, .terms_content {
    margin: 30px;
    
    
}

.p1{
    color: blue;
}

.p2{
    color: #eb7107;
}


.p3{
    color: black;
}





/*Footer End*/


