/* Main CSS file for drbonakdar.net redesign */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color palette based on wisprflow.ai */
  --primary-purple: #8a70d6;
  --light-purple: #f0ebfa;
  --dark-purple: #3f3b60;
  --darker-purple: #2a2541;
  --darkest-purple: #1e1a2c;
  --black: #232323;
  --white: #ffffff;
  --gray: #f5f5f5;

  /* Typography */
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Open Sans", sans-serif;
}

html,
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Gradient background sections */
.bg-white {
  background-color: var(--white);
}

.bg-light-purple {
  background-color: var(--light-purple);
}

.bg-medium-purple {
  background-color: var(--primary-purple);
  color: var(--white);
}

.bg-dark-purple {
  background-color: var(--dark-purple);
  color: var(--white);
}

.bg-darker-purple {
  background-color: var(--darker-purple);
  color: var(--white);
}

.bg-darkest-purple {
  background-color: var(--darkest-purple);
  color: var(--white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-purple);
}

.highlight {
  color: var(--primary-purple);
}

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

.section {
  padding: 5rem 0;
}

/* Header - Improved for cleaner look, matching wisprflow.ai */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.logo a {
  color: var(--black);
  transition: color 0.3s ease;
}

.logo a:hover {
  color: var(--primary-purple);
}

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

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow: hidden;
  max-width: calc(100vw - 400px); /* Adjust based on logo and button width */
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  color: var(--black);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-purple);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-purple);
}

.nav-link:hover::after {
  width: 100%;
}

.header .btn-primary {
  margin-left: 1rem;
  white-space: nowrap;
}

/* More menu for overflow items */
.nav-more {
  position: relative;
  display: none;
}

.nav-more-button {
  background: none;
  border: none;
  color: var(--black);
  font-weight: 500;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.nav-more-button i {
  margin-left: 0.25rem;
}

.nav-more-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 180px;
  display: none;
  z-index: 1000;
}

.nav-more-dropdown.active {
  display: block;
}

.nav-more-item {
  padding: 0.5rem 1rem;
  list-style: none;
}

.nav-more-link {
  color: var(--black);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.nav-more-link:hover {
  color: var(--primary-purple);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-purple);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(138, 112, 214, 0.3);
}

.btn-primary:hover {
  background-color: var(--dark-purple);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 112, 214, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
}

.btn-outline:hover {
  background-color: var(--primary-purple);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Section - Enhanced with dynamic effects */
.hero {
  background: linear-gradient(
    135deg,
    var(--light-purple) 0%,
    var(--primary-purple) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero-pattern.svg");
  background-size: cover;
  opacity: 0.1;
  animation: pulse 10s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: float 12s ease-in-out infinite;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(
    to right,
    var(--dark-purple),
    var(--primary-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--dark-purple);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards 0.2s;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards 0.4s;
}

/* Floating elements for hero section */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 20%;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation: float 12s ease-in-out infinite 2s;
}

/* Animation keyframes */
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(15px);
  }
  50% {
    transform: translateY(10px) translateX(-10px);
  }
  75% {
    transform: translateY(-5px) translateX(5px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0.05;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--light-purple);
  opacity: 0.3;
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(138, 112, 214, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(138, 112, 214, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  background: var(--light-purple);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-purple);
}

/* Services Section */
.services {
  background-color: var(--light-purple);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary-purple);
  opacity: 0.1;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(138, 112, 214, 0.15);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-purple);
}

/* Tilted Cards */
.tilted-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
  perspective: 1000px;
}

.tilted-card {
  width: 300px;
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  position: relative;
}

.tilted-card:nth-child(odd) {
  transform: rotateZ(-5deg);
}

.tilted-card:nth-child(even) {
  transform: rotateZ(5deg);
}

.tilted-card:hover {
  transform: rotateZ(0) translateY(-10px);
  box-shadow: 0 20px 40px rgba(138, 112, 214, 0.2);
}

.tilted-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.tilted-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-purple);
}

