h1 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 40px;
}

a, li, p{

  font-family: "Roboto", sans-serif;
  font-style: normal;

}







/* section-1 */

.lighthouse {
  padding-top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  background-color: rgb(245, 250, 255);
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.light-text {
  width: 40%
}

.light-img img {
  width: 100%
}
@media screen and (max-width:430px){
  .light-img img{
    margin-top: 30px;
  }
}

.light-text h1 {
  color: #1976d2;
  margin-bottom: 20px;
  font-weight: bolder;
  font-style: normal;
}


.light-text ul {
  margin-top: 20px;
  /* padding-left: 20px; */
}


.light-text li {
  margin-top: 10px;
  font-size: 20px;
  list-style: none;
}


.light-text p {
  margin-top: 30px;
  font-size: 20px;
}

.light-text a{
  background-color: rgba(44, 119, 211, 1);
  padding: 15px 30px;
  text-decoration: none;
  color: w  te;
  border-radius: 4px;
  position: relative;
  top: 30px;
  transition: 0.5s;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  z-index: 1;
  margin-top: 20px;
  color:white

}


.light-text a:hover{
  border-color: #2c77d3;
  background-color: transparent;
  color: #2c77d3;
}



@media screen and (max-width:876px) {
  .light-text {
    width: 100%
  }

  .lighthouse {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
}





/* sectioj-2 */

/* new-section */

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 100px 30px 100px 30px;
  
}

.predictor-card {
  width: 500px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.predictor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(50, 50, 93, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
  background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rank-based .card-header {
  background: linear-gradient(135deg, #1a6fc4 0%, #2b8fef 100%);
}

.marks-based .card-header {
  background: linear-gradient(135deg, #2c77d3 0%, #2c77d3 100%);
}

.card-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 2;
}

.card-header:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -75px;
  right: -75px;
}

.card-header:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

.card-body {
  padding: 30px;
}

.card-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.card-subtitle:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: #6e48aa;
  margin-right: 10px;
  border-radius: 4px;
}

.rank-based .card-subtitle:before {
  background-color: #1a6fc4;
}

.marks-based .card-subtitle:before {
  background-color: #1976d2;
}

.feature-list {
  list-style: none;
  margin-bottom: 25px;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
  font-size: 15px;
}

.feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236e48aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color:#2c77d3;
}

.rank-based .feature-list li:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a6fc4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
}

.marks-based .feature-list li:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232c77d3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
}


.cta-button {
  display: inline-block;
  width: 100%;
  background: #6e48aa;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.rank-based .cta-button {
  background: #1a6fc4;
}

.marks-based .cta-button {
  background: #1976d2;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.badge {
  position: absolute;
  top: 0;
  right: 20px;
  background: #ff6b6b;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  z-index: 2;
}

@media (max-width: 768px) {
  .predictor-card {
      width: 100%;
  }
}














.lighthouse-section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 100px;
  padding-top: 100px;
}

.light-sec2-text {
  width: 40%
}



.light-sec2-text p {

  /* margin-top: 10px; */
  font-size: 20px;
  line-height: 26px;

}

.light-sec2-img img{
  width: 100%;
}
.light-sec2-text a{
  background-color: rgba(44, 119, 211, 1);
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    position: relative;
    top: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    z-index: 1;
}


.light-sec2-text a:hover {
    border-color: #2c77d3;
    background-color: transparent;
    color: #2c77d3;
}

@media screen and (max-width:1156px) {
  .light-sec2-text {
    width: 94%
  }

  .lighthouse-section-2 {
    flex-direction: column-reverse;
 
  }
  .light-sec2-img img{
    max-width: 500px;
  }
}



.hidden-content {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
}

.hidden-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.hidden-content ul {
  list-style-type: none;
  margin-bottom: 15px;
  padding-left: 10px;
}

.hidden-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
}

.hidden-content li::before {
  content: "•";
  color: rgba(44, 119, 211, 1);
  font-weight: bold;
  position: absolute;
  left: 0;
}





/* secrion-3 */

