/* color variables */
/*Transition*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box; }

html, body {
  height: 100%; }

/*common css start here*/
body {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  color: #000;
  background: #f4f4f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

/*css change*/
ul {
  margin: 0px;
  padding: 0px;
  list-style: none; 
}

/* select{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: #1e88e5;
    color: #fff;
    outline: none;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
} */


.custom-dropdown{
  position: fixed;
  top: 20px;
  right: 20px;
  width: 120px;
  font-family: "Bebas Neue", sans-serif;
  z-index: 1000;
}

.selected{
  background:#1e88e5;
  letter-spacing: 1px;
  color:#fff;
  padding:10px;
  border-radius:5px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.selected img{
  width:20px;
  height:20px;
}
.selected span{
  font-size: 20px;
  padding-left: 10px;
}

.options{
  display:none;
  background:#1e88e5;
  letter-spacing: 1px;
  color: #fff;
  border-radius:5px;
  margin-top:5px;
  overflow:hidden;
}

.option{
  padding:10px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.option:hover{
  background:red;
  color: #fff;
}

.option img{
  width:20px;
  height:20px;
}





::-webkit-scrollbar {
  width: 8px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #f4f4f4;
}

/* Scroll thumb */
::-webkit-scrollbar-thumb {
  background: #1e88e5;
  border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #1565c0;
}


.main-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

/* LEFT SIDE */
.left {
  flex: 1;
  text-align: center;
}

.main-img {
  max-width: 100%;
  height: auto;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 70vh;
  background: #ccc;
  margin: 0 30px;
}

/* RIGHT SIDE */
.right {
  flex: 1;
}

.right h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 90px;
  line-height: 1.3;
}

.right h1 span {
  color: #1e88e5;
}

.sub {
  margin-top: 15px;
  color: #777;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
}

/* Bottom Bar */
.bottom-bar {
  position: fixed;
  bottom:10px;
  left:50%;
  transform:translateX(-50%);
  width:60%;
  max-width:900px;
  background:#111;
  padding:15px 20px;
  border-radius:15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.5);
  z-index:1000;
}

.logo {
  width: auto;
}

.logo img {
  max-width: 80%;;
}

button {
  background: #1e88e5;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
}
button a{
  text-decoration: none;
  color: #fff;
}

button:hover {
  background: #1565c0;
}


.lang-index{
  display: none;
}

#english{
  display: block;
}


/* Contact Us Page CSS */

.hero {
  display: flex;
  justify-content: space-between;
  padding: 60px 40px;
  margin-top: 75px;
}

.hero-left{
  width: 65%;
}

.hero h1 {
  font-size: 110px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
}

.hero span {
  color: #1e88e5;
}

.hero-right {
  max-width: 400px;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  color: #666;
  padding: 40px 0 0 0;
  text-transform: capitalize;
}

/* SCROLL TEXT */
/* .scroll-text {
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #999;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
} */

/* .marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #f4f4f4;
  padding: 22px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  font-size: 16px;
  color: #666;
  animation: scroll 45s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
} */


.ticker {
  overflow: hidden;
  background: #f4f4f4;
  color: #666;
  white-space: nowrap;
  position: relative;
  padding: 22px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-group {
  display: flex;
}

.ticker-group span {
  padding: 0 50px;
  font-size: 18px;
  white-space: nowrap;
}

/* KEY FIX */
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CONTACT */
.contact {
  display: flex;
  padding: 60px 40px 110px;
  gap: 50px;
  margin-top: 50px;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.tag {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  color: #888;
}

.contact-left h2 {
  font-size: 65px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 15px 0;
  text-transform: uppercase;
}

.info{
  margin-top: 40px;
}

.info p {
  margin-top: 20px;
  color: #737373;
  font-family: "Roboto", sans-serif !important;
  font-size: 15px;
  text-transform: uppercase;
  padding: 10px 0;
}
.info span{
  display: block;
  font-size: 38px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #111;
}

/* RIGHT FORM */
.contact-right {
  flex: 1;
}

.input-group {
  margin-bottom: 50px;
}

.input-group label {
  font-size: 15px;
  color: #666;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 8px 0;
  background: transparent;
  outline: none;
  font-size: 28px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.form-button {
  background: #1e88e5;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 25px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.form-button:hover {
  background: #1565c0;
}

#formMsg {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
}
/* .active-msg{
  font-size: 18px;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 300px;
  background: #fff;
  border: 1px solid green;
  border-radius: 5px;
  font-weight: 700;
} */

::-webkit-input-placeholder { /* Chrome, Safari */
  color: #999;
}

::-moz-placeholder { /* Firefox */
  color: #999;
}


/* Page Transition */

.page-transition {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e88e5; /* your theme color */
  z-index: 9999;
  transition: height 0.6s ease-in-out;
}

/* Active state */
.page-transition.active {
  height: 0%;
}

/* Optional: smooth fade */
body.fade-out {
  opacity: 0.5;
  transition: opacity 0.3s;
}


::selection {
  background: red; /* highlight color */
  color: #fff;         /* text color */
}

::-moz-selection {
  background: red;
  color: #fff;
}


/* iPad portrait mode */
/* Tablet Portrait size to standard 960 (devices and browsers) */
/* Mobile layout css */
@media only screen and (max-width: 900px) {
  .main-page {
    flex-direction: column;
    text-align: center;
  }

  .divider {
    display: none;
  }

  .right h1 {
    font-size: 32px;
  }

  .bottom-bar {
    margin: 30px auto;
  }

  .hero {
    flex-direction: column;
    gap: 20px;
  }

  .contact {
    flex-direction: column;
  }
  .hero-left{
    width: 100%;
  }

}

@media only screen and (max-width: 500px) {
  .right h1 {
    font-size: 49px;
  }

  .coming {
    font-size: 16px;
  }

  .bottom-bar {
    width: 90%;
    flex-direction: row;
    gap: 10px;
  }

  .logo{
    width: 65%;
  }
  .logo img{
    width: 100%;
  }
  .bottom-button{
    font-size: 14px;
  }
  .hero{
    margin-top: 0;
  }

  .hero h1 {
    font-size: 50px;
  }

  .contact {
    padding: 60px 40px 125px;
  }

  .contact-left h2 {
    font-size: 27px;
  }
  .info span{
    font-size: 30px;
  }

}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */

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