/* background */
.back-power-cable-acc {
  background-color: #c8eff7;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px 20px 20px;
  gap: 20px;
}

.home-section-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
}

.home-section-text p {
  font-size: 2rem;
  color: rgb(110, 23, 138);
  margin-left: 70px;
}

.back-power-cable-acc h1 {
  font-size: 8rem;
  font-weight: bold;
  margin: 0;
  color: rgb(213, 17, 17);
}

.home-section-text h1 {
  font-size: 4.6rem;
  font-weight: bold;
  margin: 0;
  color: rgb(213, 17, 17);
}

.home-section-text h2 {
  font-size: 5rem;
  margin: 0;
  color: rgb(44, 44, 174);
}

.home-section-text h3 {
  font-size: 12rem;
  margin: 0;
  color: #000;
}

.home-section-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  margin-top: 30px;
}

.home-section-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.home-section-img img {
  width: 100%;
  max-width: 550px; /* Optional cap for desktop */
  height: auto;
  border-radius: 10px;
}

/* ✅ Responsive Breakpoints */
@media (max-width: 1200px) {
  .back-power-cable-acc h1 {
    font-size: 6rem;
  }

  .home-section-text h2 {
    font-size: 4rem;
  }

  .home-section-text h3 {
    font-size: 8rem;
  }
}

@media (max-width: 768px) {
.home-section-text{
  margin-top: 50px;
}
}

@media (max-width: 768px) {
  .back-power-cable-acc {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .home-section-text {
    padding: 0;
    align-items: center;
  }

  .home-section-text p {
    margin-left: 0;
    font-size: 2.2rem;
  }

  .back-power-cable-acc h1 {
    font-size: 4rem;
  }

  .home-section-text h2 {
    font-size: 2.8rem;
  }

  .home-section-text h3 {
    font-size: 6rem;
  }

  .home-section-img {
    padding: 0;
  }
}

.d-flex.justify-content-start {
  width: 500px;
}

/* Mobile view */
@media screen and (max-width: 576px) {
  .d-flex.justify-content-start {
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .back-power-cable-acc {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .home-section-text {
    padding: 0;
    align-items: center;
    text-align: center;
  }



  .home-section-text h1 {
    font-size: 2.5rem;
  }

  .home-section-text h2 {
    font-size: 1.8rem;
  }

  .home-section-text h3 {
    font-size: 4rem;
  }

  .home-section-text p {
     font-size: 2.2rem;
    margin-left: 0;
  }

  .home-section-img {
    width: 100%;
    padding: 0;
    justify-content: center;
  }

  .home-section-img img {
    width: 90%;
    height: auto;
  }
}


/* timmmer csss */

#countdown-card {
  max-width: 100%;
  width: 50%;
  margin: 50px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* ensures the header touches edges */
}

#card-header {
  background-color: #6f00ff;
  padding: 1rem 0;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin: 0;
}

.countdown-tile h2 {
  font-size: 4rem;
  font-weight: 600;
}

.countdown-tile p {
  margin-top: 8px;
  font-size: 2rem;
  color: #555;
}

@media (max-width: 576px) {
  .countdown-tile h2 {
    font-size: 1.8rem;
  }
  .countdown-tile p {
    font-size: 0.9rem;
  }
}


/* ________________organize-by-outer section css______________________________________ */
#organize-by-outer {
  background-color: rgb(241, 241, 241);
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.organized-div1,
.organized-div2 {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.organized-div1 h1 {
  font-size: 4.6rem;
  margin: 100px 0 100px 0;
}

.organized-div1 img,
.organized-div2 img {
  width: 65%;
  height: auto;
  border-radius: 15px;
}

.organized-div2 p {
  font-size: 2rem;
  color: rgb(47, 47, 175);
  margin: 0 40px;
  text-align: left;
  padding: 50px 0 50px 0;
}

/* ✅ Responsive Breakpoints */
@media screen and (max-width: 992px) {
  .organized-div1 h1 {
    font-size: 3.5rem;
  }

  .organized-div2 p {
    font-size: 1.6rem;
    margin: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  #organize-by-outer {
    flex-direction: column;
    align-items: center;
  }
  .organized-div1 h1 {
    font-size: 5rem;
  }

  .organized-div2 p {
    font-size: 2rem;
    margin: 0 20px;
  }

  .organized-div1,
  .organized-div2 {
    width: 100%;
  }

  .organized-div2 p {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  
  .organized-div1 h1 {
    font-size: 2.5rem;
  }

  .organized-div2 p {
    font-size: 1.8rem;

  }
  
}



/* ___________quiz round section css______________________________________ */
/* Section container */
#quiz-round {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

/* Layout wrapper for cards */
.quiz-round-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
  margin-top: 30px;
}

/* Individual card styling */
#quiz-round-card {
  /* margin-right: 30px; */
  width: 50rem;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  background-color: white;
}

#quiz-round-card-body {
  text-align: start;
  padding: 20px;
}

