body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f8fa;
    color: #222;
}

header {
    background: #014f86;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
}

main {
    max-width: 750px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px #b0c4de33;
    padding: 2rem;
}

.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tab {
    background: #e3eafc;
    color: #014f86;
    border: none;
    padding: 0.7rem 1.25rem;
    cursor: pointer;
    border-radius: 20px 20px 0 0;
    font-size: 1rem;
    transition: background 0.2s;
}

.tab.active, .tab:hover {
    background: #014f86;
    color: #fff;
}

.tab-content {
    display: none;
    border-top: 2px solid #dde6ed;
    padding: 1.2rem 0 0.2rem 0;
}

.tab-content.active {
    display: block;
    animation: fadein 0.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

ul {
    line-height: 1.75;
    padding-left: 1.5rem;
}

footer {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f3f5f7;
    margin-top: 2rem;
    color: #888;
    font-size: 0.95rem;
    border-radius: 0 0 8px 8px;
}
:root {
    --main-blue: #245075;
    --accent-blue: #5174cf;
    --light-bg: #f5f8fa;
    --card-bg: #fff;
    --shadow: 0 4px 24px 0 rgba(36, 80, 117, 0.09);
    --border: #e7eaf0;
    --card-radius: 18px;
}

/* ========== BASE & LAYOUT ========== */
html, body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--light-bg);
    color: var(--main-blue);
}

h1,h2,h3 {
    margin: 0 0 8px;
    line-height: 1.2;
}
h2 { font-size: 2rem; text-align: center; }
h2 span { color: var(--accent-blue); }
ul { margin: 0; padding-left: 1.2rem; }

/* ========== OVERVIEW ========== */
.overview {
    display: flex;
    align-items: stretch;
    padding: 2.5rem 2vw 1rem 2vw;
    gap: 3vw;
    background: #e7ecf6;
    border-bottom: 1px solid var(--border);
    animation: fadeInSlide 1s;
}
@keyframes fadeInSlide {
    from { opacity:0; transform:translateY(40px);}
    to   { opacity:1; transform:translateY(0);}
}
.overview-image {
    flex: 1 1 260px;
    min-width: 220px;
    background-image: url('https://images.unsplash.com/photo-1503389152951-9c3a145d2d99?auto=format&fit=crop&w=380&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    min-height: 300px;
    margin-right:1rem;
    transition: transform 0.3s;
    /* alt: use a static image representing electrical panel works if desired */
}
.overview-content {
    flex: 2 1 340px;
    background: #fff;
    border-radius: var(--card-radius);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow);
    font-size: 1.06rem;
    animation: fadeRight 1.1s;
}
@keyframes fadeRight {
    from { opacity:0; transform:translateX(60px);}
    to   { opacity:1; transform:translateX(0);}
}

@media (max-width: 900px) {
    .overview { flex-direction: column; gap: 1.5rem;}
    .overview-content { padding: 1.1rem 1rem;}
}
/* ========== SOLUTIONS ========== */
.solutions {
    background: var(--light-bg);
    padding: 3rem 1rem 2.2rem 1rem;
}
.solution-cards {
    display: flex;
    gap: 2.1vw;
    justify-content: center;
    margin-top: 2.8rem;
    flex-wrap: wrap;
}
.solution-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    flex: 1 1 180px;
    min-width:260px; max-width:320px;
    padding: 2.1rem 1.2rem 1.2rem 1.2rem;
    transition: transform 0.33s, box-shadow 0.33s;
    cursor:pointer;
    position: relative;
    outline: none;
    animation: cardUp 0.7s;
}
@keyframes cardUp {
    from { opacity:0; transform: translateY(30px);}
    to   { opacity:1; transform: translateY(0);}
}
.solution-card:hover, .solution-card:focus {
    transform: translateY(-15px) scale(1.025) rotateZ(-2deg);
    box-shadow: 0 8px 30px 3px #5174cf24;
    border: 1.5px solid var(--accent-blue);
    z-index:3;
}
.solution-card .icon-box {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    color: var(--accent-blue);
}
.solution-card ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.3rem;
    font-size: 1.02rem;
    color: #425473;
}
@media (max-width: 1000px) {
    .solution-cards { flex-direction: column; align-items: center; }
    .solution-card { width: 100%; max-width: 420px; }
}

