/* Reset & Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}


/* Default body styles */
body {
  font-family: "Lato", sans-serif;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
::-webkit-scrollbar-thumb {
  background: #BFBFBF;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}


::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* Links */
a {
  text-decoration: none;
  transition: 0.3s;
}
/* Lists */
ul, ol {
  list-style-type: none;
  padding-left: 20px;
}

/* Buttons */
button {
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}
button:hover {
  opacity: 0.8;
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #000;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Default for large screens (1920px and above) */
.container {
  width: 1600px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.banner-section-main {
  position: relative;
  height: 900px;
  width: 100%;
  background-image: url(../images/Banner_001.gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 9;
}

.banner-section-main::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(78 145 198 / 85%);
  z-index: -1;
}

.logo-main {
  position: absolute;
  left: 0;
  top: 30px;
  width: 164px;
  z-index: 10;
}

.logo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-cnt {
  width: 80%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  gap: 28px;
  height: 900px;
  padding-top: 72px;
}
.banner-cnt h1{
    font-size: 50px;
    font-weight: 600;
    line-height: 58px;
    color: #fff;
    letter-spacing: 1px;
}
.banner-cnt p {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    letter-spacing: 1px;
    width: 70%;
}
.banner-cnt a {
    background-color: #fff;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 1px;
    color: #0080C5;
    padding: 14px 30px;
    margin-top: 24px;
}

.how-it-works-section,
.about-section,
.faq-section{
  padding: 80px 0;
}
.sec-hdr{
  text-align: center;
}
.sec-hdr h2{
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.5px;
  color: #0080C5;
  margin-bottom: 16px;
}
.sec-hdr span {
    width: 100px;
    height: 4px;
    border-radius: 6px;
    background-color: #0080C5;
    margin: 0 auto;
    display: block;
}


.steps-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
}
.step-box {
    background: #fff;
    border-radius: 8px;
    flex: 0 0 18%;
    max-width: 18%;
    box-shadow: -20px 0 30px -10px rgba(0, 0, 0, 0.14);
    text-align: left;
    position: relative;
    flex-grow: 1;
    padding: 24px 0 40px;
}
.step-header {
    display: flex;
    align-items: self-start;
    margin-bottom: 18px;
    position: relative;
    flex-direction: column;
    gap: 24px;
}
.step-header img {
    width: 36px;
    height: 36px;
    margin: 16px;
    margin-bottom: 0;
}
.step-header span {
    font-size: 22px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 6px 42px 6px 20px;
    clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0% 100%);
    background-color: gray;
    display: inline-block;
}
.step-box p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin: 0;
    color: #000;
    padding:0 16px;
}

/* Step colors */
.step-1 .step-header span { background-color: #f05323; }
.step-2 .step-header span { background-color: #00342d; }
.step-3 .step-header span { background-color: #007c5c; }
.step-4 .step-header span { background-color: #0070c0; }
.step-5 .step-header span { background-color: #b8860b; }

.register-section{
  padding: 70px 0;
  background-color: #3399d1;
  position: relative;
}

.register-block{
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.register-lhs{
  flex: 0 0 48%;
  max-width: 48%;
}
.register-rhs {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}
.generated-link {
    font-size: 16px;
    max-width: 545px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
}
.generated-link #p1{
  font-size: 14px !important;
  margin: 8px 0;
  display: block;
  word-break: break-all;
}
#link.active{
  padding: 16px;
}
.generated-link button{
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    background: #4E91C6;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.register-lhs h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 60px;
}
.info-item{
  display: flex;
  gap: 16px;
  align-items: self-start;
}
.info-item img{
  width: 36px;
}
.info-item p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #fff;
  margin-right: 40px;
}
.register-image{
  position: absolute;
  left: 0;
  bottom: 0;
}
.register-image img{
  width: 600px;

}


.form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 36px 42px;
    max-width: 545px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.form-wrapper input, .form-wrapper select,.form-wrapper textarea {
    width: 100%;
    padding: 16px 14px;
    margin-bottom: 16px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    color: #636363;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-color: transparent;
}


.chevron-icon {
    position: absolute;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
    font-size: 18px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 500;
  background: #4E91C6;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 32px;
}

.submit-btn:hover {
  background: #3c7dc2;
}
.submit-btn:disabled {
    background: #ccc;        /* grey background */
    color: #666;             /* muted text */
    cursor: not-allowed;     /* no pointer cursor */
    pointer-events: none;    /* completely non-clickable */
  }

.contest-rules{
  margin: 80px auto 40px;
  width: 70%;
}
.contest-rules ul{
  list-style-type: disc;
  padding-left: 20px;
}
.contest-rules ul li{
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 24px;
  color: #000;
}

.winner-section{
  padding: 100px 0;
  background-color: #3399d1;
  position: relative;
  overflow: hidden;
}

.contest-block {
    width: 65%;
    margin-left: 5%;
}
.contest-hdr{
  margin-bottom: 60px;
}
.contest-hdr h2{
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 12px;
  color: #fff;
}
.contest-hdr span{
  width: 100px;
  height: 4px;
  border-radius: 6px;
  background-color: #fff;
  display: block;
}
.contest-block p{
  font-size: 26px;
  font-weight: 500;
  line-height: 42px;
  color: #fff;
}
.contest-block p span{
  font-weight: 600;
}
.winner-box {
    position: absolute;
    right: 0;
    bottom: 0;
  }
.winner-box img {
    width: 380px;
}

.faq-wrapper {
    max-width: 54%;
    margin: 70px auto;
}

.faq-item {
    border: none; /* Removed border */
    border-left: 6px solid #0080C5;
    border-radius: 4px;
    margin: 24px 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Light gray shadow */
    transition: box-shadow 0.3s ease;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    cursor: pointer;
    position: relative;
    min-height: 84px;
}

.faq-title {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  width: 90%;
}

.faq-header .chevron-icon {
  transition: transform 0.3s ease;
      right: 32px;
    top: 50%;
}

.faq-item.active .chevron-icon {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  padding: 0 32px 32px;
  font-size: 16px;
  color: #333;
  font-weight: 400;
}

.contact-section{
  padding: 80px 0;
  background-color: #3399d1;
}

.contact-banner{
  text-align: center;
}
.contact-banner h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.contact-banner p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 auto 32px;
  line-height: 24px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.btn {
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: #0077c8;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-primary:hover {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: white;
  color: #0077c8;
}
.footer-details span {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    margin:40px 0 16px 0;
    display: block;
}
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.social-icons a {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 28px;
}
.checkbox-aggreement{
  display: flex;
  align-items: self-start;
  gap: 8px;
}
.agree-check {
    flex: 0 0 18px;
    height: 18px;
    margin-top: 4px;
}
.instructions-box ul{
  list-style-type: disc !important;
  padding-left: 20px;
}
.instructions-box ul li{
  margin-bottom: 4px;
}