/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f9fa;
  background-image: linear-gradient(45deg, #e9ecef 25%, transparent 25%),
    linear-gradient(-45deg, #e9ecef 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e9ecef 75%),
    linear-gradient(-45deg, transparent 75%, #e9ecef 75%);
  background-size: 20px 20px;
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  background: linear-gradient(90deg, #5e72e4 0%, #825ee4 100%);
  color: white;
  padding: 1.2rem 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.header h1 {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  width: 40px;
  height: 40px;
}

/* Navigation */
nav {
  display: flex;
  gap: 1rem;
}

.button {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-button {
  background-color: #fff;
  color: #5e72e4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

.secondary-button {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Shapes */
.shapes-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  opacity: 0.2;
}

.shape1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #5e72e4;
  top: 20%;
  left: 10%;
  animation: float 7s ease-in-out infinite;
}

.shape2 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #825ee4;
  top: 60%;
  right: 10%;
  animation: float 9s ease-in-out infinite 1s;
}

.shape3 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #5e72e4;
  bottom: 10%;
  left: 20%;
  animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 88px);
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(#5e72e4, transparent);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  top: -100px;
  left: -100px;
  z-index: -1;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(#825ee4, transparent);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  bottom: -100px;
  right: -100px;
  z-index: -1;
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.hero-text {
  flex: 1;
}

.hero-image-placeholder {
  flex: 1;
  max-width: 500px;
}

.hero-title {
  font-size: 3.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 700px;
  margin-bottom: 2rem;
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #5e72e4;
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.quote::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 10px;
  color: rgba(94, 114, 228, 0.1);
}

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

.card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.card-icon-container {
  background: linear-gradient(
    135deg,
    #e1e7ff 0%,
    #e9e1ff 100%
  );
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(94, 114, 228, 0.1);
}

.card-icon-fa {
  font-size: 2rem;
  color: #5e72e4;
}

.card h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.card p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Fade-in Animation */
.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Footer */
.footer {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 3rem 5%;
  text-align: center;
  margin-top: auto;
  border-top: 4px solid #5e72e4;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #9ca3af;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #e5e7eb;
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #374151;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 5%;
  }
  nav {
    width: 100%;
    justify-content: center;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
