@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

/*:root{
    --primary-color:#3f51b5;
    --secondary-color: #111518;
    --light-color: #ddd;
    --white_color: #fff;
    --gray: #b3b6b7;
    --light_dark: #181c1f;

}*/

html {
    font-size: 80%;
    scroll-behavior: smooth;                /* i added this for click and scroll response*/
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
}

/*--------------utility classes start -----------*/
body {
    background: rgb(255, 255, 255);
}

a{
    text-decoration: none;
}

/*.primary_btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-family: inherit;
    color: #fff;
    background: transparent;
    cursor: pointer;
    outline: 0;
    border: 2.5px solid #fff;
    transition: all .3s ease-in-out;
    margin: 1rem 0;
}


.primary_btn:hover {
    background: #3f51b5;
    color: #fff;
   
}*/

/*img {
    display: block;
    object-fit: cover;
    width: 100%;
}*/



.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

/*--------------utility classes stop -----------*/



/*--------------header start -----------*/
/*.homepage {
    background: url('/images/bg_img.jpg') no-repeat center center/cover;
    min-height: 100vh;
}

.homepage img{                
    width: 50%;
}*/
/*.laplaguepage {
    background: url('/images/20lap.jpg') no-repeat center center/cover;
    min-height: 100vh;
}

.laplaguepage img{                
    width: 50%;
}*/
/*.learnmorepage {
    background: url('/images/iPhone-14-Pro-vs-Galaxy-S23-HQ.png') no-repeat center center/cover;
    min-height: 100vh;
}

.learnmorepage img{                
    width: 50%;
}*/

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.navbar nav{
    display: flex;
}
.navbar nav li {
    list-style: none;
    margin-right: 1.5rem;
}
.navbar nav li a {
    color: rgb(148, 148, 247);
    font-size: 1.3rem;
    padding: .5rem .5rem;
    transition: all .4rem ease-in-out;
    text-decoration: none;
}

.logo{
    margin: .3rem;
}

.logo img{
    width: 75%;
}


.navbar nav li a:hover {
    color: rgb(243, 103, 231);
}

.navbar .btn {
    color: #000;                        /*changed from var gray*/
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}



/*--------------HEADER/showcase start-----------*/

/*=====TRAVERSE CODE ======================*/
.slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    /*width: 100vw;*/
  }

  /*here .slider = .showcase-wrapper
  and .slide = .showcase-content
  .content  = .showcase */
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
  }
  
  .slide.current {
    opacity: 1;
  }
  
  .slide .content {
    position: absolute;
    bottom: 70px;
    left: -600px;
    opacity: 0;
    width: 600px;
    background-color: rgba(255, 255, 255, 0.2);
    /*color: #1406ce;*/
    padding: 35px;
  }
  
  .slide .content h1 {
    margin-bottom: 10px;
    color: #222;
  }

  .slide .content h1 span {
    font-family: "Poppins";
    color: rgb(245, 51, 164);
    font-size: 2.5rem;
  }

  .slide .content p {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #333;
  }
  .slide .content a {
    display: inline-block; /* Ensure the <a> tag takes the full width */
    margin-top: 15px; /* Add margin to the top of the button */
  }

  .slide .content a.btn{
    background: transparent;
    border: 2.5px solid #15a2f3;            
    border-radius: 50px;
    color: #15a2f3;
    font-family: inherit;
    text-transform: uppercase;
    padding: 0.8rem 1.4rem;
    outline: 0;
    cursor: pointer;
    transition: all 0.5s ease;
}

