 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9fafb;
            color: #333;
        }
        /* Header */
        .page-header {
            background: #FF8C00;
            color: white;
            padding: 4rem 1rem;
            text-align: center;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .header p {
            font-size: 1.125rem;
            color: #c7d2fe;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Search Section */
        .search-section {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            position: relative;
            z-index: 10;
        }

        .search-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .search-input-wrapper {
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        input[type="text"],
        select {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
            outline: none;
            transition: all 0.2s;
        }

        select {
            padding-left: 1rem;
        }

        input[type="text"]:focus,
        select:focus {
            border-color: #FFC000;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .result-count {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Centers Grid */
        .centers-section {
            padding: 3rem 0;
        }

        .centers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 10px;
            margin: 10px;
        }

        .center-card {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            text-align: center;
            border: 1px solid #f3f4f6;
            transition: all 0.3s;
        }

        .center-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .center-logo {
            width: 5rem;
            height: 5rem;
            background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1rem;
        }

        .center-name {
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
            min-height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .center-location {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }

        .location-icon {
            margin-right: 0.25rem;
            color: #FFC000;
        }

        .view-btn {
            width: 100%;
            background: #FFC000;
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }

        .view-btn:hover {
            background: #ffc800;
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 3rem 0;
        }

        .no-results-icon {
            font-size: 4rem;
            color: #d1d5db;
            margin-bottom: 1rem;
        }

        .no-results h3 {
            font-size: 1.25rem;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .no-results p {
            color: #6b7280;
        }

        .hidden {
            display: none !important;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #312e81 0%, #6b21a8 50%, #312e81 100%);
            padding: 4rem 1rem;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta-section > p {
            font-size: 1.125rem;
            color: #c7d2fe;
            margin-bottom: 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 0.5rem;
        }

        .contact-icon {
            width: 2rem;
            height: 2rem;
            margin: 0 auto 0.75rem;
            color: #c7d2fe;
        }

        .contact-label {
            font-size: 0.875rem;
            color: #c7d2fe;
            margin-bottom: 0.25rem;
        }

        .contact-value {
            font-weight: 600;
        }

        .contact-card:nth-child(3) .contact-value {
            font-size: 0.875rem;
        }

        .cta-button {
            background: white;
            color: #312e81;
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.2s;
        }

        .cta-button:hover {
            background: #e0e7ff;
            transform: translateY(-2px);
        }

        /* SVG Icons */
        svg {
            width: 1em;
            height: 1em;
            display: inline-block;
            vertical-align: middle;
        }
        /* --- Uniform logo box --- */
.center-logo {
  width: 100px;            /* fixed */
  height: 100px;           /* fixed */
  margin: 0 auto 1rem;
  border-radius: 12px;      /* square-ish; circle chahiye to 50% kar do */
  background: #f8fafc;      /* light background for transparent PNGs */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  overflow: hidden;         /* image overflow safe */
}

/* image inside logo box */
.center-logo img {
  width: 88px;              /* inner padding look */
  height: 88px;
  object-fit: contain;      /* keep proportions */
  display: block;
}

/* emoji / text placeholder */
.center-logo span {
  font-size: 42px;
  line-height: 1;
}

/* smaller on mobile */
@media (max-width: 768px) {
  .center-logo { width: 80px; height: 80px; }
  .center-logo img { width: 70px; height: 70px; }
  .center-logo span { font-size: 34px; }
}


        
        @media (max-width: 768px) {
          .centers-grid{
            grid-template-columns: repeat(2, 1fr);
          }
        }