:root{
  --bg:#f5f6fb;
  --ink:#1f2430;
  --muted:#6b7280;
  --line:#e5e7ef;
  --card:#ffffff;
  --chip:#f0f2f8;
  --accent:#3163ff;
  --accent-2:#1e3a8a;
  --brand: #2563eb;
  --shadow:0 8px 30px rgba(16,24,40,.08);
  --radius:16px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font:16px/1.6 "Poppins", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:white; background:var(--bg);
  box-sizing: border-box;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("1. HOMEPAGE/photo/background.webp") no-repeat center center / cover;
  opacity: 90%;
  z-index: -1;
}


/* Reveal on scroll */
.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease}
.reveal.is-visible{opacity:1; transform:none}


.wrap{max-width:1140px; margin:auto; padding:0 3%;}

/* Utilities */
.container{width:min(1120px, 92vw); margin-inline:auto; background: rgba(255, 255, 255, 0.05); border-radius: 20px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); backdrop-filter: blur(20px); padding-top: 20px; padding-bottom: 40px;}
.section{padding:40px 20px 80px;}
.section--tint{background:var(--tint)}
.section-title{margin:0 0 16px}
.section-title h2{font-size:22px; font-weight:700}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.6rem 1rem; border-radius:8px; border:1px solid transparent;
  font-weight:600; cursor:pointer;
}
.btn--primary{background:var(--brand); color:#fff }
.btn--ghost{background:#fff; border-color:var(--line); color:var(--ink)}
.btn--primary:hover{filter:brightness(.95)}
.btn--ghost:hover{background:#f8fafc}

/* Pills / small round */
.pill{
  border:1px solid var(--line); background:#fff; color:var(--ink);
  padding:.3rem .55rem; border-radius:999px; cursor:pointer;
}
.pill--light{background:#f8fafc}

/* Topbar */
.topbar{margin-left: auto; margin-right: auto; position:sticky; top:40px; z-index:40; background: rgba(255, 255, 255, 0.1);border-radius: 20px;box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);backdrop-filter: blur(25px);width: 80%;}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; height: 100px; max-width: 1140px; width: 90%; margin: 0 auto;}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; color:var(--ink)}
.brand__logo {
  width: 250px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.nav{display:flex; gap:24px}
.nav__link{color:#ffffff; text-decoration:none}
.nav__link:hover{color:var(--bpPrimary-200)}

/* Dropdown (Explore) */
.nav__item {
  position: relative;
  transition: all 0.3s ease;
}

.dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(100%);
  min-width: 160px;
  padding: 8px 0;
  z-index: 50;
}

.dropdown__link {
  display: block;
  padding: 10px 16px;
  color:white;
  text-decoration: none;
  font-size: 15px;
}

.dropdown__link:hover {
  background: white;
  color:var(--bpPrimary-500);
  border-radius: 6px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown__menu {
  display: block;
  transition: all 0.3s ease;
}

/* Add to existing hamburger styles */
.hamburger {
  display: none;
  width: 42px;
  height: 38px;
  background: none;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger-line {
  position: absolute;
  left: 8px;
  height: 2px;
  background: #e9e9e9;
  border-radius: 2px;
  transition: all 0.3s ease;
  width: 26px;
}

.hamburger-line:nth-child(1) {
  top: 10px;
}

.hamburger-line:nth-child(2) {
  top: 18px;
}

.hamburger-line:nth-child(3) {
  top: 26px;
}

/* Hamburger animation when open */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu transition */
.mobile {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  width: 90%;
  margin: 0 auto;
}

.mobile.open {
  max-height: 500px;
  opacity: 1;
}


/* Mobile menu */
.mobile{background:transparent;}
.mobile__link{display:block; padding:12px 20px; color:white; text-decoration:none; border-bottom: 1px solid rgba(255,255,255,0.1);margin-bottom: 5px;}
.mobile__link:hover{background:none;}
.mobile__item {border-bottom:1px solid rgba(255,255,255,0.1);}

.mobile__toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
}

.mobile__submenu {
  display: none;
}

.mobile__sublink {
  display: block;
  padding: 10px 36px;
  text-decoration: none;
  color: white;
  font-size: 15px;
}

.mobile__sublink:hover {
  background: #eef3ff;
  color: var(--accent);
}

/* Show submenu when active */
.mobile__item.open .mobile__submenu {
  display: block;
}

/* Cards & layout blocks */
.card{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow);
  padding:16px;
}

/* Intro grid */
.intro-grid{display:grid; grid-template-columns: 1.6fr .9fr; gap:22px}
.intro-copy p{margin:0 0 10px}

.contributors .contributors-head{
  display:flex; justify-content:space-between; align-items:center; margin-bottom:8px
}
.contrib-list{display:flex; flex-direction:column; gap:10px; margin:0; padding:0; list-style:none}
.contrib-item{display:grid; grid-template-columns:48px 1fr auto; align-items:center; gap:10px}
.contrib-item img{width:48px; height:48px; border-radius:50%; display:block; border:1px solid var(--line)}
.contrib-info span{display:block; color:var(--muted); font-size:12px}
.contrib-actions{display:flex; gap:6px}

/* journey */
.journey-section {
  padding: 40px 0px 80px 0;
  text-align: center;
}

.gallery {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scrollGallery 45s linear infinite;
}

.gallery-content {
  display: flex;
  gap: 16px;
}

.gallery img {
  width: 400px;
  height: max-content;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.journey-section h2 {
  margin-bottom: 60px;
  font-size: 2rem;
  color: white;
}

/* Smooth endless scroll */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 🟢 Extra slow for very small screens */
@media (max-width: 480px) {
  .gallery-track {
    animation-duration: 45s; /* extra smooth on small phones */
  }
}


/* About copy */
.about-copy p{margin:0 0 10px}

/* Testimonials */
.testimonials{margin-top:18px}
.carousel-controls{
  display:flex; justify-content:space-between; align-items:center; margin:4px 0 10px
}
.dots{display:flex; gap:6px}
.dots button{
  width:8px; height:8px; border-radius:999px; border:0; background:#d1d5db; cursor:pointer
}
.dots button[aria-current="true"]{background:var(--brand)}
.testi .quote{min-height:180px}
.quote-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px}
.rating i{color:#f59e0b}
.quote p{margin:0 0 12px}
.quote-foot{display:flex; gap:10px; align-items:center}
.quote-foot img{width:40px; height:40px; border-radius:50%; border:1px solid var(--line)}

/* Contact / Review form */
.contact-wrap{margin-top:22px}
.contact-head h3{margin:0 0 10px}
.form label{display:block; font-weight:600; font-size:14px; color:var(--ink)}
.form input,.form textarea{
  width:100%; margin-top:6px; margin-bottom:12px; padding:10px 12px;
  border:1px solid var(--line); border-radius:10px; background:#fff; font:inherit
}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.form-foot{display:flex; gap:12px; align-items:center}
.form-note{color:var(--muted)}

/* Related Projects */
.cards-3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.proj img{width:100%; height:180px; object-fit:cover; border-radius:12px}
.proj-body{margin-top:10px}
.proj-body h4{margin:0 0 6px}
.proj-meta{display:flex; gap:14px; list-style:none; color:var(--muted); padding:0; margin:8px 0 0}


/* FAQ */
@import url('https://fonts.googleapis.com/css?family=Hind:300,400&display=swap');

.faq {
  padding-bottom:100px;
  margin-top: 80px;
}

.faq h2{
  width: 90%;
  place-self: center;
  margin: 20px auto;
}

.accordion{
  width: 90%;
  margin: 0 auto;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: white;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--bpPrimary-300);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--bpPrimary-200);
  border: 1px solid #3163ff;
}

.accordion button .accordion-title {
  padding: 0 1.5em 0 0;
  display: flex;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: var(--bpPrimary-300);
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height:20em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}


/* Footer */
.footer{background:rgba(255, 255, 255, 0.1); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); backdrop-filter: blur(25px);}
.foot__top{display:grid; grid-template-columns:1.2fr 1fr 2fr; gap:20px;}
.foot__brand{display:flex; align-items:center; gap:10px; justify-content: center;}
.foot__logo{width:250px; height:auto; border-radius:10px; background:none;}
.foot__social{display:flex; align-items:center}
.foot__social .ico{border-radius:6px; background-color: transparent; color:#5b84ff;}
.foot__links{display:flex; gap:18px; align-items:center; flex-wrap:wrap; justify-content: center; padding-bottom: 20px;}
.foot__links a{color:#ededed; text-decoration:none}
.foot__bottom{display:flex; justify-content:space-between; align-items:center; gap:16px; padding:12px 12px; border-top:1px solid var(--line); justify-content: center;}
.fa {font-size: 30px;}
.ico, .ph-ico{width:28px; height:28px; border-radius:8px; background:#d3d8e7; margin:0 auto 6px; color: rgb(85, 26, 139);}

.toTop{
  position:fixed; right:16px; bottom:16px; width:40px; height:40px; border-radius:999px;
  border:1px solid var(--line); background:#fff; box-shadow:var(--shadow); cursor:pointer; display:none;
}


/* Responsive */
@media (max-width:902px){
  .nav{display:none}
  .hamburger{display:block;border: none; right:10px;}
  .foot__top{grid-template-columns:1fr}
    .supervisor {
    flex-direction: column;
    width: 300px;
  }

  .supervisor .member-photo img {
    height: auto;
  }

  .member-info {
    text-align: center;
  }

  .member-info h3{
    text-align: center;
  }

  .role {
    text-align: center;
  }

  .social-links{
    margin: 0 auto;
  }

}
@media (max-width:900px){
  .intro-grid{grid-template-columns:1fr}
  .gallery .slide{height:200px}
  .cards-3{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .grid-2{grid-template-columns:1fr}
  .cards-3{grid-template-columns:1fr}
  .carousel-btn{display:none} /* swipe on mobile */
  .footer-grid{grid-template-columns:1fr}
  .footer-links{grid-template-columns:1fr 1fr}
    .supervisor {
    flex-direction: column;
    width: 300px;
  }

  .supervisor .member-photo img {
    height: auto;
  }

  .member-info {
    text-align: center;
  }
}
@media (max-width: 480px) {
    .topbar__inner{width: max-content;}
      .supervisor {
    flex-direction: column;
    width: 300px;
  }

  .supervisor .member-photo img {
    height: auto;
  }

  .member-info {
    text-align: center;
  }
  }
      @media (max-width: 344px) {
  .topbar {width: max-content;}
    .supervisor {
    flex-direction: column;
    width: 300px;
  }

  .supervisor .member-photo img {
    height: auto;
  }

  .member-info {
    text-align: center;
  }
  }


  
/* About Us */
.arch_contact_us_duplicate * {
  font-family: Nunito, sans-serif;
}

.arch_contact_us_duplicate .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 25px;
}

.arch_contact_us_duplicate .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.arch_contact_us_duplicate .responsive-cell-block {
  min-height: 75px;
}

.arch_contact_us_duplicate .responsive-container-block.big-container {
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  /* padding-right: 50px; */
  padding-bottom: 0px;
  /* padding-left: 50px; */
  height: 100%;
  /* background-color:#f1f1f1; */
}

.arch_contact_us_duplicate .responsive-container-block.container {
  max-width: 1140px;
  justify-content: space-evenly;
  padding-top: 60px;
  padding-bottom:50px;
  margin-bottom: 40px;
}

.arch_contact_us_duplicate .text-blk.section-head {
  font-size: 60px;
  line-height: 65px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
}

.arch_contact_us_duplicate .text-blk.section-subhead {
  font-size: 14px;
  line-height: 18px;
  color: #7e7e7e;
}

.arch_contact_us_duplicate .input {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    height: 54px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: none;
    border-right-style: none;
    /* border-bottom-style: none; */
    border-left-style: none;
    border-top-color: #cbcbcb;
    border-right-color: #cbcbcb;
    /* border-bottom-color: #cbcbcb; */
    border-left-color: #cbcbcb;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    padding-top: 1px;
    padding-right: 16px;
    padding-bottom: 1px;
    padding-left: 16px;
    font-size: 16px;
}

.arch_contact_us_duplicate .textinput {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    height: 175px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: none;
    border-right-style: none;
    /* border-bottom-style: none; */
    border-left-style: none;
    border-top-color: #cbcbcb;
    border-right-color: #cbcbcb;
    /* border-bottom-color: #cbcbcb; */
    border-left-color: #cbcbcb;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 1px;
    padding-left: 16px;
    font-size: 16px;
}

.arch_contact_us_duplicate .button {
  height: 50px;
  min-width: 100%;
  font-size: 16px;
  color: white;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: #767676;
  border-right-color: #767676;
  border-bottom-color: #767676;
  border-left-color: #767676;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  margin-top: 0px;
  margin-right: 0px;  
  margin-left: 0px;
  background: linear-gradient(180deg, #5b84ff, #3866ff);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s;
}

.arch_contact_us_duplicate .button:hover {
  transform: scale(1.02);
}


.arch_contact_us_duplicate .social-media-icon-container {
  display: flex;
  max-width: 400px;
  justify-content: space-evenly;
}

.arch_contact_us_duplicate .input-element {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(25px);
  color: white;
}


@media (max-width: 1024px) {
  .arch_contact_us_duplicate .text-blk.section-head {
    font-size: 55px;
    line-height: 60px;
    padding-top:20px;
  }
}

@media (max-width: 768px) {
  .arch_contact_us_duplicate .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-ipadp-6.wk-desk-5 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-mobile-12.wk-ipadp-6.wk-desk-5.wk-tab-10 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
    text-align: center;
  }

  .arch_contact_us_duplicate .input {
    height: 45px;
  }

  .arch_contact_us_duplicate .responsive-container-block.container {
    justify-content: space-evenly;
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
    padding:20px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-mobile-12.wk-desk-5.wk-tab-10.wk-ipadp-5 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .arch_contact_us_duplicate .text-blk.section-head {
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    padding-top: 20px;
  }

  .arch_contact_us_duplicate .input {
    height: 40px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-ipadp-6.wk-desk-5 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-mobile-12.wk-ipadp-6.wk-desk-5.wk-tab-10 {
    text-align: left;
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .arch_contact_us_duplicate .responsive-container-block.big-container {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .arch_contact_us_duplicate .icon-block {
    width: 25px;
    height: 25px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 100%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}


/* Cards */
.card{
  background: rgba(255, 255, 255, 0.05); border-radius:20px; padding:18px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); backdrop-filter: blur(20px);border:none; transform: 0.3s;
}

.card:hover{
  background: rgba(255, 255, 255, 0.05); border-radius:20px; padding:18px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); backdrop-filter: blur(20px); border:none; transform: translateY(-5px) scale(1.02);
}

.vm__grid{display:grid; gap:18px; grid-template-columns:1fr 1fr; } 

.OurTeam {
  margin-bottom: 30px;
  font-size: 2rem;
  color: white;
  text-align: center;
  margin-top: 100px;
}



/* Team Section */
.team-section {
  position: relative;
  padding: 40px 20px 80px;
  text-align: center;
}

.team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px; /* spacing between rows */
}

/* top row (first 2 members) */
.team-row-top,
.team-row-bottom {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  width: 100%;
}

.team-row-top .team-member {
  flex: 1 1 250px;
  max-width: 300px;
}

.team-row-bottom .team-member {
  flex: 1 1 250px;
  max-width: 300px;
}


/* Staircase Effect */
.team-member:nth-child(1) {
  margin-top: 0px;   /* Highest */
}
.team-member:nth-child(2) {
  margin-top: 0px;  /* Middle */
}
.team-member:nth-child(3) {
  margin-top: 0px;  /* Lowest */
}

/* Team Member Card */
.team-member {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  text-align: center;
  max-width: 280px;
  border-radius: 20px;
  transition: transform 0.3s;
}

.team-member:hover {
transform: translateY(-5px) scale(1.03);
}

.supervisor {
  display: flex;
  align-items: stretch; /* make both sides equal height */
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  transition: transform 0.3s;
  max-width: 800px;
  overflow: hidden;
  padding-bottom: 20px;
}

.supervisor:hover {
  transform: scale(1.03);
}

/* Image side */
.supervisor .member-photo {
  flex: 1; /* image takes equal space height-wise */
  display: flex;
  align-items: stretch;
}

.supervisor .member-photo img {
  width: 100%; /* image fully fills left side width */
  height: 100%; /* ensures full height coverage */
  object-fit: cover;
  display: block;
}

/* Info side */
.member-info {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-info h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}

.role {
  font-size: 0.95rem;
  margin-bottom: 10px;
}


.member-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Name and Role */
.team-member h3 {
  font-size: 20px;
  margin-top: 15px;
  font-weight: bold;
}

.team-member .role {
  font-size: 15px;
  color: white;
}

/* Social Links */

.social-links {
  padding-top:20px;
}

.social-links a {
  color: #428bca;
  font-size: 18px;
  margin: 0 8px;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-links a:hover {
  color: #0056b3;
  transform: translateY(-5px) scale(1.03); box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 992px) {
  .vm__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    margin-top: 0 !important;
  }

  .team-section::before {
    height: 80px;
  }
}