
.hero-section {
    padding: 30px;
    text-align: center;
    background: var(--white-color);
  }
  
  .hero-title {
    font-size: 2em;
    /* font-size: clamp(0.75rem, 1.5rem, 2rem); */
    font-weight: 600;
    background-image: linear-gradient(to right, var(--main-color) 50%, #67e5f2);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    line-height: 1.2;
    margin-bottom: 25px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    color: var(--para-color);
    max-width: 80%;
    margin: 0 auto 50px;
    line-height: 1.6;
  }
  
  .stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 20px;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .stat-icon {
    width: 20px;
    height: 20px;
    color: var(--second-color);
  }
  
  .stat-text {
    font-size: 0.95rem;
    color: var(--black-color);
    font-weight: 500;
  }
  
  /* Gallery Section - exact match */
  .gallery-section {
    padding: 0 0 50px 0;
    background: var(--white-color);
    position: relative;
  }
  
  .gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--main-grey), transparent);
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    min-height: 400px;
  }
  
  .gallery-left {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid transparent;
    border-top: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
      linear-gradient(to right, #3acfd5, #3a4ed5) border-box;
  }
  
  .gallery-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }
  
  .gallery-item {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid transparent;
    border-top: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
      linear-gradient(to right, #3acfd5, #3a4ed5) border-box;
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Story Section - exact match */
  .story-section {
    padding: 30px 0;
    background: var(--light-color);
  }
  
  .story-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 30px;
  }
  
  .story-text {
    color: var(--para-color);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
  }
  
  /* Services Section - exact match */
  .services-section {
    padding: 30px 0;
    background: var(--light-color);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .service-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white-color);
    border-radius: 15px;
    border: 1px solid transparent;
    border-top: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
      linear-gradient(to right, #3acfd5, #3a4ed5) border-box;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
  }
  
  .service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, var(--second-color), #ff9500);
  }
  
  .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--main-color), var(--third-color));
  }
  
  .service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
  }
  
  .service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
  }
  
  .service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 10px;
  }
  
  .service-description {
    color: var(--para-color);
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  