@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

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

body {
  padding-top: 80px;
  display: grid;
  place-items: center;
  background: var(--bg-color);
  min-height: 100vh;
  font-family: 'Geist', system-ui, sans-serif;
  color: var(--text-color);
}

:root {
  --gradient-start: 0;
  --gradient-end: 360;
  --text-color: rgb(245, 245, 245);
  --bg-color: rgb(10, 10, 10);
  --grid-size: 135px;
}

/* Use inset instead of fixed 100vw/100vh to avoid horizontal overflow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(
      circle at center,
      transparent 0%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(90deg, rgba(245, 245, 245, 0.25) 1px, transparent 1px var(--grid-size)) 50% 50% / var(--grid-size) var(--grid-size),
    linear-gradient(rgba(245, 245, 245, 0.25) 1px, transparent 1px var(--grid-size)) 50% 50% / var(--grid-size) var(--grid-size);
  pointer-events: none;
  z-index: -1;
}

/* Header Styles */
.page-header {
  padding-inline: 10px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.title-main {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.8;
  background: linear-gradient(var(--text-color) 80%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Main Content */
main {
  padding-inline: 10px;
  max-width: 1200px;
  margin-top: 100px;
  padding-inline: 10px;
}

.section-primary {
  display: flex;
  line-height: 1.25;
  width: 100%;
  font-size: clamp(2rem, 6vw, 6rem);
  position: relative;
}

.section-primary h2 {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  font-size: inherit;
  font-weight: 600;
  margin-right: 1rem;
  display: inline-block;
  height: fit-content;
  background: linear-gradient(var(--text-color) 50%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* List Styles */
ul {
  margin-top: -68px;
  list-style: none;
  font-weight: 600;
  --step: calc((var(--gradient-end) - var(--gradient-start)) / var(--count));
}

li {
  color: hsl(calc(var(--gradient-start) + (var(--step) * var(--i))), 70%, 70%);
  padding: 0.5rem 0;
}

/* Footer */
.section-end {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-end h2 {
  font-size: clamp(2rem, 6vw, 6rem);
}

.page-footer {
  padding-block: 2rem;
  opacity: 0.5;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(90%, 600px);
}

.nav-content {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  background: var(--text-color);
  color: var(--bg-color);
}

/* Media Query for Mobile */
@media (max-width: 768px) {
  :root {
    --grid-size: 60px;
  }

  .nav-content {
    padding: 0.8rem 1.5rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-links a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  ul {
    margin-top: -28px;
  }

  .cards-section {
    position: relative;
    min-height: auto;
    padding: 2rem 0;
    width: 100%;
  }

  .card {
    position: relative;
    top: 0;
    transform: none !important;
    margin: 2rem auto !important;
    width: 90%;
    padding: 1.5rem;
    z-index: 1;
  }
}

/* Cards Section */
.cards-section {
  position: relative;
  min-height: 100vh;
  padding: 100px 0;
  width: 100%;
  margin: 0 auto;
}

.card {
  position: sticky;
  top: 100px;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin: 150px auto;
  width: min(85%, 1200px);
  transform: translateY(calc(var(--index) * 30px));
  z-index: calc(100 + var(--index));
  transition: all 0.3s ease;
}

.card h3 {
  font-size: 32px;
  margin-bottom: 1.5rem;
  background: linear-gradient(var(--text-color) 80%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Bento Grid Styles */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem;
}

.bento-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 30px;
  transition: all 0.3s ease;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-item.wide {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.05);
}

.bento-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.bento-item .icon {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.bento-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.bento-item p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .card {
    width: 90%;
    padding: 2rem;
  }

  .bento-grid {
    gap: 1rem;
  }
}

@media (max-width: 1268px) {
  .cards-section {
    width: 100%;
    min-width: 0;
  }

  main {
    width: 100%;
  }

  .card {
    margin: 2rem auto !important;
    padding: 1.5rem;
    box-sizing: border-box;
  }

  .testimonials {
    width: 90%;
  }

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

  .testimonials { 
    width: 100%;
    max-width: 300px !important;
  }
}

@media (max-width: 480px) {
  .cards-section {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }
  .card {
    width: 100%;
    margin: 50px auto;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.wide {
    grid-column: span 1;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 0;
  overflow: hidden;
  margin: 50px auto;
  width: min(85%, 1200px);
}

.testimonial-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0.5rem 0;
}

.testimonial-track::before,
.testimonial-track::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 20%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-track::before {
  left: 0;
  background: linear-gradient(to right, 
      rgb(10, 10, 10) 0%, 
      rgba(10, 10, 10, 0.9) 20%,
      rgba(10, 10, 10, 0) 100%
  );
}

.testimonial-track::after {
  right: 0;
  background: linear-gradient(to left, 
      rgb(10, 10, 10) 0%, 
      rgba(10, 10, 10, 0.9) 20%,
      rgba(10, 10, 10, 0) 100%
  );
}

.testimonial-content {
  display: flex;
  gap: 2rem;
  padding: 1rem;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  flex: 0 0 min(350px, 75vw);
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* Scroll Animations */
.scroll-left {
  animation: scrollLeft 30s linear infinite;
}

.scroll-right {
  animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-100% / 2));
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause on hover */
.testimonial-track:hover .testimonial-content {
  animation-play-state: paused;
}

.testimonial-card:hover {
  background: rgba(30, 30, 30, 0.9);
  transform: translateY(-2px);
}

.quote {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-color);
}

.author-info p {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 min(300px, 70vw);
    padding: 1.25rem;
  }

  .testimonial-track::before,
  .testimonial-track::after {
    width: 20%;
  }

  .testimonial-track {
    margin: 0.25rem 0;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% / 2));
    }
  }

  @keyframes scrollRight {
    0% {
      transform: translateX(calc(-100% / 2));
    }
    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 min(280px, 65vw);
    padding: 1rem;
  }

  .testimonial-track::before,
  .testimonial-track::after {
    width: 25%;
  }

  .testimonial-content {
    gap: 0.75rem;
  }
}

/* Adjust animation speed for mobile */
@media (max-width: 768px) {
  .scroll-left {
    animation: scrollLeft 30s linear infinite;
  }

  .scroll-right {
    animation: scrollRight 30s linear infinite;
  }

  .card h3 {
    padding-top: 30px;
    text-align: center;
  }

  .bento-item {
    padding: 10px 30px;
    min-height: 50px !important;
  }
  .bento-item .icon {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
  }
  
  .bento-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-color);
  }
  
  .bento-item p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }
}

