@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
@font-face {
  font-family: "Gopher";
  src: url("../fonts/Gopher-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gopher";
  src: url("../fonts/Gopher-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gopher";
  src: url("../fonts/Gopher-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gopher", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #eac448;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 35px 35px;
}

.header {
  padding: 20px 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #000000;
}
@media (max-width: 700px) {
  .header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header .logo-icon {
  display: flex;
  align-items: center;
}
.header .logo-icon img {
  width: 15rem;
}
@media (max-width: 700px) {
  .header .logo-icon img {
    max-width: 60vw;
  }
}
.header .language-selector {
  display: none;
  position: absolute;
  right: 40px;
}
@media (max-width: 700px) {
  .header .language-selector {
    position: static;
  }
}

.language-selector {
  z-index: 1000;
}
.language-selector .language-dropdown {
  border: 2px solid black;
  background-color: #ffffff;
  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: "Gopher", sans-serif;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  min-width: 120px;
}
.language-selector .language-dropdown:hover {
  background-color: #f0f0f0;
}
.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: -2px;
  right: -2px;
  background-color: #ffffff;
  border: 2px solid black;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  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: "Gopher", sans-serif;
  font-weight: 500;
  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: 700;
}
.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;
  border-bottom: 2px solid #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.main-content {
  padding: 40px 20px;
  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: 40px;
  line-height: 1.4;
  color: #333333;
}
@media (max-width: 768px) {
  .main-content .content-text .headline {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.main-content .content-text .underlined {
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 700;
  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-barrier {
  margin: 4rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .main-content .construction-barrier {
    margin: 2rem 0;
  }
}
.main-content .construction-barrier img {
  max-width: 40rem;
  width: 100%;
  height: auto;
  margin: 2rem auto;
}
@media (max-width: 768px) {
  .main-content .construction-barrier img {
    margin: 1rem auto;
  }
}
.main-content .status-text {
  font-family: "Gopher", sans-serif;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .main-content .status-text {
    font-size: 1.1rem;
  }
}
.main-content .status-text {
  font-weight: 500;
  margin: 30px 0;
  line-height: 1.6;
  color: #333333;
}
.main-content .status-text strong {
  font-weight: 700;
}
.main-content .status-text a {
  text-decoration: underline;
  font-weight: 700;
  color: #333333;
}
.main-content .status-text a:hover {
  opacity: 0.7;
}
.main-content .business-bakra {
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .main-content .business-bakra {
    margin-top: 2rem;
  }
}
.main-content .business-bakra img {
  max-width: 25rem;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .main-content .business-bakra img {
    max-width: 18rem;
  }
}
.main-content .contact-section {
  margin-bottom: 5rem;
  font-family: "Gopher", sans-serif;
}
@media (max-width: 768px) {
  .main-content .contact-section {
    margin-bottom: 3rem;
  }
}
.main-content .contact-section .contact_title {
  color: #333333;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .main-content .contact-section .contact_title {
    font-size: 1.5rem;
  }
}
.main-content .contact-section .contact_title_2 {
  font-weight: 400;
  font-style: italic;
  margin-top: 5px;
}
.main-content .contact-section .contact-email-btn {
  display: inline-block;
  margin-top: 20px;
  transition: transform 0.2s ease;
  max-width: 100%;
}
.main-content .contact-section .contact-email-btn img {
  max-width: 32rem;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .main-content .contact-section .contact-email-btn img {
    max-width: 100%;
  }
}
.main-content .contact-section .contact-email-btn:hover {
  transform: scale(1.03);
}
.main-content .business-careers-internships-heading {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: #333333;
}
@media (max-width: 768px) {
  .main-content .business-careers-internships-heading {
    font-size: 1.6rem;
  }
}

.online-payments-section {
  display: none;
  margin: 3rem 0;
  font-family: "Gopher", sans-serif;
}

.online-payments-button {
  font-family: "Gopher", sans-serif;
  color: #333333;
  font-weight: 700;
  font-size: 1.8rem;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #333333;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.online-payments-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 700px) {
  .online-payments-button {
    font-size: 1.1rem;
    padding: 8px 16px;
  }
}

.baatcheet-section {
  display: none;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}
.baatcheet-section .baatcheet-iframe {
  border: 2px solid #000000;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.footer {
  background-color: #f7f7f7;
  padding: 50px 20px;
  text-align: center;
  border-top: 2px solid #000000;
}
.footer .footer-hindi {
  margin-bottom: 30px;
}
.footer .footer-hindi img {
  max-width: 330px;
  width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  .footer .footer-hindi img {
    max-width: 180px;
  }
}
.footer .footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 45rem;
  margin: 2rem auto;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-items: center;
  }
}
.footer .footer-nav-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 600px) {
  .footer .footer-nav-column {
    align-items: center;
  }
}
.footer .footer-nav-column a {
  color: #333333;
  text-decoration: none;
  font-family: "Gopher", sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.footer .footer-nav-column a:hover {
  color: #ff6600;
}
.footer .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.footer .social-media .social-icon {
  display: inline-block;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.footer .social-media .social-icon img,
.footer .social-media .social-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}
@media (max-width: 700px) {
  .footer .social-media .social-icon img,
  .footer .social-media .social-icon svg {
    width: 24px;
    height: 24px;
  }
}
.footer .social-media .social-icon:hover {
  transform: translateY(-3px);
  filter: brightness(0.9);
}
.footer .footer-goats-logo {
  margin: 2rem 0;
}
.footer .footer-goats-logo img {
  max-width: 470px;
  width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  .footer .footer-goats-logo img {
    max-width: 240px;
  }
}
.footer .footer-fortune-logo {
  margin: 1rem 0 2rem 0;
}
.footer .footer-fortune-logo img {
  max-width: 120px;
  width: 100%;
  height: auto;
}
.footer .footer-partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .footer .footer-partner-logos {
    gap: 20px;
    margin: 1.5rem 0;
  }
}
.footer .footer-partner-logos .partner-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 700px) {
  .footer .footer-partner-logos .partner-logo {
    height: 28px;
  }
}
.footer .dont-steal {
  margin: 1.5rem 0;
  color: #0066cc;
  font-family: "Gopher", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.footer .copyright {
  font-family: "Gopher", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666666;
}

.content-transition {
  transition: opacity 0.3s ease-in-out;
}

.content-hidden {
  opacity: 0;
}

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