:root {
  --gradient-start: #ff4f9f;
  --gradient-end: #643bfe;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-btn {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease;
}

.logo-btn:hover {
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gradient-start);
}

/* Hero Section */
.hero-section {
  margin-top: 80px;
  padding: 4rem 2rem;
  background: var(--bg-white);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(100, 59, 254, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 59, 254, 0.4);
}

.website-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.arrow-icon {
  color: var(--gradient-start);
  font-size: 1.2rem;
}

.hero-image-placeholder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-placeholder img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  background: var(--bg-light);
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.gradient-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 200px;
  height: 300px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 20px;
  z-index: 0;
  opacity: 0.8;
}

.about-image-placeholder {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-placeholder img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Vision & Mission Section */
.vision-mission-section {
  padding: 5rem 2rem;
  background: var(--bg-white);
}

.vision-mission-section .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vm-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.puzzle-placeholder {
  width: 300px;
  height: 300px;
  background: #f0f0f0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vm-statements {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.statement-box {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(100, 59, 254, 0.3);
}

.statement-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.statement-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Values Section */
.values-section {
  padding: 5rem 2rem;
  background: var(--bg-light);
  position: relative;
}

.values-title {
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.value-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 30px;
  height: 30px;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.learn-more-link {
  color: var(--gradient-start);
  font-weight: 500;
  margin-top: 1rem;
  display: inline-block;
}

.value-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-accent-right {
  position: absolute;
  right: -5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 400px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 20px;
  z-index: 0;
  opacity: 0.8;
}

/* Services Section */
.services-section {
  padding: 5rem 2rem;
  background: var(--bg-white);
}

.services-title {
  text-align: right;
  margin-bottom: 3rem;
}

.services-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

.services-left,
.services-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-arrow {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.service-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.hexagon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}

.hexagon {
  position: relative;
  width: 120px;
  height: 120px;
}

.hexagon svg {
  width: 100%;
  height: 100%;
}

.hex-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  z-index: 1;
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem;
  background: var(--bg-light);
  position: relative;
}

.contact-section .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-title {
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-image {
  position: relative;
}

.keyboard-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.keyboard-placeholder img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.keyboard-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-primary);
  z-index: 1;
}

.gradient-accent-bottom {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 250px;
  height: 300px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 20px;
  z-index: 0;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .about-section .section-container,
  .vision-mission-section .section-container,
  .contact-section .section-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-center {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .gradient-accent,
  .gradient-accent-right,
  .gradient-accent-bottom {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section {
    margin-top: 120px;
    padding: 2rem 1rem;
  }

  .section-container {
    padding: 0 1rem;
  }

  .about-section,
  .vision-mission-section,
  .values-section,
  .services-section,
  .contact-section {
    padding: 3rem 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hexagon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .hexagon {
    width: 100px;
    height: 100px;
  }

  .hex-icon {
    font-size: 2rem;
  }

  .statement-box {
    padding: 2rem;
  }

  .value-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .gradient-text {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .puzzle-placeholder {
    width: 250px;
    height: 250px;
  }

  .hexagon {
    width: 80px;
    height: 80px;
  }

  .hex-icon {
    font-size: 1.5rem;
  }
}

