.g-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 576px) {
  .g-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .g-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.g-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.g-link {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #0b0f17;
}

@media (max-width: 575px) {
  .g-link {
    aspect-ratio: 1 / 1;
  }
}

.g-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center top; */
}

.g-desc {
  padding-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #555;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* .vip-patients {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.vip-card {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.vip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.vip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
}

.vip-card.highlight::before {
  background: linear-gradient(180deg, #ffc107 0%, #ff9800 100%);
}

.vip-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(13, 110, 253, 0.08);
  line-height: 1;
}

.vip-card.highlight .vip-number {
  color: rgba(255, 193, 7, 0.15);
}

.vip-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.vip-desc {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-list li {
  font-size: 0.95rem;
  color: #6c757d;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.vip-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: 600;
}

/* Responsive *
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .vip-number {
    font-size: 2rem;
  }
  
  .vip-card {
    padding: 20px 18px;
  }
} */


/* ********************************* */

/* Section Styling */
.accordion-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

.accordion-section h2 {
  font-size: 2.5rem;
  color: #212529;
}

.accordion-section .text-secondary {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Accordion Container */
.minimal-accordion {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Accordion Item */
.accordion-item {
  border-bottom: 1px solid #e9ecef;
  transition: background 0.2s ease;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-item:hover {
  background: #f8f9fa;
}

/* Featured Item (Oscar Winners) */
.accordion-item.featured {
  background: linear-gradient(90deg, #fff9e6 0%, #fff 100%);
}

.accordion-item.featured:hover {
  background: linear-gradient(90deg, #fff3cc 0%, #f8f9fa 100%);
}

.accordion-item.featured .acc-number {
  color: #ffc107;
}

/* Summary (Clickable Header) */
summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: padding 0.3s ease;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

.accordion-item[open] summary {
  padding-bottom: 16px;
}

/* Number Badge */
.acc-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0d6efd;
  min-width: 36px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(13, 110, 253, 0.08);
  transition: background 0.2s ease;
}

.accordion-item:hover .acc-number {
  background: rgba(13, 110, 253, 0.12);
}

/* Title */
.acc-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #212529;
  flex: 1;
  line-height: 1.4;
}

/* Icon (+ / -) */
.acc-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #6c757d;
  min-width: 28px;
  text-align: center;
  transition: transform 0.3s ease, color 0.2s ease;
}

.accordion-item[open] .acc-icon {
  transform: rotate(180deg);
  color: #0d6efd;
}

/* Content Area */
.acc-content {
  padding: 0 24px 24px 76px;
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.acc-content p {
  margin: 0;
}

.acc-content ul {
  margin: 0;
  padding-left: 20px;
}

.acc-content ul li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-section h2 {
    font-size: 2rem;
  }

  summary {
    padding: 18px 16px;
    gap: 12px;
  }

  .acc-number {
    min-width: 32px;
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .acc-title {
    font-size: 0.95rem;
  }

  .acc-content {
    padding: 0 16px 20px 60px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .minimal-accordion {
    border-radius: 0;
  }

  summary {
    padding: 16px 12px;
  }

  .acc-content {
    padding: 0 12px 16px 48px;
  }
}


/* ************************************* */

.activities-clean {
  background: #ffffff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.activity-card {
  /* background: #fafbfc; */
  border-left: 4px solid #e3f2fd;
  transition: all 0.2s ease;
  border-radius: 0 8px 8px 0;
}

.activity-card:hover {
  background: #f8fafc;
  border-left-color: #2196f3;
  font-weight: 600;
  transform: translateX(8px);
}

.activity-date {
  font-size: 0.9rem;
  color: #1976d2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.activity-card p {
  margin: 0;
  color: #333333;
  line-height: 1.65;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .col-lg-10 {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .activity-card {
    margin-bottom: 1.5rem;
    border-left-width: 3px;
    border-radius: 0 6px 6px 0;
  }
  
  .activity-card:hover {
    transform: translateX(0);
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}


/* ************************************* */
.tech-experience-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.tech-image-wrapper {
  position: relative;
  /* border-radius: 20px; */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.tech-image-wrapper:hover {
  transform: translateY(-10px);
}

.tech-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tech-image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(59, 130, 246, 0.95);
  color: white;
  padding: 20px;
  /* border-radius: 16px; */
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  backdrop-filter: blur(10px);
}

.overlay-content i {
  font-size: 2.5rem;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  color: #0e803f;
  /* line-height: 1.2; */
}

.title-highlight {
  /* display: block; */
  background: #134C96;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.lead {
  font-size: 1rem;
  line-height: 1.5;
}

.stats-grid {
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  /* border-radius: 16px; */
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.stat-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .tech-image-wrapper img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 15px;
  }
  
  .tech-image-wrapper {
    margin-bottom: 2rem;
  }
  
  .image-overlay {
    position: relative;
    top: auto;
    right: auto;
    margin: 1rem 0;
  }
  
  .tech-image-wrapper img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 15px;
  }

  .title-highlight {
    font-size: small;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}
