*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* 
  "Poppins", sans-serif;
   "Roboto", sans-serif;
  */
  
  :root{
    --white-color: #f6f6f6;
    --shade-of-black: rgb(26, 26, 26);
    --deep-dark: #121212;
    --orange: #ff9933;
    --red: #e5062f;
    /* fonts */
    --poppins: "Poppins", sans-serif;
    --roboto: "Roboto", sans-serif;
    --form-input: #e7e7e7;
    --border-color: rgba(246, 246, 246, 0.2);
  }
  
  body{
    background-color: var(--deep-dark);
  }
  
  html{
    scroll-behavior: smooth;
  }
  
  /* Container width class */
  .container{
    width: 92%;
    margin-inline: auto;
  }
  
  /* Margin-top */
  .top-margin{
    margin-top: 5rem;
  }

  .divider{
    background-color: var(--white-color);
    width: 100%;
    height: 0.1rem;
    opacity: 0.1  ;
  }
  
  /* Global Headings Style */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600; 
    color: var(--white);
    margin: 0 0 10px; /* Add spacing below for separation */
    line-height: 1.3; 
    font-family: var(--poppins);
  }
  
  /* clamp(minimum, preferred, maximum) */

  
  /* Paragraph Style */
  p {
    font-size: 1rem;
    line-height: 1.6; 
    margin: 0 0 15px; /* Add space below each paragraph 
    */
    font-family: var(--roboto);
  }
  
  /* Links Style */
  a {
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    color: var(--white-color);
    font-family: var(--poppins);
  }
  
  /* List Items */
  li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white-color);
  }

  button{
    cursor: pointer;
  }
  
  /* .scroll__top{
    all: unset;
    cursor: pointer;
    background-color: var(--sec-color-lite);
    color: var(--pri-color);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 90;
    position: fixed;
    right: 3%;
    bottom: 8%;
    animation: scroll 2s ease-in-out infinite;
  } */
  
  /* .whatsapp{
    all: unset;
    cursor: pointer;
    background-color: var(--acc-color-lite);
    color: var(--pri-color);
    box-shadow: 0px 0px 3px 5px rgba(0, 0, 0, 0.07);
    padding: 0.1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 90;
    position: fixed;
    left: 2%;
    bottom: 8%;
    animation: scroll 2s ease-in-out infinite;
  } */
  
  /* @keyframes scroll {
    0%{
        transform: translateY(0);
    }
  
    50%{
        transform: translateY(-0.5rem);
    }
  
    100%{
        transform: translateY(0);
    }
  } */
  
  
  @media (min-width: 768px){
    .container{
        width: 90%;
    }
  
    .top-margin{
        margin-top: 4rem;
    }
  }
  
  @media (min-width: 1000px){
    .container{
        width: 85%;
    }
  
    .top-margin{
        margin-top: 7rem;
    }
  
  /*   .scroll__top{
        right: 2%;
    }
  
    .whatsapp{
        left: 1.2%;
    } */
  }
  
  /* Big screens */
  @media (min-width: 1500px){
    .container{
        width: 65%;
        margin-inline: auto;
    }
    
   .top-margin{
        margin-top: 8rem;
    }
   /* 
    .scroll__top{
        right: 7%;
    } */
  }
  
  /* 4k screens */
  @media (min-width: 2560px){
    .container{
        width: 60%;
        margin-inline: auto;
    }
    
    .top-margin{
        margin-top: 10rem;
    }
  }