/* ===== GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0033 0%, #020617 100%);
  color: #fff;
  overflow-x: hidden;
}

/* ===== HERO SECTION FOR ABOUT PAGE ===== */
.about-hero {
  min-height: 100vh;
  display: flex;
  
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* ===== FOUNDER CARD STYLES ===== */
.founder-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.founder-card {
  position: relative;
  width: 100%;
  max-width: 1080px;
  min-height: 620px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0,0,0,.35);
  animation: cardFloat 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  margin: 0 auto;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* BACKGROUND PATTERN */
.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 200, 124, 0.2) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(123, 74, 184, 0.2) 0%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.1) 0%, transparent 30%);
  opacity: .8;
}

/* LEFT PANEL WITH ANIMATED GRADIENT */
.left-panel {
  position: absolute;
  top: 45px;
  left: 45px;
  width: 330px;
  height: 430px;
  background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 50%, #FF7E5F 100%);
  border-radius: 24px;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(255, 65, 108, 0.4);
  animation: panelGlow 4s ease-in-out infinite alternate;
  overflow: hidden;
}

@keyframes panelGlow {
  0% { box-shadow: 0 15px 35px rgba(255, 65, 108, 0.4); }
  100% { box-shadow: 0 15px 45px rgba(255, 65, 108, 0.8); }
}

