 /*Soham add */
 :root {
    --card-w: 300px;
    --card-h: 380px;
    --img-h: 200px;
    --radius: 16px;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .cards-container {
    display: grid;
    grid-template-columns: repeat(4, var(--card-w));
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    width: var(--card-w);
    height: var(--card-h);
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
  }

  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }

  .card-header h2 {
    font-size: 1.2rem;
    color: #ad2c26;
    margin-bottom: 6px;
  }

  .card-header h3 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 6px;
  }

  .card-img {
    width: 100%;
    height: var(--img-h);
    overflow: hidden;
    border-radius: 12px;
  }

  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .card:hover .card-img img {
    transform: scale(1.07);
  }

  /* Responsive */
  @media(max-width: 1200px) {
    .cards-container {
      grid-template-columns: repeat(3, var(--card-w));
    }
  }

  @media(max-width: 900px) {
    .cards-container {
      grid-template-columns: repeat(2, var(--card-w));
    }
  }

  @media(max-width: 500px) {
    .cards-container {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    :root {
      --card-w: 90vw;
      --card-h: 360px;
      --img-h: 180px;
    }
  }


  /*project kartvya section*/
  .btn-style {
    display: inline-block;
    font-size: 30px;
    color: #ff6015;
    border: 2px solid #ff6015;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-style:hover {
    background-color: #ff6015;
    color: white;
  }

  .project-zigzag {
    margin-top: 60px;
    padding: 60px 20px;
    background-color: #fff5ec;
    /* soft orange background */
  }

  .project-zigzag-wrapper {
    background-color: #fff5ec;
    /* soft orange full-width background */
    padding: 60px 0;
  }

  .project-zigzag {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .zigzag-row {
    max-width: 1100px;
    margin: 0 auto 60px auto;
    /* center each row */
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .zigzag-row.reverse {
    flex-direction: row-reverse;
  }

  .zigzag-image {
    flex: 1;
    min-width: 300px;
  }

  .zigzag-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }

  .zigzag-text {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
  }

  /* Border on side depending on layout direction */
  .zigzag-row:not(.reverse) .zigzag-text {
    border-left: 5px solid #ff6015;
  }

  .zigzag-row.reverse .zigzag-text {
    border-right: 5px solid #ff6015;
  }

  .zigzag-text h3 {
    color: #ff6015;
    font-size: 26px;
    margin-bottom: 15px;
  }

  .zigzag-text p,
  .zigzag-text ul {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
  }

  .zigzag-text ul {
    padding-left: 25px;
    margin-top: 10px;
  }

  .zigzag-text ul li {
    margin-bottom: 10px;
  }

  @media (max-width: 768px) {

    .zigzag-row,
    .zigzag-row.reverse {
      flex-direction: column;
    }

    .zigzag-text {
      border-left: none !important;
      border-right: none !important;
      border-top: 5px solid #ff6015;
    }
  }

  /*project kartvya section end*/

  .tabs-container {
    display: flex;
    justify-content: center;
    /*background-color: #ff6015;*/
    padding-top: 50px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }

  .tab-btn {
    background: white;
    color: #ff6015;
    border: 1px solid #ff6015;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .tab-btn.active {
    background: #ff6015;
    color: white;
  }

  .tab-content {
    display: none;
    padding: 20px;
    max-width: 1500px;
    margin: 0 auto;
  }

  .tab-content.active {
    display: block;
  }

  .card {
    background: white;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  }

  @media (max-width: 600px) {
    .tab-btn {
      flex: 1 1 100%;
      text-align: center;
    }
  }

  .card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* show full image */
  }

  /* On mobile screens */
  @media (max-width: 768px) {
    .card-img {
      height: auto;
      /* remove fixed height */
    }

    .card-img img {
      max-height: 100%;
    }
  }


  /*Soham New Add 09/09/2025*/
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
  }

  .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card {
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card-header {
    padding: 15px;
    background: #ad2c26;
    color: white;
    text-align: center;
  }

  .card-header h2 {
    margin: 0;
    font-size: 1.2rem;
  }

  .card-header h3 {
    margin: 5px 0;
    font-size: 1rem;
  }

  .card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .card-body {
    text-align: center;
    padding: 10px;
  }

  .btn-primary {
    background-color: #ad2c26;
    border: none;
  }

  .btn-primary:hover {
    background-color: #850000;
  }
  .card2 {
    background: #fff;
    border-radius: 12px;
    padding: 15px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .card-img2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    border: 3px solid #ad2c26;
    box-shadow: 0px 4px 10px #4D4C4C;

  }
  
  .card-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-body h3 {
    font-size: 16px;
    color: #ad2c26;
    margin-bottom: 5px;
  }
  
  .btn-sm {
    font-size: 12px;
    padding: 3px 8px;
    background-color: #ad2c26;
    border: none;
    box-shadow: 2px 2px 5px black;
  }

  .btn-primary:hover {
    background-color: #850000;
  }
  .ext-btn{
    display: block;
    width: 100px;
    margin: 0px auto;
  }