/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #0f172a;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #e2e8f0;
  line-height: 1.6;
  font-family: 'Segoe UI', 'Noto Sans', 'Noto Sans Devanagari', 'Noto Sans Tamil', 'Noto Sans Telugu', 'Noto Sans Gurmukhi', sans-serif;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
}

.nav-left,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions {
  margin-left: auto;
}

.logo {
  font-size: clamp(1.2rem, 5vw, 1.5rem);
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  align-items: center;
}

nav ul li {
  display: flex;
}

nav a {
  text-decoration: none;
  color: #e2e8f0;
  transition: 0.3s ease;
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

nav a:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.12);
}

.lang-toggle {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #e2e8f0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.3s ease;
  min-width: 120px;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.18);
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  background: rgba(10,10,10,0.98);
  min-width: 190px;
  border-radius: 10px;
  z-index: 1000;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* Bridge the gap so moving the pointer from the button to the menu does not drop hover */
.lang-dropdown-content::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 10px;
}

.lang-dropdown:hover .lang-dropdown-content,
.lang-dropdown.lang-dropdown--open .lang-dropdown-content {
  display: block;
}

.lang-dropdown-content button {
  width: 100%;
  background: transparent;
  border: none;
  color: #e2e8f0;
  text-align: left;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-dropdown-content button:hover {
  background: rgba(0,255,136,0.12);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #e2e8f0;
  transition: 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px;
  text-align: left;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                      url('../image/fram.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  color: #e2e8f0;
}

.hero-content {
  position: relative;
  max-width: 650px;
  margin-left: 50px;
}

.tag {
  background: #facc15;
  color: black;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
}

.hero h1 {
  font-size: clamp(1.75rem, 8vw, 3.5rem);
  margin-bottom: clamp(1rem, 3vh, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero h2 {
  font-size: clamp(1.5rem, 7vw, 3rem);
  margin-bottom: clamp(1rem, 3vh, 2rem);
  font-weight: 700;
}

.hero p {
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  margin-bottom: clamp(1.5rem, 4vh, 2rem);
  max-width: 600px;
  line-height: 1.8;
  opacity: 0.95;
  color: #e2e8f0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  background: #00ff88;
  color: #000;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.btn:hover {
  background: #00cc6a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn.secondary {
  background: transparent;
  color: #e2e8f0;
  border: 2px solid #00ff88;
}

.btn.secondary:hover {
  background: #00ff88;
  color: #000;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats div {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hero-stats h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #00ff88;
}

.hero-stats p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Team Page Styles */
.team-hero {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: linear-gradient(180deg, rgba(2, 12, 27, 0.95) 0%, rgba(6, 46, 86, 0.95) 100%);
  text-align: center;
}

.team-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.team-hero .section-label {
  display: inline-flex;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.team-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.team-hero-copy,
.team-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 770px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.team-section {
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
  background: #f8fafc;
  color: #0f172a;
  margin-bottom: 4rem;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-top: 0.75rem;
  font-weight: 700;
}

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

.team-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.team-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
  color: #0f172a;
}

.team-card .team-copy {
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.team-card .btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0a66c2;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.team-card .btn-linkedin:hover {
  background: #084d96;
  transform: translateY(-2px);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 255, 136, 0.3);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #16a34a;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.team-card .role {
  color: #00ff88;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.team-cta {
  padding: clamp(3rem, 8vw, 5rem) 2rem;
  background: #0f172a;
  color: white;
  text-align: center;
}

.team-cta h2 {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  margin-bottom: 1rem;
}

.team-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Responsive adjustments for team page */
@media (max-width: 768px) {
  .team-hero {
    padding: 3rem 1.25rem;
  }

  .team-section {
    padding: 2rem 1.25rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team-card {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Features Section */
.features {
  background: #f8fafc;
  color: #111;
  text-align: center;
  padding: 80px 20px;
}

.section-tag {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-sub {
  max-width: 600px;
  margin: auto;
  margin-bottom: 40px;
  color: #555;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.card i {
  font-size: 22px;
  margin-bottom: 10px;
  color: #16a34a;
}

.card h3 {
  margin-bottom: 8px;
  color: #111;
}

.card p {
  color: #555;
  font-size: 14px;
}

/* Vision Section */
.vision {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.vision h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 1rem;
}

.vision p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.vision-points {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.vision-points span {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
}

.vision-points span.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.vision-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Technology Section */
.technology {
  padding: 80px 20px;
  background: #f8fafc;
  color: #111;
}

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

.tech-left h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.tech-left p {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.tech-list {
  list-style: none;
}

.tech-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(-20px);
}

.tech-list li.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.tech-list li span {
  color: #666;
  font-size: 0.9rem;
}

.tech-btn {
  background: #16a34a;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
  transition: 0.3s ease;
}

.tech-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.tech-right img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.status {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #00ff88;
  color: #000;
  padding: 0.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tech-right {
  position: relative;
}

/* Footer */
footer {
  text-align: center;
  padding: clamp(1.5rem, 3vh, 2.5rem) clamp(1rem, 5vw, 2rem);
  background: rgba(0,0,0,0.7);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.footer-left h2 {
  margin-bottom: 0.5rem;
}

.footer-left p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-links h3 {
  margin-bottom: 1rem;
  color: #00ff88;
}

.footer-links a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: 0.3s ease;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.status-dot {
  color: #00ff88;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  nav {
    padding: 1rem;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    flex-direction: column;
    gap: 0;
    display: none;
    width: 100%;
    padding: 1rem 0;
  }

  nav ul.active {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero {
    min-height: auto;
    padding: 3rem 1rem;
    text-align: center;
  }

  .hero-content {
    margin-left: 0;
  }

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

  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    min-height: auto;
    padding: 1.5rem;
  }

  .tech-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vision-points {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding: 2rem 0.75rem;
    min-height: auto;
  }

  .hero h1,
  .hero h2 {
    margin-bottom: 0.75rem;
  }

  .hero p {
    margin-bottom: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .features {
    padding: 1.5rem 0.75rem;
  }

  .features h2 {
    margin-bottom: 1rem;
  }

  .cards {
    gap: 1rem;
  }

  .card {
    padding: 1rem;
    min-height: auto;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.8rem;
  }

  .card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  footer {
    padding: 1rem 0.75rem;
    font-size: 0.75rem;
  }

  nav a i {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .card {
    transition: none;
  }

  .btn {
    transition: none;
  }

  nav a {
    transition: none;
  }
}

/* Print Styles */
@media print {
  nav,
  footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .card {
    background: white;
    border: 1px solid #ccc;
    color: black;
  }

  .btn {
    background: #00ff88;
    color: black;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 20px;
  background: #f8fafc;
}

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

.contact-form-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
  color: #111;
  margin-bottom: 1.5rem;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #111;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h2 {
  color: #111;
  margin-bottom: 1.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.info-card i {
  color: #3b82f6;
  font-size: 1.5rem;
  width: 40px;
}

.info-card h3 {
  color: #111;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  color: #111;
  margin: 0;
  font-weight: 500;
}

/* Contact Hero */
.contact-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
  color: #111;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-hero {
    padding: 60px 20px;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero p {
    font-size: 1rem;
  }
}

/* Blog Page Styles */
.blog-page .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 1.5rem;
}

.blog-page .card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.blog-page .card i.icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ff88;
}

.blog-page .cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #111;
}

.blog-page .cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-page .cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.blog-page .cta .btn {
  background: #111;
  color: #00ff88;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-page .cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-page .card {
    min-height: 250px;
    padding: 1.2rem;
  }
  
  .blog-page .cta {
    padding: 3rem 1.5rem;
  }
  
  .blog-page .cta h2 {
    font-size: 1.5rem;
  }
  
  .blog-page .cta p {
    font-size: 1rem;
  }
  
  .blog-page .cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Investors Page Mobile Styles */
@media (max-width: 768px) {
  .investors-page .hero {
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .investors-page .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .investors-page .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .investors-page .features {
    padding: 2rem 1rem;
  }
  
  .investors-page .features h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .investors-page .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .investors-page .card {
    padding: 1.2rem;
    text-align: center;
  }
  
  .investors-page .card i.icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .investors-page .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .investors-page .card p {
    font-size: 0.9rem;
  }
  
  .investors-page .cta {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .investors-page .cta h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .investors-page .cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .investors-page .hero h1 {
    font-size: 1.5rem;
  }
  
  .investors-page .hero p {
    font-size: 0.9rem;
  }
  
  .investors-page .features h2 {
    font-size: 1.3rem;
  }
  
  .investors-page .card {
    padding: 1rem;
  }
  
  .investors-page .card h3 {
    font-size: 1rem;
  }
  
  .investors-page .card p {
    font-size: 0.85rem;
  }
}

/* Additional Investors Mobile Styles (without body class) */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero .btn {
    margin: 0 auto;
    display: inline-block;
  }
  
  .features {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .features h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-content: center;
  }
  
  .card {
    padding: 1.2rem;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .card i.icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .card p {
    font-size: 0.9rem;
  }
  
  .cta {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin: 0 auto;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hero {
    text-align: center !important;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    text-align: center !important;
  }
  
  .hero p {
    font-size: 0.9rem;
    text-align: center !important;
  }
  
  .hero .btn {
    margin: 0 auto !important;
    display: inline-block !important;
  }
  
  .features {
    text-align: center !important;
  }
  
  .features h2 {
    font-size: 1.3rem;
    text-align: center !important;
  }
  
  .cards {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    justify-content: center !important;
  }
  
  .card {
    padding: 1rem;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }
  
  .card h3 {
    font-size: 1rem;
    text-align: center !important;
  }
  
  .card p {
    font-size: 0.85rem;
    text-align: center !important;
  }
  
  .cta {
    text-align: center !important;
    padding: 2rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .cta h2 {
    text-align: center !important;
    margin: 0 auto 1.5rem auto !important;
    width: 100% !important;
  }
  
  .cta .btn {
    margin: 0 auto !important;
    display: inline-block !important;
    text-align: center !important;
    width: auto !important;
  }
}