/* Fixed Brand Logos Bar */
.fixed-brand-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
  z-index: 999;
  padding: 0.5rem 0;
}

/* Brand Logos Section */
.brand-logos-container {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
  width: 100%;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
  padding-left: 4rem;
}

.brand-logo {
  height: 50px;
  width: auto;
  max-width: 150px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: grayscale(100%);
  object-fit: contain;
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%);
  animation-play-state: paused;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 2rem));
  }
}

/* Fixed Brand Bar */
.fixed-brand-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
  z-index: 999;
  padding: 0.5rem 0;
  overflow: hidden;
}

.fixed-brand-bar .brand-logos {
  animation: scrollLogos 30s linear infinite;
}

.brand-category {
  margin-top: 4rem;
}

.brand-category h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
}

/* Rotating Text */
.rotating-text {
  display: inline-block;
  position: relative;
}

.rotating-text span {
  display: none;
  animation: fadeInOut 20s linear infinite;
}

.rotating-text span:first-child {
  display: inline-block;
}

@keyframes fadeInOut {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Scrolling Reviews */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonial-container {
  display: flex;
  animation: scrollReviews 30s linear infinite;
  width: max-content;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Testimonials Section */
.testimonials {
  background-color: var(--dark-purple);
  position: relative;
  color: var(--white);
  padding: 5rem 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero-pattern.svg");
  background-size: cover;
  opacity: 0.05;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  margin: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  backdrop-filter: blur(5px);
  transform: rotate(-5deg);
  transition: all 0.3s ease;
  display: inline-block;
  width: 80%;
  max-width: 500px;
  margin-right: 2rem;
  animation: scrollTestimonials 30s linear infinite;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(100%) rotate(-5deg);
  }
  100% {
    transform: translateX(-300%) rotate(-5deg);
  }
}

.testimonial-card:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation-play-state: paused;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-purple);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--light-purple);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-prev,
.slider-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary-purple);
  transform: translateY(-3px);
}

/* Contact Section */
.contact {
  background-color: var(--darker-purple);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.contact::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-purple);
  opacity: 0.1;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--light-purple);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(138, 112, 214, 0.3);
  border-radius: 8px;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(138, 112, 214, 0.2);
}

/* Footer */
.footer {
  background-color: var(--darkest-purple);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-purple),
    var(--light-purple)
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-purple);
}

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

.footer-item {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: var(--white);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary-purple);
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-purple);
  color: var(--white);
  transform: translateY(-5px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
  z-index: 1001;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--darkest-purple);
  z-index: 999;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  z-index: 1001;
}

.mobile-nav-list {
  list-style: none;
  margin-top: 5rem;
}

.mobile-nav-item {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active .mobile-nav-item:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav.active .mobile-nav-item:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav.active .mobile-nav-item:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav.active .mobile-nav-item:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-nav.active .mobile-nav-item:nth-child(5) {
  transition-delay: 0.5s;
}
.mobile-nav.active .mobile-nav-item:nth-child(6) {
  transition-delay: 0.6s;
}
.mobile-nav.active .mobile-nav-item:nth-child(7) {
  transition-delay: 0.7s;
}

.mobile-nav-link {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-purple);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .nav-list {
    gap: 1.5rem;
  }

  .nav-item {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .nav-list {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.6rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .section {
    padding: 3rem 0;
  }

  .feature-card,
  .service-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Doctor image size adjustment */
.doctor-image {
  max-width: 16.67%; /* 1/6 of original size */
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Team Member Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 1.5rem;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(138, 112, 214, 0.15);
}

.team-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-purple);
}

.team-role {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  padding: 0 1.5rem;
  font-size: 0.9rem;
}

/* Additional Components */

/* Cards */
.card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(138, 112, 214, 0.15);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-purple);
}

.card-text {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Row and Column Layout */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col-md-6 {
  width: 50%;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .col-md-6 {
    width: 100%;
    margin-bottom: 2rem;
  }
}
