* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f8fa;
    color: #222;
    min-height: 100vh;
  }
  
  .page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
  }
  
  .institute-main-heading {
    background: rgba(226, 229, 233, 1);
    padding: 2.5rem 0 2rem 0;
    text-align: center;
    border-radius: 0.5rem;
  }
  
  .institute-main-heading h1 {
    font-size: 2rem;
    color: #000000;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: sans-serif;
    
  }
  
  .content-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transition: box-shadow 0.2s;
    border-left: 6px solid #1976d2;
    margin-bottom: 2rem;
  }
  
  .content-card h2 {
    font-size: 1.3rem;
    color: #002147;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }
  
  .card-meta {
    font-size: 1rem;
    color: #4fa4ee;
    margin-bottom: 1rem;
    margin-top: 0.2rem;
    font-style: italic;
    font-weight: 500;
  }
  
  .content-card p {
    font-size: 1.06rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.2rem;
  }
  
  .initiative-flex {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .gangwal-photo {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    border:3px solid #002147;
    flex-shrink: 0;
  }

  .kotak-photo {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    border:3px solid #002147;
    flex-shrink: 0;
  }
  
  .initiative-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .initiative-images {
    margin-top: 1.3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .myproject-square {
    display: flex;
    width: 400px;
    height: 400px;
    object-fit:cover;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    border: 3px solid #002147;
    justify-content: center;
    border-radius: 10px;
  }

  .myproject-square-kotak {
    display: flex;
    width: 600px;
    height: 430px;
    object-fit:cover;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    border: 3px solid #002147;
    justify-content: center;
    border-radius: 10px;
  }
  
  .event-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
  }
  
  .event-gallery img {
    width: calc(33% - 1rem);
    flex: 0 1 calc(33% - 1rem);
    aspect-ratio: 3/2;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    background: #f5f5f5;
    object-fit: cover;
    border: 1px solid #002147;
  }
@keyframes scaleIn {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}
  
  @media (max-width: 800px) {
    .initiative-flex {
      flex-direction: column;
      align-items: stretch;
    }
    .gangwal-photo {
      margin-bottom: 1rem;
      width: 100%;
      max-width: 240px;
      height: 100%;
      align-self: flex-start;
    }

    .kotak-photo {
      margin-bottom: 1rem;
      width: 100%;
      max-width: 240px;
      height: 100%;
      align-self: flex-start;
    }
    .myproject-square {
      width: 250px;
      height: 250px;
    }
    .myproject-square-kotak {
      width: 400px;
      height: 285px;
    }
    .event-gallery img {
      width: calc(50% - 1rem);
      flex: 0 1 calc(50% - 1rem);
    }
  }
  
  @media (max-width: 500px) {
    .event-gallery img {
      width: 100%;
      flex: 0 1 100%;
    }
  }
  


.prayas-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 0.8s ease-in;
  }
  .prayas-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #003366;
    padding: 35px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  .prayas-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: #e2b347;
    margin: 12px auto;
    border-radius: 4px;
  }
  .prayas-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .prayas-card {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f7f8fa);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-left: 8px solid #0059b3;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .prayas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  }
  .prayas-split {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .prayas-img-container {
    display: inline-block;
    border: 3px solid #003087;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    line-height: 0;
    animation: popIn 0.6s ease-in;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .prayas-img-container1 {
    display: inline-block;
    border-radius: 12px;
    border: 3px solid #003087;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    line-height: 0;
    animation: popIn 0.6s ease-in;
    max-width: 58%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .prayas-img-container2 {
    display: inline-block;
    border-radius: 12px;
    border: 3px solid #003087;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    line-height: 0;
    animation: popIn 0.6s ease-in;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .prayas-img-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
  }
  .prayas-img-container2 img {
    width: 100%;
    height: auto;
    object-fit: fill;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
  }
  .prayas-img-container:hover ,.prayas-img-container1:hover {
    transform: scale(1.05) ;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  .prayas-img-container img:hover {
    transform: scale(1.1);
  }
  .prayas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 2rem; */
    /* margin: 2rem 0; */
  }
  .prayas-grid .prayas-img-container {
    max-width: 400px;
    margin: 0 auto;
  }
  .prayas-grid.prayas-grid-five .prayas-img-container:nth-child(5) {
    grid-column: 1 / -1;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  .prayas-info {
    flex: 1;
  }
  .prayas-info h2 {
    font-size: 1.8rem;
    color: #003087;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    position: relative;
    padding-bottom: 8px;
  }
  .prayas-info h2::after {
    content: '';
    display: block;
    width: 75px;
    height: 4px;
    background: #e2b347;
    position: absolute;
    border-radius: 2px;
  }
  .prayas-info h4 {
    font-size: 1.5rem;
    color: #003087;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .prayas-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
  }
  .prayas-info p strong {
    color: #00356b;
  }
@media (max-width: 768px) {
    .prayas-container {
      padding: 15px;
    }
    .prayas-heading {
      font-size: 2.2rem;
      padding: 25px 0;
    }
    .prayas-heading::after {
      width: 160px;
      height: 6px;
    }
    .prayas-card {
      padding: 1.5rem;
    }
    .prayas-split {
      flex-direction: column;
      gap: 1.5rem;
    }
    .prayas-img-container {
      max-width: 300px;
      margin: 0 auto;
    }
    .prayas-grid {
      grid-template-columns: 1fr;
    }
    .prayas-grid .prayas-img-container {
      max-width: 300px;
    }
    .prayas-grid.prayas-grid-five .prayas-img-container:nth-child(5) {
      grid-column: auto;
      margin: 0 auto;
    }
    .prayas-info {
      text-align: center;
    }
    .prayas-info h2::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  @media (max-width: 480px) {
    .prayas-heading {
      font-size: 1.8rem;
      padding: 20px 0;
    }
    .prayas-heading::after {
      width: 120px;
      height: 5px;
    }
    .prayas-card {
      padding: 1rem;
    }
    .prayas-img-container {
      max-width: 200px;
    }
    .prayas-grid .prayas-img-container {
      max-width: 200px;
    }
    .prayas-info h2 {
      font-size: 1.4rem;
    }
    .prayas-info h4 {
      font-size: 1.2rem;
    }
    .prayas-info p {
      font-size: 1rem;
    }
  }
/* ================= */
  
.shivani-img-container {
  float: left;
  margin-right: 1.8rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  background: #f0f0f0;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.shivani-img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #003087;
  transition: transform 0.3s ease;
}
.shivani-img-container img:hover {
  transform: scale(1.05);
}
.shivani-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin: 1.8rem 0;
}
.shivani-grid-2 .shivani-img-container {
  max-width: 100%;
  border-radius: 12px;
  background: #f0f0f0;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.shivani-grid-2 .shivani-img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #003087;
  transition: transform 0.3s ease;
}
.shivani-grid-2 .shivani-img-container img:hover {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  
  .shivani-img-container {
    float: none;
    max-width: 280px;
    margin: 0 auto 1.2rem;
  }
  .shivani-grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  
  .shivani-img-container {
    max-width: 240px;
  }
  
}

/* ========================================== */

.shivani-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  padding: 35px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.shivani-heading::after {
  content: '';
  display: block;
  width: 180px;
  height: 8px;
  background-color: #f4c430;
  margin: 12px auto;
  border-radius: 4px;
}

.shivani-card {
  padding: 1.8rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-left: 6px solid #0059b3;
  text-align: left;
  transition: box-shadow 0.3s ease;
}
.shivani-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.shivani-img-container {
  float: left;
  margin-right: 1.8rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  background: #f0f0f0;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.shivani-img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #003087;
  transition: transform 0.3s ease;
}
.shivani-img-container img:hover {
  transform: scale(1.05);
}

.shivani-info {
  margin: 0 auto;
}
.shivani-info h2 {
  font-size: 1.75rem;
  color: #003087;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  position: relative;
  padding-bottom: 8px;
}
.shivani-info h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f4c430;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.shivani-info p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .shivani-container {
    padding: 15px;
  }
  .shivani-heading {
    font-size: 2.5rem;
    padding: 25px 0;
  }
  .shivani-heading::after {
    width: 140px;
    height: 6px;
  }
  .shivani-card {
    padding: 1.2rem;
  }
  .shivani-img-container {
    float: none;
    max-width: 280px;
    margin: 0 auto 1.2rem;
  }
  .shivani-info {
    text-align: center;
  }
  .shivani-info h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .shivani-grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .shivani-heading {
    font-size: 1.8rem;
    padding: 20px 0;
  }
  .shivani-heading::after {
    width: 120px;
    height: 5px;
  }
  .shivani-card {
    padding: 1rem;
  }
  .shivani-img-container {
    max-width: 240px;
  }
  .shivani-info h2 {
    font-size: 1.4rem;
  }
  .shivani-info p {
    font-size: 1rem;
  }
}