#quiz-round-card-body ul li{
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-left: 10px;
}

#quiz-round-card-body h2 {
  text-align: center;
  color: #2b5797;
  padding: 10px 0;
}

/* Register button */
#register-btn-quiz-round {
  height: 40px;
  width: 50%;
  background-color: #2b5797;
  color: white;
  border-radius: 30px;
  font-size: 15px;
  margin: 20px auto 0 auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quiz-round-card {
    width: 90%;
  }

  #register-btn-quiz-round {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .quiz-round-card {
    width: 100%;
  }

  #register-btn-quiz-round {
    width: 80%;
    font-size: 14px;
  }
}

/* .quiz-round-card{
    width: 15%; 
    height: 50%; 
    margin-top: 4%; 
    margin-bottom: 4%; 
    padding: 7px;
}
#quiz-round-card2{
    width: 15%; 
    height: 50%; 
    margin-top: 4%; 
    margin-left: 1%;
    border-radius: 5px;
} */

/* ____________________previous winner section css______________________________________ */
.winnner-section-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card {
  width: 15%;
  min-width: 180px; /* Ensures responsiveness */
  margin-top: 20px;
  padding: 7px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.card-body {
  text-align: center;
}

.card-body p {
  font-size: 15px;
}

#register-btn {
  border-radius: 25px;
  width: 25%;
  height: 50px;
  background-color: #102f5e;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
}
#register-btn:hover {
  background-color: #0056b3; /* Change background color on hover */
  border-color: #004085; /* Optionally change border color */
  transform: scale(1.05); /* Slightly increase the size of the button */
} 

.section-heading {
  color: rgb(1, 1, 1);
  text-align: center;
  font-size: 40px;
  padding-top: 50px;
}

/* ✅ Responsive Fixes */
@media screen and (max-width: 1200px) {
  .card {
    width: 20%;
  }
}

@media screen and (max-width: 992px) {
  .card {
    width: 25%;
  }
}

@media screen and (max-width: 768px) {
  .card {
    width: 40%;
  }
}

@media screen and (max-width: 480px) {
  .card {
    width: 80%;
  }

  #register-btn {
    width: 70%;
  }
}

/* ____________what is quiz css______________________________________ */
#what-is-ismart-outer {
  background-image: url(../images/ismart/what-is-quiz.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 750px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-between;
  padding: 20px;
  color: white;
}

#what-is-ismart-outer h1 {
  font-size: 6rem;
  margin-top: 40px;
}

.highlight {
  color: yellow;
}

.what-is-ismart-outer-para {
  font-size: 2.5rem;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

/* ✅ Responsive Breakpoints */
@media (max-width: 992px) {
  #what-is-ismart-outer h1 {
    font-size: 4.5rem;
    margin-top: 50px;
  }

  .what-is-ismart-outer-para {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  #what-is-ismart-outer h1 {
    font-size: 4rem;
    margin-top: 50px;
  }

  .what-is-ismart-outer-para {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  #what-is-ismart-outer h1 {
    font-size: 4rem;
    margin-top: 50px;
  }

  .what-is-ismart-outer-para {
    font-size: 1.8rem;
    padding: 0 10px;
  }
}






