* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
  }
  
 
  
 /* navbar-section start */
  
.navbar-section {
  background-color:rgb(41,41,43);
  width: auto;
  height: 60px;
 
  /* background-color: #1c113d; */

  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 */

  
  /* feature-section start */
  
  .feature-section {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #fdfdff;
    padding-bottom: 50px;
  }
  
  .left-feature-section {
    width: 100%;
    height: 100px;
    position: sticky;
    top: 0;
    padding-top: 80px;
  }
  
  .right-feature-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 80px;
  }
  
  .feature-card {
    width: 300px;
    max-width: 450px;
    height: 380px;
    text-align: center;
    margin-left: 20px;
    margin-top: 10px;
    border-radius: 15px;
    padding-top: 70px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 5px 22px,
      rgba(0, 0, 0, 0.03) 0px 0px 0px 0.5px;
  }
  
  .feature-content {
    margin-top: 50px;
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .feature-content h4 {
    font-size: 20px;
  }
  .feature-content p {
    font-size: 15px;
    padding-top: 10px;
    color: grey;
  }
  
  @media screen and (max-width: 1198px) {
    .feature-section {
      flex-wrap: wrap;
    }
  
    .left-feature-section {
      text-align: center;
    }
  
    .left-feature-section {
      position: relative;
    }
  }
  @media screen and (max-width: 758px) {
    .feature-card {
      width: unset;
      top: 10px;
    }
  }
  
  /* Features-section end */
  
  /* spinner-section start */
  
  .spinner-section {
    width: auto;
    height: 300px;
    padding-top: 100px;
    background-color:rgb(41,41,43);
    animation: fadeIn 1.5s ease-in;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spinner-section-btn {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.goback button {
    background-color: #1c113d;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: pulseButton 2s infinite alternate ease;
}

.goback button:hover {
    background-color: #ff6a00;
    transform: scale(1.1);
    animation: shake 0.3s;
}

@keyframes shake {
    0% { transform: translate(0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes pulseButton {
    from {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    to {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }
}

.spinner-section-btn button a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.spinner-section-btn button a:focus {
    color: white;
    text-decoration: none;
}



.explore-btn button a {
    color: black;
    text-decoration: none;
}

.spinner-component-section {
    width: auto;
    height: auto;
    padding-bottom:4rem;
    background-color:rgb(41,41,43);
    animation: fadeIn 1.5s ease-in;
}

.spinner-component-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* margin-top: 30px; */
}
body{
  background-color:rgb(41,41,43);
}

.spinner-component-body {
    width: 100%;
    height: auto;
    margin-right: 50px;
    padding: 20px 30px;
    background-color: #f3f4f6;
    border-radius: 15px;
    margin-top: 20px;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.spinner-component-body:hover {
    transform: scale(1.05);
}

.component {
    padding-top: 10px;
}

@media screen and (max-width: 1200px) {
    .spinner-component-body {
        margin-right: 0;
    }
}

.navbar-component-section {
    width: auto;
    height: auto;
    background-color:rgb(41,41,43);
   padding: 4rem;
}

.navbar-component-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color:rgb(41,41,43);
    animation: fadeIn 1.5s ease-in-out;
}

.navbar-component-body {
    width: 100%;
    height: auto;
    padding: 20px 30px;
    background-color: #f3f4f6;
    border-radius: 15px;
    margin-top: 20px;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.navbar-component-body:hover {
    transform: scale(1.05);
}

.show-code-button, .explore-btn,.goback button {
  padding: 12px 24px;
  margin-top: 2rem;
  font-size: 18px;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-image: linear-gradient(to right, #ff6a00, #ee0979);
  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;
  position: relative; /* For pseudo-elements */
  overflow: hidden; /* Prevent overflow of pseudo-elements */
}

.show-code-button:hover, .explore-btn:hover,.goback button:hover {
  transform: translateY(-4px); /* Move button up on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.show-code-button:before, .explore-btn:before,.goback button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2); /* White overlay */
  transform: scale(0); /* Start with scale 0 */
  transition: transform 0.3s ease; /* Transition for scaling */
}

.show-code-button:hover:before, .explore-btn:hover:before,.goback button:hover:before {
  transform: scale(1); /* Scale to full size on hover */
  cursor: pointer;
}
.explore-btn {
  margin-left: 20px;
  border-radius: 10px;
  border: 1px solid grey;
  padding: 8px 24px;
  margin-top: 2rem;
  margin-bottom: 5rem;
  font-size: 18px;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-image: linear-gradient(to right, #ff6a00, #ee0979);
  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;
  position: relative; /* For pseudo-elements */
  overflow: hidden; /* Prevent overflow of pseudo-elements */
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}


.code-section {
    display: none;
    width: auto;
    height: 100%;
    background-color: #f7f7f7;
    padding: 20px;
    margin-top: 20px;
    overflow-y: auto;
    border-radius: 5px;
    max-height: 200px;
    font-size: 15px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

pre {
    margin: 0;
}

code {
    width: auto;
}

@media screen and (max-width: 1193px) {
    .tooltip-component-body {
        margin-right: 10px;
    }
}
/* alert */
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: Arial, sans-serif;
  background-color: rgb(41, 41, 43);
  color: white;
  transition: background-color 0.5s ease, color 0.5s ease;
}

#footerboxes {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  animation: fadeIn 1s ease-in-out;
}

.footersbox {
  display: flex;
  width: 60%;
  justify-content: space-evenly;
  color: black;
}

.linelistfooter {
  margin-top: 0px;
}

.linelistfooter>li {
  list-style: none;
  margin-left: 0px;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.linelistfooter>li:hover {
  transform: scale(1.05);
}

.footertab {
  color: rgba(0, 0, 0, 0.815);
  text-underline-offset: none;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footertab:hover {
  color: #0073E6;
  text-decoration: underline;
}

#footertboxes {
  width: 90%;
  margin: auto;
  padding-top: 50px;
  font-family: sans-serif;
  font-size: 14px;
  animation: slideInUp 1s ease-out;
}

.footerlabelinput {
  display: block;
}

.footersubscribeinput {
  padding: 10px;
  font-size: 15px;
  border: 1px solid rgba(226, 226, 226, 0.829);
  border-radius: 10px;
  margin-top: 10px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.footersubscribeinput:focus {
  border: 1px solid #0073E6;
  box-shadow: 0 0 10px #0073E6;
}

.footersubmitbutton {
  padding: 10px;
  font-size: 14px;
  color: #006BD6;
  background-color: white;
  border-radius: 10px;
  border: 1px solid #0475e7a2;
  margin-left: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footersubmitbutton:hover {
  background-color: #0073E6;
  color: white;
}

#footerspartimg>img {
  width: 17px;
  margin: 10px 4%;
  transition: transform 0.3s ease;
}

#footerspartimg>img:hover {
  transform: rotate(360deg);
}

#footerspartmainbox {
  display: flex;
  justify-content: space-between;
}

#footerspartimg {
  width: 240px;
}

.footerfbox {
  color: black;
}

footer {
  background-color: white;
  margin: 0px;
  transition: background-color 0.3s ease;
}

footer:hover {
  background-color: #f1f1f1;
}

@media (max-width: 900px) {
  #footerboxes {
    display: block;
    justify-content: space-between;
    padding-bottom: 40px;
  }

  .footersbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    justify-content: space-evenly;
    color: black;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .footersubscribeinput {
    padding: 10px;
    font-size: 15px;
    border: 1px solid rgba(226, 226, 226, 0.829);
    border-radius: 10px;
    margin-top: 10px;
    width: 96%;
    margin-bottom: 5px;
  }

  .footersubmitbutton {
    padding: 10px;
    font-size: 14px;
    color: #006BD6;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #0475e7a2;
    font-weight: 600;
    width: 100%;
    display: block;
  }

  #footertboxes {
    width: 90%;
    margin: auto;
    padding-top: 50px;
    font-family: sans-serif;
    font-size: 14px;
  }

  #footerspartmainbox {
    display: block;
    justify-content: center;
    text-align: center;
    margin: auto;
    padding-top: 10px;
  }

  #footerspartimg {
    width: 240px;
    margin: auto;
  }
}

.main-content {
  padding-top: 6.25rem;
  width: 80%;
  margin: 0 auto;
  background-color: rgb(41, 41, 43);
  color: white;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.alert1 {
  background-color: rgb(41, 41, 43);
  padding-bottom: 5rem;
 
}

.container {
  margin-bottom: 20px;
}

.title {
  margin-top: 20px;
  border-bottom: 2px solid #6c757d;
  transition: border-color 0.3s ease;
}

.title:hover {
  border-color: #0073E6;
}

.alert-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alert {
  padding: 15px;
  border-radius: 5px;
  flex: 1 1 calc(100% - 10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alert:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.code-container {
  margin-top: 20px;
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

textarea {
  width: 100%;
  height: 200px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  resize: none;
  font-family: monospace;
  transition: border-color 0.3s ease;
}

textarea:focus {
  border-color: #0073E6;
}

@media (max-width: 768px) {
  .alert {
    flex: 1 1 calc(50% - 10px);
  }

  .main-content {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .main-content {
    width: 98%;
  }

  .alert {
    flex: 1 1 100%;
  }

  body {
    padding: 10px;
  }

  .alert {
    padding: 10px;
  }

  textarea {
    height: 150px;
  }
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
/* button start */
#buttonpage{
  width: 80%;
  margin: auto;
  padding-top: 8rem;
  font-family: sans-serif;
}
.code-container {
  position: relative;
  width: 100%;
  margin: 20px 0;
  color: black;
}
pre {
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #ddd;
  overflow: auto;
  font-family: 'Courier New', monospace;
}
.copy-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}
.copy-button:hover {
  background-color: #45a049;
}
.codeexample{
  border: 1px solid rgba(158, 158, 158, 0.342);
  margin-bottom: -21px;
  border-radius: 10px 10px 0px 0px;
  background-color: #ffff;
}
.codeexamplemainbox{
  display: flex;
  width: 40%;
  margin: auto;
  justify-content: space-evenly;
  text-align: center;
  align-items: center;
  padding: 18px;

}
@media (max-width:1100px) {
  .codeexamplemainbox {
    width: 60%;

  }
}

@media (max-width:800px) {
  .codeexamplemainbox {
    width: 80%;

  }
}

@media (max-width:600px) {
  .codeexamplemainbox {
    width: 95%;
    padding: 10px 2px;
  }

  #buttonpage {
    width: 80%;
    margin: auto;
    font-family: sans-serif;
  }
}
@media (max-width:500px) {
  .codeexamplemainbox {
    width: 100%;
    padding: 10px 2px;
  }

  #buttonpage {
    width: 80%;
    margin: auto;
    font-family: sans-serif;
    /* margin: -2px; */
    overflow: hidden;
  }

  .buttonpagebutton1 {
    background-color: #1565c0;
    padding: 10px 10px;
    margin-top: 10px;
    color: #ffff;
    font-weight: bold;
    border-radius: 7px;
  }

  .colorbutton {
    padding: 10px;
  }

  .colorbutton1 {
    padding: 10px;
  }

  .colorbutton2 {
    padding: 10px;
  }
}
.buttonpagebutton1{
  background-color: #1565c0;
  padding: 10px 30px;
  margin-top: 10px;
  color:  #ffff;
  font-weight: bold;
  border-radius: 7px;
}
.buttonpagebutton2{
  color: #1565c0;
  border: 1px solid #1565c0;
  padding: 10px 30px;
  margin-top: 10px;
  border-radius: 7px;
}
#listbutton{
  line-height: 1.6;
}
.textbutton1,.textbutton3{
  color: #1565c0;
  padding: 10px;
  border-radius: 5px;
}
.textbutton1:hover,.textbutton3:hover{
  background-color: rgba(142, 221, 231, 0.185);
}
.textbutton2{
  color: rgba(128, 128, 128, 0.445);
}
.containedbutton1{
  background-color: #99999950;
  padding: 10px 30px;
  margin-top: 10px;
  color:  #979797c9;
  font-weight: bold;
  border-radius: 7px;
}
.outlinedbutton1{
  background-color: #ffff;
  padding: 10px 30px;
  margin-top: 10px;
  color:  #9999999d;
  font-weight: bold;
  border-radius: 7px;
  border:1px solid #9999999d;
}
.colorbutton{
  
  padding: 10px 30px;
  margin-top: 10px;
  color:  #9c27b0;
  font-weight: bold;
  border-radius: 7px;
}
.colorbutton:hover{
  background-color: #dbdbdb;
}
.colorbutton1{
  background-color: #1b5e1fb2;
  padding: 10px 30px;
  margin-top: 10px;
  color:  #ffff;
  font-weight: bold;
  border-radius: 7px;
}
.colorbutton1:hover{
  background-color: #1b5e20;
}
.colorbutton2{
  background-color: #ffff;
  padding: 10px 30px;
  margin-top: 10px;
  color:  red;
  font-weight: bold;
  border-radius: 7px;
  border:1px solid red;
}
.colorbutton2:hover{
  background-color: rgba(255, 0, 0, 0.219);
}
.buttonpagebutton1:hover{
  background-color: #1815c0fd;
}
.buttonpagebutton2:hover{
  background-color: #89c0ff3b;
}
.codeexamplemainboximg{
  width: 15px;
}
body {
font-family: Arial, sans-serif;
background-color:rgb(41,41,43);

}
#footerboxes{
display: flex;
justify-content: space-between;
padding-bottom: 40px;
}
.footersbox{
display: flex;
width: 60%;
justify-content: space-evenly;
color: black;
}
.linelistfooter{
margin-top: -8px;
margin-left: -40px;
}
.linelistfooter>li{
list-style: none;
margin-left: 0px;
line-height: 1.6;
}
.footertab{
color: rgba(0, 0, 0, 0.815);
text-underline-offset: none;
text-decoration: none;
}
.footertab:hover{
color: #0073E6;
text-decoration: underline;
}
#footertboxes{
width: 90%;
margin: auto;
padding-top: 50px;
font-family: sans-serif;
font-size: 14px;
}
.footerlabelinput{
display: block;
}
.footersubscribeinput{
padding: 10px;
font-size: 15px;
border: 1px solid rgba(226, 226, 226, 0.829);
border-radius: 10px;
margin-top: 10px;
}
.footersubmitbutton{
padding: 10px;
font-size: 14px;
color: #006BD6;
background-color: white;
border-radius: 10px;
border: 1px solid #0475e7a2;
margin-left: 5px;
font-weight: 600;
}
#footerspartimg>img{
width: 17px;
margin:10px 4%;

}
#footerspartmainbox{
display: flex;
justify-content: space-between;
margin: 0px 0%;
}
#footerspartimg{
width: 240px;
}
.footerfbox{
color: black;
}
footer{
background-color: white;
margin: -8px;
}

