/* navbar-section start */
  
.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 */




/* radio_component start */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.radio_container {
    background-color:rgb(41,41,43);
    padding: 30px 20px; 
    animation: fadeIn 1s ease-in-out;
    width: 100%;
    height: auto;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 20px;
    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; /* Added background-color transition */
}

.radio_container:hover {
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7); 
    background-color:rgb(41,41,43); 
}

.radio_h1 {
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    text-align: center;
    font-size: 2.625rem; 
    font-weight: 700;
    margin-bottom: 2.5rem;
    animation: slideIn 1s ease forwards;
}

@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;
    }
}

.radio-btn-container{
    display: flex;
}

.radio-btn-container a{
    text-decoration: none;
}
.radio-btn-container a:hover{
    text-decoration: none;
}
.radio_but {
    padding: 12px 24px;
    margin: 10px;
    border: none;
    border-radius: 8px;
    background-image: linear-gradient(to right, #ff6a00, #ee0979);
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* Added background-color transition */
}

.radio_but:hover {
    transform: translateY(-4px); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.1); 
}

.radio-sections {
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
    padding: 10px;
    align-items: center;
}

.radio-section {
    width: auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease; 
    border: 2px solid transparent;
}

.radio-section:hover {
    transform: scale(1.05); 
    border-color: rgba(255, 255, 255, 0.3); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
}

.radio_h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
    font-weight: 700;
}

.radio-group {
    display: flex;
    color: white;
    gap:10px;
    flex-wrap: wrap;
  
}

input[type="radio"] {
    display: none;
}

.show-code-button {
    background-image: linear-gradient(to right, #ff6a00, #ee0979); 
    color: white;
    padding: 10px 15px;
    border: 3px solid transparent; 
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-image 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
}

.show-code-button:hover {

    background-image: linear-gradient(to right, #ff6a00, #ee0979); 
    transform: translateY(-3px); 
    border-color: #ff6a00; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.show-code-button:focus {
    outline: none; 
    border-color: #ee0979;
    box-shadow: 0 0 5px #ee0979, 0 0 10px rgba(238, 9, 121, 0.5);
}


.code-section {
    display: none;
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    overflow-x: auto;
    max-height: 200px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    color: white !important;
}

input[type="radio"] + label {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff; 
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 10px; 
    vertical-align: middle; 
    cursor: pointer;
    transition: all 0.3s ease; 
}

input[type="radio"]:checked + label:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #6f42c1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease; 
}

input[type="radio"]:checked + label[data-color="blue"] {
    border-color: blue;
}

input[type="radio"]:checked + label[data-color="blue"]:before {
    background-color: blue;
}

input[type="radio"]:checked + label[data-color="pink"] {
    border-color: pink;
}

input[type="radio"]:checked + label[data-color="pink"]:before {
    background-color: pink;
}

input[type="radio"]:checked + label[data-color="green"] {
    border-color: green;
}

input[type="radio"]:checked + label[data-color="green"]:before {
    background-color: green;
}

input[type="radio"]:checked + label[data-color="yellow"] {
    border-color: yellow;
}

input[type="radio"]:checked + label[data-color="yellow"]:before {
    background-color: yellow;
}

input[type="radio"]:checked + label[data-color="red"] {
    border-color: red;
}

input[type="radio"]:checked + label[data-color="red"]:before {
    background-color: red;
}

input[type="radio"] + label[data-size="large"] {
    width: 40px;
    height: 40px;
    border: 2px solid #fffcfc;
    border-radius: 50%;
    margin-top: 10px;
    margin-right: 30px;
    position: relative;
}

input[type="radio"] + label[data-size="medium"] {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin-top: 18px;
    margin-right: 30px;
    position: relative;
}

input[type="radio"] + label[data-size="small"] {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin-top: 25px;
    margin-right: 30px;
    position: relative;
}



/* radio component end */