/* Base Styles */
:root {
    --background: #ffffff;
    --foreground: #0f172a;
    --card: #ffffff;
    --card-foreground: #0f172a;
    --primary: #3b82f6;
    --primary-foreground: #f8fafc;
    --secondary: #f1f5f9;
    --secondary-foreground: #1e293b;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --accent: #f1f5f9;
    --accent-foreground: #1e293b;
    --destructive: #ef4444;
    --destructive-foreground: #f8fafc;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --ring: #3b82f6;
    --radius: 0.5rem;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }
  
  .dark {
    --background: #1e293b;
    --foreground: #f8fafc;
    --card: #1a2234;
    --card-foreground: #f8fafc;
    --primary: #3b82f6;
    --primary-foreground: #1e293b;
    --secondary: #334155;
    --secondary-foreground: #f8fafc;
    --muted: #334155;
    --muted-foreground: #94a3b8;
    --accent: #334155;
    --accent-foreground: #f8fafc;
    --destructive: #7f1d1d;
    --destructive-foreground: #f8fafc;
    --border: #334155;
    --input: #334155;
    --ring: #3b82f6;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    background-image: linear-gradient(to bottom right, var(--background), rgba(30, 41, 59, 0.9));
    min-height: 100vh;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .hidden {
    display: none !important;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  /* Gradient Elements */
  .gradient-text {
    background-image: linear-gradient(to right, var(--primary), #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .gradient-border {
    position: relative;
    border-radius: var(--radius);
  }
  
  .gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    /* background: linear-gradient(to right, var(--primary), #a855f7); */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  
  .gradient-divider {
    height: 4px;
    width: 6rem;
    background-image: linear-gradient(to right, var(--primary), #a855f7);
    margin: 1rem auto 0;
    border-radius: 9999px;
  }
  
  .gradient-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
  }
  
  .orb-1 {
    top: -6rem;
    left: -6rem;
    background-color: rgba(59, 130, 246, 0.2);
  }
  
  .orb-2 {
    top: 50%;
    right: -6rem;
    background-color: rgba(168, 85, 247, 0.2);
  }
  
  .orb-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(59, 130, 246, 0.1);
  }
  
  .orb-4 {
    top: 50%;
    left: 25%;
    background-color: rgba(168, 85, 247, 0.1);
  }
  
  .orb-5 {
    top: 0;
    right: 0;
    background-color: rgba(59, 130, 246, 0.1);
  }
  
  .orb-6 {
    bottom: 0;
    left: 0;
    background-color: rgba(168, 85, 247, 0.1);
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: transparent;
  }
  
  .navbar.scrolled {
    background-color: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
  }
  
  .menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .nav-link {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .nav-link:hover {
    color: var(--primary);
  }
  
  .contact-btn {
    background-image: linear-gradient(to right, var(--primary), #a855f7);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
  }
  
  .contact-btn:hover {
    opacity: 0.9;
    color: var(--primary-foreground);
  }
  
  /* Hero Section */
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .wave-emoji {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
  }
  
  @keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
  }
  
  .hero-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 32rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  
  .btn-primary {
    background-image: linear-gradient(to right, var(--primary), #a855f7);
    color: var(--primary-foreground);
    border: none;
  }
  
  .btn-primary:hover {
    opacity: 0.9;
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--foreground);
    position: relative;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    transition: all 0.2s ease;
  }
  
  .social-link:hover {
    background-color: rgba(59, 130, 246, 0.2);
  }
  
  .hero-image {
    position: relative;
    z-index: -1 !important;
    border-radius: var(--radius);
    overflow: hidden;
  }
  
  .image-overlay {
    position: absolute;
    inset: 0;
    
    /* background-image: linear-gradient(to bottom, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.1)); */
    border-radius: var(--radius);
    z-index: 1;
  }
  
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
  }
  
  /* Investment Section */
  .investment-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .section-description {
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto;
  }
  
  .investment-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  
  .card {
    background-image: linear-gradient(to bottom right, var(--card), rgba(26, 34, 52, 0.8));
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }
  
  .card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
  }
  
  .card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-image: linear-gradient(to bottom right, var(--primary), #a855f7);
    margin-bottom: 1rem;
  }
  
  .icon-circle svg {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .card-title {
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .card-description {
    color: var(--muted-foreground);
  }
  
  /* Blog Section */
  .blog-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  .blog-card {
    background-image: linear-gradient(to bottom right, var(--card), rgba(26, 34, 52, 0.8));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  
  .blog-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
  }
  
  .blog-image {
    position: relative;
    height: 14rem;
  }
  
  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-image img {
    transform: scale(1.05);
  }
  
  .blog-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-image: linear-gradient(to right, var(--primary), #a855f7);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .date-day {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .blog-content {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
  }
  
  .blog-title-link {
    text-decoration: none;
    color: var(--foreground);
  }
  
  .blog-title-link:hover .blog-title {
    color: var(--primary);
  }
  
  .blog-footer {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(51, 65, 85, 0.2);
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  /* Contact Section */
  .contact-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-description {
    color: var(--muted-foreground);
    max-width: 28rem;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-image: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.2);
  }
  
  .contact-icon svg {
    color: var(--primary);
  }
  
  .contact-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  
  .contact-link {
    color: var(--primary);
    text-decoration: none;
  }
  
  .contact-link:hover {
    text-decoration: underline;
  }
  
  .social-connect {
    margin-top: 1.5rem;
  }
  
  .social-title {
    font-weight: 500;
    margin-bottom: 0.75rem;
  }
  
  .contact-form-container {
    background-color: rgba(26, 34, 52, 0.5);
    backdrop-filter: blur(4px);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group {
    width: 100%;
  }
  
  .form-input,
  .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.2);
    border-radius: var(--radius);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.2s ease;
  }
  
  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  .form-textarea {
    min-height: 9rem;
    resize: vertical;
  }
  
  .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
  }
  
  .btn-icon {
    margin-right: 0.5rem;
  }
  
  .spinner {
    animation: rotate 2s linear infinite;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
  }
  
  .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
  }
  
  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes dash {
    0% {
      stroke-dasharray: 1, 150;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -35;
    }
    100% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -124;
    }
  }
  
  /* Footer */
  .footer {
    background-color: rgba(26, 34, 52, 0.5);
    backdrop-filter: blur(4px);
    padding: 2rem 0;
  }
  
  .footer-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
  }
  
  .footer-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }
  
  .footer-link:hover {
    color: var(--primary);
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(51, 65, 85, 0.2);
  }
  
  .copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social-link {
    color: var(--muted-foreground);
    transition: color 0.2s ease;
  }
  
  .footer-social-link:hover {
    color: var(--primary);
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3rem;
    }
    
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .investment-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-top {
      flex-direction: row;
    }
    
    .footer-logo {
      text-align: left;
      margin-bottom: 0;
    }
    
    .footer-bottom {
      flex-direction: row;
    }
    
    .copyright {
      margin-bottom: 0;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3.5rem;
    }
    
    .investment-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .blog-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Mobile Menu */
  @media (max-width: 767px) {
    .menu-toggle {
      display: block;
    }
    
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background-color: rgba(26, 34, 52, 0.95);
      backdrop-filter: blur(8px);
      padding: 1rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      display: none;
    }
    
    .nav-links.active {
      display: flex;
    }
    
    .nav-link {
      padding: 0.75rem 0;
    }
  }