:root {
  --primary-dark: #703209;
  --primary-light: #ffffff;
  --accent-color: #0b500f;
  --accent-hover: #37b32c;
  --text-dark: #1b550f;
  --text-light: #412626;
  --background-color: #fff;
  --background-light: #f7f7f7;
  --background-lighter: #f2f2f2;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --gradient-bg: linear-gradient(135deg, var(--primary-dark) 0%, #72cf60 100%);
  --card-gradient: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --font-primary: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  --font-heading: "Syne", sans-serif;
  --transition-standard: all 0.3s ease;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--primary-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}
.animate-slideInRight {
  animation: slideInRight 0.6s ease forwards;
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}
.animate-delay-2 {
  animation-delay: 0.4s;
}
.animate-delay-3 {
  animation-delay: 0.6s;
}

/* Enhanced Navbar Styles */
.navbar {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 60px;
}

.header.navbar {
  background: var(--primary-dark) !important;
  padding: 0;
  height: 60px;
  display: flex;
  align-items: center;
}

.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 2rem;
  height: 38px;
}

.login-btn,
.get-started-btn {
  height: 38px;
  padding: 0 1.25rem;
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .navbar,
  .header.navbar {
    height: 70px;
    transition: height 0.3s ease;
  }

  .navbar > .container {
    padding: 0 1rem;
  }

  #navbarNav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  #navbarNav.show {
    max-height: 500px;
    padding: 1rem 0;
  }

  .navbar.show-menu {
    height: auto;
  }

  .navbar-nav {
    padding: 0;
    margin: 0;
  }

  .nav-item {
    margin: 0.75rem 0;
  }

  .nav-link {
    color: var(--primary-light) !important;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
  }

  .dropdown-item {
    color: var(--primary-light);
  }

  .auth-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin: 1rem 0 0 0;
    height: auto;
    padding: 0.5rem 0;
  }

  .login-btn,
  .get-started-btn {
    width: 100%;
    text-align: center;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .navbar,
  .header.navbar {
    height: 52px;
  }

  #navbarNav {
    top: 52px;
  }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar,
  .header.navbar {
    height: 70px;
  }

  .navbar > .container {
    padding: 0 1rem;
  }

  #navbarNav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 1rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #navbarNav.show {
    display: block !important;
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-item {
    margin: 0.5rem 0;
  }

  .nav-link {
    color: var(--primary-light) !important;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .dropdown-menu {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }

  .dropdown-item {
    color: var(--primary-light);
    padding: 0.5rem 1rem;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
  }

  .auth-buttons {
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0 0 0;
    height: auto;
  }

  .login-btn,
  .get-started-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .navbar,
  .header.navbar {
    height: 60px;
  }

  #navbarNav {
    top: 60px;
  }
}

#navbarNav {
  display: flex;
  justify-content: center;
  flex: 1;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav.me-n8 {
  margin-right: -2rem;
}

@media (max-width: 991.98px) {
  .logo,
  .navbar-nav.me-n8 {
    margin-left: 0;
    margin-right: 0;
  }
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem !important;
  color: var(--primary-light) !important;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.navbar-toggler:hover {
  transform: scale(1.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  transform: rotate(90deg);
}

#navbarNav.show {
  display: block;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  #navbarNav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 1rem;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    margin: 0.25rem 0;
    display: flex;
    justify-content: center;
  }

  .nav-link {
    padding: 0.4rem 0.8rem !important;
    border-radius: 6px;
    font-size: 0.95rem;
    justify-content: center;
    width: 100%;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    width: 100%;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
  }
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 2rem;
  height: 42px;
}

.login-btn,
.get-started-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-standard);
}

.login-btn {
  color: var(--primary-light);
  background: transparent;
  border: 1px solid var(--text-dark);
}

.get-started-btn {
  color: var(--primary-light);
  background: var(--accent-light);
  border: 1px solid var(--accent-color);
  background-color: var(--primary-light);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--primary-dark);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }

  .auth-buttons {
    margin-top: 1rem;
    flex-direction: column;
    width: 100%;
  }

  .auth-buttons .login-btn,
  .auth-buttons .get-started-btn {
    width: 100%;
    justify-content: center;
  }

  .feature-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .feature-content img {
    max-width: 100%;
    height: auto;
  }

  .feature-content.reverse {
    flex-direction: column-reverse;
  }

  .header.navbar,
  .navbar {
    height: auto;
  }

  .nav-link {
    height: auto;
    padding: 0.75rem 1rem !important;
  }

  .navbar-nav {
    gap: 0;
    width: 100%;
  }

  .dropdown-menu {
    background: transparent;
    border: none;
    padding-left: 1rem;
    width: 100%;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .feature-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .auth-buttons {
    gap: 0.75rem;
  }

  .login-btn,
  .get-started-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-section {
    padding: 2rem 0.75rem;
  }

  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }
}