.slide .content a.btn:hover{
    background: #fff;
    color: #000;
}
  
  .slide.current .content {
    opacity: 1;
    transform: translateX(600px);
    transition: all 1.2s ease-in-out 0.3s;
  }
  
  .buttons button#next {
    position: absolute;
    top: 40%;
    right: 15px;
  }
  
  .buttons button#prev {
    position: absolute;
    top: 40%;
    left: 15px;
  }
  
  .buttons button {
    border: 2px solid #15a2f3;
    background-color: transparent;           /*used #15a2f3 blue before */
    color: #15a2f3;
    cursor: pointer;
    padding: 7px 9px;
    border-radius: 50%;
    outline: none;
  }
  
  .buttons button:hover {
    background-color: #fff;
    color: #333;
  }
  
  @media (max-width: 500px) {
    .slide .content {
      bottom: -300px;
      left: 0;
      width: 100%;
    }
  
    .slide.current .content {
      transform: translateY(-450px);
      transition: all 1.2s ease-in-out 1s;
    }
  }
  
  
  
  /* Backgorund Images */
   
  .slide:first-child {
    background: url(/images/bg1.jpg) center/cover no-repeat;
  }
  .slide:nth-child(2) {
    background: url(/images/3.jpg) center/cover no-repeat;
  }
  .slide:nth-child(3) {
    background: url(/images/4.jpg) center/cover no-repeat;
  }
  .slide:nth-child(4) {
    background: url(/images/1.jpg) center/cover no-repeat;
  }
  .slide:nth-child(5) {
    background: url(/images/5.jpg) center/cover no-repeat;
  } 
  .slide:nth-child(6)  {
    background: url(/images/8.jpg) center/cover no-repeat;
  }


  /*--- Footer starts --*/
/*.footer {
    padding: 2rem 0;
    margin-top: 5rem;
    text-align: center;
    display: block;
    background: var(--secondary-color);

}

.footer .logo_{
    width: 14%;
    align-items: center;
    margin: 0 43%;
    padding: 2.5rem 0;
    transition: all .5s ease-in-out;
}

.footer .logo_:hover{
    transform: scale(1.2);
}*/




/*====Whatsapp ===*/
.whatsapp-container{
    position: fixed;
    right: 7px;
    bottom: -80px;
    opacity: 0;
    padding: 24px;
    animation: fade-up 1000ms forwards;
    animation-delay: 1000ms;
}

@keyframes fade-up{
    100% {
        bottom: 50px;
        opacity: 1;
    }
}

.whatsapp-container .whatsapp-btn{
    font-size: 80px;
    color: #52c4f1;
    display: inline-block;
    transition: all 400ms;
}
.whatsapp-container .whatsapp-btn:hover{
    transform: scale(1.2);
}






/* ===================REFERENCES=============================*/
/*.showcase-wrapper{
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.showcase-content{
    height: 100%;
    width: 100%;
    display: flex;
    transition: all 0.5s ease;
}
.showcase{
    min-width: 100%;
    color: #fff;
    display: grid;
    place-content: center;
    place-items: center;
    text-align: center;
}
.showcase h1{
    font-size: 1.8rem;
    width: 90%;
    margin: 1.5rem auto;
}
.showcase button{
    background: transparent;
    border: 2.5px solid #fff;
    color: #fff;
    font-family: inherit;
    text-transform: uppercase;
    padding: 0.8rem 1.4rem;
    outline: 0;
    cursor: pointer;
    transition: all 0.5s ease;
}
.showcase button:hover{
    background: #fff;
    color: #000;
}*/



/*--------------HEADER/Dotted start-----------*/

/*.dotted-btns{
    position: absolute;
    bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}
.dotted-btns span{
    margin: 0 0.5rem;
    color: #fff;
    font-size: 0.8rem;
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.5s ease;
}
.dotted-btns span:hover{
    opacity: 0.7;
}*/



/*.showcase:nth-child(1){
    background: url(/images/2.jpg) center/cover no-repeat;
}
.showcase:nth-child(2){
    background: url(/images/5.jpg) center/cover no-repeat;
}
.showcase:nth-child(3){
    background: url(/images/26.jpg) center/cover no-repeat;
}
.showcase:nth-child(4){
    background: url(/images/38.jpg) center/cover no-repeat;
}
.showcase:nth-child(5){
    background: url(/images/43.jpg) center/cover no-repeat;
}*/
