* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overscroll-behavior: auto contain;
}

a{
    text-decoration: none;
    cursor: pointer;
}

button{
    cursor: pointer;
}

.navbar{
    display: flex;
    align-items: center;
    padding: 30px 0 0 60px;
}

.menu{
    display: flex;
}

.icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px;
}

.icon p{
    padding-left: 4px;
    font-size: 16px;
    font-weight: 500;
}

.upwork-text{
    color: #108A00;
}

.behance-text{
    color: #1769ff;
}

.heroSection{
    display: flex;
    flex: 1;
    margin-top: 40px;
    margin-left: 120px;
    overflow: hidden;
    position: relative;
    height: 80vh;
}

.hs-left{
    width: 620px;
}

.name {
    display: flex;
}

.name span{
    width: 52px;
    border-bottom: 2px solid #4c40f7;
}

.name p{
    font-size: 18px;
    font-weight: 600;
    color: #4c40f7;
}

.h-heading{
    font-weight: 600;
    font-size: 70px;
    padding-top: 30px;
}

.h-subheading{
    font-weight: 600;
    font-size: 24px;
    padding: 20px 0 160px 0;
}

.scroll{
    display: flex;
    align-items: center;
}

.scroll a{
    border-radius: 100%;
    background-color: white;
    width: 68px;
    height: 68px;
    filter: drop-shadow(0 1px 0.5px grey);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll p{
    font-size: 14px;
    margin-left: 24px;
}

.hero3d{
    z-index: -1;
    min-width: 100%;
    transform: scale(0.4);
    position: absolute;
    object-fit: cover;
    overflow: hidden;
    align-items: center;
    top: -560px;
    right: -390px;
}

.work{
    background: url(images/work3d.png);
    display: flex;
    width: 100%;
    background-size: auto;
    background-position: right center;
    background-repeat: no-repeat;
    height: 100vh;
}

.upper-section{
    margin-top: 80px;
    margin-left: 120px;
}

.w-left{
    width: 960px;
}

.work hr{
    width: 100%;
    border: 0.5px solid #ececec;
}

.sm-heading{
    padding-top: 40px;
    padding-bottom: 40px;
    font-weight: 600;
    font-size: 50px;
    line-height: 56px;
}

.big-heading{
    padding-top: 60px;
    font-weight: 600;
    font-size: 140px;
    line-height: 130px;
    padding-bottom: 100px;
}

.btn{
    padding: 20px 50px;
    background-color: #4c40f7;
    margin-left: 12px;
    border-radius: 15px;
    border: 1px solid #4c40f7;
}

.btn2{
    color: white;
    font-size: 20px;
}

.lower-section {
    width: 85%;
    margin: 10px auto auto auto;
}

.crousel-cards{
    display: flex;
    justify-content: space-between;
}

.w-card{
    display: flex;
    flex: 1; /* ensure that all cards within the flex container will have equal width, regardless of their content. This property tells the flex items to grow and take up available space within the flex container equally */
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 42px;
    margin-bottom: 40px;
    border-radius: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid rgb(0 0 0 / 10%);
    /* box-shadow: rgb(0 0 0 / 5%) 0px 5px 10px; */ /* If shadow is needed instead of border */
}

.w-card:hover{
    box-shadow: rgb(0 0 0 / 15%) 0px 27px 25px, rgb(0 0 0 / 5%) 0px 5px 10px;
    border-radius: 20px;
    transform: scale(1);
}

.wc-img{
    width: 240px;
    height: 240px;
    overflow: hidden; /* Hide any content that overflows the container */
    border-radius: 50%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    -webkit-clip-path: circle(45% at 50% 50%);
    clip-path: circle(45% at 50% 50%);
}

.wc-img img{
    max-width: 100%; /* Ensure the image doesn't exceed the container width */
    height: auto; /* Maintain the aspect ratio of the image */
}

.wc-title{
    margin: 10px 0px;
    font-weight: 600;
    font-size: 24px;
}

.wc-details{
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #6b6b6b;
    line-height: 32px;
}

.worked-with-screen{
    height: 100vh;
    background: url("./images/workWithbg.png");
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
}

.workedWith{
    padding-top: 80px;
    padding-left: 120px;
    width: 660px;
}

.worked-with-details{
    color: #ffffff;
}

.worked-with-details .scroll p{
    color: #ffffff;
}

.gradientbg{
    position: absolute;
    z-index: -4;
    width: 100vw;
    overflow: hidden;
}

/* .gradientbg > img{
    width: 100%;
} */

.products{
    background-image: url("./images/productbg.png");
    padding: 80px 120px;
    background-repeat: no-repeat;
}

.products-details{
    max-width: 1500px;
    margin: auto;
}

.p-heading{
    font-weight: 600;
    padding-top: 30px;
    font-size: 70px;
    line-height: 117%;
    letter-spacing: -0.5px;
    max-width: 700px;
}

.tabs{
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
}
  
.tabs-label{
    font-size: 18px;
    font-weight: 600;
    padding: 10px 40px;
    cursor: pointer;
}
  
.tabs-radio{
    display: none;
}
  
.tabs-content{
    order: 1;
    width: 100%;
    line-height: 1.5px;
    display: none;
    padding-top: 10px;
}
  
.tabs-radio:checked + .tabs-label{
    font-weight: 600;
    color: #4c40f7;
    border-bottom: 2px solid #4c40f7;
}
  
.tabs-radio:checked + .tabs-label + .tabs-content{
    display: initial;
}

.cards{
    display: grid;
    /* grid-template-columns: 48% 48%; */
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 60px;
    grid-row-gap: 30px;
    grid-column-gap: 30px;
    /* overflow: hidden; */
    justify-content: center;
}

.card{
    border-radius: 50px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.card:hover{
  box-shadow: rgb(0 0 0 / 15%) 0px 27px 25px, rgb(0 0 0 / 5%) 0px 5px 10px;
}

.card :nth-child(2){
    font-weight: 600;
    font-size: 20px;
    line-height: 48px;
    letter-spacing: -0.15px;
    padding: 2rem 2.5rem 0 2.5rem;
    color: #111029;
}

.card :nth-child(3){
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #6b6b6b;
    padding: 0.2rem 2.5rem 3rem;
}





.t-heading{
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    padding-bottom: 20px;
    color: #4c40f7;
}
  
.t-bigheading{
    font-weight: 600;
    font-size: 72px;
    text-align: center;
    letter-spacing: -0.5px;
}


  .slider {
    overflow: hidden;
  }
  
  .slider-wrapper {
    display: flex;
    animation: scroll 100s linear infinite;
    padding-bottom: 80px;
  }
  
  .slider-card {
    flex-shrink: 0;
    background: #ffffff;
    margin-top: 40px;
    padding: 50px;
    width: 100%; /* Full width by default */
    max-width: 769px; /* Maximum width */
    border-radius: 20px;
    border: 1px solid rgb(0 0 0 / 10%);
  }

  .slider-card:hover{
    box-shadow: rgb(0 0 0 / 15%) 0px 27px 25px, rgb(0 0 0 / 5%) 0px 5px 10px;
    border-radius: 20px;
    transform: scale(1.1);
  }
  
  .slider-card:not(:first-child) {
    width: calc(50% - 80px); /* Adjust as needed */
    margin-left: 80px; /* Adjust as needed */
  }
  
  @keyframes scroll{
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .slider-card p {
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -0.1px;
  }
  
  .slider-person {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
  }
  
  .slider-card img {
    width: 64px;
    height: 64px;
    border-radius: 100%;
  }
  
  .avatar-name {
    font-weight: 600;
    font-size: 24px;
  }
  
  .avatar-designation {
    font-weight: 400;
    font-size: 18px;
  }
  
  


  .contact-details {
    position: relative;
    overflow: hidden;
  }
  .contact-image {
    position: absolute;
    overflow: hidden;
  }
  .contact-image > img {
    z-index: 1;
    position: relative;
    width: 100%;
    top: -13rem;
  }
  .contact {
    margin: 7rem;
    background-color: white;
    border-radius: 48px;
    z-index: 2;
    box-shadow: rgb(0 0 0 / 15%) 0px 27px 25px, rgb(0 0 0 / 5%) 0px 5px 10px;

  }
  .ContactSection {
    display: flex;
    padding: 6rem;
    margin-top: 20px;
  }
  .ContactSection .left {
    flex: 1;
  }
  .contact .heading {
    font-style: normal;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 72px;
    line-height: 84px;
  
    letter-spacing: -0.5px;
  
  
    color: #111029;
  }
  .contact .sm-heading {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    margin-top: 22px;
    color: #6b6b6b;
  }
  
  .details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
  }
  .detail {
    display: flex;
    gap: 3rem;
  }
  .ContactSection .right {
    flex: 1;
    position: relative;
    z-index: 2;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72%;
    gap: 1rem;
  }
  input,
  textarea {
    outline: none;
    border: none;
    background: transparent;
  }
  .input-field,
  .text-field {
    display: flex;
    justify-content: space-between;
    gap: 9rem;
    border: none;
    padding: 20px;
    background: rgba(244, 244, 244, 0.801191);
    border-radius: 11px;
  }
  .text-field {
    align-items: flex-start;
  }
  
  .submit-button {
    margin-top: 1rem;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    background-color: var(--blue);
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
    color: white;
    border: none;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    gap: 16px;
    width: 13rem;
  }
  .social-media {
    display: flex;
    margin-top: 2rem;
    justify-content: space-evenly;
  }
  
  .sm-icon {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
  }
  
  .sm-icon > span {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    
  
    color: #9f9fa9;
  }
  .contact-stack1 {
    background-color: #203696;
    margin: 0 2rem 0 2rem;
    height: 35px;
    border-radius: 48px;
    z-index: -1;
    position: relative;
    top: 4.1rem;
  }
  .contact-stack2 {
    background-color: #1b1b87;
    margin: 0 3rem 0 3rem;
    height: 50px;
    border-radius: 48px;
    z-index: -2;
    position: relative;
    top: 2rem;
  }




  .footer {
    position: relative;
    color: white;
  }
  .footer-bg {
    position: absolute;
    width: 100vw;
    z-index: -3;
    top: -50rem;
    height: -webkit-fill-available;
    overflow: hidden;
  }
  .footer-bg > img {
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
  }
  .footer-details {
    padding: 0 7rem 0 7rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
  }

  .footer .heading {
    font-style: normal;
    font-weight: 600;
    font-size: 70px;
    line-height: 84px;
    padding: 0px 30px;
    letter-spacing: -0.5px;
  }
  .footer .sm-heading {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.15px;
    color: #ffbdbd;
  }
  .Menus li {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
   
  
    color: #ffffff;
    list-style: none;
  }
  .footer hr {
    background: #d8d8d8;
    mix-blend-mode: normal;
    opacity: 0.2;
    margin: 3rem 7rem 0 7rem;
  }
  .bottom-bar {
    display: flex;
    justify-content: center;
    padding: 2px 10px;
  }
  /* .bottom-bar a {
    color: rgb(226, 226, 226);
  } */
  #popup {
    text-align: center;
    width: 81%;
    background: #a6c81e;
    margin: auto;
    padding: 9px;
    color: white;
    border-radius: 5px;
    display: none;
    font-size: 12px;
}
  