:root {
  /* --primary: #4a00ff; */
  --primary: #4900FE;
  --secondary: #735cde;
  --accent: #735cde;
  --dark: #1f1b54;
  --light: #f8f9ff;
}

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

body {
  font-family: Nunito, sans-serif;
  color: #444;
  line-height: 1.6;
  overflow-x: hidden;
}

.gradient-text {
  background: linear-gradient(45deg, #e91e63, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar {
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: 0 0;
}

.hero {
  padding: 150px 5% 100px;
  background: var(--light);
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--dark);
}

.hero-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.features {
  padding: 4rem 5%;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.about-section {
  padding: 6rem 5%;
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.contact-section {
  padding: 6rem 5%;
  background: #fff;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

input,
textarea {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

footer {
  background: var(--dark);
  color: #fff;
  padding: 4rem 5%;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
}

/* Footer Links styles */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

/* Update footer container to accommodate the new column */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand, .footer-nav, .footer-links, .footer-social {
    margin-bottom: 1.5rem;
  }
  
  .footer-nav, .footer-links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-nav a, .footer-links a {
    margin: 0 0.75rem;
  }
}

@media (max-width: 768px) {
  .about-section,
  .contact-content,
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }
}

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

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-list {
    text-align: left;
  }
}

.features-header {
  text-align: center;
  margin-bottom: 2rem;
}

.features-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.about-section {
  padding: 6rem 5%;
  background: var(--light);
  text-align: left;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 600;
}

.about-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-text {
  text-align: center;
}

.about-section {
  display: block;
  padding: 6rem 5%;
  background: var(--light);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content .hero-image img {
  display: block;
  margin: 0 auto;
}

:root {
  --primary: #4900FE;
  --secondary: #4b44b2;
  --accent: #ff7675;
  --dark: #0a0f2b;
  --darker: #070a1c;
  --light: #f8f9ff;
}

.navbar {
  background: rgba(10, 15, 43, 0.95) !important;
  backdrop-filter: blur(12px);
}

.logo {
  color: var(--light) !important;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9) !important;
}

.nav-links a:hover {
  color: var(--accent) !important;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--light) !important;
}

.hero {
  background: linear-gradient(
    135deg,
    var(--dark) 0,
    var(--darker) 100%
  ) !important;
  position: relative;
  overflow: hidden;
}

.hero-text h1 {
  color: var(--light) !important;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero-content {
  position: relative;
  z-index: 1;
}

:root {
  --primary-rgb: 106, 0, 255;
  --secondary-rgb: 115, 92, 222;
  --accent-rgb: 255, 118, 117;
}

.hero {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.hero::after,
.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.1) 0,
    transparent 70%
  );
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-100vh) translateX(100vw) scale(1.2);
    opacity: 0.8;
  }

  100% {
    transform: translateY(-200vh) translateX(200vw) scale(0.8);
    opacity: 0;
  }
}

.about-section .about-list li,
.about-section .hero-text h1,
.about-section .hero-text p {
  color: var(--dark) !important;
}

.about-section .hero-text p {
  opacity: 0.9;
}

.about-list li:before {
  color: var(--primary) !important;
}

.her2o {
  background: url(images/hero.png) no-repeat center center/cover !important;
  position: relative;
  overflow: hidden;
  padding: 150px 5% 100px;
  text-align: center;
}

.he2ro {
  background: url(images/hero-4.png) no-repeat center center/cover !important;
}

.hero {
  background: #fff !important;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 5% 100px;
  text-align: center;
}

.hero-text h1 {
  color: var(--dark) !important;
}

.hero-text p {
  color: #444 !important;
}

.btn-primary {
  background: var(--primary);
  color: #fff !important;
  border: none;
}

.btn-primary:hover {
  background: var(--secondary);
  color: #fff !important;
}

.btn-outline {
  border: 2px solid var(--dark) !important;
  color: var(--dark) !important;
  background: 0 0;
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff !important;
}

.navbar {
  background: #fff !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  color: var(--dark) !important;
}

.nav-links a {
  color: var(--dark) !important;
}

.nav-links a:hover {
  color: var(--primary) !important;
}

.navbar {
  padding: 1rem 3%;
  background: #fff !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  padding: 1rem 3%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease;
}

.navbar {
  background: 0 0 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
  min-width: 700px;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
}

.dropdown-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.dropdown-column a {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-column a:hover {
  color: var(--primary);
}

.hero {
  height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee !important;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 2rem;
  align-items: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: var(--dark);
}

.hero-text p {
  font-size: 1.2rem;
  color: #444;
}

.dropdown {
  position: relative;
}

.mega-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: #fff;
  display: none;
  flex-wrap: wrap;
  padding: 2rem 5%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.mega-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-column {
  flex: 1;
  min-width: 200px;
  margin-right: 2rem;
}

.dropdown-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.dropdown-column a {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.dropdown-column a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .mega-dropdown .dropdown-menu {
    display: none !important;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1rem;
  }

    #word-cloud {
    display: none !important;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }
}

.navbar {
  background: 0 0 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}

