body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
  box-sizing: border-box;
}

/* Hero Section  */
.hero-section {
  position: relative;
  background: url('img/bg.png') center/cover no-repeat;
  height: 85vh;
  border-radius: 1vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);

  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: 250px; /* Ensures consistent height across all items */
}

.carousel-item img {
  max-width: 100%;
  border-radius: 10px;
  max-height: 200x;
  object-fit: cover;
}

.carousel-item h3 {
  font-size: 1.2rem;
  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: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1vh;
  padding: 0 2vh;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}
.sm-section a {
  cursor: pointer;
}
.sm-section img {
  width: 100%;  /* Set a fixed width for better consistency */
  height: 50vh; /* Set a fixed height as well */
  object-fit: contain; /* Ensures the entire image fits within the set dimensions */
  display: block;
  margin: 0 auto;
}

/* Faq Section */
  
.faq-container {
  width: 80%;
  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;
  margin-bottom: 10px;
  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: #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;
  gap: 5px;
}

.social-icons img {
  width: 40px;
  height: 40px;
}

.map-container {
  width: 100%;
  height: 450px;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Section  */
.footer {
  background-color: #f9f9f9;
  padding: 50px 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #ddd;
  flex-wrap: wrap;
}

.footer-logo {
  max-width: 200px;
}

.footer-left p {
  margin-top: 10px;
  color: #333;
  line-height: 1.6;
  max-width: 350px;
}

.footer-right {
  text-align: left;
}

.footer-right h3 {
  color: #002855;
  font-size: 1.5rem;
}

.footer-right a {
  text-decoration: none;
  color: #002855;
  display: block;
  margin: 15px 0;
  font-size: 1rem;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
}

@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;
  }
  .row {
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.row .section-title {
 
  text-align: center;
}
.main-form {
padding: 10px;
}

}

@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;
  }
  .follow-section img {
    width: 25rem;
    
}
  .sm-section {
    flex-direction: column;
 }
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
   align-items: start;
  }
  
  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: 300px;
  }
  



}


@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;
  }
}