/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

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

html {
  font-size: 16px;
}

body {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #171717;
  background-color: #ffffff;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(2px);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.32);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 100px;
  padding: 0 180px;
}

.logo-section {
  flex-shrink: 0;
  width: 384px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  text-decoration: none;
}

.logo {
  width: auto;
  max-width: 345px;
}

.navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-item {
  display: flex;
  height: 100%;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12.5px 20px 13.5px 20px;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  transform: translateY(8px);
  text-decoration: none;
}

/* Main Section */
.main-section {
  background: linear-gradient(180deg, #16021b 0%, #34053f 100%);
  padding: 147.88px 192px 147.89px 192px;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1536px;
  gap: 40px;
}

.content-left {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  color: #ffffff;
  margin-bottom: 20px;
}

.description {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: #d3d3d3;
  margin-bottom: 20px;
  max-width: 600px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #911884;
  color: #ffffff;
  padding: 16px 31px;
  border: 2px solid #ffffff;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.cta-button:hover {
  background-color: #a0208f;
  transform: scale(1.1);
}

/* Content Right - Hero Image */
.content-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.09px 0 10px 9.47px;
  min-height: 484.23px;
  perspective: 1000px;
}

.hero-image {
  width: 486px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.content-right:hover .hero-image {
  transform: translateY(20px) translateX(-10px) scale(1.02);
}

/* Footer Styles */
.footer {
  border-style: dotted;
  border-width: 1px 0px 0px 0px;
  border-color: #d6d6d6;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 13px 390px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
  min-height: 60px;
}

.footer-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  color: #171717;
  text-align: center;
}

.inner-content {
  background: transparent;
  background-color: transparent;
  background-image: linear-gradient(180deg, #fafafa 0%, #e9e9e9 100%);
  min-height: calc(100vh - 87px - 100px);
}

.text-content {
  background-color: #f8f8f8;
  background-image: none;
  font-family: "Rubik", Sans-serif;
  font-weight: 400;
  padding-top: 40px;
}

.text-content h3 {
  font-size: 1.75rem;
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 33px;
  margin-block-end: 16px;
  margin-block-start: 8px;
}

.text-content p {
  margin-block-start: 0;
  margin-block-end: 0.9rem;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #303030;
}

.text-content ul {
  padding-inline-start: 40px;
  font-size: 16px;
  font-weight: 400;
  color: #303030;
}

.inner-content .content-left {
  justify-content: center;
  align-items: center;
  color: #131313;
  font-family: "Roboto", sans-serif;
}

.inner-content .content-left ol li {
  text-align: left;
  color: #131313;
  font-family: "Roboto", Sans-serif;
  font-weight: 400;
  line-height: 30px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.inner-content .heading {
  color: #262626;
  font-family: "Rubik", Sans-serif;
  font-size: 42px;
  animation: fadeIn 0.6s ease-in;
}

.inner-content .description {
  color: #131313;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.inner-content a {
  margin-top: 20px;
  text-decoration: none;
  font-weight: 400;
}

.inner-content a:hover {
  color: #336;
  text-decoration: none;
}

.inner-content .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #911884;
  color: #ffffff;
  padding: 16px 31px;
  border: 2px solid #ffffff;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.inner-content .cta-button:hover {
  background-color: #a0208f;
  transform: scale(1.1);
}

.main-section-title {
  background-color: transparent;
  background-image: linear-gradient(180deg, #16021b 0%, #34053f 100%);
  width: 100%;
  height: 220px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik", Sans-serif;
  font-size: 42px;
  font-weight: 600;
}

.go-to-app {
  color: white !important;
}

/* Responsive Design */
@media (max-width: 1536px) {
  .header-container {
    padding: 0 150px;
  }

  .main-section {
    padding: 100px 150px;
  }

  .footer {
    padding: 13px 150px;
  }
}

@media screen and (max-width: 1350px) {
  .hero-image {
    width: 65%;
  }
}

@media (max-width: 1024px) {
  .header-container {
    padding: 0 100px;
  }

  .main-section {
    padding: 80px 100px;
    min-height: auto;
  }

  .main-container {
    flex-direction: column;
  }

  .content-left {
    width: 100%;
  }

  .content-right {
    width: 100%;
  }

  .footer {
    padding: 13px 100px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
    height: auto;
    padding: 15px 30px;
  }

  .logo-section {
    width: 100%;
  }

  .navigation {
    width: 100%;
    justify-content: center;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .main-section {
    padding: 50px 30px;
  }

  .main-container {
    gap: 30px;
  }

  .heading {
    font-size: 24px;
    line-height: 24px;
  }

  .description {
    font-size: 16px;
    line-height: 24px;
  }

  .footer {
    padding: 13px 30px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 15px;
  }

  .logo-section {
    width: 100%;
  }

  .logo {
    height: 40px;
  }

  .nav-list {
    gap: 5px;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }

  .main-section {
    padding: 30px 15px;
  }

  .heading {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer {
    padding: 13px 15px;
  }

  .footer-text {
    font-size: 12px;
  }
}