.left-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* IMAGE */
.photo {
  position: absolute;
  top: 20px;
  left: 45px;
  width: 330px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 3;
  border: 6px solid rgba(255,255,255,0.9);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  animation: photoAppear 1s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

@keyframes photoAppear {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(1.05) contrast(1.1);
}

.photo:hover img {
  transform: scale(1.08);
}

/* SKILLS */
.skills {
  position: absolute;
  left: 70px;
  top: 180px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
  animation: skillsAppear 0.8s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes skillsAppear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.skills span {
  display: block;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  color: #FF416C;
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.skills span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.7s;
}

.skills span:hover::before {
  left: 100%;
}

.skills span:hover {
  background: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 65, 108, 0.3);
  color: #FF4B2B;
}

/* CURVE */
.curve {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 540px;
  height: 290px;
  background: linear-gradient(135deg, #ff0080 0%, #ff0080 100%);
  border-top-left-radius: 260px;
  z-index: 2;
  animation: curveAppear 1s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateX(30px);
}

@keyframes curveAppear {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

.curve::before {
  content: "";
  position: absolute;
  top: -90px;
  right: 0;
  width: 220px;
  height: 180px;
  background: linear-gradient(135deg, #ff0080 0%, #ff0080 100%);
  border-bottom-left-radius: 220px;
}

/* COLORFUL DECORATIVE ELEMENTS */
.color-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.dot {
  position: absolute;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.dot-1 {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #FF416C, #FF4B2B);
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.dot-2 {
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, #7b4ab8, #5b2c87);
  bottom: 25%;
  right: 15%;
  animation-delay: 1s;
}

.dot-3 {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #00c6ff, #0072ff);
  top: 40%;
  right: 5%;
  animation-delay: 2s;
}

.dot-4 {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #f3b300, #ff9a00);
  bottom: 15%;
  right: 30%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

/* CONTENT */
.founder-content {
  position: absolute;
  right: 55px;
  bottom: 65px;
  width: 430px;
  z-index: 5;
  animation: contentAppear 1s ease-out 0.8s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes contentAppear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.founder-logo {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.founder-logo:hover {
  transform: rotate(15deg) scale(1.1);
  background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.brand-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}

/* NAME TITLE */
.name-title {
  margin-bottom: 15px;
  position: relative;
}

.name {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.name::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f3b300, #ff9a00);
  border-radius: 2px;
  animation: underlineWidth 3s infinite alternate;
}

@keyframes underlineWidth {
  0% { width: 30%; }
  100% { width: 100%; }
}

.title-position {
  font-family: 'Pacifico', cursive;
  font-size: 32px;
  background: linear-gradient(90deg, #FF416C, #FF4B2B, #f3b300);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
  0% { filter: drop-shadow(0 0 5px rgba(255, 65, 108, 0.5)); }
  100% { filter: drop-shadow(0 0 10px rgba(243, 179, 0, 0.7)); }
}

/* BIO SECTION */
.bio-section {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  animation: bioAppear 1s ease-out 1s forwards;
  opacity: 0;
  transform: translateY(20px);
  max-height: 140px;
  overflow-y: auto;
}

@keyframes bioAppear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.bio-section::-webkit-scrollbar {
  width: 4px;
}

.bio-section::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.bio-section::-webkit-scrollbar-thumb {
  background: rgba(255, 65, 108, 0.7);
  border-radius: 10px;
}

.bio-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bio-title i {
  color: #f3b300;
}

.bio-text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  text-align: justify;
}

.bio-highlight {
  color: #f3b300;
  font-weight: 600;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  top: -20px;
  right: 0;
  background: linear-gradient(135deg, #FF416C, #FF4B2B);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
  animation: badgePulse 2s infinite;
  z-index: 6;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.phone {
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.phone:hover {
  transform: translateX(5px);
  color: #f3b300;
}

.phone i {
  color: #f3b300;
  font-size: 18px;
}

.email {
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.email:hover {
  color: #fff;
  transform: translateX(5px);
}

.email i {
  color: #7b4ab8;
  font-size: 16px;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
}

.social-icon:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px) scale(1.1);
  color: #f3b300;
}

/* ===== NEW: VIDEO SECTION ===== */
.video-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.95) 0%, rgba(2, 6, 23, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-container h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.video-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
}

.video-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(56, 189, 248, 0.3);
  border-color: #38bdf8;
}

.video-header {
  padding: 25px 30px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.video-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.video-player {
  position: relative;
  overflow: hidden;
}

.video-player video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.video-card:hover .video-player video {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255, 0, 128, 0.1),
    rgba(56, 189, 248, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-overlay:hover {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ff0080;
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.video-overlay:hover .play-button {
  transform: scale(1);
}

.play-button:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

/* Portrait video specific styling */
.video-card.portrait .video-player {
  max-width: 400px;
  margin: 0 auto;
}

.video-card.portrait .video-player video {
  max-height: 600px;
  object-fit: cover;
}

/* Video info */
.video-info {
  padding: 20px 30px;
  text-align: center;
}

.video-info p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.video-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.video-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.video-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
}

/* ===== NEW: PHILOSOPHY SECTION ===== */
.philosophy-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(2, 6, 23, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.philosophy-container h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.philosophy-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 65, 108, 0.1), rgba(123, 74, 184, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.philosophy-card:hover::before {
  opacity: 1;
}

.philosophy-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(255, 65, 108, 0.2);
  border-color: #FF416C;
}

.philosophy-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF416C, #FF4B2B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 65, 108, 0.4);
  transition: all 0.5s ease;
}

.philosophy-card:hover .philosophy-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, #facc15, #FF4B2B);
}

.philosophy-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
}

.philosophy-card p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.philosophy-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #facc15;
  border: 2px solid rgba(250, 204, 21, 0.3);
}

/* ===== COMPANY HISTORY SECTION ===== */
.company-history {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.history-container {
  max-width: 1200px;
  margin: 0 auto;
}

.history-container h2 {
  font-size: 42px;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.history-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.history-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(250, 204, 21, 0.3);
  border-color: #facc15;
}

.history-card i {
  font-size: 48px;
  margin-bottom: 25px;
  color: #facc15;
  transition: transform 0.4s ease;
}

.history-card:hover i {
  transform: rotate(20deg) scale(1.2);
}

.history-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
}

.history-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.history-card .year {
  display: inline-block;
  background: linear-gradient(135deg, #ff0080, #6366f1);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  font-size: 14px;
}

/* ===== NEW: TEAM SECTION ===== */
.team-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(26, 0, 51, 0.95) 100%);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-container h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.team-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
}

.team-member:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(56, 189, 248, 0.3);
  border-color: #38bdf8;
}

.member-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-member:hover .member-img img {
  transform: scale(1.1);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
  color: white;
}

.member-role {
  color: #facc15;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.member-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.member-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: #38bdf8;
  transform: translateY(-3px);
}

/* ===== NEW: ACHIEVEMENTS SECTION ===== */
.achievements-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
}

.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achievements-container h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.achievements-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  border-color: #a855f7;
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.achievement-number {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #facc15, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.achievement-text {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.achievement-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  min-height: 100vh;
  padding: 150px 20px 60px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  background: linear-gradient(135deg, 
    rgba(26, 0, 51, 0.9) 0%,
    rgba(10, 0, 20, 0.95) 50%,
    rgba(2, 7, 23, 0.9) 100%
  );
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 0, 128, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 242, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(250, 204, 21, 0.1) 0%, transparent 30%);
  z-index: 1;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  width: 100%;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
  padding: 0 20px;
}

.about-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff0080, #6366f1);
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;

  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(255, 0, 128, 0.3);
  text-transform: uppercase;
  animation: badgePulse 3s infinite alternate;
}

@keyframes badgePulse {
  0% { transform: scale(1); box-shadow: 0 10px 25px rgba(255, 0, 128, 0.3); }
  100% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(255, 0, 128, 0.5); }
}

.about-hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
  color: white;
}

