/* ========================================
   Founder Page - Beautiful Design with Animations
   ======================================== */

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

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-down {
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

.animate-fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

.animate-scale-in {
  opacity: 0;
  animation: scaleIn 0.6s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ========================================
   HERO SECTION
   ======================================== */

.founder-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-left {
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(231, 76, 60, 0.15);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(231, 76, 60, 0.3);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 16px;
  color: #e74c3c;
}

.founder-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.founder-hero h2 {
  font-size: 24px;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-description .highlight {
  color: #e74c3c;
  font-weight: 600;
  background: rgba(231, 76, 60, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #ffffff;
  text-decoration: none;
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.feature-item i {
  color: #e74c3c;
  font-size: 16px;
}

/* Founder Image */
.hero-content-right {
  z-index: 2;
  position: relative;
}

.founder-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.image-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(231, 76, 60, 0.2);
}

.founder-img {
  width: 100%;
  max-width: 320px;
  height: 440px !important;
  display: block;
  border-radius: 20px;
}

.image-decoration-1,
.image-decoration-2,
.image-decoration-3 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  opacity: 0.8;
  z-index: -1;
}

.image-decoration-1 {
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  animation: float 4s ease-in-out infinite;
}

.image-decoration-2 {
  bottom: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #e74c3c);
  animation: float 3s ease-in-out infinite reverse;
}

.image-decoration-3 {
  top: 50%;
  right: -30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  animation: float 5s ease-in-out infinite;
}

/* ========================================
   ABOUT SECTION - MODERN CARD DESIGN
   ======================================== */

.about-section-cards {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.cards-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(231, 76, 60, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(52, 152, 219, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Section Title Center */
.section-title-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-center h3 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title-center h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 2px;
}

/* Hero Card */
.founder-hero-card {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 25px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 60px;
}

.hero-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-card-content {
  position: relative;
  z-index: 2;
  padding: 50px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(231, 76, 60, 0.2);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(231, 76, 60, 0.3);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 16px;
  color: #ffd700;
}

.hero-subtitle {
  font-size: 20px;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-description .highlight {
  color: #ffd700;
  font-weight: 600;
  background: rgba(255, 215, 0, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
}

.hero-stats-mini {
  display: flex;
  gap: 20px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.mini-number {
  font-size: 24px;
  font-weight: 800;
  color: #e74c3c;
}

.mini-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.floating-card {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.1);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
}

.floating-card i {
  font-size: 24px;
  color: #e74c3c;
}

.floating-delay-1 {
  animation: float 4s ease-in-out infinite;
}

.floating-delay-2 {
  animation: float 4s ease-in-out infinite 1s;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.05);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon i {
  font-size: 28px;
  color: #ffffff;
}

.value-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Expertise Showcase */
.expertise-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.expertise-showcase-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(231, 76, 60, 0.05);
}

.expertise-showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.showcase-number {
  background: linear-gradient(135deg, #e74c3c, #3498db);
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  padding: 15px;
  text-align: center;
}

.showcase-content {
  padding: 30px;
}

.showcase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.expertise-showcase-item:hover .showcase-icon {
  transform: scale(1.1) rotate(5deg);
}

.showcase-icon i {
  font-size: 24px;
  color: #ffffff;
}

.showcase-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.showcase-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.showcase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #28a745;
  font-weight: 500;
  background: rgba(40, 167, 69, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

.showcase-features i {
  font-size: 12px;
}

/* Achievement Highlights */
.achievement-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.achievement-highlight {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(231, 76, 60, 0.05);
}

.achievement-highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.achievement-graphic {
  padding: 30px 0;
  text-align: center;
}

.circular-progress {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.circular-progress::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.progress-text {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.achievement-info {
  padding: 0 30px 30px;
}

.achievement-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.achievement-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Specialization Areas */
.specialization-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.spec-area {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.05);
}

.spec-area:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.spec-area-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.spec-area:hover .spec-area-icon {
  transform: scale(1.1) rotate(5deg);
}

.spec-area-icon i {
  font-size: 28px;
  color: #ffffff;
}

.spec-area-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.spec-area-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.spec-area-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.spec-area-stats span {
  font-size: 14px;
  font-weight: 600;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  padding: 4px 10px;
  border-radius: 15px;
}

/* Philosophy Main Card */
.philosophy-main-card {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 25px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.philosophy-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 40px 20px;
  position: relative;
  z-index: 2;
}

.philosophy-icon-main {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.philosophy-icon-main:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.philosophy-icon-main i {
  font-size: 32px;
  color: #ffffff;
}

.philosophy-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.philosophy-content {
  padding: 0 40px 40px;
  position: relative;
  z-index: 2;
}

.philosophy-quote-main {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #e74c3c;
}

.philosophy-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.principle-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.principle-item i {
  color: #e74c3c;
  font-size: 18px;
  margin-top: 2px;
}

.principle-item div h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.principle-item div p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e74c3c, #3498db, #e74c3c);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

/* Timeline Dots */
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
  transition: all 0.3s ease;
}

.timeline-dot:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
}

.timeline-dot i {
  font-size: 20px;
  color: #ffffff;
}

/* Timeline Content */
.timeline-content {
  width: 45%;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid rgba(231, 76, 60, 0.05);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.2);
}

.timeline-left .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-right .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

/* Timeline Content Arrow */
.timeline-content::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-left .timeline-content::before {
  right: -20px;
  border-width: 15px 20px 15px 0;
  border-color: transparent #ffffff transparent transparent;
}

.timeline-right .timeline-content::before {
  left: -20px;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #ffffff;
}

/* Timeline Header */
.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f8f9fa;
}

.timeline-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.timeline-date {
  font-size: 14px;
  font-weight: 600;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

/* Timeline Description */
.timeline-description {
  margin-bottom: 20px;
}

.timeline-description p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.highlight-text {
  color: #e74c3c;
  font-weight: 600;
  background: rgba(231, 76, 60, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Timeline Tags */
.timeline-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-primary {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #ffffff;
}

.tag-secondary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #ffffff;
}

.tag-tertiary {
  background: linear-gradient(135deg, #28a745, #218838);
  color: #ffffff;
}

/* Mission Points */
.mission-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.point-item:hover {
  background: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.point-item i {
  color: #28a745;
  font-size: 14px;
}

.point-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.expertise-block {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.expertise-block:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.15);
  border-color: rgba(231, 76, 60, 0.2);
}

.expertise-block-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.expertise-block:hover .expertise-block-icon {
  transform: scale(1.1) rotate(5deg);
}

.expertise-block-icon i {
  font-size: 20px;
  color: #ffffff;
}

.expertise-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.expertise-block p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Impact Stats */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stat-block {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.stat-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat-description {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Specialization Cards */
.specialization-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.spec-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(231, 76, 60, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.2);
}

.spec-card i {
  font-size: 24px;
  color: #e74c3c;
  margin-bottom: 15px;
}

.spec-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.spec-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Philosophy Block */
.philosophy-block {
  margin-top: 20px;
}

.philosophy-quote {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #1a1a2e;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #e74c3c;
  position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
  content: '"';
  font-size: 40px;
  color: rgba(231, 76, 60, 0.2);
  position: absolute;
  font-family: Georgia, serif;
}

.philosophy-quote::before {
  top: 10px;
  left: 10px;
}

.philosophy-quote::after {
  bottom: 10px;
  right: 10px;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.philosophy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(52, 152, 219, 0.05));
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(231, 76, 60, 0.1);
}

.philosophy-item:hover {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.15);
}

.philosophy-item i {
  color: #e74c3c;
  font-size: 16px;
}

.philosophy-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.section-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  margin: 0 auto 30px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Founder Main Content */
.about-main-content {
  position: relative;
  z-index: 2;
}

.founder-intro {
  margin-bottom: 40px;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
  color: #e74c3c;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(231, 76, 60, 0.2);
  backdrop-filter: blur(10px);
}

.intro-badge i {
  font-size: 16px;
}

.about-main-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.2;
}

.founder-title {
  font-size: 18px;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 25px;
}

.founder-description {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.founder-description p {
  margin-bottom: 20px;
}

.highlight-text {
  color: #e74c3c;
  font-weight: 600;
  background: rgba(231, 76, 60, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Expertise Areas */
.expertise-areas {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.05);
}

.expertise-areas h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.expertise-areas h4::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 2px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.expertise-item:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(231, 76, 60, 0.2);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.15);
}

.expertise-icon-small {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon-small {
  transform: scale(1.1) rotate(5deg);
}

.expertise-icon-small i {
  font-size: 20px;
  color: #ffffff;
}

.expertise-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.expertise-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* About Achievements */
.about-achievements {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Achievement Card */
.achievement-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.05);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
}

.achievement-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.achievement-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-icon i {
  font-size: 20px;
  color: #ffffff;
}

.achievement-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
}

.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.achievement-marker {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-marker i {
  font-size: 14px;
  color: #ffffff;
}

.achievement-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.achievement-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Specialization Card */
.specialization-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.05);
}

.specialization-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.specialization-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.specialization-icon i {
  font-size: 20px;
  color: #ffffff;
}

.specialization-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.specialization-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.specialization-item:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.15);
}

.specialization-item i {
  font-size: 24px;
  color: #e74c3c;
}

.specialization-item span {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

/* Philosophy Card */
.philosophy-card {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.philosophy-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6f42c1, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.philosophy-icon i {
  font-size: 20px;
  color: #ffffff;
}

.philosophy-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.philosophy-quote {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}

.philosophy-quote::before,
.philosophy-quote::after {
  content: '"';
  font-size: 60px;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  font-family: Georgia, serif;
  line-height: 1;
}

.philosophy-quote::before {
  top: -20px;
  left: 0;
}

.philosophy-quote::after {
  bottom: -40px;
  right: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  position: relative;
  overflow: hidden;
}

.stats-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 76, 60, 0.3);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.stat-icon i {
  font-size: 28px;
  color: #ffffff;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ========================================
   EXPERTISE SECTION
   ======================================== */

.expertise-section {
  padding: 120px 0;
  background: #ffffff;
}

.expertise-grid {
  margin-top: 50px;
}

.expertise-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(231, 76, 60, 0.05);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.2);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.expertise-icon i {
  font-size: 32px;
  color: #ffffff;
}

.expertise-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.expertise-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.expertise-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expertise-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.expertise-features i {
  color: #e74c3c;
  font-size: 12px;
}

/* ========================================
   VISION SECTION
   ======================================== */

.vision-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  position: relative;
  overflow: hidden;
}

.vision-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.vision-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.vision-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  position: relative;
}

.vision-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.vision-icon i {
  font-size: 40px;
  color: #ffffff;
}

.vision-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.vision-quote {
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: #e74c3c;
  margin-bottom: 30px;
  line-height: 1.6;
  position: relative;
  padding: 0 60px;
}

.vision-quote::before,
.vision-quote::after {
  content: '"';
  font-size: 80px;
  color: rgba(231, 76, 60, 0.2);
  position: absolute;
  font-family: Georgia, serif;
  line-height: 1;
}

.vision-quote::before {
  top: -20px;
  left: 0;
}

.vision-quote::after {
  bottom: -60px;
  right: 0;
}

.vision-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vision-pillars {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pillar-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.pillar-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 76, 60, 0.3);
}

.pillar-item i {
  font-size: 32px;
  color: #e74c3c;
  margin-bottom: 15px;
}

.pillar-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  position: relative;
  overflow: hidden;
}