/* _____________prize section css______________________________________ */
.prize-section-outer {
  background-color: #4e87fb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}

.prize-section-img {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prize-section-img img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.prize-section-text {
  flex: 1 1 50%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  font-size: 1.8rem;
}

.prize-section-text h1 {
  font-size: 5.6rem; /* ~40px */
  margin-bottom: 20px;
}

.prize-section-text ul {
  font-size: 2rem; /* ~17.6px */
  margin-left: 20px;
  padding-left: 15px;
}

.prize-section-text ul li {
  margin-bottom: 15px;
}

.prize-section-text p {
  font-size: 2.1rem; /* 16px */
  margin-top: 20px;
  line-height: 1.5;
}

.btn-wrapper {
  margin-top: 30px;
}

#register-btn-price {
  font-size: 2rem;
  padding: 10px 25px;
  width: 40%;
  border-radius: 25px;
  width: 200px;
  height: 50px;
  background-color: #102f5e;
  color: #fff;
  font-size: 15px;
  border: 2px solid black;
}
#register-btn-price:hover {
  background-color: #0056b3; /* Change background color on hover */
  border-color: #004085; /* Optionally change border color */
  transform: scale(1.05); /* Slightly increase the size of the button */
}

/* ✅ Responsive Media Queries */
@media (max-width: 992px) {
  .prize-section-text h1 {
    font-size: 4rem; /* ~32px */
  }

  .prize-section-text ul {
    font-size: 1.9rem;
  }
  .prize-section-text ul li{
    margin-bottom: 10px;
  } 
  #register-btn {
  font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .prize-section-outer {
    flex-direction: column;
    text-align: center;
  }

  .prize-section-text, .prize-section-img {
    flex: 1 1 100%;
  }

  .prize-section-text ul {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
  }

  .btn-wrapper {
    display: flex;
    justify-content: center;
  }
  #register-btn {
  font-size: 1.7rem;
  padding: 10px 25px;
  }
}
@media (max-width: 568px) {
  
  #register-btn {
  font-size: 1.4rem;
  padding: 10px 25px;
  }
}

/* _______________________fairness section css______________________________________ */
.fairness-section-outer {
  background-color: #fcd444;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}

.fairness-section-img {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fairness-section-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.fairness-section-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fairness-section-text h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: #000;
}

.fairness-section-text ul {
  font-size: 2rem;
  margin-left: 25px;
}

.fairness-section-text p {
  font-size: 1rem;
  margin-top: 30px;
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .fairness-section-text h1 {
    font-size: 3rem;
  }

  .fairness-section-text ul {
    font-size: 2rem;
  }


}

@media (max-width: 768px) {
  .fairness-section-outer {
    flex-direction: column;
    text-align: center;
  }

  .fairness-section-img,
  .fairness-section-text {
    flex: 1 1 100%;
  }

  .fairness-section-text ul {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
  }

  .d-flex.justify-content-start {
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .fairness-section-text h1 {
    font-size: 4rem;
  }

  .fairness-section-text ul {
    font-size: 1.8rem;
    margin-left: 15px;
  }

  #register-btn {
    width: 80%;
    font-size: 1.5rem;
  }
}

/* __________________________________stay updated section css______________________________________ */


   
/* _________________________________________________________ */
/* ____________________ Inquires Section ____________________ */
#inquires {
  background-color: #4e87fb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 40px 20px;
  color: white;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

#inquires h5 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

#inquires p {
  font-size: 1.8rem;
  margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 992px) {
  #inquires {
    height: auto;
    padding: 30px 15px;
  }

  #inquires h5 {
    font-size: 1.8rem;
  }

  #inquires p {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  #inquires {
    padding: 25px 10px;
  }

  #inquires h5 {
    font-size: 1.8rem;
  }

  #inquires p {
    font-size: 1.8rem;
  }
}


/* ____________________ sponsor img Section ____________________ */
#sponsor-img {
  background-image: url(../images/ismart/11.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  padding: 60px 20px;
  width: 100%;
  padding: 40px 20px;
  color: white;
  font-size: 4rem;
}

/* Tablet view */
@media (max-width: 992px) {
  #sponsor-img {
    height: 400px;
    font-size: 3rem;
    padding: 30px 15px;
  }


}

/* Mobile view */
@media (max-width: 768px) {
  #sponsor-img {
    height: 300px;
    font-size: 2.2rem;
    padding: 25px 10px;
  }
   
}