.title-line {
  display: block;
}

.highlight {
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, 
    rgba(250, 204, 21, 0.3),
    rgba(56, 189, 248, 0.3),
    rgba(168, 85, 247, 0.3)
  );
  border-radius: 4px;
  z-index: -1;
  animation: underlineWidth 3s ease-in-out infinite alternate;
}

@keyframes underlineWidth {
  0% { width: 30%; left: 35%; }
  100% { width: 100%; left: 0; }
}

.about-hero-text {
  margin-bottom: 40px;
  max-width: 800px;

  margin-left: auto;
  margin-right: auto;
}

.about-hero-text p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.about-hero-text p:first-child {
  animation-delay: 0.5s;
}

.about-hero-text p:last-child {
  animation-delay: 0.7s;
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1s;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #facc15, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.about-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.2s;
  flex-wrap: wrap;
}

.about-btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  min-width: 200px;
}

.about-btn.primary {
  background: linear-gradient(135deg, #ff0080, #6366f1);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.about-btn.primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 0, 128, 0.5);
}

.about-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.about-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  border-color: #facc15;
}

/* ===== HERO IMAGE SECTION ===== */
.about-hero-image {
  width: 100%;
  max-width: 800px;
  position: relative;
  animation: fadeUp 1.2s ease forwards;
}

.image-frame {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.image-frame:hover {
  transform: perspective(1000px) rotateY(0deg);
  border-color: #facc15;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-frame:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 0, 128, 0.1),
    rgba(56, 189, 248, 0.1)
  );
  mix-blend-mode: overlay;
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  pointer-events: all;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.floating-card i {
  font-size: 20px;
  background: linear-gradient(135deg, #facc15, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.floating-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.3);
  border-color: #facc15;
}

.card1 {
  top: 30px;
  right: -30px;
  animation-delay: 0.5s;
}

.card2 {
  bottom: 100px;
  right: -20px;
  animation-delay: 0.8s;
}

.card3 {
  bottom: 30px;
  left: -20px;
  animation-delay: 1.1s;
}

/* Scroll Down */
.about-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.5s;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.scroll-down i {
  font-size: 24px;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
  background: linear-gradient(90deg, #facc15, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scroll-down span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.scroll-down:hover {
  color: white;
  transform: translateY(5px);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== NEW: TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(2, 6, 23, 0.9) 100%);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-container h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.testimonials-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: #facc15;
  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.2);
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid #facc15;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.testimonial-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  color: #facc15;
  opacity: 0.5;
}

.testimonial-rating {
  margin-top: 15px;
  color: #facc15;
}

.testimonial-rating i {
  margin-right: 2px;
}

/* ===== ENHANCED FOOTER WITH ANIMATIONS ===== */
.footer-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  padding: 100px 20px 40px;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animated background elements */
.footer-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.footer-bg-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatElement 15s infinite linear;
}