.mega-dropdown .dropdown-menu {
  position: fixed;
  left: 0;
  width: 100vw;
  top: var(--navbar-height);
  transform: translateX(calc(-50% + 50vw));
  padding: 2rem 5%;
  display: none;
  z-index: 999;
}

.mega-dropdown:hover .dropdown-menu {
  display: flex;
}

.navbar:not(.scrolled) .mega-dropdown:hover .dropdown-menu {
  display: none !important;
}

.navbar {
  background: 0 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.nav-links .dropdown-menu {
  position: fixed;
  left: 0;
  width: 100vw;
  padding: 2rem 5%;
  display: none;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 900;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.navbar {
  background: 0 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.nav-links .dropdown-menu {
  position: fixed;
  left: 0;
  width: 100vw;
  z-index: 900;
  padding: 2rem 5%;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: none;
  flex-wrap: wrap;
}

.dropdown-menu.show {
  display: flex;
}

.nav-links a.trigger-active {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  transition: background 0.3s, color 0.3s;
}

.caret {
  animation: blink 1s infinite;
  display: inline-block;
  margin-right: 6px;
  font-weight: 700;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.gradient-text.color-red {
  background: linear-gradient(45deg, #e91e63, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text.color-yellow {
  background: linear-gradient(45deg, #4900fe, #4900fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text.color-green {
  background: linear-gradient(45deg, #15d01d, #15d01d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  border-radius: 0;
}

.btn-outline {
  border-radius: 0;
}

/* Add these responsive navbar styles at the end of your torch.css file */

/* Responsive navbar adjustments */
@media (max-width: 1200px) {
  .nav-content {
    padding: 0 1rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 1.5rem;
  }
  
  .cta-buttons {
    gap: 0.7rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    margin-top: 1rem;
    justify-content: space-between;
    display: none; /* Hide on mobile by default */
  }
  
  .cta-buttons {
    gap: 0.5rem;
  }
  
  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
  
  /* Add a mobile menu button later if needed */
}

/* Add base adjustments to CTA buttons for all screens */
.btn {
  white-space: nowrap;
  letter-spacing: 0.5px;
}
/* Add these responsive navbar styles at the end of your torch.css file */

/* Responsive navbar adjustments */
@media (max-width: 1200px) {
  .nav-content {
    padding: 0 1rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 1.5rem;
  }
  
  .cta-buttons {
    gap: 0.7rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    margin-top: 1rem;
    justify-content: space-between;
    display: none; /* Hide on mobile by default */
  }
  
  .cta-buttons {
    gap: 0.5rem;
  }
  
  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
  
  /* Add a mobile menu button later if needed */
}

/* Add base adjustments to CTA buttons for all screens */
.btn {
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Modal styles */
.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
  max-width: 500px;
  margin: 1.75rem auto;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  background: none;
  border: none;
  padding: 1rem;
  cursor: pointer;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.required {
  color: #dc3545;
}

.is-invalid {
  border-color: #dc3545;
}

/* Add to your CSS */
.modal-content {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.modal-header .close {
  padding: 0.75rem;
  margin: -0.75rem -0.75rem -0.75rem auto;
}

.form-control {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.form-control:focus {
  border-color: #4A00FF;
  box-shadow: 0 0 0 3px rgba(74, 0, 255, 0.15);
  outline: none;
}

/* Fix for hero text overlapping header on shorter screens */
@media (max-height: 870px) {
  .hero {
    padding-top: 90px; /* Increase top padding for shorter screens */
  }
  
  .hero-content {
    gap: 1.5rem; /* Reduce gap between elements */
  }
  
  .hero-tex2t h1 {
    font-size: 2.4rem; /* Slightly reduce heading size */
    line-height: 1.3;
  }
  
  /* Add more space specifically for the gradient text */
  .gradient-text {
    display: inline-block;
    padding-top: 5px; /* Add padding above the gradient text */
  }
}

/* Extra protection for very short screens */
@media (max-height: 650px) {
  .hero {
    padding-top: 140px; /* Further increase padding */
  }
  
  .hero-te2xt h1 {
    font-size: 2.1rem; /* Further reduce size */
  }
  
  .hero-text p {
    font-size: 1rem; /* Shrink paragraph text */
    margin-top: 0.7rem;
  }
  
  .hero-cta {
    margin-top: 1rem; /* Reduce button spacing */
  }
}


.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
}

/* Word cloud responsive behavior */
@media screen and (max-width: 768px) {
  #word-cloud {
    display: none;
  }
  
  /* Add a mobile-friendly alternative */
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    text-align: center;
    padding: 0 1rem;
  }
}

.site-footer {
  background: #0f0f1a;
  color: #e5e7eb;
  padding: 4rem 2rem 2rem;
  font-family: 'Nunito', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 2rem;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 220px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f97316, #ec4899, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 1rem;
  color: #9ca3af;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex: 1 1 300px;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer-nav a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #a5b4fc;
}

.footer-social {
  flex: 1 1 100px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.footer-social a {
  color: #e5e7eb;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #6366f1;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
}