/* ========== SEGMENTS ========== */
.segments {
    background: #f6f8fa;
    padding: 2.8rem 1rem 2rem 1rem;
    border-top: 1px solid var(--border);
}
.segments-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1.2rem;
    margin-top: 2.2rem;
}
.seg-arrow {
    background: #f7f7fa;
    border: none;
    color: var(--accent-blue);
    font-size: 2rem;
    border-radius: 50%;
    width: 45px; height: 45px;
    box-shadow: var(--shadow);
    cursor: pointer;
    outline: none;
    transition: background 0.23s;
    z-index:2;
}
.seg-arrow:hover, .seg-arrow:focus {
    background: var(--accent-blue);
    color: #fff;
}

.segments-slider {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 770px;
    max-width: 90vw;
    min-height: 250px;
    align-items: stretch;
}
.segment-card {
    min-width: 240px; max-width: 340px;
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform .32s, box-shadow .32s, filter .3s;
    opacity: .68; filter:saturate(0.7) grayscale(0.23) blur(0.5px);
    cursor: pointer;
    z-index: 1;
    padding:0;
    justify-content:flex-end;
}
.segment-card.active, .segment-card:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.037) translateY(-6px);
    box-shadow: 0 9px 24px 3px #24507528;
    z-index:4;
}
.segment-card span {
    background: rgba(36,80,117,0.79);
    color:#fff;
    font-size: 1.37rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing:.5px;
    padding: 1.1rem 1rem 1.15rem 1.3rem;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    width: 100%;
    box-sizing:border-box;
    display:block;
    backdrop-filter: blur(2px);
}

@media (max-width: 900px) {
    .segments-slider { width:97vw; }
    .segment-card {min-width:210px; max-width:260px; }
}

/* Hide arrows on mobile and use swipe */
@media (max-width:600px) {
    .overview {padding: 1rem 0.5rem 0.6rem 0.5rem;}
    .segments-slider-wrapper {gap:0.4rem;}
    .solutoins {padding:1.1rem;}
    .solution-card {padding:1.2rem 0.7rem 0.6rem 0.7rem;}
    .seg-arrow {display:none;}
    .segments-slider { gap: 0.6rem;}
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    background: #e7ecf6;
    color: #607291;
    padding: 2.2rem 1rem 1.2rem 1rem;
    border-top: 1px solid var(--border);
    font-size: 1.03rem;
    margin-top: 1rem;
}

:root {
  --blue: #333b5e;
  --accent: #624bff;
  --purple: #7559ab;
  --light-bg: #f6f8fa;
  --white: #fff;
  --shadow: 0 4px 16px 0 rgba(100,110,130,0.11);
  --card-radius: 17px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light-bg);
  color: var(--blue);
}
h1, h2, h3 { margin: 0; line-height: 1.2;}
h2 { font-size: 2rem; text-align: center; margin-bottom: 2rem;}
h1 { text-align: center; margin: 2.5rem 0 2rem; font-size: 2.5rem; font-weight: 600;}
h1 span { color: var(--accent);}
ul { margin: 0.5rem 0 0 0; padding-left: 1.4rem;}

.core-capability-solutions-cards {
  display: flex;
  gap: 2vw;
  justify-content: center;
  flex-wrap: wrap;
}
.core-capability-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  min-width: 240px; max-width: 295px;
  padding: 2rem 1.1rem 1.3rem 1.1rem;
  margin: 0.8rem 0.5rem;
  position: relative;
  outline: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(36px) scale(.97);
  transition: box-shadow 0.3s, transform 0.2s;
  animation: core-capability-fadeinCard 1s forwards;
}
.core-capability-card:nth-child(1){animation-delay:.08s;}
.core-capability-card:nth-child(2){animation-delay:.18s;}
.core-capability-card:nth-child(3){animation-delay:.28s;}
.core-capability-card:nth-child(4){animation-delay:.38s;}