.footer-bg-element:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(255,0,128,0.1), transparent 70%);
  animation-delay: 0s;
}

.footer-bg-element:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 70%);
  animation-delay: 5s;
  animation-direction: reverse;
}

.footer-bg-element:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 20%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.1), transparent 70%);
  animation-delay: 10s;
}

/* Footer content */
.footer-content {
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 60px;
}

/* Footer logo area */
.footer-brand {
  animation: fadeInUp 0.8s ease forwards;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff0080, #6366f1);
  border-radius: 3px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 15px;
}

/* Social media icons */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.footer-social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--icon-color), rgba(255, 255, 255, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.footer-social-icon:hover::before {
  opacity: 1;
}

.footer-social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-social-icon.facebook {
  --icon-color: #3b5998;
}
.footer-social-icon.instagram {
  --icon-color: #e4405f;
}
.footer-social-icon.twitter {
  --icon-color: #1da1f2;
}
.footer-social-icon.linkedin {
  --icon-color: #0077b5;
}
.footer-social-icon.youtube {
  --icon-color: #ff0000;
}

/* Footer columns */
.footer-column {
  animation: fadeInUp 0.8s ease forwards;
}

.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.4s; }
.footer-column:nth-child(4) { animation-delay: 0.6s; }

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff0080, #6366f1);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.footer-column:hover h3::after {
  width: 60px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(8px);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  position: relative;
}

.footer-links a::before {
  content: '›';
  color: #facc15;
  font-weight: bold;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links a:hover {
  color: #facc15;
  padding-left: 5px;
}

.footer-links a i {
  color: #38bdf8;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.footer-links a:hover i {
  transform: rotate(15deg);
}

/* Contact info with icons */
.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact-info i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0080, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.footer-contact-info li:hover i {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
}

.footer-contact-info span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: #facc15;
}

/* Newsletter section */
.newsletter {
  margin-top: 20px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}

.newsletter-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff0080, #6366f1);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 128, 0.3);
}

/* Footer bottom */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.copyright {
  font-size: 14px;
}

