body {
    background-color:rgb(41,41,43);
    background-size: cover; /* Cover the entire body */
    background-position: center; /* Center the background image */
    margin: 0; /* Remove default margin */
}

.c1ontainer {
    background-color:rgb(41,41,43);
    padding: 0px 0px;
    animation: fadeIn 2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 700;
    /* background-color:rgb(41,41,43); */
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(300px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p1ower {
    color: white;
    text-align: center;
    font-size: 2.625rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    animation: slideIn 5s ease forwards;
    padding-top: 7rem; 
}

@keyframes slideIn {
    from {
        transform: translateY(-480px);
        opacity: 0;
    }
    
    to {
        transform: translateY(20px);
    }
}

.q1uick {
    text-align: center;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    font-size: 3.75rem;
    font-weight: 900;
    padding-bottom: 1.1rem;
    transition: transform 0.3s ease;
    
    margin: auto;
    width: 50%;
}

@media (max-width:900px) {
    .q1uick{
        font-size: 1.75rem;
    }
}
.q1uick:hover {
    transform: scale(1.1);
}

.c1hoose, .c2hoose {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.c2hoose {
    margin-top: 0.313rem;
    margin-bottom: 2.5rem;
}

.bv {
    display: flex;
    justify-content: center;
    gap: 1.063rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 5rem;
}


.browse1 > button {
    animation: buttonleft 4s ease-in;
}

@keyframes buttonleft {
    from {
        transform: translateY(-800px);
        opacity: 0;
    }
    
    to {
        transform: translateY(0px);
    }
}

.view > button {
    animation: buttonright 4s ease-in;
}

@keyframes buttonright {
    from {
        transform: translateY(-800px);
        opacity: 0;
    }
    
    to {
        transform: translateY(0px);
    }
}

.browse1 > button, .view > button {
    padding: 12px 24px;
    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 */
}

.browse1 > button:hover, .view > button:hover {
    transform: translateY(-4px); /* Move button up on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.browse1 > button:before, .view > 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 */
}

.browse1 > button:hover:before, .view > button:hover:before {
    transform: scale(1); /* Scale to full size on hover */
    cursor: pointer;
}

.container1, .container2, .container3 {
    height: 50.5rem; /* Keep the size consistent */
    width: 86%;
    margin: auto;
    padding: 2.5rem 0.5rem;
    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;
    transition: transform 0.3s ease;
    border: px solid transparent;
    border-image: url('https://th.bing.com/th/id/R.ccfa9ddc26490623ae5a560f2478721f?rik=5LVJUIUlfTmf5w&riu=http%3a%2f%2fwallpapercave.com%2fwp%2f4lImLyA.jpg&ehk=2AQZ2jVoiesMErnFGBSxD2RbgdF%2fXjSF88oMXVEHU8o%3d&risl=&pid=ImgRaw&r=0') 20 round;
}

.container1 {
    
}

.container1:hover, .container2:hover, .container3:hover {
    transform: scale(1.02);
}

.piccontainer {
    border: 5px solid;
    height: 98%;
    border-image: linear-gradient(to right, #ff6a00, #ee0979) 1;
    border-radius: 30px;
    animation: borderColorChange 1s infinite;
    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;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.piccontainer:hover {
    transform: scale(1.05);
    cursor: pointer;
    width: 100%;
}

.piccontainer > img {
    height: 98%;
    width: 100%;
    transition: transform 0.3s ease;
    cursor: pointer;
     
}
/* 
.piccontainer > img:hover {
    transform: scale(1.1);
    cursor: pointer;
    width: 100%;
} */

@media screen and (max-width: 992px) {
    
  .piccontainer > img {
    height: 100%;
    width: full;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .container1 , .container2, .container3{
    /* width: full; */
    padding: 0px;
  }
}
@keyframes borderColorChange {
    0% {
        border-image: linear-gradient(to right, #ff6a00, #ee0979) 1;
    }
    50% {
        border-image: linear-gradient(to right, #00c6ff, #0072ff) 1;
    }
    100% {
        border-image: linear-gradient(to right, #ff6a00, #ee0979) 1;
    }
}

.ram {
    margin-top: 22rem;
    margin-bottom: 12rem;
    
    
}

.piccontainer {
    border: 5px solid transparent;
    border-image: url('https://img-s-msn-com.akamaized.net/tenant/amp/entityid/AA1rCJyA.img?w=768&h=432&m=6&x=150&y=118&s=116&d=116') 30 stretch;
}
* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
  }
* {
    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;  
    position: fixed;
    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;
    padding-top: 5px;
  }
  
  .toggle-btn {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
    margin-top: 15px;
  }
  
  .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:70px;
    width: 100%;
    display: none;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    list-style: none;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    height: 0;
    text-decoration: none;
    transition: 1s;
  }
  
  .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 {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    background-color:rgb(41,41,43);
    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: 30px;
    border-radius: 15px;
    padding-top: 70px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  }
  
  .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;
    
  }
  
  @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);
  }
  
  .spinner-section-btn {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
  }
  
  .goback button {
    background-color: #1c113d;
    color: white;
  }
  
  .goback button:hover {
    background-color: #1c113d;
    color: white;
  }
  
  .spinner-section-btn button a {
    color: white;
    text-decoration: none;
  }
  .spinner-section-btn button a:focus {
    color: white;
    text-decoration: none;
  }
  
  
  
  .explore-btn {
    margin-left: 20px;
    border-radius: 10px;
    border: 1px solid grey;
  }
  .explore-btn button a {
    color: black;
    text-decoration: none;
  }
  
  .spinner-component-section {
    width: auto;
    height: auto;
    margin-bottom: 20px;
  }
  
  .spinner-component-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .spinner-component-body {
    width: 100%;
    height: auto;
    margin-right: 50px;
    padding-top: 20px;
    padding-left: 30px;
    background-color: #f3f4f6;
    border-radius: 15px;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  
  .component {
    padding-top: 10px;
  }
  
  @media screen and (max-width: 1200px) {
    .spinner-component-body {
      margin-right: 0;
    }
  }
  
  
  /* Spinner-component-section end */
  
  /* tooltip-component-section start */
  
  
  
  .tooltip-component-section {
    width: auto;
    height: 100Vh;
    margin-bottom: 20px;
  }
  
  .tooltip-component-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .tooltip-component-body {
    width: 100%;
    height: auto;
    /* margin-right: 50px; */
    padding-top: 20px;
    padding-left: 30px;
    background-color: #f3f4f6;
    border-radius: 15px;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  
  
  .show-code-button {
    background-color: #1C113D;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
  }
  
  .code-section {
    display: none;
    width: auto;
    height: 100%;
    background-color: #f7f7f7;
    padding: 20px;
    margin-top: 20px;
    overflow-y: auto;
    border-radius: 5px;
    overflow-x: auto;
    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: 10;
    }
  }
  .h4easy{

    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: 700;
  }
  .parasave{
color: white;

  }
  .h2core{
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: 700;
  }
/* footer section */
#footerboxes{
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.footersbox{
  display: flex;
  width: 60%;
  justify-content: space-evenly;
  color: black;
}
.linelistfooter{
  margin-top: -14px;
}
.linelistfooter>li{
  list-style: none;
  margin-left: -29px;
  line-height: 1.6;
}
.footertab{
  
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  /* background: linear-gradient(to right, #fbc2eb, #a6c1ee); */
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-underline-offset: none;
  text-decoration: none;
}
.footertab:hover{
  background: linear-gradient(to right, #fbc2eb, #a6c1ee);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-decoration: underline;
}
#footertboxes{
  width: 80%;
  margin: auto;
  padding-top: 50px;
  font-family: sans-serif;
  font-size: 14px;
  padding-bottom: 1px;
}
.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: 30px 0px;
}
#footerspartimg{
  width: 240px;
}
footer{
  background: linear-gradient(to left, #ff6a00, #ee0979);
  margin: 0px;
  color: white;
}

@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;
}
}
.footerh3size{
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}
footer{
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  margin-top: 100px;
}
.hiring{
  background: linear-gradient(to right, #fbc2eb, #a6c1ee);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
/* footer end */

@media screen and (max-width: 992px) {
    .navbar ul {
        display: none;
    }

    .toggle-btn {
        display: block;
    }
}