@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #eac448;
}

.header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header .logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 0px #ff0000;
}
.header .logo-icon {
  display: flex;
  align-items: center;
}
.header .logo-icon img {
  width: 15rem;
}
@media (max-width: 700px) {
  .header .logo-icon img {
    max-width: 50vw;
  }
}

.language-selector {
  position: relative;
  z-index: 1000;
}
.language-selector .language-dropdown {
  border: 1px solid black;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  position: relative;
  min-width: 120px;
  z-index: 1000;
}
.language-selector .language-dropdown:hover {
  background-color: #d0d0d0;
}
.language-selector .language-dropdown .selected-language {
  flex: 1;
}
.language-selector .language-dropdown .dropdown-arrow {
  transition: transform 0.3s ease-in-out;
}
.language-selector .language-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.language-selector .language-dropdown .language-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.language-selector .language-dropdown .language-options .language-option {
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}
.language-selector .language-dropdown .language-options .language-option:last-child {
  border-bottom: none;
}
.language-selector .language-dropdown .language-options .language-option:hover {
  background-color: #f5f5f5;
  color: #ff6600;
}
.language-selector .language-dropdown .language-options .language-option.active {
  background-color: #eac448;
  color: #333333;
  font-weight: 500;
}
.language-selector .language-dropdown.open .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.video-container {
  width: 100%;
  max-height: 90vh;
  aspect-ratio: 16/9;
  z-index: 1;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .video-container {
    margin: 1rem auto;
  }
}
.video-container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.main-content {
  background-color: #eac448;
  padding: 40px;
  min-height: 70vh;
  position: relative;
}
.main-content .content-text {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}
.main-content .content-text .headline {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #333333;
}
.main-content .content-text .underlined {
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.main-content .content-text .underlined:hover {
  opacity: 0.7;
}
.main-content .content-text a.underlined {
  color: #333333;
  text-decoration: underline;
}
.main-content .content-text a.underlined:hover {
  color: #333333;
  opacity: 0.7;
}
.main-content .construction_title {
  font-size: 2rem;
}
@media (max-width: 700px) {
  .main-content .construction_title {
    font-size: 1.25rem;
  }
}
.main-content .construction-barrier {
  margin: 4rem 0;
  text-align: center;
}
.main-content .construction-barrier img {
  max-width: 40rem;
  width: 100%;
  height: auto;
}
.main-content .status-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
}
@media (max-width: 700px) {
  .main-content .status-text {
    font-size: 1rem;
  }
}
.main-content .status-text {
  font-weight: 500;
  margin: 20px 0;
  line-height: 1.6;
  color: #333333;
}
.main-content .status-text strong {
  font-weight: 500;
}
.main-content .status-text a {
  text-decoration: underline;
  color: #333333;
}
.main-content .status-text a:hover {
  opacity: 0.7;
}
.main-content .contact-section {
  margin-top: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.main-content .contact-section .contact_title {
  font-weight: 300;
  color: #333333;
  font-size: 2.2rem;
  font-style: italic;
}
@media (max-width: 700px) {
  .main-content .contact-section .contact_title {
    font-size: 1rem;
  }
}
.main-content .contact-section .contact-email {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 700;
  color: #333333;
  font-size: 3rem;
}
@media (max-width: 700px) {
  .main-content .contact-section .contact-email {
    font-size: 1.3rem;
  }
}

.online-payments-section {
  margin: 5rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.online-payments-button {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  font-weight: 600;
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.4862745098);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  border: 2px solid #333333;
  transition: all 0.3s ease-in-out;
}
.online-payments-button:hover {
  opacity: 0.7;
}
@media (max-width: 700px) {
  .online-payments-button {
    font-size: 1.25rem;
    padding: 5px 10px;
  }
}

.baatcheet-section {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}
.baatcheet-section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333333;
}
.baatcheet-section .baatcheet-iframe {
  border: 1px solid #eee;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.footer {
  background-color: #e0e0e0;
  padding: 40px;
  text-align: center;
}
.footer .footer-logo {
  margin-bottom: 20px;
}
.footer .footer-logo .logo img {
  max-width: 230px;
}
.footer .footer-logo .logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.footer .footer-logo .footer-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 10px;
}
.footer .footer-logo .footer-hindi {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 30px;
}
.footer .footer-logo .footer-hindi img {
  max-width: 400px;
}
@media (max-width: 700px) {
  .footer .footer-logo .footer-hindi img {
    max-width: 75vw;
  }
}
.footer .footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 60rem;
  margin: 1.5rem auto;
}
.footer .footer-nav-column {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.footer .footer-nav-column a {
  color: #333333;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.footer .footer-nav-column a:hover {
  opacity: 0.7;
}
.footer .social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.footer .social-media .social-icon {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.footer .social-media .social-icon:hover {
  opacity: 0.7;
}
.footer .copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #666666;
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
  .header .logo-text {
    font-size: 20px;
  }
  .main-content {
    padding: 20px;
  }
  .main-content .content-text .headline {
    font-size: 22px;
  }
  .main-content .video-container iframe {
    height: 250px;
  }
  .footer {
    padding: 30px 20px;
  }
  .footer .footer-nav {
    gap: 20px;
  }
  .footer .footer-nav-column {
    gap: 8px;
  }
  .baatcheet-iframe {
    width: 100%;
    max-width: 500px;
    height: 320px;
  }
}
@media (max-width: 700px) {
  .header {
    padding: 10px 15px;
  }
  .header .logo-text {
    font-size: 18px;
  }
  .main-content {
    padding: 15px;
  }
  .main-content .content-text .headline {
    font-size: 20px;
  }
  .main-content .video-container iframe {
    height: 200px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .baatcheet-iframe {
    height: 280px;
  }
}
.content-transition {
  transition: opacity 0.3s ease-in-out;
}

.content-hidden {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */
