/* styles.css */
/* @tailwind base;
@tailwind components;
@tailwind utilities; */
@import "tailwindcss";
@import url("./../../assets/fonts/index.css");

/* !NAVBAR */
.navbar-main {
  background-color: rgba(32, 41, 69, 1);
  /* z-index: 30; */
}
.navbar-image {
  background-image: url("../../assets/images/Logo-navbar.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
}
/* body {
  background-color: #1e1f36;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
} */
.toggle-container-responsive {
  background-color: #131429;
}
.toggle-container {
  display: flex;
  background-color: #131429;
  border-radius: 30px;
  overflow: hidden;
  width: 150px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.toggle-option {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.toggle-option.active {
  margin: 3px 3px;
  border-radius: 30px;

  background-color: white;
  color: #131429;
}

.globe-icon {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.active-navbar {
  color: rgba(246, 147, 33, 1);
}
/* !hamburger menu */
@media only screen and (max-width: 1024px) {
  .navbar-main-container {
    display: none;
  }
}
.nav-mobile {
  background-color: rgba(0, 10, 38, 0.95);
  position: absolute;
  top: 0; /* Starts from the top */
  right: 0;
  z-index: 2;
  width: 100%;
  transform: translateY(-100%); /* Start above the screen */
  transition: transform 0.5s ease-in-out, visibility 0s 0.5s,
    opacity 0.5s ease-in-out; /* Transition for sliding and fades */
  visibility: hidden; /* Initially hidden */
  opacity: 0; /* Fully transparent */
}

.nav-mobile.active {
  visibility: visible; /* Make it visible when active */
  opacity: 1; /* Fully opaque */
  transform: translateY(0); /* Slide into view */
  transition: transform 0.5s ease-in-out, visibility 0s 0s,
    opacity 0.5s ease-in-out; /* Adjust timing for when it slides in */
}

.nav-mobile a {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .nav-mobile {
    top: 52px;
    width: 100%;
    /* opacity: 50%; */
    /* i should fix it */
    height: 900px;
  }
}
/* !HEADER STYLE */
.header-main-background {
  position: relative;
  background: #151d35;
  /* background: linear-gradient(
    83deg,
    rgba(185, 76, 3, 1) 0%,
    rgba(227, 114, 39, 1) 51%,
    rgba(252, 160, 97, 1) 100%
  ); */
  color: white;
  height: 85vh;
  z-index: 1;
  overflow: hidden;
}
.header-main-ellipse {
  position: absolute;
  left: -250px;
  bottom: -90px;
  width: 1100px;
  height: 700px;
  background-color: rgba(32, 41, 69, 1); /* Color your ellipse */
  border-radius: 50%; /* This makes it elliptical */
  margin: 20px; /* Optional: adds some space around the ellipse */
  z-index: -10;
}
.main-header-image {
  /* position: absolute; */
  /* bottom: 0px; */
  /* left: 200px; */
  /* background-image: url("./assets/images/main-page-header.png"); */
  /* -webkit-transform: rotate(90deg); */
  /* -ms-transform: rotate(90deg); */
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin: 0px 0px 50px 50px;
  /* margin-right: 50px; */
  /* width: 869px;
  height: 652px; */
}

.header-main-title {
  font-size: 48px;
}
.header-main-title-text {
  line-height: 68px;
}
.header-main-text {
  /* font-family: ; */
  color: rgba(207, 208, 209, 1);
  /* font-size: 24px; */
  font-weight: 200;
  line-height: 40px;
}
.header-button {
  color: rgba(246, 147, 33, 1);
  border-color: rgba(246, 147, 33, 1);
}

/* ! reponsive */

/* * header image */
@media screen and (max-width: 1280px) {
  .main-header-image {
    width: 600px;
    height: 500px;
  }
}
@media screen and (max-width: 990px) {
  .main-header-image {
    width: 400px;
    height: 300px;
    margin: 10px auto;
  }
}

/* * header titles */

@media screen and (max-width: 1100px) {
  .header-main-title {
    z-index: 10;
    font-size: 35px;
    padding: 0px 50px;
  }
  .header-main-title-text {
    line-height: 40px;
  }
  .header-main-text {
    /* font-size: 20px; */
    line-height: 1.2cm;
  }
  .section-2-2-background-image {
    width: 350px;
    height: 250px;
  }
  .section-2-container {
    padding: 40px 0px;
  }
}
@media screen and (max-width: 768px) {
  .header-main-text {
    line-height: 0.8cm;
  }
}
@media screen and (max-width: 425px) {
  .header-main-text {
    /* font-size: 20px; */
    line-height: 0.8cm;
  }
  .header-main-title-text {
    line-height: 25px;
  }
}
