/* ===================================
   FOUNDER SECTION STYLES
   =================================== */

   #about{
    padding-top: 100px;
   }
.founder-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.founder-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(3, 169, 244, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Founder Card */
.founder-card {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
}

.founder-card:hover {
  box-shadow: var(--shadow-4);
  transform: translateY(-4px);
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue-light));
}

/* Founder Avatar */
.founder-avatar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(3, 169, 244, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(33, 150, 243, 0.15));
  pointer-events: none;
  z-index: 1;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.founder-card:hover .founder-avatar img {
  transform: scale(1.05);
}

/* Founder Body */
.founder-body {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.founder-name {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--black-87);
  margin: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.founder-name::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue-light));
  border-radius: 2px;
}

.founder-role {
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Founder List */
.founder-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.founder-list li {
  padding-left: 28px;
  color: var(--black-60);
  line-height: 1.7;
  position: relative;
  font-size: 1rem;
}

.founder-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.founder-list li strong {
  color: var(--black-87);
  font-weight: 600;
}

/* Key Takeaway Box */
.key-takeaway {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(3, 169, 244, 0.05));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-blue);
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.key-takeaway:hover {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.12), rgba(3, 169, 244, 0.08));
  transform: translateX(4px);
}

.takeaway-bullet {
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: bounce 2s ease-in-out infinite;
}

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

.takeaway-text {
  color: var(--black-60);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.takeaway-text strong {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Animation on load */
.founder-card {
  animation: cardSlideUp 0.8s ease-out both;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .founder-card {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .founder-avatar {
    height: 350px;
  }

  .founder-body {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 640px) {
  .founder-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .founder-avatar {
    height: 300px;
  }

  .founder-body {
    padding: var(--spacing-md);
  }

  .founder-name {
    font-size: 1.5rem;
  }

  .founder-role {
    font-size: 1rem;
  }

  .founder-list li {
    font-size: 0.95rem;
  }

  .key-takeaway {
    padding: var(--spacing-sm);
    gap: var(--spacing-sm);
  }

  .takeaway-bullet {
    font-size: 1.25rem;
  }

  .takeaway-text {
    font-size: 0.9rem;
  }
}
/* ===================================
   IMAGE GRID STYLES
   =================================== */

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-lg);
}

/* Grid Item Base Styles */
.image-grid > div {
  /* background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue-light));
   */
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
  border: 2px solid rgba(255, 255, 255, 0.3);
  
  /* Center the numbers */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hover Effects */
.image-grid > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.image-grid > div:hover::before {
  opacity: 1;
}

.image-grid > div:hover {
  box-shadow: var(--shadow-4);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--white);
}
.image-grid img{
  background-size: cover;
}

/* Individual Grid Positions - Masonry Style */
.img1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #2196F3, #1976D2);
}

.img2 {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
  /* background: linear-gradient(135deg, #03A9F4, #0288D1);
   */
   background-position: center !important;
}

.img3 {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
  background: linear-gradient(135deg, #1976D2, #0D47A1);
}

.img4 {
  grid-column: 4 / 5;
  grid-row: 2 / 4;
  background: linear-gradient(135deg, #4FC3F7, #03A9F4);
}

.img5 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  background: linear-gradient(135deg, #0288D1, #01579B);
}

.img6 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  background: linear-gradient(135deg, #64B5F6, #2196F3);
  background-position:center !important;
  background-size: cover  !important;
}

/* For actual images - uncomment and adjust when ready */
/*
.image-grid > div {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img1 { background-image: url('path/to/image1.jpg'); }
.img2 { background-image: url('path/to/image2.jpg'); }
.img3 { background-image: url('path/to/image3.jpg'); }
.img4 { background-image: url('path/to/image4.jpg'); }
.img5 { background-image: url('path/to/image5.jpg'); }
.img6 { background-image: url('path/to/image6.jpg'); }
*/

/* Staggered Animation */
.img1 { animation: gridFadeIn 0.5s ease-out 0.1s both; }
.img2 { animation: gridFadeIn 0.5s ease-out 0.2s both; }
.img3 { animation: gridFadeIn 0.5s ease-out 0.3s both; }
.img4 { animation: gridFadeIn 0.5s ease-out 0.4s both; }
.img5 { animation: gridFadeIn 0.5s ease-out 0.5s both; }
.img6 { animation: gridFadeIn 0.5s ease-out 0.6s both; }

@keyframes gridFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
    gap: var(--spacing-sm);
  }

  .img1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .img2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .img3 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
  }

  .img4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .img5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .img6 {
    grid-column: 1 / 4;
    grid-row: 4 / 5;
    background-position: bottom !important;
  }

  .image-grid > div {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 150px);
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
  }

  .img1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .img2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-size: cover;
  }

  .img3 {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }

  .img4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .img5 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }

  .img6 {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    background-position: top !important;
  }

  .image-grid > div {
    font-size: 2rem;
  }

  .image-grid > div:hover {
    transform: translateY(-4px) scale(1.02);
  }
}