
/* now here code css for card */

 :root {
      --card-bg: #ffffff;
      --card-border: #e7e7ea;
      --accent: #0d6efd;
      --muted: #6c757d;
    }

 

    /* Page container */
    .page {
    
          padding-top: 100px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Title that matches sketch feel */
    .page-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: 0.2px;
    }

    /* Row gap */
    .cards-row { gap: 1.5rem; }

    /* Tall card style */
    .card-tall {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(11, 23, 47, 0.06);
      padding: 1.6rem;
      /* adjust this height to match your sketch: higher = taller cards */
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: center; /* vertical center content */
      align-items: center;
      text-align: center;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    /* Make the card "pop" on hover */
    .card-tall:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(11, 23, 47, 0.12);
    }

    /* Label inside card */
    .card-label {
      font-size: 1.25rem;
      font-weight: 600;
      color: #0b1220;
      letter-spacing: .2px;
    }

    /* optional small help text below label */
    .card-sub {
      margin-top: .35rem;
      color: var(--muted);
      font-size: .92rem;
    }

    /* Ensure equal-height columns using flex-fill */
    .col-d-flex { display: flex; }

    /* Responsive tweak: slightly shorter cards on small screens */
    @media (max-width: 575.98px) {
      .card-tall { min-height: 280px; padding: 1rem; }
      .page { padding: 24px 10px; }
      .page-title { font-size: 1.15rem; }
    }
    /* FAQ section */
     .faq-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px; /* Thodi side padding */
}

/* Search bar */
.faq-search {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.faq-search:focus {
    border-color: #bbd2eb;
    box-shadow: 0 0 8px rgba(0,123,255,0.2);
}

.faq-item {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.faq-question {
    width: 100%;
    padding: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    color: #333;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f0f4f8;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 22px;
    color: #24272b;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
    background-color: #f9faff;
}

.faq-answer p {
    line-height: 1.6;
    color: #555;
}
 .frame-container {
      display: flex;
      gap: 20px; /* space between 2 frames */
    }
    .image-frame {
      width: 600px;
      height: auto;
      border: 4px solid #ccc; 
      border-radius: 15px;
      padding: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      background: #fff;
    }
    .image-frame img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
    }
 /* Media Query for Mobile */
    @media (max-width: 768px) {
      .frame-container {
        flex-direction: column;
        align-items: center;
      }
      .image-frame {
        width: 90%;  /* mobile par full width */
      }
    }