* {
    margin: 0;
    padding: 0;
  }
  
  body {
    
    padding-left: 40px;
    padding-right: 40px;
  }
  
  
 
.VerveGen-nav{
  background-color: white;
}
.VerveGen-nav .logo {
  background: url("/testing/images/logo.jpeg");
  height: 80px;
  width: 160px;
  padding: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: darken;
}

.VerveGen-nav .anch {
  font-size: 14px;

  font-weight: 600;

}

.VerveGen-nav .anch:hover {
  color: #f86f03;
}

.VerveGen-nav .drop-down {
  font-size: 2rem;
}



@media screen and (max-width: 768px) {

  .cont .cards {

    margin-top: 0;
  }

  #nav-button {
    margin-right: 10px;
  }
}

.container {
  padding: 00px 0;
}


  
/* One stop solution to all Technologies */

.cont {
    margin: 0;
    padding: 0px 0px 30px 0px;
    width: 80%;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    font-family: 'DM Sans', sans-serif;
    transition: background .4s ease-in;
  
  }
  
  .cont input[type=radio] {
    display: none;
  }
  
  .cont .card {
    grid-row-start: 1;
    grid-column-start: 1;
    width: 100%;
    height: 80%;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform .4s ease;
    border-radius: 20px;
  
    cursor: pointer;
  }
  
  .cont .container {
    width: 100%;
    max-width: 1000px;
    max-height: 600px;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .cont .cards {
    display: grid;
    grid-template-columns: 1fr;
    width: 90%;
    margin-top: 0vh;
  }
  
  .cont img {
    width: 100%;
    height: 80vh;
    border-radius: 10px;
    object-fit: cover;
  }
  
  #item-1:checked~.cards #song-3,
  #item-2:checked~.cards #song-1,
  #item-3:checked~.cards #song-2 {
    transform: translatex(-15%) scale(0.86);
    opacity: .4;
    top: scale(0.07);
    z-index: 0;
  
  }
  
  #item-1:checked~.cards #song-2,
  #item-2:checked~.cards #song-3,
  #item-3:checked~.cards #song-1 {
    transform: translatex(15%) scale(0.86);
    opacity: .4;
    top: scale(0.07);
    z-index: 0;
  }
  
  #item-1:checked~.cards #song-1,
  #item-2:checked~.cards #song-2,
  #item-3:checked~.cards #song-3 {
    transform: translatex(0) scale(1);
    opacity: 1;
    z-index: 1;
  
  
  }
  .next-div{
    display: flex;
    padding: 0px 50px;
    border: 2px solid #f86f03;
    margin: 20px;
    border-radius: 20px;
  }
  
  
  .next-div .text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  .next-div .text h1{
    height: inherit;font-weight: 700;margin: 20px;letter-spacing: 2px;
  }
  
  
  @media only screen and (max-width: 768px) {
    .next-div .text{
      display: none;
    }
  
    .next-div {
      flex-direction: column;
    }
  
    .cont {
      width: 100%;
      padding: 0;
  
    }
  
    .next-div .text h1 {
      font-size: x-large;
      margin-top: 0px;
      margin-bottom: 0px;
    }
  
    .cont img {
      height: 40vh;
  
  
    }
  
    .cont .cards {
  
      margin-top: 0;
    }
  
    #nav-button {
      margin-right: 10px;
    }
  }
  






 /* Your CSS styles for the website go here */
    /* ... (same as before) ... */

    /* Styling for the modal form */
    .modal {
        display: none;
        /* Hidden by default */
        position: fixed;
        z-index: 999;
        left: 0;
        
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.4);
    }
  
    .modal-content {
        border-radius: 10px;
        background-color: #fefefe;
        margin: 1% auto;
        padding: 16px;
        border: 1px solid #888;
        width: fit-content  !important;
        top: 5%;
    }
  
    .enquiry-form {
        display: flex;
        margin: 1vh 2vw;
        flex-direction: column;
    }
  
    .form-group {
        margin-bottom: 20px;
    }
  
    .form-group label {
        font-size: 16px;
        margin-bottom: 5px;
    }
  
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px 3px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
  
    .form-group textarea {
        resize: vertical;
    }
  
    .submit-btn {
        background-color: #f86f03;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
    }
  
    /* Styling for the fixed "Enquiry" button */
   .fixed-enquiry-btn {
      position: fixed;
      top: 120px;
      right:-30px;
      background-color: #f86f03;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
      z-index: 998;
      transform: rotate(270deg);
  }
  
    /* Styling for error messages */
    .error-message {
        color: red;
    }
  
    .thank-you-message {
        display: none;
        position: absolute;
     
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        color: #fff;
        background-color: #f86f03;
        padding: 20px;
        border-radius: 8px;
        z-index: 99999;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
  
    /* Styling for the "Thank you" message when the modal is active */
    .modal.active .thank-you-message {
        display: block;
    }
    .close{
        text-align: end;
cursor: pointer;
    }
  





    .section-center {
        width: 90vw;
        margin: 0 auto;
        max-width: 1170px;
        min-width: 340px;
        padding: 2rem 0;
        
    }

    .footer-about-us {
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 0
    }

    .img-about-us {
        display: block;
        width: 100%;
        filter: brightness(60%);
        border-radius: .5rem;
        object-fit: cover
    }

    .tabs-about {
        background: #f5f5f5;
        border-radius: .5rem;
        grid-template-rows: auto 1fr
    }

    .btn-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr
    }

    .button-about:first-child {
        border-top-left-radius: .5rem
    }

    .button-about:nth-child(3) {
        border-top-right-radius: .5rem
    }

    .button-about {
        padding: 1rem 0;
        border: none;
        font-size: 1rem;
        background: #b6c9f0;
        transition: .3s linear;
        letter-spacing: .25rem
    }

    .button-about:hover:not(.live) {
        background: rgba(238, 164, 18, .9);
        color: #fff
    }

    .tabs-about-content {
        padding: 2rem 1.5rem
    }

    .button-about.live {
        background: #4c5a7d;
        color: #fff
    }

    @media (min-width:992px) {
        .image-about {
            margin-bottom: 0
        }

        .section-center {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 2rem
        }
    }

    #step2 {
        display: none;
    }

    #step3 {
        display: none;
    }
    #btn1{
        background-color:#f86f03;
    }
    #btn2{
        background-color:#ffcea9 ;
    }
    #btn3{
        background-color:#ffcea9;
    }
    .about_vervegen_edtech{
      padding: 40px 20px;
    }


    /* Testimonials */