/* Header & Navigation */
.header {
  background: var(--background-color);
  box-shadow: 0 2px 10px var(--shadow-color);
  padding: 1rem 0;
  width: 100%;
  z-index: 1000;
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem;
}

.brand-text {
  color: var(--primary-light);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

@media (max-width: 991.98px) {
  .logo {
    padding: 0.25rem;
  }

  .brand-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .logo {
    padding: 0.15rem;
  }

  .brand-text {
    font-size: 1.1rem;
  }
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition-standard);
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-links a {
  color: var(--primary-light);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.login-btn {
  color: var(--primary-light);
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--accent-color);
  color: var(--primary-light);
  transform: translateY(-2px);
}

.get-started-btn {
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.get-started-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  background-color: var(--accent-hover);
}

/* Hero Section */
.hero-section {
  background: var(--gradient-bg);
  color: var(--primary-light);
  padding: 6rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 102, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #e6e9ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 6s ease-in-out infinite;
}

.hero-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--accent-color);
  animation: slideInRight 1s ease-out;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 2rem auto;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.5s backwards;
}

.start-journey-btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--accent-color);
  color: var(--primary-light);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 1s backwards;
}

.start-journey-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.start-journey-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.start-journey-btn:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1rem;
  }

  .hero-content .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content h3 {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
}

/* Feature Sections */
.feature-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.feature-section:nth-child(odd) {
  background: #f8f9ff;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.feature-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: fadeIn 0.8s ease;
}
/* Feature Cards */
.feature-card {
  background: var(--primary-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--primary-light);
}
.learn-more-btn {
  color: var(--primary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-content.reverse {
  flex-direction: row-reverse;
}

.section-label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.feature-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.1);
}

.feature-link:hover {
  background: rgba(0, 102, 255, 0.15);
  transform: translateY(-2px);
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-image img:hover {
  transform: scale(1.02);
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  animation: fadeIn 0.8s ease;
}

.auth-form {
  background: var(--primary-light);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.auth-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.auth-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent-color);
  color: var(--primary-light);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.auth-features {
  color: var(--primary-light);
}

.auth-features h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .feature-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .feature-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-content.reverse {
    flex-direction: column;
  }

  .auth-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .auth-features {
    display: none;
  }
}

@media (max-width: 768px) {
  .auth-container {
    padding: 1.5rem;
    gap: 2rem;
  }

  .auth-features {
    grid-template-columns: 1fr;
  }

  .auth-box {
    padding: 2rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .auth-buttons {
    display: none;
  }

  .auth-buttons.mobile {
    display: flex;
    margin-top: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--background-color);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-links a {
    padding: 0.75rem;
    width: 100%;
    text-align: center;
  }
}

.feature-section {
  padding: 6rem 2rem;
  background: var(--background-color);
}

.feature-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-content.reverse {
  direction: rtl;
}

.feature-content.reverse .feature-text {
  direction: ltr;
}

.section-label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: bold;
}

.feature-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.feature-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--background-light);
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-link:hover {
  background: var(--background-lighter);
  transform: translateY(-2px);
}

.feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.feature-image:hover .dashboard-img {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .feature-section {
    padding: 4rem 2rem;
  }

  .feature-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-content.reverse {
    direction: ltr;
  }

  .feature-text {
    text-align: center;
  }

  .feature-links {
    justify-content: center;
  }

  .feature-section {
    padding: 3rem 1.5rem;
  }

  .feature-text h2 {
    font-size: 1.75rem;
  }
}

.footer {
  background: var(--primary-dark);
  color: var(--primary-light);
}

/* .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
} */

/* .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    opacity: 0.9;
} */

/* .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
} */

/* .footer-section ul li {
    margin-bottom: 0.75rem;
} */

/* .footer-section ul li a {
    color: var(--primary-light);
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
    transition: all 0.3s ease;
} */

/* .footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
} */

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* .footer-bottom p {
    color: var(--primary-light);
    opacity: 0.7;
    font-size: 0.9rem;
} */

/* @media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
} */

/* Add these new keyframes at the top with other animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Update Hero Section styles */
.hero-section {
  background: var(--gradient-bg);
  padding: 8rem 2rem 6rem;
  color: var(--primary-light);
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-content h3 {
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
}

.start-journey-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-color);
  color: var(--primary-light);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;
}

/* Loader Styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loader-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary-light);
  border-bottom-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.feature-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: fadeIn 0.8s ease;
}
/* Feature Cards */
.feature-card {
  background: var(--primary-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--primary-light);
}
.learn-more-btn {
  color: var(--primary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-content.reverse {
  flex-direction: row-reverse;
}

.section-label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.feature-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.1);
}