@keyframes core-capability-fadeinCard {
  to { opacity: 1; transform:translateY(0) scale(1);}
}
.core-capability-card:hover, .core-capability-card:focus {
  box-shadow: 0 8px 36px #624bff36;
  transform: translateY(-10px) scale(1.035) rotateZ(-1.5deg);
  border: 1.5px solid var(--accent);
  z-index: 2;
}
.core-capability-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.73rem;
}
.core-capability-card h3 {font-size: 1.15rem; margin-bottom: 0.5rem;}
.core-capability-card ul {font-size: 1rem; color: #425473; line-height: 1.6;}

@media (max-width:900px) {
  .core-capability-solutions-cards {flex-direction: column; align-items: center;}
  .core-capability-card {width:100%; max-width:350px;}
}
@media (max-width:600px) {
  h1 { font-size: 2rem; margin-bottom:1.1rem;}
  h2 { font-size:1.2rem;}
  .core-capability-solutions-cards {gap:0.5rem;}
  .core-capability-card {padding:1.15rem 0.8rem;}
}

/* EPC Banner */
.core-capability-epc-banner {
  display: flex;
  align-items: stretch;
  margin: 2.6rem auto 1.6rem auto;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  background: var(--purple);
  overflow: hidden;
  max-width: 1200px;
  min-height: 160px;
  animation: core-capability-fadeinBanner 1s;
}
@keyframes core-capability-fadeinBanner {
  from { opacity: 0; transform: scale(1.095);}
  to   { opacity: 1; transform: scale(1);}
}
.core-capability-epc-left { flex: 1 1 180px; min-width:160px;}
.core-capability-epc-image {
  background: url('https://images.unsplash.com/photo-1503389152951-9c3a145d2d99?auto=format&fit=crop&w=380&q=80') center/cover no-repeat;
  width: 100%; height: 100%;
  min-height: 130px;
}
.core-capability-epc-right {
  flex: 2 1 280px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: left;
}
.core-capability-epc-right h2 {
  font-size: 1.36rem;
  margin: 0 0 2rem 0;
  color: #fff;
  text-align: left;
}
.core-capability-enquire-btn {
  border: none;
  background: #fff;
  color: var(--purple);
  font-size: 1rem;
  padding: 0.7rem 1.75rem;
  border-radius: 22px;
  font-weight: 600;
  box-shadow: 0 2px 17px #fff4;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.core-capability-enquire-btn:hover, .core-capability-enquire-btn:focus {
  background: var(--accent);
  color: #fff;
}
@media (max-width:800px){
  .core-capability-epc-banner {flex-direction:column;}
  .core-capability-epc-right {padding:1.4rem 0.8rem;}
}

/* Projects Section */
    .project-container {
      width: 90%;
      margin: 0 auto;
      padding: 32px 0;
      text-align: center;
    }
    .project-title {
      font-size: 2.5em;
      font-weight: bold;
      margin-bottom: 14px;
    }
    .project-underline {
      width: 60px;
      height: 3px;
      background: #5f469b;
      margin: 0 auto 38px auto;
      border-radius: 2px;
    }
    .project-row {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .project-card {
      background: #222;
      border-radius: 16px;
      overflow: hidden;
      width: 320px;
      min-height: 420px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.11);
      position: relative;
      color: #fff;
      animation: project-float 2.5s ease-in-out infinite alternate;
      transition: transform 0.33s cubic-bezier(.46,1.54,.53,.96),
                  box-shadow 0.28s cubic-bezier(.5,1.4,.46,.85);
    }
    @keyframes project-float {
      0%   { transform: translateY(0px); }
      100% { transform: translateY(-18px); }
    }
    .project-card:hover {
      transform: scale(1.045);
      box-shadow: 0 6px 28px 4px #5f469b33, 0 2px 24px 1px #222;
    }
    .project-img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #5f469b;
    }
    .project-content {
      padding: 26px 18px 18px 18px;
      text-align: left;
    }
    .project-name {
      font-size: 1.2em;
      font-weight: 500;
      margin-bottom: 10px;
      background: linear-gradient(90deg, #555 55%, #5f469b 95%);
      padding: 8px 12px;
      border-radius: 8px;
      display: inline-block;
      color: #fff;
    }
    .project-desc {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 18px;
    }
    .project-plus {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background: #5f469b;
      color: #fff;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2em;
      cursor: pointer;
      box-shadow: 0 2px 8px #5f469b55;
      transition: background .22s, transform .28s;
    }
    .project-plus:hover {
      background: #a48be0;
      transform: scale(1.18) rotate(15deg);
    }
    /* Responsive */
    @media (max-width: 1024px) {
      .project-row { flex-direction: column; align-items: center; }
      .project-card { width: 90%; }
    }


/* General */

.core-capability-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 2rem 0 1.7rem 0;
  letter-spacing: 0.01em;
}
.core-capability-projects {
  padding: 0 1rem;
}

