/* css for composit skill lab  */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
  }
  
  .banner {
    position: relative;
    padding: 2rem;
    overflow: hidden;
    /* text-align: center; */
  }
  .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex; 
    justify-content: space-between; 
}

.bg-icon {
    position: relative; 
    width: 30%; 
    height: auto; 
}

.bg-icon:first-child {
    left: 0; 
}

.bg-icon:last-child {
    right: 0; 
}
  
  .bg-icon {
    position: absolute;
    width: 540px;
    animation: float 6s infinite ease-in-out;
  }
  
  .title {
    font-size: 2rem;
    font-weight: bold;
    z-index: 1;
    position: relative;
  }
  
  .highlight {
    background: linear-gradient(45deg, #7600FF, #FF007A);
    -webkit-background-clip: text;
    <!-- -webkit-text-fill-color: transparent; -->
    padding: 0.2rem 0.4rem;
    background-color: #FFD700;
    border-radius: 5px;
  }
  
  .subtitle {
    font-size: 1rem;
    color: #333;
    margin-top: 1rem;
    z-index: 1;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 1;
  }
  
  .book-meeting,
  .sample-lab {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  
  
  .book-meeting {
    background: #DC3B9F;
  
    color: #fff;
  
    width: 171px;
  
    height: 50px;
  
    margin-top: 32px;
  
  }
  
  .sample-lab {
    background: #eee;
    color: #333;
  }
  
  .images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 1;
  }
  
  .image-container {
    /* border: 4px solid; */
    border-image-slice: 1;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
   
    object-fit: cover;
  }
  
  .form-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 333;
  }
  
  .form-container {
    text-align: left;
  }
  
  .close-btn {
    background: #FF007A;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .title {
      font-size: 1.5rem;
    }
  
    .subtitle {
      font-size: 0.9rem;
    }
  
    .buttons {
      flex-direction: column;
    }
  
    .image-container img {
      width: 100%;
      
    }
  }
  
  /* Section Styling section 1*/
.skill-lab-section {
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/* Centered Icon */
.section-icon {
  text-align: center;
  margin-bottom: 20px;
}
.section-icon img {
  width: 50px;
  height: 50px;
}

/* Highlighted Button */
.cbse-button {
  text-align: center;
  margin-bottom: 30px;
  font-size: x-large;
}
.cbse-button a {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #7AC943, #F0C419);
  color: #0d0d0d;
  font-weight: bold;
  text-decoration: none;
  border-radius: 44px;
  transition: 0.3s ease;
}
.cbse-button a:hover {
  background-color: #F0C419;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left Side (Text) */
.content-text {
  flex: 1;
  max-width: 50%;
}
.content-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.gradient-text {
  background: linear-gradient(90deg, #7AC943, #F0C419);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

/* Right Side (Image) */
.content-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsiveness */
@media (max-width: 768px) {
  .content-wrapper {
      flex-direction: column;
  }
  .content-text, .content-image {
      max-width: 100%;
  }
}

/* Section Styling */
.cbse-lab-section {
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 1200px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Highlighted Badge */

.EnpowerHeading{
  color: linear-gradient(90deg, #ED7115, #FABE2C);
}
.cbse-badge {
  text-align: center;
  margin-bottom: 20px;
}
.cbse-badge span {
  display: inline-block;
  padding: 8px 20px;
  background-color: linear-gradient(90deg, #ED7115, #FABE2C);
  background: #ED7115;
  color: #0a0a0a;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 20px;
  margin-top: -9px;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left Side (Text) */
.content-text {
  flex: 1;
  max-width: 50%;
  color: #333;
  line-height: 1.6;
}
.content-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
.bold-text {
  font-weight: bold;
}
.logo {
  vertical-align: middle;
  height: 40px;
  margin-left: 10px;
}
.content-text p {
  margin-bottom: 15px;
  font-size: 1rem;
}
ul {
  margin: 15px 0;
  padding-left: 20px;
  list-style: disc;
}
ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.lab-options {
  margin-top: 15px;
}

/* Right Side (Image) */
.content-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  object-fit: cover;
}

/* why setu section starts from here  */

.why-setu-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}
.heading-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.small-icon {
  width: 30px;
  height: 30px;
}
.heading-wrapper h1 {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.setu-logo img {
  height: 40px;
  margin-left: 5px;
  vertical-align: middle;
}


.description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}
.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsiveness */
@media (max-width: 768px) {
  .card-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .card-grid {
      grid-template-columns: 1fr;
  }
}

/* 
strip */

.strip{
  background: linear-gradient(#5CCBF1,#A150FF);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getButton {
    background: #ffffff;
    width: 165px;
    border-radius: 26px;
    font-size: 18px;
    margin-left: 19px;
    text-align: center;
    gap: 2px;
    border-block-width: 0px;
}



/* how setu section start */
/* Section Styling */

.how-setu-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}

/* Heading */
.section-heading h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
margin-top: 30px;
}
.gradient-text {
  background: linear-gradient(90deg, #FF69B4, #6A5ACD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dynamic-section {
  position: relative;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f9f9; /* Light background for the section */
  overflow: hidden;
}

/* Button Strip Styling */
.button-strip {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: -20px;
  flex-wrap: wrap;
  background-color: #A150FF;
  border-radius: 54px;
}
.tab-button {
  background-color: #F5DC42;
  color: #030303;
  font-weight: bolder;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}
.tab-button.active {
  background-color: #fff;
  color: #000000;
  border: 1px solid #6A5ACD;
}

/* Gradient Box */
.gradient-box {
  position: relative;
  width: 90%;
  max-width: 1200px;
  background: #fff; /* White background inside */
  border-radius: 0px;
  padding: 30px 20px;
  border: 2px solid transparent;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, #FF69B4, #6A5ACD, #FFD700);
  z-index: 1; /* Lower z-index for the box */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Text Content */
.text-content {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Image Container */
.image-container {
  text-align: center;
  margin-top: 20px;
}
.image-container img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .button-strip {
      flex-direction: column;
      gap: 10px;
  }
  .tab-button {
      width: 100%;
      text-align: center;
  }
  .gradient-box {
      padding: 20px 10px;
  }
}

/* QBC SECTION CSS */

.section {
  text-align: center;
  margin: 50px 0;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.image-containe {
  position: relative;
}

.image-containe img {
  display: block;
  width: 90%;
  margin: 0 auto;
  
}

.qbc-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* Ensure QBC logo is on top */
  width: 150px;
}