@media (max-width: 1200px) {
  .cards-section {
    width: 100%;
    min-height: auto;
    padding: 2rem 0;
  }

  .card {
    position: relative;
    top: 0;
    transform: none !important;
    margin: 2rem auto;
    width: 100%;
    padding: 2rem;
    z-index: 1;
  }
}

/* Hero Section - Add at bottom of file */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(var(--text-color) 80%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title .highlight {
  color: #3b82f6;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  color: #6b7280;
}

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

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: #3b82f6;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-testimonial {
  flex: 1;
  max-width: 400px;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.hero-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-author {
  color: #6b7280;
  font-size: 1rem;
}

.hero-role {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive adjustments for hero section */
@media (max-width: 968px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-testimonial {
    width: 100%;
    max-width: 500px;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* About Us Section */
.about-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(var(--text-color) 80%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 800px;
}

.bento-about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-item {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-5px);
  background: rgba(40, 40, 40, 0.8);
}

/* Asymmetrical Grid Layout */
.bento-stat.featured {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(30, 30, 30, 0.8));
}

.bento-stat:nth-child(2) {
  grid-column: 6 / span 3;
  grid-row: 1;
}

.bento-stat:nth-child(3) {
  grid-column: 9 / span 4;
  grid-row: 1;
}

.bento-graph:nth-child(4) {
  grid-column: 6 / span 7;
  grid-row: 2 / span 2;
}

.bento-stat:nth-child(5) {
  grid-column: 1 / span 3;
  grid-row: 3;
}

.bento-stat:nth-child(6) {
  grid-column: 4 / span 2;
  grid-row: 3;
}

.bento-graph:nth-child(7) {
  grid-column: 1 / span 12;
  grid-row: 4;
}

/* Stats Styling */
.bento-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bento-stat .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.bento-stat.featured .stat-number {
  font-size: 3.5rem;
}

.bento-stat .stat-label {
  color: #9ca3af;
  font-size: 1rem;
}

/* Graph Styling */
.graph-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.graph-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.graph-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bar-label {
  flex: 0 0 120px;
  color: #9ca3af;
}

.bar-track {
  flex: 1;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #3b82f6;
  border-radius: 6px;
  transition: width 1s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .bento-about-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .bento-stat.featured {
    grid-column: 1 / span 4;
  }

  .bento-stat:nth-child(2) {
    grid-column: 5 / span 4;
  }

  .bento-stat:nth-child(3) {
    grid-column: 1 / span 4;
    grid-row: 3;
  }

  .bento-graph:nth-child(4) {
    grid-column: 5 / span 4;
    grid-row: 2 / span 2;
  }

  .bento-stat:nth-child(5) {
    grid-column: 1 / span 4;
    grid-row: 4;
  }

  .bento-stat:nth-child(6) {
    grid-column: 5 / span 4;
    grid-row: 4;
  }

  .bento-graph:nth-child(7) {
    grid-column: 1 / span 8;
    grid-row: 5;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 1rem;
  }

  .bento-about-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .bento-stat.featured,
  .bento-stat:nth-child(n),
  .bento-graph:nth-child(n) {
    grid-column: 1 / span 4;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .bento-about-grid {
    grid-template-columns: 1fr;
  }

  .bento-stat.featured,
  .bento-stat:nth-child(n),
  .bento-graph:nth-child(n) {
    grid-column: 1;
  }

  .graph-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .bar-label {
    flex: none;
    margin-bottom: 0.25rem;
  }
}

/* Update the bento-text styles */
.bento-text {
    grid-column: 1 / span 12;
    grid-row: 4;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.block {
    padding-right: 2rem;
    width: 50%;
}

.world-svg {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    z-index: 1;
}

/* Update responsive styles */
@media (max-width: 1200px) {
    .bento-text {
        grid-column: 1 / span 8;
    }

    .block {
        width: 60%;
    }

    .world-svg {
        right: -150px;
        transform: translateY(-50%) scale(0.7);
    }
}

@media (max-width: 768px) {
    .bento-text {
        grid-column: 1 / span 4;
        justify-content: flex-start;
        padding: 2rem;
    }

    .block {
        width: 100%;
        padding-right: 0;
    }

    .world-svg {
        display: none;
    }
}

@media (max-width: 480px) {
    .bento-text {
        grid-column: 1;
    }
}

/* Update and add these styles */
.bento-text .text-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.bento-text .text-content {
    max-width: 600px;
}

.bento-text .text-content p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.cta-wrapper {
    margin-top: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Update responsive styles */
@media (max-width: 1200px) {
    .bento-text .text-title {
        font-size: 2.2rem;
    }
    
    .bento-text .text-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .bento-text .text-title {
        font-size: 2rem;
    }
    
    .bento-text .text-content p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bento-text .text-title {
        font-size: 1.8rem;
    }
    
    .bento-text .text-content p {
        font-size: 1.1rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
}

/* Map Background */
.location-indicator {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
}

.world-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.world-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Container */
.contact-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Location Marker */
.location-marker {
    position: absolute;
    left: 52%;
    top: 30%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section {
        min-height: auto;
    }
    
    .location-indicator {
        opacity: 0.1;
    }
}

.contact-left {
    padding-right: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info a, 
.contact-info span {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #3b82f6;
}

/* Form Styles */
.contact-form {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Location Indicator Styles */
.location-indicator {
    margin-top: 4rem;
    position: relative;
    height: 300px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
}

.world-map {
    position: relative;
    width: 100%;
    height: 100%;
}

.world-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.location-marker {
    position: absolute;
    /* Position for Frankfurt, Germany */
    left: 48%;
    top: 35%;
    transform: translate(-50%, -50%);
}

.ping {
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    position: relative;
}

.ping::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3b82f6;
    border-radius: 50%;
    animation: ping 2s ease-in-out infinite;
}

.location-text {
    position: absolute;
    white-space: nowrap;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-left {
        padding-right: 0;
    }

    .contact-left h2 {
        font-size: 2rem;
    }

    .location-indicator {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-left h2 {
        font-size: 1.8rem;
    }

    .location-indicator {
        height: 200px;
    }
}

/* Update Footer Styles */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    background: rgba(10, 10, 10, 0.8);
    
    /* Fix for full width without overflow */
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: flex-start;  /* Changed from space-between */
    align-items: center;
    margin-bottom: 2rem;
    gap: 6rem;  /* Add space between logo and nav */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;  /* Prevent logo from shrinking */
}

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

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--text-color);
}

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

.footer-copyright {
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Update responsive styles for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1.2rem;
    }

    .footer-nav a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .footer-social {
        gap: 2rem;
    }
}