* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  /* overflow: auto; */
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none;
}

.no-select {
  user-select: none;
}

.background-layer {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #71818F, #212529);
  z-index: -2;
}

.overlay-layer {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}


header {
  width: 100%;
  height: 100vh;
  position: relative;
}

.header-background {
  background: url('../images/background.png') ;
  background-repeat:no-repeat;
  background-size:cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.header-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  padding: 24px 0;
  backdrop-filter: blur(6px);
  z-index: 100;
}

.navbar ul {
  display: flex;
  gap: 96px;
  list-style: none;
}

.navbar a {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.navbar a:hover {
  color: #ff4d00;
}

.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  z-index: 2;
  width: 100%;
}

.terms-text {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.terms-text a {
  color: #a6a6a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-text a:hover {
  color: #7a7a7a;
}

.account-box {
  width: 50%;
  height: 192px;
  background: #212529;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
}

.category-icon {
  width: 96px;
  height: 96px;
  border-radius: 100px;
  background: rgba(255, 77, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-icon {
  width: 64px;
  height: 64px;
  background: #ff4d00;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-text-dropdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 32px;
  flex: 1;
}

.category-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #a6a6a6;
  font-size: 14px;
}

.category-select {
  margin-top: 0px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: white;
  font-weight: 500;
}

.category-select #selected-category {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: white;
  font-size: 16px;
}

.dropdown-arrow {
  width: 24px;
  height: 24px;
  margin-left: 12px;
  transition: transform 0.3s ease;
  user-select: none;
}

.dropdown-list {
  position: absolute;
  top: 32px;
  left: 0;
  background-color: #212529;
  border: 1px solid #444;
  border-radius: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: max-content;
  display: none;
  z-index: 10;
}

.dropdown-list li {
  padding: 8px 12px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dropdown-list li:hover {
  background-color: #2a2f33;
}

.category-select.open .dropdown-arrow {
  transform: rotate(180deg);
}

.get-account-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.get-account-button {
  background: #ff4d00;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: 100px;
  padding: 16px 48px;
  height: 64px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.get-account-button:hover {
  background: #cc3a00;
}

.section-header {
  margin-top: 144px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section-header-wrapper {
  position: relative;
  display: inline-block;
}

.section-header-main {
  position: relative;
  z-index: 1;
  background: #212529;
  border-radius: 18px;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
}

.section-header-main img {
  width: 24px;
  height: 24px;
}

.section-header-title {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.section-title {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-align: center;
  display: block;
  font-size: 24px;
  margin-top: 32px;
}

.section-subtitle {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-align: center;
  display: block;
  font-size: 14px;
  margin-top: 32px;
}

.section-subtitle {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  margin-top: 72px;
  margin-left: 128px;
  margin-right: 128px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.feature-box {
  background: #212529;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: #ff4d00;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.feature-icon img {
  width: 24px;
  height: 24px;
}

.feature-title {
  display: block;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 24px;
}

.feature-description {
  font-weight: 500;
  font-size: 12px;
}

.features-divider {
  margin: 144px auto 0;
  height: 1px;
  width: calc(100% - (100% / 15 * 2));
  background: #575757;
  border-radius: 100px;
}

.section-header-wrappers {
  position: relative;
  display: inline-block;
}

.section-header-mains {
  position: relative;
  z-index: 1;
  background: #212529;
  border-radius: 18px;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
}

.section-header-mains img {
  width: 24px;
  height: 24px;
}

.contact-box {
  margin-top: 72px;
  width: calc(100% - (100% / 15 * 2));
  margin-left: auto;
  margin-right: auto;
  background: #212529;
  border-radius: 24px;
  height: 480px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-left: 32px;
  padding-bottom: 32px;
  padding-right: 96px;
  gap: 96px;
}

.contact-info {
  width: calc((100% - 96px) * 0.375);
  height: 416px;
  background: #ff4d00;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 32px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.contact-title {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}

.contact-description {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.contact-item {
  display: flex;
  margin-left: 64px;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: 12px;
}

.contact-item a {
  display: flex;
  align-items: center;
  gap: 24px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #000000;
}

.contact-form {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}

.input {
  background: #d9d9d9;
  border-radius: 18px;
  color: black;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 24px 64px;
  font-size: 14px;
  position: relative;
}

.email-input {
  height: 64px;
  box-sizing: border-box;
}

.message-input {
  height: 256px;
  resize: none;
  overflow-y: hidden;
  padding-right: 96px;
  box-sizing: border-box;
  position: relative;
}

.send-button {
  position: absolute;
  top: 62%;
  right: 0;
  width: 48px;
  height: 48px;
  background: #ff4d00;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transform: translate(50%, -50%) rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.send-button .send-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.send-button .hover {
  opacity: 0;
  transform: rotate(0deg);
}

.send-button:hover .default {
  opacity: 0;
}

.send-button:hover .hover {
  opacity: 1;
  transform: rotate(-45deg);
}

.send-button img {
  width: 16px;
  height: 16px;
  user-select: none;
}

.section-bottom-space {
  height: 144px;
}

.site-footer {
  width: 100%;
  background: black;
  padding: 32px 0;
  text-align: center;
}

.site-footer span {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}


@media screen and (max-width: 1400px) {
	.contact-item{
    justify-content: center;
	margin-left:0px;
	}
	.contact-info {
    width: 45%;
	}
}
@media screen and (max-width: 1202px) {
	.account-box {
    padding: 0 26px;
	}
}
@media screen and (max-width: 992px) {
  .navbar ul {
    gap: 10px;
  }
  .account-box {
        width: 90%;
        padding: 0 5px;
    flex-direction: column;
    height: 252px;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
        /* height: 120px; */
  }
  .get-account-button{
    font-size: 12px;
    /* padding: 0px 30px; */
  }
  .category-icon {
    width: 56px;
    height: 56px;
  }
  .inner-icon {
    width: 34px;
    height: 34px;
  }
  .inner-icon img{
	  height: 20px;
    width: 20px;
  }
  .category-text-dropdown{
	  margin-left:15px;
  }
  .terms-text {
    text-align: center;
  }
  .features-grid {
    margin-top: 62px;
    margin-left: 10px;
    margin-right: 10px;
    grid-template-columns: repeat(1, 1fr);
    gap: 34px;
}
.contact-box {
	height:auto;
    margin-top: 72px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #212529;
    border-radius: 24px;
    padding-top: 32px;
    padding-left: 32px;
    padding-bottom: 32px;
    padding-right: 32px;
    gap: 46px;
    flex-direction: column;
}
.contact-info {
width: 100%;
}
	.contact-item{
    justify-content: center;
	margin-left:0px;
	}
	.input{
    width: 100%;
    padding: 24px 24px;
	}
	.contact-form{
		width:100%;
	}
	.site-footer span{
		font-size:12px;
	}
}

@media screen and (max-width: 600px) {
	.section-header-title{
    font-size: 12px;
	}
}

.fullscreen-marquee {
    width: 100%;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    marquee {
      font-size: 12px;
      white-space: nowrap;
    }
	
	  .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      background: white;
      height: 3px;
      margin: 4px 0;
      width: 25px;
    }

    @media (max-width: 1100px) {
      .navbar ul {
        flex-direction: column;
        display: none;
        background-color: #07090a;
        padding-left: 20px;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
      }

      .navbar ul.active {
        display: flex;
      }

      .hamburger {
        display: flex;
      }

      .navbar li {
        margin: 0.5rem 0;
      }
    }