/* Slider Structure */
.core-capability-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 2.7rem auto;
  gap: 1rem;
}
.core-capability-slider {
  display: flex;
  gap: 1.2rem;
  overflow: hidden;
  min-width: 200px;
  width: 800px;
  max-width: 94vw;
  align-items: stretch;
}

/* Project Card Style */
.core-capability-card {
  min-width: 250px; 
  max-width: 330px;
  aspect-ratio: 4/3;
  background-color: var(--cc-blue);
  background-size: cover;
  background-position: center;
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow);
  position: relative;
  cursor: pointer;
  opacity: 0.60;
  filter: blur(1px) grayscale(0.12) brightness(.93);
  transition: 
      transform .27s cubic-bezier(0.5,1.65,.33,.95), 
      box-shadow .24s, 
      filter .24s, 
      opacity .15s;
  outline: none;
  z-index: 1;
  animation: cc-cardfadein 1s cubic-bezier(.7,.1,.9,1) both;
}
.core-capability-card:not(.active) {
  pointer-events: auto;
}
.core-capability-card.active, 
.core-capability-card:focus, 
.core-capability-card:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.045) translateY(-8px) rotateZ(-.6deg);
  box-shadow: 0 10px 32px #3b89cf24, 0 2px 10px #2c3c5a10;
  z-index: 4;
}
@keyframes cc-cardfadein {
  0% {opacity:0;transform:translateY(50px) scale(.9);}
  80% {opacity:0.78;}
  100% {opacity:0.6;}
}

