body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
  box-sizing: border-box;
}

/* Hero Section  */
.hero-section {
  position: relative;
  background: url('img/gst.png') center/cover no-repeat;
  height: 85vh;
  border-radius: 1vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0 0 50px 50px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 50px 50px;
  height: 100%;

}

.content {
  color: white;
  position: relative;
  z-index: 2;
}

.logo {
  max-width: 500px;
}

.main-title {
  font-size: 3rem;
  margin: 0;
}

.description {
  font-size: 1.5rem;
  margin-top: 20px;
  font-weight: 500;
  letter-spacing: 5px;
  word-spacing: 2px;
}

.logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.logo-area div {
  text-align: left;
}

.logo-text-small,
.logo-text-large {
  margin: 0;
}

/* Form Container Section */
.main-form{
  display: flex;
  flex-direction: column;
  gap: 3rem;  
  align-items: center;
  justify-content: center;   
  margin-top: 3rem;

 }

.form-reg-container {
  display: flex;
  flex-wrap: wrap;
 
  max-width: 1000px;
  gap: 20px;
}

.section-title {
  font-size: 1.7rem;
  font-weight: bold;
  width: 100%;
  margin-top: 10px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

input {
  padding: 10px;
  box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 1);
  background: rgba(255, 255, 255, 1);
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  flex: 1;
  height: 40px;
  width: 500px;
}

.row .section-title {
  flex: 1;
  text-align: left;
}

.consent-section {
  display: flex;
  margin: 0 auto;
  width: 80%;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  border-top: 1px solid #ddd;
  background-color: #fff;
}

.consent-title {
  font-size: 3rem;
  word-spacing: 4px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.consent-text {
  font-size: 1.7rem;
  margin: 10px 0;
  font-weight: 300;
  line-height: 1.5;
}

.register-btn {
  padding: 12px 40px;
  background-color: rgba(254, 207, 15, 1);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  color: rgba(1, 33, 66, 1);
  font-weight: bold;
  box-shadow: 0px 0px 15px 0px rgba(254, 207, 15, 1);
}

.register-btn:hover {
  background-color: #e0a800;
}

.consent-image img {
  max-width: 350px;
}




.blog-container {
  text-align: center;
  padding: 2rem 1rem;
}

.blog-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.blog-container h1 span {
  color: #f9c806;
}

.carousel {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.carousel-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(66, 66, 66, 0.2);
  flex: 0 0 300px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px; /* Ensures consistent height across all items */
}

.carousel-item img {
  max-width: 100%;
  border-radius: 10px;
  max-height: 200x;
  object-fit: cover;
}

.carousel-item h4 {
  font-size: 1rem;
  margin: 1rem 0;
}

.carousel-item p {
  font-size: 1rem;
  color: #666;
}

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.indicator {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: #f9c806;
}



/* Follow Page Section */
.follow-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}

.follow-section img {
  width: 50rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Social Media Section */
.sm-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

video {
  border: 2px solid #ccc;
  border-radius: 10px;
  max-width: 100%;
}



/* Faq Section */

.faq-container {
  margin: 20px auto;
  background: #E2F0FF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.faq-item {
  border: 1px solid #fff;
}

.faq-question {
  cursor: pointer;
  padding: 15px;
  background: #E2F0FF;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
}
.faq-question::after {
  content: '\002B';
  font-size: 1.2rem;
}
.faq-question.active::after {
  content: '\2212';
}
.faq-question:hover {
  background: #072f58;
  color: #fff;
}
.faq-answer {
  display: none;
  padding: 15px;
  border-radius: 5px;
  background: #E2F0FF;
}
.faq-question.active + .faq-answer {
  display: block;
  background-color: #fff;
}

/* Contact Section */
.contact-section {
  background-color: #002855;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-item img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.contact-item p {
  margin: 0;
}

.social-icons {
  display: flex;

}

.social-icons img {
  width: 40px;
  height: 40px;
}

.map-container {
  width: 100%;
  height: 450px;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Section  */


.footer {
    font-family: "Open Sans", serif;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    margin: 0 5rem;
}
.footer-left {
    max-width: 400px;
}
.footer-left img {
    width: 300px;
 
}
.footer-left p {
    font-family: "Open Sans", serif;
    margin: 10px;
    font-size: 16px;
    color: #202020;
    padding: 4px 25px 4px 10px;
    line-height: 25px;
}
.footer-right {
    list-style: none;
}
.footer-right li {
    margin: 5px 0;
}
.footer-right a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
  
}

.copyright {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd;
}
.links h2{
    color: #072f58;
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
}


@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    padding: 20px;
  }

  .main-title {
    font-size: 2rem;
  }

  .logo {
    max-width: 80px;
  }

  .description {
    font-size: 1rem;
    letter-spacing: 2px;
    word-spacing: 1px;
  }
  .contact-section {
    flex-direction: column;
    align-items: start;
  }
  .follow-section img {
    width: 25rem;
    
}
  .sm-section {
    flex-direction: column;
 }

}

@media (max-width: 768px) {
  .follow-section {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .consent-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
  }

  .consent-text {
    font-size: 1rem;
    margin: 1rem 0px;
  }

  .consent-content {
    padding-right: 0;
  }

  .consent-image img {
    max-width: 200px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: start;
  }

  .contact-item {
    justify-content: center;
    margin-bottom: 10px;
  }

  .social-icons {
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: start;
 
  }

  

  .footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .footer-right a {
    margin: 10px 0;
  }
}


/* Responsive Design for Small Screens */
@media (max-width: 768px) {
  .form-reg-container {
      flex-direction: column;
      gap: 15px;
  }

  .row {
      flex-direction: column;
      gap: 15px;
  }

  .section-title {
      font-size: 1.5rem;
      text-align: center;
  }

  input {
      width: 100%;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 1.3rem;
  }

  input {
      padding: 8px;
      font-size: 0.85rem;
  }

  .main-form {
      gap: 2rem;
  }
}