.game-changer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 100px;
  padding-top: 100px;
  background-color: rgb(245, 250, 255);
}

.game-text{
  width:35%;
}



.game-img img {
  width: 100%
}


.game-text ul {
  margin-top: 20px;
  padding-left: 20px;
}


.game-text li {
  margin-top: 10px;
  font-size: 20px;
  line-height: 30px;
  list-style: none;
}


ul.custom-list {
  list-style: none;
  padding-left: 0;
}

ul.custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

ul.custom-list li span.icon {
  color: #1976d2;
  margin-right: 8px;
  line-height: 1.5;
}




.game-text a{
  background-color: rgba(44, 119, 211, 1);
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    position: relative;
    top: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    z-index: 1;
}


.game-text a:hover {
    border-color: #2c77d3;
    background-color: transparent;
    color: #2c77d3;
}



@media screen and (max-width:1114px){
  .game-text{
    width: 95%;
  }
}







/* section-4 */

.light-table{
  text-align: center;

}



/* section-5 */

.add-value{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  padding-top: 40px;
  margin-top: 50px;
}


.add-text{
  width:40%;
}

.add-img img {
  width: 100%
}


.add-text li {
  margin-top: 20px;
  font-size: 20px;
}

.add-text a{
  background-color: rgba(44, 119, 211, 1);
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    position: relative;
    top: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    z-index: 1;
}


.add-text a:hover {
    border-color: #2c77d3;
    background-color: transparent;
    color: #2c77d3;
}

@media screen and (max-width:973px){
  .add-text{
    width: 90%
  }
}


.UG-text a{
  background-color: rgba(44, 119, 211, 1);
  padding: 15px 30px;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  position: relative;
  top: 30px;
  transition: 0.5s;
  display: inline-block;
  transition: 0.5s;
  border: 2px solid transparent;

}

.UG-text a:hover {
  border-color: #2c77d3;
  background-color: transparent;
  color: #2c77d3;
}















.questions {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  padding-bottom: 50px;
  margin: auto;
  /* margin-left: 280px;
   */
  /* Specific left margin as requested */
  max-width: 100vw;
  /* Adjust content width */
}

@media screen and (max-width:1550px) {
  .questions {
      /* margin-left: 150px; */
  }
}

.questions h1 {
  margin-top: 150px;
  font-weight: 550;
  font-style: normal;
  color: #333;
  text-align: center;
}

.frequently {
  margin-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.the-questions {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgb(223, 223, 223);
  width: 100%;
  max-width: 1160px;
  padding: 20px;
  margin-top: 30px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.the-questions:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.the-questions i {
  color: rgba(27, 153, 212, 1);
  font-size: 25px;
  font-weight: bolder;
  min-width: 30px;
  text-align: center;
}

.the-questions p {
  font-size: 22px;
  color: rgba(33, 33, 33, 1);
  flex-grow: 1;
}

/* Responsive Adjustments */

@media screen and (max-width:1500px) {
  .questions {
      /* margin-left: 130px; */
  }
}


@media screen and (max-width:1025px) {
  .questions {
      /* margin-left: 100px; */
  }
}


/* @media screen and (max-width: 992px) {
  .questions {
      margin-left: 150px;
      max-width: calc(100% - 170px);
  }
} */

@media screen and (max-width: 768px) {
  .questions {
      margin-left: 20px;
      max-width: calc(100% - 40px);
  }

  .questions h1 {
      margin-top: 100px;
  }

  .the-questions {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }

  .the-questions p {
      font-size: 18px;
  }

  .the-questions i {
      font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .questions {
      margin-left: 10px;
      max-width: calc(100% - 20px);
  }

  .questions h1 {
      margin-top: 80px;
  }

  .the-questions p {
      font-size: 16px;
  }
}











@media screen and (max-width:1550px) {
  h1 {
    font-size: 35px;
  }
}


@media screen and (max-width:768px) {
  h1 {
    font-size: 30px;
  }
}

@media screen and (max-width:425px) {
  h1 {
    font-size: 25px;
  }
}