@media (max-width: 768px) {

  .cta-buttons {
    margin-bottom: 30px;   /* button ko neeche space dega */
  }

  .btn-secondary-cta {
    display: inline-block;
    margin-bottom: 10px;   /* button cut hone se bachayega */
  }

  .cta-section {
    padding-bottom: 40px !important; /* overall safe spacing */
  }

}


.cta-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 76, 60, 0.3);
}

.cta-feature i {
  color: #e74c3c;
  font-size: 16px;
}

.cta-feature span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.btn-primary-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(231, 76, 60, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  color: #ffffff;
  text-decoration: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */



   /* ===== MOBILE FIX FOR FOUNDER IMAGE ===== */
@media (max-width: 991px) {

    .hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

  .hero-content-right {
    margin-top: 30px;
    text-align: center;
  }

  .founder-image-container {
    width: 100%;
  }

  .image-frame {
    width: 100%;
    height: 350px; /* mobile height */
    overflow: hidden;
    border-radius: 20px;
  }

  .founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 main fix */
    object-position: top; /* face upar rahe */
  }

}

@media (max-width: 768px) {
  .founder-hero h1 {
    font-size: 42px;
  }
  
  .founder-hero h2 {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero,
  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .expertise-card {
    padding: 30px 20px;
  }
  
  .expertise-icon {
    width: 60px;
    height: 60px;
  }
  
  .expertise-icon i {
    font-size: 24px;
  }
  
  .vision-quote {
    font-size: 20px;
    padding: 0 30px;
  }
  
  .vision-pillars {
    gap: 20px;
  }
  
  .cta-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .founder-hero {
    padding: 80px 0;
  }
  
  .founder-hero h1 {
    font-size: 32px;
  }
  
  .founder-hero h2 {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .about-section,
  .stats-section,
  .expertise-section,
  .vision-section,
  .cta-section {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-card {
    padding: 30px 20px;
  }
  
  .expertise-card {
    padding: 25px 15px;
  }
  
  .vision-icon {
    width: 80px;
    height: 80px;
  }
  
  .vision-icon i {
    font-size: 32px;
  }
  
  .vision-quote {
    font-size: 18px;
    padding: 0 20px;
  }
}