/* Extra small devices */
@media (max-width: 480px) {
  #sponsor-img {
    height: 250px;
    font-size: 1.8rem;
    padding: 20px 8px;
  }
   
}


/* ____________________ Support Section ____________________ */
#support {
  background-color: #cbeffe;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#support h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

#support p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

#register-btn-support {
  border-radius: 25px;
  width: 200px;
  height: 50px;
  background-color: #102f5e;
  color: #fff;
  font-size: 20px;
}
#register-btn-support:hover {
  background-color: #0056b3; /* Change background color on hover */
  border-color: #004085; /* Optionally change border color */
  transform: scale(1.05); /* Slightly increase the size of the button */
}

/* Responsive button container override */
#support .d-flex {
  width: 100%;
  justify-content: flex-start;
}


/* ✅ Responsive adjustments */
@media screen and (max-width: 768px) {
  #inquires h5 {
    font-size: 1.8rem;
  }

  #inquires p {
    font-size: 1.4rem;
  }

  #support h1 {
    font-size: 3rem;
  }

  #support p {
    font-size: 1.3rem;
  }

  #support .d-flex {
    justify-content: center;
  }
  #register-btn-support {
  border-radius: 25px;
  width: 200px;
  height: 50px;
  background-color: #102f5e;
  color: #fff;
  font-size: 15px;
  border: 2px solid black;
  }
}

@media screen and (max-width: 480px) {
  #inquires h5 {
    font-size: 1.4rem;
  }

  #inquires p {
    font-size: 1.2rem;
  }

  #support h1 {
    font-size: 2.4rem;
  }

  #support p {
    font-size: 1.1rem;
  }

  #register-btn-support {
    width: 100%;
    font-size: 2rem;
  }
}


/* __________participate section css______________________________________ */

.participate-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 20px;
}

#participate {
  background-color: #c6f6ff;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#participate h1 {
  color: #2b5797;
  font-size: 4.6rem;
  text-align: center;
  margin-bottom: 30px;
}

/* Container for both left & right parts */
#participate > div[style*="display: flex"] {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 30px;
}

/* Left column */
.participate-div1 {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: start;
}

.participate-div1-parent {
  border-radius: 40px;
  width: 100%;
  max-width: 500px;
  background-color: white;
  padding: 20px;
  border: 2px solid rgb(255, 255, 255);
  box-shadow: 10px 10px 20px black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.participate-div1-parent h2 {
  font-size: 3.8rem;
  margin: 30px;
}


.participate-div1-child {
  background-color: #f2f2f2;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #333;
  line-height: 1;
  width: 100%;
}

/* Right image column */
.participate-div2 {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.participate-div2 img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.5);
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  #participate h1 {
    font-size: 3.2rem;
  }

  .participate-div1-child {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  #participate h1 {
    font-size: 2.4rem;
  }

  .participate-div1-child {
    font-size: 1.4rem;
  }

  .participate-div1-parent {
    border-width: 5px;
    padding: 15px;
  }
}

/* stay updaed new  */

#stay-updated-outer1 {
  background-color: #ffffff;
  width: 100%;
  height: 500px;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stay-updated-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

.stay-updated-div1,
.stay-updated-div2 {
  width: 45%;
}

.stay-updated-div1 img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.5);
}

.stay-updated-div2 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  width: 50%;
}

.stay-updated-div2 img {
  width: 130px;
  height: 130px;
  max-width: 100%;
  margin-bottom: 20px;
}

.stay-updated-div2 h1 {
  font-size: 6.5rem;
  margin: 0 0 40px 20px;
}