.Testi{
  text-align: center;
}
#Testimonials{
  display: flex;
  justify-content: center;
  margin: 20px;
  border-radius: 20px;
  background: white;
}
#Testimonials .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        overflow: hidden;
        height: fit-content;

    }

    #Testimonials .card-tech {
        max-width: 600px;
        margin: 20px;
        height: 300px;
        display: none;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    #Testimonials .card-tech.active {
        display: block;
    }

    #Testimonials .card-tech-img {
        max-width: 175px;
        border-radius: 4px;
        float: left;
        margin: 20px;
    }

    #Testimonials .card-tech-body {
        padding: 20px;
        overflow: hidden;
        text-align: left;
    }

    #Testimonials .card-tech-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    #Testimonials .card-tech-text {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
    }
.close{
  cursor: pointer;
}
    #Testimonials .carousel-inner {
        display: flex;
        overflow: hidden;
        align-items: center;
        height: 100%;
    }

    #Testimonials  .carousel-indicators {
        position: absolute;

        left: 50%;
        transform: translateX(-50%);
        display: none;
        z-index: 1;
    }

    #Testimonials .carousel-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #bbb;
        margin: 0 5px;
        cursor: pointer;
    }

    #Testimonials .carousel-indicator.active {
        background-color: #555;
    }

    #Testimonials {
        text-align: center;
        height: fit-content;
        
    }
    @media screen and (max-width: 768px) {
        #Testimonials  .card-tech-text{
        font-size: 7px;
      }
      #Testimonials  .card-tech-title{
        font-size: 14px;
      }
      #Testimonials  .card-tech-body h3{
        font-size: 12px;
      }
      #Testimonials  .card-tech-img{
        width: 100px;
     
        border-radius: 0;
        margin: 5px;
        
      }
      #Testimonials  .card-tech{
        height: 160px;
      }
            }





    /* company */
    .company{
      padding: 20px;
    }
    
    .company img{
      aspect-ratio: 3/2;object-fit: contain;
    }
    .company h3{
      text-align: center;color: #f86f03;
    }
    .company .verveGen{
      background-color: white;;display: flex;width: 100%;height: 80px;justify-content: space-evenly;mix-blend-mode: darken;border: 1px solid #f86f03; background: white;border-radius:20px ;
    }
    @media screen and (max-width: 650px){
      .company img{
          aspect-ratio: 1.5/2;
      }
    }

      /* footer */
  
footer {
  background-color: #f8f9fa;
  padding: 40px 0;
}

footer h2 {
  margin-bottom: 20px;
  color: #f86f03;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-content div {
  flex: 0 0 calc(33.33% - 20px);
  max-width: 300px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.about_us img {
  max-width: 150px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-social a {
  color: #f86f03;
  font-size: 24px;
  margin-right: 15px;
  transition: color 0.3s;
}

.information a,
.contact_det p {
  color: black;
  margin-bottom: 5px;
  font-size: 1rem;
  text-overflow: wrap;
  transition: color 0.3s;
  text-align: justify;
  
}

.contact_det i {
  margin-right: 15px;
  color: #f86f03;
}

/* Hover styles */
.footer-social a:hover {
  color: #f86f03;
}

.information a:hover,
.contact_det p:hover {
  color: #f86f03;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-content div {
      flex: 0 0 calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .footer-content div {
      flex: 0 0 100%;
  }
}
    footer{
      background-color: #fff;
      margin: 20px 20px 0px;
      border-radius: 20px 20px 0px 0px;
      
    }

    
@media screen and (max-width: 768px) {

  .cont .cards {

    margin-top: 0;
  }

  #nav-button {
    margin-right: 10px;
  }
}

@media screen and (max-width: 480px){
.next-div{
  padding: 0;
}
body{
  padding: 0;
}
}


a{
  text-decoration: none;
}