@media (max-width: 900px) {
#footerboxes{
display: block;
justify-content: space-between;
padding-bottom: 40px;
}
.footersbox{
display: grid;
grid-template-columns: repeat(2,1fr);
width: 100%;
justify-content: space-evenly;
color: black;
margin-top: 40px;
}
}

@media(max-width: 600px){
.footersubscribeinput{
padding: 10px;
font-size: 15px;
border: 1px solid rgba(226, 226, 226, 0.829);
border-radius: 10px;
margin-top: 10px;
width: 96%;
margin-bottom: 5px;

}
.footersubmitbutton{
padding: 10px;
font-size: 14px;
color: #006BD6;
background-color: white;
border-radius: 10px;
border: 1px solid #0475e7a2;
margin-left: 0px;
font-weight: 600;
width: 100%;
display: block;
}
#footertboxes{
width: 90%;
margin: auto;
padding-top: 50px;
font-family: sans-serif;
font-size: 14px;
}
#footerspartmainbox{
display: block;
justify-content: center;
text-align: center;
margin: auto;
padding-top:10px;
}
#footerspartimg{
width: 240px;
margin: auto;
}
}
.buttonpageravish{
  background-color:rgb(41,41,43);
  color: white;
  padding-bottom: 8rem;
}
/* button_end */