.feature-link:hover {
  background: rgba(0, 102, 255, 0.15);
  transform: translateY(-2px);
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-image img:hover {
  transform: scale(1.02);
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  animation: fadeIn 0.8s ease;
}

.auth-form {
  background: var(--primary-light);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.auth-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.auth-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent-color);
  color: var(--primary-light);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.auth-features {
  color: var(--primary-light);
}

.auth-features h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .feature-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .feature-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-content.reverse {
    flex-direction: column;
  }

  .auth-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .auth-features {
    display: none;
  }
}

@media (max-width: 768px) {
  .auth-container {
    padding: 1.5rem;
    gap: 2rem;
  }

  .auth-features {
    grid-template-columns: 1fr;
  }

  .auth-box {
    padding: 2rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .auth-buttons {
    display: none;
  }

  .auth-buttons.mobile {
    display: flex;
    margin-top: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--background-color);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-links a {
    padding: 0.75rem;
    width: 100%;
    text-align: center;
  }
}

.feature-section {
  padding: 6rem 2rem;
  background: var(--background-color);
}

.feature-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-content.reverse {
  direction: rtl;
}

.feature-content.reverse .feature-text {
  direction: ltr;
}

.section-label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: bold;
}

.feature-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.feature-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--background-light);
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-link:hover {
  background: var(--background-lighter);
  transform: translateY(-2px);
}

.feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.feature-image:hover .dashboard-img {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .feature-section {
    padding: 4rem 2rem;
  }

  .feature-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-content.reverse {
    direction: ltr;
  }

  .feature-text {
    text-align: center;
  }

  .feature-links {
    justify-content: center;
  }

  .feature-section {
    padding: 3rem 1.5rem;
  }

  .feature-text h2 {
    font-size: 1.75rem;
  }
}

/* Add these new keyframes at the top with other animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Update Hero Section styles */
.hero-section {
  background: var(--gradient-bg);
  padding: 8rem 2rem 6rem;
  color: var(--primary-light);
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-content h3 {
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
}

.start-journey-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-color);
  color: var(--primary-light);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;
}

/* Loader Styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loader-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary-light);
  border-bottom-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.feature-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: fadeIn 0.8s ease;
}
/* Feature Cards */
.feature-card {
  background: var(--primary-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--primary-light);
}
.learn-more-btn {
  color: var(--primary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-content.reverse {
  flex-direction: row-reverse;
}

.section-label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.feature-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.1);
}

.feature-link:hover {
  background: rgba(0, 102, 255, 0.15);
  transform: translateY(-2px);
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-image img:hover {
  transform: scale(1.02);
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  animation: fadeIn 0.8s ease;
}

.auth-form {
  background: var(--primary-light);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.auth-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.auth-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent-color);
  color: var(--primary-light);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.auth-features {
  color: var(--primary-light);
}

.auth-features h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .feature-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .feature-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-content.reverse {
    flex-direction: column;
  }

  .auth-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .auth-features {
    display: none;
  }
}

@media (max-width: 768px) {
  .auth-container {
    padding: 1.5rem;
    gap: 2rem;
  }

  .auth-features {
    grid-template-columns: 1fr;
  }

  .auth-box {
    padding: 2rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .auth-buttons {
    display: none;
  }

  .auth-buttons.mobile {
    display: flex;
    margin-top: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--background-color);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-links a {
    padding: 0.75rem;
    width: 100%;
    text-align: center;
  }
}

.feature-section {
  padding: 6rem 2rem;
  background: var(--background-color);
}

.feature-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-content.reverse {
  direction: rtl;
}

.feature-content.reverse .feature-text {
  direction: ltr;
}

.section-label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: bold;
}

.feature-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.feature-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--background-light);
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-link:hover {
  background: var(--background-lighter);
  transform: translateY(-2px);
}

.feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.feature-image:hover .dashboard-img {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .feature-section {
    padding: 4rem 2rem;
  }

  .feature-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-content.reverse {
    direction: ltr;
  }

  .feature-text {
    text-align: center;
  }

  .feature-links {
    justify-content: center;
  }

  .feature-section {
    padding: 3rem 1.5rem;
  }

  .feature-text h2 {
    font-size: 1.75rem;
  }
}

.contact_form {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: flex-start;
}

.contact_info1 {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: auto;

}

.contact_info2 {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: auto;
}

.connect {
  display: flex;
  text-align: left;
  /* justify-content: flex-start; */
  margin-top: 2rem;
}

@media (max-width: 1000px) {
  .connect {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact_info {
    margin-top: 2rem;
  }
}

/* Add these new keyframes at the top with other animations */
