﻿/* Ø§Ù„ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø§Ù„Ø£Ø³Ø§Ø³ÙŠØ© */
  body {
    font-family: "Poppins", sans-serif;
    margin: 5px 0px;
    padding: 5px 0px;
    background-color: #f9f9f9;
    color: #333;
  }

  .birthday-page-header {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
  }

  .birthday-main-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    padding: 5px;
  }

  .birthday-subtitle {
    font-weight: 400;
    font-size: 1.2rem;
    color: #fff;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
    padding: 5px;
  }

  /* ØªÙ†Ø³ÙŠÙ‚Ø§Øª ØµÙØ­Ø© about */
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-content h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 1rem;
  }

  .about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .values-section {
    background: #fff;
    padding: 3rem 0;
    margin: 3rem 0;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
  }

  .value-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }

  .value-card:hover {
    transform: translateY(-10px);
  }

  .value-icon {
    font-size: 2.5rem;
    color: #ff416c;
    margin-bottom: 1rem;
  }

  .value-card h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 1rem;
  }

  .team-section {
    padding: 3rem 0;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .team-info {
    padding: 1.5rem;
  }

  .team-info h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 0.5rem;
  }

  .team-info p {
    color: #ff416c;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .social-links a {
    color: #666;
    transition: color 0.3s ease;
  }

  .social-links a:hover {
    color: #ff416c;
  }

  @media (max-width: 768px) {
    .about-section {
      grid-template-columns: 1fr;
    }

    .about-image {
      height: 300px;
    }
  }

