* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    
    background-color: rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-section {
    background-color:rgb(41,41,43);
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }
  
  .navbar-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    width: 40px;
    height: 40px;
  }
  
  .toggle-btn {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
  }
  
  .logo img {
    width: 70px;
  }
  .dropdown ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 5rem;
  }
  
  .dropdown ul li {
    margin-right: 20px;
    padding-top: 15px;
    font-weight: 600;
    font-size: 18px;
  }
  .dropdown ul li a:hover{
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

  }
  
  .navbar_menu {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 300px;
    display: none;
    background-color: rgb(198, 197, 197);
    /* background: rgba(255,255,255 0.1); */
    list-style: none;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    height: 0;
    text-decoration: none;
  }
  
  .navbar_menu li {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-self: center;
    font-weight: 600;
    /* text-decoration: none !important; */
  }
  
  .navbar_menu.open {
    height: auto;
    padding-bottom: 20px;
  }
  
  .navbar_menu li a {
    color: white;
    text-decoration: none;
  }
  
  .navbar_menu li a:hover {
    color: white;
    /* text-decoration: none; */
  }
  
  .dropdown ul li a {
    color: white;
    text-decoration: none;
  }
  
  .dropdown ul li a:hover {
    text-decoration: none;
  }
  
  @media screen and (max-width: 992px) {
    .dropdown ul {
      display: none;
    }
  
    .toggle-btn {
      display: block;
    }
  
    .navbar_menu {
      display: block;
      width: unset;
      left: 30px;
    }
  }
  
  /* navbar-section end */




.accordion-container {
    background-color:rgb(41,41,43); 
    padding: 10rem;
    animation: fadeIn 1s ease-in-out;
    /* margin-top:450px; */
    padding-top: 100px;
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.accordion-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    background-color:rgb(41,41,43);
}

.accordion_h2 {
    text-align: center;
    font-size: 2.5em;
    color: white;
    margin-bottom: 40px;
    animation: slideIn 1s ease forwards;
}

.back-btn, .doc-btn {
    padding: 15px 25px;
    margin: 10px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 1em;
    color: white;
    background-image: linear-gradient(to right, #ff6a00, #ee0979);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.back-btn:hover, .doc-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.accordion_h3 {
    color: white;
    margin: 15px 0;
    font-size: 1.5em;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.accordion-item:hover {
    transform: scale(1.02); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
}

.accordion-header {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-weight: bold;
    position: relative;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    color:black; 
}

.accordion-content {
    display: none;
    padding: 15px;
    border-top: 1px solid #ddd;
    background-color: rgba(255, 255, 255, 0.1);
    color: black;
    /* max-height: 0px; */
    overflow: hidden;
    height: auto;
    transition: max-height 0.3s ease, padding 0.3s ease;

}

.accordion-header::after {
    content: '▼';
    font-size: 12px;
    color: #888;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion-toggle:checked + .accordion-header::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-toggle:checked + .accordion-header + .accordion-content {
    display: block;
}

.code-block {
    background-color: rgba(255, 255, 255, 0.1); 
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
    white-space: pre-wrap;
    display: none;
    color: rgb(255, 255, 255);
}

.show-code-btn {
    background-image: linear-gradient(to right, #ff6a00, #ee0979);
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.show-code-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .accordion-container {
        padding: 10px;
    }

    .back-btn, .doc-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .accordion-item {
        margin-bottom: 10px;
    }
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
body{
    background-color:rgb(41,41,43);
}