html{
    scroll-behavior: smooth;
}

body{
   margin: 0;
    padding: 0;
}

.main-div{
    font-family: 'Poppins', sans-serif;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    background: rgba(219, 255, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
  display: flex;
    font-size: 1.5rem;
    font-weight: 600;
    color: #dbff00;
}

.nav-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #dbff00;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover{
    color: white;
  }

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
  display: flex;
    width: 30px;
    height: 30px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1100px;
    flex-direction: column;
   justify-content: space-between;
    align-items: center;
    z-index: 1;
    margin-top: 10px;
}

.calendar-section, .hero-section {
    flex: 1;
    min-width: 300px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-section h1 {
    color: #dbff00;
    font-size: 4rem;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.background-animation {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(219, 255, 0, 0.3);
    border-radius: 50%;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(50px); }
    100% { transform: translateY(0px); }
}

.info-section, .faq-section {
    width: 80%;
    max-width: 800px;
    text-align: left;
    margin: 50px auto;
}

.info-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.info-section h2 {
    font-size: 2.3rem;
}

.faq-item h3 {
    background: #dbff00;
    color: black;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

#calendly-popup-button {
    display: flex;
    flex-direction: column;
    background-color: #dbff00;
    color: black;
    text-decoration: none;
    font-size: 35px;
    padding: 5px 20px;
    font-weight: 900;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
  }
  
  #calendly-popup-button::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;
    background: #dbff00;
    background-size: 400% 400%;
    animation: glowing 6s linear infinite;
    filter: blur(25px);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
    z-index: -1;
  }
  
  #calendly-popup-button:hover::before {
    animation-duration: 2s;
    opacity: 1;
  }
  
  #calendly-popup-button:hover {
    box-shadow: 0 0 20px #dbff00, 0 0 40px #00ffe0;
    color: black;
  }
  
  @keyframes glowing {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  

  
  .countdown-message {
    font-size: 15px;
    color: red;
    letter-spacing: 1px;
    margin: -10px;
    padding-top: 10px;
  }
  
  #countdown-timer {
    font-size: 25px;
    font-weight: bold;
    color:red;
  }
  

  

@media (max-width: 768px) {

    #calendly-popup-button{

        font-size: 25px;
        padding: 5px 10px;
      }
    .container {
        flex-direction: column;
        text-align: center;
        width: 97%;
        justify-content: space-between;
        margin-top: 50px;
    }

    .calendar-section {
      padding: 0px !important;
      width: 100% !important;
              margin-top: 15px;
    margin-bottom: 15px;
    }

    .header {
      padding-top: 4px;
      padding-bottom: 7px;
        flex-direction: column;
        text-align: center;
        justify-content: space-between;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .logo svg {
        width: 150px;
    }

    .nav-links a{
      font-size: 14px;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }

    .nav-container {
        gap: 15px;
        width: 90%;
justify-content: space-between;
    }

        .hero-section h1{
        display: flex;
        flex-direction: column;
    }
    .span1{
        font-size: 3.5rem;
      }
      .span2{
        font-size: 2.3rem;
      }
      .span3{
        font-size: 3.2rem;
      }
      .span4{
        font-size: 2.5rem;
      }
            .span5{
            text-decoration: underline;}
}

.footer {
background-color: black;
color: white;
padding: 40px 0;
text-align: center;
margin-top: 40px;
}

.footer-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.footer-logo img {
height: 40px;
}

.footer-nav {
display: flex;
gap: 20px;
}

.footer-nav a {
color: #dbff00;
text-decoration: none;
font-weight: 600;
}

.footer-contact p {
color: white;
font-size: 1rem;
}

.footer-contact a {
color: #dbff00;
text-decoration: none;
}

.footer-socials {
display: flex;
gap: 15px;
}

.footer-socials img {
width: 30px;
height: 30px;
}

.footer-socials img:hover {
width: 35px;
height: 35px;
}

.ll-section-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
  
    .ll-card {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(219, 255, 0, 0.3);
      border-radius: 20px;
      padding: 30px;
      color: white;
      box-shadow: 0 0 20px rgba(219, 255, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }
  
    .ll-card::before {
      content: '';
      position: absolute;
      top: -25%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(219, 255, 0, 0.2), transparent 70%);
      border: 1px solid #ddff0071;
      animation: spin 6s linear infinite;
      z-index: 0;
    }
  
    .ll-card h2 {
      font-size: 22px;
      color: #dbff00;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }
  
    .ll-card ul {
      list-style-type: disc;
      padding-left: 20px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }
  
    .ll-card ul li {
      margin-bottom: 10px;
      font-size: 15px;
    }
  
    .ll-card:hover {
      transform: scale(1.03);
      box-shadow: 0 0 40px rgba(219, 255, 0, 0.5);
    }
  
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @media (max-width: 1100px) {
  .ll-section-cards {
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
  }

  .ll-card::before {
      content: '';
      position: absolute;
      top: -10%;
      left: -25%;
      width: 150%;
      height: 150%;
      background: radial-gradient(circle at center, rgba(219, 255, 0, 0.2), transparent 70%);
      border: 1px solid #ddff0071;
      animation: spin 6s linear infinite;
      z-index: 0;
    }

  .ll-card {
    padding: 20px;
  }

  .ll-card h2 {
    font-size: 18px;
  }

  .ll-card ul li {
    font-size: 14px;
  }
}


.footer a:hover {
color: #dbff00;
}