.core-capability-overlay {
  background: linear-gradient(0deg, #1d263b 80%, transparent 98%);
  position: absolute; 
  left:0; bottom:0; width:100%;
  color: #fff;
  padding: 1.35rem 1.1rem 1rem 1.35rem;
  border-radius: 0 0 var(--cc-radius) var(--cc-radius);
}
.core-capability-overlay h3 {
  font-size: 1.2rem;
  margin: 0 0 0.25em;
  font-weight:700;
  text-shadow: 0 2px 6px #0a132455;
}
.core-capability-overlay span {
  font-size: 1rem;
  opacity: .85;
}

/* Slider Arrows */
.core-capability-arrow {
  background: #e9edf7;
  border: none;
  color: var(--cc-highlight);
  font-size: 2rem;
  border-radius: 50%;
  width: 48px; height: 48px;
  box-shadow: var(--cc-shadow);
  transition: background .17s, color .15s;
  cursor: pointer;
  outline: none;
  z-index: 10;
  user-select: none;
  display:block;
}
.core-capability-arrow:focus, .core-capability-arrow:hover {
  background: var(--cc-highlight);
  color: #fff;
}

/* MOBILE Responsive */
@media (max-width:950px){
  .core-capability-slider { width:97vw;}
  .core-capability-card {min-width:180px; max-width:220px;}
}
@media (max-width:620px){
  .core-capability-title { font-size: 1.3rem; margin-top: 1.4rem;}
  .core-capability-slider-wrapper {gap: 0.2rem;}
  .core-capability-slider {gap:0.5rem;}
  .core-capability-arrow {display:none;}
}

/* Footer */
.core-capability-footer {
  text-align: center;
  background: #eef1f7;
  color: #506183;
  margin-top:2.2rem;
  padding: 1.1rem .5rem;
  border-top: 1px solid #d1d7e1;
  border-radius: 0 0 var(--cc-radius) var(--cc-radius);
  font-size: 1rem;
}

    body {
    /* ////////key strength ///////*/
      font-family: 'Segoe UI', Arial, sans-serif;
      background: #eeecf2;
      margin: 0;
      padding: 0;
      color: #2d1e38;
    }
    .our-key-strengths-section {
      max-width: 100%;
      margin: 40px auto;
      padding: 32px 10px;
      /* background: #faf8fc; */
      border-radius: 22px;
      box-shadow: 0 8px 32px rgba(130, 80, 225, 0.11);
    }
    .our-key-strengths-title {
      text-align: center;
      font-size: 2.2rem;
      color: #37295a;
      margin-bottom: 36px;
      font-weight: 600;
      letter-spacing: 0.5px;
      position: relative;
    }
    .our-key-strengths-title::after {
      content: '';
      display: block;
      width: 70px;
      margin: 12px auto 0;
      border-bottom: 3px solid #7E73E9;
      border-radius: 2px;
    }
    .our-key-strengths-cards {
      display: flex;
      gap: 28px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .our-key-strengths-card {
      background: #fff;
      border-radius: 19px;
      box-shadow: 0 6px 14px rgba(88, 88, 166, 0.09);
      flex: 1 1 265px;
      max-width: 320px;
      min-width: 220px;
      padding: 30px 22px 24px;
      margin: 10px 0;
      text-align: center;
      transition: 
        transform 0.36s cubic-bezier(.18,.68,.63,1.19),
        box-shadow 0.27s;
      position: relative;
      cursor: pointer;
      outline: none;
      overflow: hidden;
      animation: ks-fadein 0.9s cubic-bezier(.33,1.11,.61,.97) both;
    }
    @keyframes ks-fadein {
      0% { opacity: 0; transform: translateY(28px) scale(0.93);}
      100% { opacity: 1; transform: translateY(0) scale(1);}
    }
    .our-key-strengths-card:hover,
    .our-key-strengths-card:focus {
      transform: translateY(-12px) scale(1.04);
      box-shadow: 0 15px 32px rgba(80, 60, 180, 0.12), 0 1.5px 10px rgba(150,130,250,0.07);
      z-index: 1;
    }
    .our-key-strengths-icon {
      font-size: 2.9rem;
      margin-bottom: 15px;
      display: inline-block;
      transition: color 0.2s;
      color: #7E73E9;
    }
    .our-key-strengths-card:hover .our-key-strengths-icon,
    .our-key-strengths-card:focus .our-key-strengths-icon {
      color: #5442ad;
      animation: ks-bounce 0.36s;
    }
    @keyframes ks-bounce {
      0%   { transform: scale(1);}
      35%  { transform: scale(1.25);}
      65%  { transform: scale(0.9);}
      100% { transform: scale(1);}
    }
    .our-key-strengths-title-card {
      font-size: 1.17rem;
      font-weight: 600;
      color: #322749;
      margin-bottom: 10px;
    }
    .our-key-strengths-desc {
      font-size: 1.04rem;
      color: #54488D;
      line-height: 1.44;
    }

    /* --- Mobile Responsive --- */
    @media (max-width: 850px) {
      .our-key-strengths-cards {
        gap: 18px;
      }
    }
    @media (max-width: 600px) {
      .our-key-strengths-cards {
        flex-direction: column;
        align-items: center;
      }
      .our-key-strengths-card {
        max-width: 95vw;
        width: 98%;
      }
      .our-key-strengths-section {
        padding: 15px 3vw;
        border-radius: 12px;
      }
      .our-key-strengths-title {
        font-size: 1.5rem;
      }
    }
    /* ////////// Key Strengths Section End ////////// */

    /* ///////////intersted in /////////// */
    .are-you-interested-in-section {
      max-width: 100%;
      margin: 40px auto;
      padding: 32px 12px;
      /* background: #ffffff; */
      border-radius: 26px;
      box-shadow: 0 8px 32px rgba(110, 80, 225, 0.07);
    }
    .are-you-interested-in-title {
      text-align: center;
      font-size: 2.1rem;
      color: #3a2673;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 36px;
      position: relative;
    }
    .are-you-interested-in-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 0;
      margin: 14px auto 0;
      border-bottom: 3px solid #7D51E4;
      border-radius: 2px;
    }
    .are-you-interested-in-cards {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .are-you-interested-in-card {
      background: #faf6ff;
      border-radius: 20px;
      box-shadow: 0 7px 14px rgba(120, 80, 170, 0.08);
      flex: 1 1 280px;
      max-width: 320px;
      min-width: 200px;
      padding: 32px 22px 26px;
      text-align: center;
      margin: 12px 0;
      position: relative;
      cursor: pointer;
      transition: 
        transform 0.38s cubic-bezier(.18,.66,.63,1.12),
        box-shadow 0.22s;
      animation: ainterest-fadein 0.9s cubic-bezier(.33,1.11,.61,.97) both;
      outline: none;
      overflow: hidden;
    }
    @keyframes ainterest-fadein {
      0% { opacity: 0; transform: translateY(30px) scale(0.93);}
      100% { opacity: 1; transform: translateY(0) scale(1);}
    }
    .are-you-interested-in-card:hover,
    .are-you-interested-in-card:focus {
      transform: translateY(-10px) scale(1.045);
      box-shadow: 0 15px 36px rgba(96, 58, 200, 0.17), 0 2px 10px rgba(140,110,235,0.05);
      z-index: 2;
    }
    .are-you-interested-in-icon {
      font-size: 3rem;
      margin-bottom: 16px;
      color: #7D51E4;
      display: inline-block;
      transition: color 0.22s;
    }
    .are-you-interested-in-card:hover .are-you-interested-in-icon,
    .are-you-interested-in-card:focus .are-you-interested-in-icon {
      color: #412086;
      animation: ainterest-bounce 1.36s infinite;
    }
    @keyframes ainterest-bounce {
      0%   { transform: scale(1);}
      34%  { transform: scale(1.28);}
      63%  { transform: scale(0.88);}
      100% { transform: scale(1);}
    }
    .are-you-interested-in-card-title {
      font-size: 1.17rem;
      font-weight: 600;
      color: #312b58;
      margin-bottom: 10px;
    }
    .are-you-interested-in-desc {
      font-size: 1.05rem;
      color: #5a4b97;
      line-height: 1.44;
    }
    /* Mobile responsive styles */
    @media (max-width: 870px) {
      .are-you-interested-in-cards {
        gap: 15px;
      }
    }
    @media (max-width: 620px) {
      .are-you-interested-in-cards {
        flex-direction: column;
        align-items: center;
      }
      .are-you-interested-in-card {
        max-width: 99vw;
        width: 98%;
        min-width: 0;
      }
      .are-you-interested-in-section {
        padding: 14px 2vw;
        border-radius: 14px;
      }
      .are-you-interested-in-title {
        font-size: 1.4rem;
      }
    }
    /* ///////////intersted in end /////////// */
    img {
        max-width: 100%;
        height: 100%;
        display: block;
        margin: 0 auto;
        border-radius: 20px;
    }