/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Color Palette */
:root {
  --primary: #4361EE;
  --primary-light: #5E72E4;
  --secondary: #3F37C9;
  --accent: #4CC9F0;
  --light: #F8F9FA;
  --bright: #FFD166;
  --success: #06D6A0;
  --warning: #FF9E7D;
  --info: #7DDFFF;
  --purple: #A27DFF;
  --dark: #2D3748;
  --darker: #1A202C;
  --white: #FFFFFF;
  --gray-100: #F7FAFC;
  --gray-200: #EDF2F7;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--darker);
  margin-top: 0;
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  color: var(--darker);
}

.section-title i {
  margin-right: 0.8rem;
  color: var(--primary);
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/dots-pattern.png') center/cover no-repeat;
  opacity: 0.1;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

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

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tagline {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  opacity: 0.95;
  color: rgba(255,255,255,0.9);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

.app-badge-container {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.app-badge {
  height: 52px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.app-badge:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.hero-app-image {
  max-height: 520px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 8px solid rgba(255,255,255,0.1);
}

.hero-app-image:hover {
  transform: rotate(-2deg) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.3);
}

/* Project Overview */
.project-overview {
  background-color: var(--gray-100);
  position: relative;
  z-index: 1;
}

.overview-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.overview-text {
  flex: 1;
}

.overview-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.key-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.point i {
  color: var(--primary);
  font-size: 1.4rem;
  min-width: 28px;
  margin-top: 2px;
}

.point span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--darker);
}

.overview-image {
  flex: 1;
  text-align: center;
}

.overview-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* Vision Card */
.vision-container {
  position: relative;
  margin: 6rem 0;
  z-index: 2;
}

.vision-card {
  background: var(--white);
  border-radius: 20px;
  padding: 6rem 4rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  max-width: 1000px;
  margin: 0 auto;
}

.vision-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  color: var(--primary);
}

.vision-card p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark);
  line-height: 1.8;
  font-weight: 500;
}

.vision-card i {
  color: var(--bright);
  margin-right: 12px;
}

/* User Profiles */
.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  font-weight: 500;
  opacity: 1;
}

.user-profiles {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.profile-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.profile-description {
  font-size: 0.95rem;
  color: var(--dark);
  opacity: 0.9;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
  min-height: 4.5rem;
}
.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.profile-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  color: var(--white);
  font-size: 2.2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}


.profile-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.profile-features i {
  color: var(--success);
  font-size: 0.8rem;
}

/* Feature Cards */
.light-bg {
  background: linear-gradient(to bottom, #f9f9ff 0%, #ffffff 100%);
}

.feature-showcase {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  width: 360px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.feature-header {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3.5rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.feature-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
}

.feature-header i {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.feature-body {
  padding: 2.5rem 2rem;
}

.feature-body h3 {
  margin-bottom: 1.8rem;
  font-size: 1.6rem;
  color: var(--darker);
  text-align: center;
}

.feature-list {
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
  line-height: 1.6;
  font-size: 1rem;
}

.feature-item i {
  color: var(--success);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Demo Invite */
.demo-invite {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--accent)
/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.team-header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
}

.team-body {
  padding: 1.5rem;
}

.team-body h3 {
  margin-bottom: 0.5rem;
  color: var(--darker);
  font-size: 1.4rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
/* Retrospective Styles */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.skills-column {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.skills-column h4 {
  color: #4361EE;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skills-column ul {
  padding-left: 1.5rem;
}

.skills-column li {
  margin-bottom: 0.8rem;
  position: relative;
}

.skills-column li:before {
  content: "▹";
  position: absolute;
  left: -1.2rem;
  color: #4CC9F0;
}

.lessons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.lesson-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border-left: 4px solid #4361EE;
}

.lesson-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2D3748;
  margin-bottom: 0.8rem;
}

.lesson-card i {
  color: #4361EE;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
    .profile-description {
        min-height: auto;
    }
}