/* Medium screens */
@media screen and (max-width: 992px) {
  .stay-updated-div2 h1 {
    font-size: 4.5rem;
    margin-right: 25%;
    align-items: center;
  }

  .stay-updated-div1,
  .stay-updated-div2 {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .stay-updated-div2 {
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .stay-updated-div2 img {
    margin: 0 0 1px 20%;
  }
}

/* Small screens */
@media screen and (max-width: 576px) {
  .stay-updated-div2 h1 {
    font-size: 3.8rem;
    margin-top: 30px;
  }

  .stay-updated-div2 img {
    width: 90px;
    height: 90px;
  }

  .stay-updated-div1 img {
    width: 100%;
    height: auto;
  }
}

/* slider  */

.slider-container {
  width: 100vw;
  overflow: hidden;
  padding: 70px 0 100px 0;
  background-color: rgb(242, 241, 241);
  text-align: center;
  height: 300px;
}

.slider-container h1 {
  margin-bottom: 30px;
  font-size: 3rem;
  color: #2b5797;
}

.slider {
  display: flex;
  width: 200%;
  animation: slidein 20s linear infinite;
}

.logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 1;
}

.logos i {
  color: #2b5797;
  /* margin: 0 20px; */
  opacity: 0;
  animation: fade-in 1s forwards;
}

@keyframes slidein {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 576px) {
  .slider-container {
    margin-left: -20px;
    padding-left: 0;
  }

  body, html {
    overflow-x: hidden;
  }
}


/* final call */

#finalcall-img{
  background-image: url(../images/ismart/hand.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 650px;
  padding: 100px 20px;
  width: 100%;
  color: white;
  font-size: 4rem;
  display: flex;
  flex-direction: column ;
  justify-content: space-between;


}

#finalcall-img h2{
  width: 100%;
  font-size: 5.8rem;
  color: #000;
  padding-bottom: 200px;
  margin-top: 0;
}

.finalcall-inner h3{
  font-size: 4rem;
}
.finalcall-inner h1{
  font-size: 6.5rem;
  color: #000;
}
.finalcall-inner{
  width: 100%;
}
@media screen and (max-width: 700px) {
 
  #finalcall-img h2{
  width: 100%;
  font-size: 4.8rem;
  color: #000;
  padding-bottom: 170px;
  margin-top: 0;
}
.finalcall-inner h3{
  font-size: 3rem;
}
}


/* ____________________ AMOUNT Section ____________________ */
#sponsor-amount-outer {
  background-color: #4e87fb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 40px 20px;
  color: white;
  height: auto; /* Allow height to adjust with content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sponsor-amount-outer h5 {
  font-size: 6rem;
  margin-bottom: 40px;
}

.sponsor-amount-inner {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping of items */
  justify-content: center;
  gap: 20px; /* Space between sponsor amount items */
}

.sponsor-amount-child {
  height: 100px;
  width: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.8rem;
  border-radius: 10px;
  color: #000;
  box-shadow: 10px 10px 50px black;
  border: 2px solid #f6d12c;
  background-color: #f6d12c;
}

/* Mobile styles */
@media (max-width: 768px) {
  #sponsor-amount-outer h5 {
    font-size: 4rem; /* Reduce font size for smaller screens */
    margin-bottom: 20px;
  }

  .sponsor-amount-inner {
    flex-direction: column; /* Stack items vertically on smaller screens */
    align-items: center;
    width: 400px;
  }

  .sponsor-amount-child {
    width: 100%; /* Allow the width to take full available space */
    max-width: 250px; /* Limit maximum width */
    height: auto; /* Allow height to adjust to content */
    margin-bottom: 20px; /* Space between items */
    font-size: 1.5rem; /* Slightly reduce font size */
  }
}

/* Tablet styles */
@media (max-width: 1024px) {
  #sponsor-amount-outer h5 {
    font-size: 5rem; /* Adjust font size for tablets */
  }

  .sponsor-amount-child {
    width: 45%; /* Adjust width to fit the screen */
    max-width: 300px; /* Max width */
    font-size: 1.6rem;
  }
}

/* Social Icons */

#social_side_links {
  position: fixed;
  right: 20px; /* Position the list to the right side */
  bottom: 20px;
  
  
  padding: 5px 5px 0 20px;
  
  margin: 0;
  list-style: none;
  z-index: 99;
}

#social_side_links li {
  margin-bottom: 5px; ;
}

#social_side_links li a {
  display: block;
  
}

#social_side_links li a img {
  display: block;
  max-width: 40px;
  border-radius: 5px;
  transition: background 0.2s ease-in-out, width 0.3s ease;
}

#social_side_links li a:hover img {
  background: rgba(0, 0, 0, 0.2);
  width: 50px;  
}

#social_side_links li a {
  transition: all 0.3s ease;
}

