* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #000;
  }
  
  header {
    background-color: #e6007e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }
  
  header .logo {
    font-weight: bold;
  }
  
  header nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .video-section {
    text-align: center;
    /* padding: 30px 0; */
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  main {
    padding: 30px;
    text-align: center;
  }
  
  .short-description,
  .long-description {
    text-align: left;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    background: none;
  }
  
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(4, 180px); /* exactly 4 fixed columns */
    gap: 20px;
    padding: 20px;
    justify-content: center; /* centers the entire grid as a block */
  }

  .image-grid div {
    background-color: #e0e0e0;
    padding: 40px 0;
    font-style: italic;
  }
  
  footer {
    background-color: #e6007e;
    color: white;
    text-align: center;
    padding: 15px 0;
  }

  .image-grid img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: top; /* âœ… prioritize top section of the image */
    border-radius: 8px;
  }
  
  .long-description p {
    margin-bottom: 16px; /* Or any value like 1em or 20px */
  }

  .video-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .video-section iframe,
  .video-section video {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 flexible columns */
      gap: 15px;
      padding: 10px;
    }
  }



  .profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    text-align: left; /* Ensures everything is left-aligned */
  }
  
  .profile-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top; /* âœ… prioritize top section of the image */
    border-radius: 8px;
  }
  
  .profile-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    text-align: left;
  }
  
  /* Long Description */
  .long-description {
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
  }
  
  /* FAQ Section */
  .faq {
    max-width: 800px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    text-align: left; /* â† ensures everything inside is left-aligned */
  }
  
  .faq h4 {
    margin-bottom: 15px;
    text-align: left; /* â† heading alignment */
  }

  .faq details {
  margin-bottom: 10px;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  cursor: pointer;
  text-align: left; /* â† align details content */
}
  
.faq summary {
    font-weight: bold;
    cursor: pointer;
    text-align: left; /* â† align summary text */
  }
  
  /* Circular Images Gallery */
  .circle-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 880px;
    margin: 40px auto;
  }
  
  .circle-gallery img {
    width: 100%;
    max-width: 140px;       /* smaller image box */
    height: auto;
    object-fit: cover;
    border-radius: 10px;     /* soft corners */
    border: 1px solid #ccc;
    flex: 0 1 calc(25% - 16px);  /* 4 per row minus gap */
  }
  
  /* Responsive: 2 per row on smaller screens */
  @media (max-width: 600px) {
    .circle-gallery img {
      flex: 0 1 calc(50% - 16px);  /* 2 per row on mobile */
      max-width: 100%;
    }
  }


  .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .card-link:hover .profile-card {
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    cursor: pointer;
  }
  
  
  /*listing page css code*/

  /* Main Content */
.container {
    padding: 30px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .profile-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
  }
  
  /* Profile Content */
  .profile-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #ffe0e0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  
  .profile-img {
    max-width: 250px;
    border-radius: 8px;
  }
  
  .profile-text {
    flex: 1;
    color: #333;
  }
  
  .profile-text p {
    margin-bottom: 15px;
    font-style: normal;
  }
  
  /* Services List */
  .services-section {
    padding: 10px 0;
    text-align: left;
  }
  
  .services-section h2 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services-section ul {
    list-style: none;
    padding-left: 15px;
  }
  
  .services-section li {
    margin-bottom: 10px;
    font-weight: 500;
  }


  /*listing page code*/

  .container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
  }

  .states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .state-box {
    background-color: #f5f5f5;
    border: 2px solid #ccc;
    border-radius: 8px;
    text-align: center;
    padding: 40px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    color: black;
  }

  .state-box:hover {
    background-color: #ffe0f0;
    border-color: #e6007e;
  }