.copyright a {
  color: #facc15;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #facc15, #38bdf8);
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

.heart {
  color: #ff0080;
  animation: heartbeat 1.5s infinite;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0080, #6366f1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 128, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatElement {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ===== RESPONSIVE DESIGN ===== */

/* For tablets and large phones (768px to 1024px) */
@media (max-width: 1200px) {
  .founder-card {
    width: 90%;
    min-height: 500px;
  }
  
  .photo {
    width: 280px;
    height: 420px;
    left: 30px;
  }
  
  .left-panel {
    width: 280px;
    height: 380px;
    left: 30px;
  }
  
  .skills {
    left: 50px;
    width: 240px;
  }
  
  .founder-content {
    width: 380px;
    right: 40px;
    bottom: 50px;
  }
  
  .name {
    font-size: 32px;
  }
  
  .title-position {
    font-size: 28px;
  }
  
  .about-hero-title {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-grid,
  .history-grid,
  .team-grid,
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For tablets (768px) */
@media (max-width: 900px) {
  .founder-card {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 30px;
  }
  
  .left-panel {
    display: none;
  }
  
  .photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 400px;
    height: 450px;
    margin: 0 auto 30px;
  }
  
  .skills {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .skills span {
    min-width: 150px;
    font-size: 13px;
    padding: 10px 20px;
  }
  
  .curve {
    display: none;
  }
  
  .founder-content {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #7b4ab8 0%, #5b2c87 100%);
    border-radius: 20px;
    margin-top: 20px;
  }
  
  .experience-badge {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 20px;
    width: fit-content;
  }
  
  .brand {
    justify-content: center;
  }
  
  .bio-section {
    max-height: 150px;
    margin: 0 auto 20px;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .about-hero {
    padding: 130px 20px 60px;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .about-btn {
    padding: 14px 30px;
    font-size: 14px;
    min-width: 180px;
  }
  
  .image-frame {
    height: 350px;
  }
  
  .philosophy-container h2,
  .history-container h2,
  .team-container h2,
  .achievements-container h2,
  .testimonials-container h2,
  .video-container h2 {
    font-size: 32px;
  }
  
  .philosophy-grid,
  .history-grid,
  .team-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

/* For mobile devices (480px to 767px) */
@media (max-width: 768px) {
  .founder-card {
    width: 95%;
    padding: 20px;
  }
  
  .photo {
    height: 380px;
    max-width: 350px;
  }
  
  .founder-content {
    padding: 25px;
  }
  
  .name {
    font-size: 28px;
  }
  
  .title-position {
    font-size: 24px;
  }
  
  .bio-section {
    max-height: 130px;
    padding: 15px;
  }
  
  .bio-text {
    font-size: 11px;
  }
  
  .phone {
    font-size: 14px;
  }
  
  .email {
    font-size: 13px;
  }
  
  .about-hero {
    padding: 120px 15px 50px;
  }
  
  .about-hero-title {
    font-size: 1.8rem;
  }
  
  .about-hero-text p {
    font-size: 0.9rem;
  }
  
  .about-hero-stats {
    gap: 20px;
  }
  
  .stat-item {
    min-width: 100px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .about-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .image-frame {
    height: 300px;
  }
  
  .floating-card {
    display: none;
  }
  
  .philosophy-card,
  .history-card,
  .team-member,
  .achievement-card,
  .video-card {
    padding: 25px 20px;
  }
  
  .video-card.portrait .video-player {
    max-width: 320px;
  }
  
  .video-header h3 {
    font-size: 20px;
  }
  
  .video-header p {
    font-size: 13px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact-info li {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* For small mobile devices (up to 480px) */
@media (max-width: 480px) {
  .founder-card {
    width: 98%;
    padding: 15px;
    border-radius: 20px;
  }
  
  .photo {
    height: 320px;
    max-width: 300px;
  }
  
  .skills span {
    min-width: 120px;
    padding: 8px 15px;
    font-size: 12px;
  }
  
  .founder-content {
    padding: 20px 15px;
  }
  
  .name {
    font-size: 24px;
  }
  
  .title-position {
    font-size: 20px;
  }
  
  .bio-section {
    max-height: 120px;
    padding: 12px;
  }
  
  .bio-text {
    font-size: 10px;
  }
  
  .experience-badge {
    font-size: 10px;
    padding: 6px 12px;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .about-hero {
    padding: 110px 10px 40px;
  }
  
  .about-hero-title {
    font-size: 1.5rem;
  }
  
  .about-hero-text p {
    font-size: 0.85rem;
  }
  
  .about-hero-stats {
    gap: 15px;
  }
  
  .stat-item {
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .about-btn {
    padding: 12px 25px;
    font-size: 13px;
    min-width: 250px;
  }
  
  .image-frame {
    height: 250px;
  }
  
  .philosophy-container h2,
  .history-container h2,
  .team-container h2,
  .achievements-container h2,
  .testimonials-container h2,
  .video-container h2 {
    font-size: 28px;
  }
  
  .philosophy-subtitle,
  .team-subtitle,
  .achievements-subtitle,
  .testimonials-subtitle,
  .video-subtitle {
    font-size: 16px;
  }
  
  .philosophy-card,
  .history-card,
  .team-member,
  .achievement-card,
  .video-card {
    padding: 20px 15px;
  }
  
  .philosophy-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .philosophy-card h3,
  .history-card h3,
  .team-member h3 {
    font-size: 20px;
  }
  
  .video-card.portrait .video-player {
    max-width: 280px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .footer-section {
    padding: 80px 15px 30px;
  }
  
  .footer-logo {
    font-size: 28px;
  }
  
  .footer-column h3 {
    font-size: 20px;
  }
  
  .footer-social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}