 :root {
     --accent: #5a2f84;
     /* purple */
     --muted: #e9eef0;
     --glass: rgba(255, 255, 255, 0.85);
     --card-overlay: rgba(255, 255, 255, 0.82);
     --cta-bg: #5a2f84;
     --cta-text: #fff;
 }

 * {
     box-sizing: border-box
 }

 body {
     font-family: Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
     margin: 0;
     background: #fff;
     color: #111
 }

 .wrap {
     max-width: 1200px;
     margin: 60px auto;
    padding: 0px 20px 22px 20px;
 }

 h1 {
        font-family: Montserrat, sans-serif;
    font-weight: 100;
    font-size: 48px;
    margin: 8px 0 28px;
    letter-spacing: 0px;
 }

 .subtitle {
     font-weight: 600;
     color: #333;
     margin-bottom: 20px
 }

 .grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px
 }

 @media (max-width:980px) {
     .grid {
         grid-template-columns: 1fr;
     }
 }

 .card {
     position: relative;
     min-height: 470px;
     overflow: hidden;
     border-radius: 4px;
     display: flex;
     align-items: flex-end;
     background-size: cover;
     background-position: center center;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
     transition: transform 0.4s ease;
 }

 /* translucent info box inside card */
 .info {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(2px);
    padding: 16px;
    border-radius: 4px;
    margin: 20px -2px;
    width: 64%;
    max-width: 420px;
    min-height: 199px;
 }
 .btn_position{
    bottom: 15px;
    position: absolute;
    right: 15px;
 }
 .info_bg1{
    background: #baddd9cf;
 }
 .info_bg2{
    background: #c4c0cfd6;
 }
 .info_bg3{
    background: #ebcbe2cf;
 }

 .info p {
     margin: 0 0 14px;
     font-size: 14px;
     line-height: 1.45;
     color: #222
 }

 .explore {
     display: inline-block;
    padding: 10px 30px;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    background: var(--cta-bg);
    color: var(--cta-text);
    text-decoration: none;
    border: none;
    
 }

 /* small top-left logo area */
 .brand {
     position: absolute;
     left: 18px;
     top: 18px;
     /* background: rgba(255, 255, 255, 0.85); */
     /* padding: 8px 12px; */
     border-radius: 6px;
     font-weight: 700;
     font-family: Montserrat, sans-serif;
     color: var(--accent)
 }
 .brand img{width: 190px;}

 /* top-right short heading */
 .top-heading {
     position: absolute;
     right: 18px;
     top: 20px;
     font-weight: 700;
     color: var(--accent);
     text-align: right;
     text-transform: uppercase;
 }

 /* generic gradient overlay to ensure readability */
 .card:after {
     content: "";
     position: absolute;
     left: 0;
     right: 0;
     top: 0;
     bottom: 0;
     background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 10%, rgba(0, 0, 0, 0.15) 70%);
     mix-blend-mode: multiply;
     pointer-events: none
 }
 .ml-auto{
    margin-left: auto;
 }
 .text-align-end{
    text-align: end;
 }
.top-bar {
     position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 23px;
  z-index: 9999;
}
.bottom-bar {
    position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 23px;
  z-index: 9999;
}

/* Light Sweep Effect */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    filter: blur(20px);
    opacity: 0;
}

/* Hover Effect */
.card:hover {
    transform: scale(1.02); /* slight zoom */
}

.card:hover::before {
    left: 150%;
    opacity: 1;
}
.explore::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

.explore:hover::after {
  width: 100%;
}

.explore:hover {
  transform: translateY(-2px);
}

 /* small responsive tweaks */
 @media (max-width:980px) {
     h1 {
         font-size: 34px
     }

     .card {
      min-height: 425px;

     }

     .info {
         width: 88%
     }
 }