@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}
.p0 {
  padding: 0 !important;
}
textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  background-color: #261e35;
  /* background: #000 url(../images/bg.png) center / cover no-repeat; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.terms p {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* Base styles */
:root {
  --primary-color: #6a36f9;
  --secondary-color: #e25f6b;
  --dark-bg: #1e1534;
  --light-text: #ffffff;
  --gray-text: #d1d1d1;
  --button-gradient: linear-gradient(to right, #6a36f9, #e25f6b);
  --header-gradient: linear-gradient(to right, #6a36f9, #e25f6b);
}

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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background-color: var(--dark-bg);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--light-text);
}

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

/* Header styles */
header {
  width: 100%;
  padding-inline: 10px;
}

.header-gradient {
  background: var(--header-gradient);
  padding: 15px 0;
  border-radius: 30px;
  margin: 20px 0;
}

.logo {
  display: block;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--light-text);
  letter-spacing: 1px;
}

/* Button styles */
.btn-primary {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--light-text);
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Hero section */
.hero {
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.hero-content {
  flex: 1;
  padding-right: 20px;
  background-image: url(../images/1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #000;
}
.hero-content .wrapper {
  max-width: 480px;
  width: 100%;
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--light-text);
}

.hero-image {
  flex: 1;
  /* Placeholder for the 3D elements */
}

/* About section */
.about {
  padding: 60px 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 30px;
}

.market-chart {
  background-color: rgba(30, 21, 52, 0.7);
  border-radius: 15px;
  padding: 20px;
  margin: 40px 0;
  position: relative;
}

.chart-filter {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px 15px;
  border-radius: 15px;
}

/* Services section */
.services {
  padding: 60px 0;
}

.services h2,
.services-tagline {
  text-align: center;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  text-align: center;
  padding: 20px;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  /* Placeholder for service icons */
}

.price {
  font-weight: bold;
  color: var(--primary-color);
  margin: 15px 0;
}

/* Contact section */
.contact {
  padding: 60px 0;
  text-align: center;
}

.contact-tagline {
  margin-bottom: 30px;
}

.form-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 15px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--light-text);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Footer */
footer {
  padding: 30px 0;
  text-align: center;
}

.footer-info {
  margin-bottom: 20px;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-radius: 30px;
  background-color: var(--primary-color);
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  font-size: 0.8rem;
}

/* Thank You Page */
.thank-you {
  padding: 80px 0;
  text-align: center;
}

.thank-you h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.back-to-home {
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    width: 100%;
    padding-right: 0;
  }

  .hero-image {
    margin-top: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .header-gradient {
    border-radius: 15px;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .btn-primary {
    width: 100%;
  }
}
form button {
  width: 100%;
}
.header-gradient {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}
.logo {
  margin-bottom: 0;
}
