/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(
    120deg,
    rgba(34, 34, 59, 0.95) 0%,
    rgba(58, 134, 255, 0.85) 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(34, 34, 59, 0.15);
}

.hero h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3a86ff;
  text-shadow: 0 2px 8px rgba(34, 34, 59, 0.15);
}

.hero p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: #e0e0e0;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero .btn-primary {
  background: #3a86ff;
  color: #fff;
  border: none;
  padding: 14px 38px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(58, 134, 255, 0.3);
  transition: all 0.3s ease;
}

.hero .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 38px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.hero .btn-outline:hover {
  background: #fff;
  color: #3a86ff;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: linear-gradient(
    45deg,
    rgba(58, 134, 255, 0.15),
    rgba(58, 134, 255, 0.05)
  );
  border-radius: 50%;
  z-index: 0;
}

.hero-image img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-image img:hover {
  transform: scale(1.02);
  border-color: rgba(58, 134, 255, 0.4);
  box-shadow: 0 12px 40px rgba(58, 134, 255, 0.2);
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero-image::before {
    width: 400px;
    height: 400px;
  }
  .hero-image img {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    padding: 40px 20px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .hero-image::before {
    width: 350px;
    height: 350px;
  }
  .hero-image img {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
  }
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-image::before {
    width: 320px;
    height: 320px;
  }
  .hero-image img {
    width: 280px;
    height: 280px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 40px;
  }
  .hero-image::before {
    width: 280px;
    height: 280px;
  }
  .hero-image img {
    width: 250px;
    height: 250px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero h2 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
}

.profile-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-cta {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* Responsive About Section */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-img,
  .about-text {
    flex: none;
    width: 100%;
  }

  .profile-img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-cta {
    flex-direction: column;
    gap: 10px;
  }
}
