* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    /* font-family: "Montserrat", sans-serif;
    font-family: "Open Sans", sans-serif;
    font-family: "Poppins", sans-serif;
    font-family: "Roboto", sans-serif; */
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  /*   --------------------->   css for header section <---------------------  */
  
  #toggle {
    display: none;
    height: 40px;
    width: 40px;
    position:absolute;
    right: 2rem ;
    top: 3rem;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
  }

  #toggle span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  #toggle span:nth-child(1) {
    top: 0px;
  }
  
  #toggle span:nth-child(2),#toggle span:nth-child(3) {
    top: 12px;
  }
  
  #toggle span:nth-child(4) {
    top: 24px;
  }
  
  #toggle.active span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  
  #toggle.active span:nth-child(2) {
    transform: rotate(45deg);
  }
  
  #toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  
  #toggle.active span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }


  nav {
    background: #5949e0;
    padding: 2% 6%;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    justify-content: end;
    align-items: center;
    align-content: center;
    
  }
  
  nav ul li {
    margin-right: 3%;
    width: 6.5rem;
    font-weight: 600;
    cursor: pointer;
    
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
  }
  
  .menu:hover {
    padding: 4% 5.5%;
    /* color: #ffe604; */
    border-top: 2px solid #ffe604;
    border-bottom: 2px solid #ffe604;
  }
  
  .logo img {
    position: absolute;
    top: 2.3rem;
    width: 130px;
    background: none;
    padding: 0 0;
  }
  
  .enquiry {
    display: flex;
    justify-content: right;
    right: 0;
    background-color: #0d0833;
    padding: 0.2% 6%;
  }
  
  .enquiry p {
    margin-right: 1%;
    font-size: 0.8rem;
    color: #fff;
  }
  

  .FAB {
    position: fixed;
    width: 3rem;
    right: 3vw;
    bottom: 5vh;
    z-index: 100;
  }

  .whatsapp {
    color: #00e676;
    font-size: 3rem;
  }
  
  .call {
    color:#5949e0;
    font-size: 3rem;
  }
  
  .whatsapp:hover::after, .call:hover::after {
    content: "";
    text-align: center;
    width: 9rem;
    height: 2rem;
    padding: 5%;
    position: absolute;
    border-radius: 5px;
    font-size: 1.5rem;
  }
  
  .whatsapp:hover::after {
    content: "Chat";
    background-color: #00e676;
    color: white;
    left: -400%;
    /* top: 15%; */ 
  }
  
  .call:hover::after {
    content: "Call";
    background-color:#5949e0;
    color: white;
    left: -400%;
    /* top: 15%; */
  }
  


/*   --------------------->   css for footer section  <---------------------  */

footer {
    position: relative;
    width: 100%;
    bottom: 0;
    background-color: #0d0833;
    color: #fff;
    padding: 3% 6% 8%;
    text-align: center;
    z-index: 1;
  }
  
  footer .copyRight {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: black;
    color: #adadad;
    font-size: 0.8rem;
    padding: 1% 0;
    z-index: 1;
  }
  
  footer .copyRight a {
    text-decoration: none;
    font-family: 'Pacifico', cursive;
    /* font-family: 'Smooch', cursive; */
    color: #fff;
    transition: 0.5s;
  }
  
  footer .copyRight a:hover {
    color: #ffe604;
  }

  .footerLinks {
    display: flex;
    text-align: left;
    justify-content: space-between;
    z-index: 1;
  }
  
  .footerLinks div {
    width: 15rem;
  }
  
  .footerLinks div ul {
    list-style: none;
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    padding: 10% 0%;
    z-index: 1;
  }
  
  .footerLinks div ul li {
    padding: 2% 0;
  }
  
  .footerLinks div ul .fas {
    margin-right: 5%;
  }
  
  .footerLinks div ul li a {
    text-decoration: none;
    color: #fff;
    margin-left: 5%;
  }
  
  .footerLinks div ul li a:hover {
    color: #adadad;
    transition: 1s;
  }