/* ========================
   Base / Theme
======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'MyFontRegular';
  src: url('../font/fonde/fonde.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyFontBold';
  src: url('../font/fonde/fonde.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --magenta: #EA33F7;
  --neon: #EA33F7;
  --ink: #111;
  --muted: #888;
  --paper: #f6f5f7;
}

html,
body {
  height: 100%;
}

body {
  overflow: hidden;
  display: flex;
  background: #000;
  font-family: 'Poppins', sans-serif;
  color: #111;
}

/* ========================
   Mobile Menu Toggle Button
======================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  width: 44px;
  height: 44px;
  background: #EA33F7;
  border: none;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Fixed 50px header */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 300;               /* above sidebar */
  background: rgba(0, 0, 0, 0);
  color: #EA33F7;
    font-family: 'Poppins', sans-serif;
  display: none;              /* hidden by default (Section 1) */
  align-items: start;
}
.site-header__inner{
  max-width: 1200px;
    padding:  16px;
    font-size: 20px;
      font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: .5px;
    margin-left: 20px;
    text-decoration: underline;
    text-decoration-thickness: from-font;
}

/* When active (sections 2..7), show it */
.site-header.is-on{
  display: flex;
}

/* If your scroller is a custom container, give it top padding so content isn't hidden under header */
@media (min-width: 0px){
  .model-xt-container.has-header-padding{
    padding-top: 50px; /* matches header height */
  }
}

/* ========================
   Scroll container + common section
======================== */
.model-xt-container {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  
}

.model-xt-section {
  width: 100%;
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: grid;
  place-items: center;
  padding: 24px;
  
}

.section-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;  /* ensure baseline */
  z-index: 1;
  transition: transform 0.6s ease;
}

.model-xt-section:hover .section-bg {
  transform: scale(1.05);
}

.model-xt-content {
  position: relative;
  z-index: 2;
    font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  background: transparent;
  padding: 20px 40px;
  border-radius: 10px;
  justify-content: end;

}

.into-page-head{
  display: flex;
  flex-direction: row;
  align-items: center;

}
.into-page-head2{
    display: flex;
  flex-direction: column;
  align-items: center;
}

.model-xt-heading {
  font-size: 3rem;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

.model-xt-subheading {
  font-size: 2rem;
  font-weight: 300;
  color: #EA33F7;
    font-family: 'Poppins', sans-serif;
}

.model-xt-name-heading {
  font-size: 3.2rem;
  font-weight: 300;
  color: #EA33F7;
  text-decoration: underline;
  text-decoration-thickness: from-font;
   font-family: 'MyFontBold', sans-serif;
}

.model-xt-name-sub {
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--magenta);
}
.model-gost-head{
   color: #202020;
    font-size: 3.2rem;
    font-family: 'Poppins', sans-serif;
  font-weight: 300;padding: 0px 10px;
  margin-bottom: .8rem;
}
.model-gost-head2{
    color: #202020;
    font-size: 3.2rem;
    font-family: 'Poppins', sans-serif;
  font-weight: 300;padding: 0px 10px;
}
/* Mobile: show left side of the image */
@media (max-width: 640px){
  .section-bg{
    object-position: left center;   /* anchor to left */
    transform: none;                /* optional: remove hover zoom on mobile */
  }

}



/* If even more left is needed, you can push to extreme: */
@media (max-width: 640px){
  .section-one .section-bg{
    object-position: 10% center;    /* tweak per section as needed (0% = extreme left) */
  }
}

/* Background Swiper covers full section, sits behind */
.bg-swiper-wrap{
  position: absolute;
  inset: 0;              /* top:0 right:0 bottom:0 left:0 */
  z-index: 0;            /* behind content */
}
.bg-swiper{
  width: 100%;
  height: 100%;
}
.bg-swiper .swiper-slide{
  position: relative;
}
.bg-swiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* full-bleed background */
  display: block;
}

/* Foreground content above */
.section-one .model-xt-content{
  position: relative;
  z-index: 2;
  color: #fff;
  left: 100px;
}
@media (max-width: 769px) {
  /* your landscape tablet styles */
    .into-page-head{
flex-direction: column;
        place-items: center;

}
.section-one .model-xt-content {
  left: 0;
}
}
@media (max-width: 425px){
  .into-page-head{
  flex-direction: column;
  place-items: start;

}
}
/* Hide line break by default (desktop & tablet) */
.mobile-break {
  display: none;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}
/* Bullets only, bottom center */
.bg-swiper .swiper-pagination{
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: auto;  /* allow click on bullets */
}
.bg-swiper .swiper-pagination-bullet{
  width: 10px; height: 10px;
  background: rgba(255,255,255,.6);
  opacity: 1;
  margin: 0 6px !important;
}
.bg-swiper .swiper-pagination-bullet-active{
  background: #EA33F7; /* theme neon/magenta */
}

/* Optional: dark overlay to improve text contrast */
.section-one::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.45));
  z-index:1;          /* between bg and content */
  pointer-events:none;
}

/* Mobile: focus left area if needed */
@media (max-width: 640px){
  .bg-swiper .swiper-slide img{
    object-position: left center;
  }
}
.section-one{ position: relative; min-height: 100vh; overflow: hidden; }
.bg-swiper-wrap{ position: absolute; inset: 0; z-index: 0; }
.bg-swiper{ width: 100%; height: 100%; }
.bg-swiper .swiper-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
/* Desktop default already cover center me theek hai */
@media (max-width: 640px){
  /* Fallback center for all */
  .bg-swiper .swiper-slide img{
    object-fit: cover;
    object-position: center center;
  }
  /* Index-based targeting (loop-safe) */
  .bg-swiper .swiper-slide[data-swiper-slide-index="0"] img{
    object-position: left center;
  }
  .bg-swiper .swiper-slide[data-swiper-slide-index="1"] img{
    object-position: right center;
  }
  .bg-swiper .swiper-slide[data-swiper-slide-index="2"] img{
    object-position: center center;
  }
}
/* Tablet (641px–1024px): same logic; zarurat ho to fine-tune percentages */
@media (min-width: 641px) and (max-width: 1024px){
  .bg-swiper .swiper-slide img{
    object-fit: cover;
    object-position: center center;
  }
  .bg-swiper .swiper-slide[data-swiper-slide-index="0"] img{
    object-position: 15% center;   /* left focus slightly inward for tablet */
  }
  .bg-swiper .swiper-slide[data-swiper-slide-index="1"] img{
    object-position: 85% center;   /* right focus slightly inward for tablet */
  }
  .bg-swiper .swiper-slide[data-swiper-slide-index="2"] img{
    object-position: center center; /* center */
  }
}


/* ========================
   Sidebar
======================== */
.model-xt-sidebar {
  position: fixed;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  height: 80%;
  display: flex;
  align-items: center;
  z-index: 500;
  transition: transform 0.4s ease, left 0.4s ease;
}

.sidebar-close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 50%;
  font-family: 'MyFontBold', sans-serif;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sidebar-close:hover {
  background: rgba(255, 58, 242, 0.4);
}

.model-xt-sidebar ul {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0;
}

/* 1) Sidebar ko isolate karo taaki blending predictable ho */
.model-xt-sidebar{
  position: fixed; /* already hai */
  isolation: isolate; /* new: isolate stacking context */ /* [web:225] */
  z-index: 100;
}

/* 2) Rail pseudo ko blend-mode difference do */
.model-xt-sidebar ul{
  position: relative; /* ensure pseudo absolute can position in it */
}
.model-xt-sidebar ul::before{
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #fff;           /* solid white base */
  mix-blend-mode: difference;       /* auto invert vs background */ /* [web:208][web:209] */
  pointer-events: none;
  z-index: 2;
}


.model-xt-sidebar li {
  position: relative;
  padding-left: 30px;
  margin: 35px 0;
  font-size: 24px;
  color: #888;
  font-family: 'MyFontBold', sans-serif;
  cursor: pointer;
  transition: all 0.4s ease;
}

.model-xt-sidebar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #555;
  z-index: 100;
  transition: all 0.4s ease;
}

.model-xt-sidebar li.active::before {
  background-color: var(--neon);
  border : 2px solid #7473734b;
}

.model-xt-sidebar li.active {
  color: var(--neon);
  font-weight: 400;
    font-family: 'MyFontBold', sans-serif;
}

.model-xt-sidebar li span {
  opacity: 0;
  transform: translateX(-10px);
  display: inline-block;
  transition: all 0.4s ease;
}

.model-xt-sidebar li.active span {
  opacity: 1;
  transform: translateX(0);
}

.model-xt-sidebar li:not(.active)::after {
  content: attr(data-section);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}
/* Hide number on hover and show name */
.model-xt-sidebar li:hover::after {
  opacity: 0;      /* hide the number */
}

.model-xt-sidebar li:hover span {
  opacity: 1;      /* show the name */
  transform: translateX(0);
}
/* Defaults for light sections */
.model-xt-sidebar ul::before{
  background-color: #000; /* rail black by default */
  mix-blend-mode: normal; /* no blending needed */
}

/* When current section is dark */
.model-xt-sidebar.on-dark ul::before{
  background-color: #7473734b; /* rail white on dark bg */
}


/* ========================
   Section 2: About + Swiper
======================== */
.about-section {
  position: relative;
  background: var(--paper);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
}

.about-watermark {
  position: absolute;
  right: clamp(0px, 4vw, 40px);
  top: clamp(8px, 6vh, 120px);
  font-weight: 600;
  line-height: 0.9;
    font-family: 'Poppins', sans-serif;
  color: rgba(0, 0, 0, 0.06);
  font-size: clamp(140px, 34vw, 300px);
  pointer-events: none;
  user-select: none;
}

.about-wrap {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(10px, 3.5vw, 10px);
  align-items: start;
  justify-content: end;
  padding-left: 150px;
}

.about-title {
  color: #EA33F7;
  font-weight: 400;
    font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  margin: 0 0 6px;
}

.about-sub {
  color: #EA33F7;
  font-weight: 300;
    font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  margin: 0 0 14px;
}

.about-h4 {
  color: #EA33F7;
  text-decoration: underline;
  font-weight: 300;
    font-family: 'Poppins', sans-serif;
  margin: 18px 0 8px;
  font-size: clamp(16px, 1.6vw, 40px);
}

.about-copy p {
  color: #222;
  line-height: 1.65;
  margin: 10px 0;
    font-family: 'Poppins', sans-serif;
}

.vitals {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 18px;
  margin-bottom: 40px;
}

.vitals > div span {
  display: block;
    font-family: 'Poppins', sans-serif;
  color: #EA33F7;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 5px;
}

.vitals > div strong {
  color: #222222;
  font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.about-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: clamp(320px, 38vw, 420px);
  justify-self: end;
}

.about-swiper {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: none;
  background: #00000000;
}

.about-swiper .swiper-wrapper {
  align-items: stretch;
}

.about-swiper .swiper-slide {
  height: auto;
}

.about-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: transparent;
}

.about-swiper .swiper-button-prev,
.about-swiper .swiper-button-next {
  top: auto;
  bottom: 2px;
  color: #EA33F7;
    font-family: 'MyFontRegular', sans-serif;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
}

.about-swiper .swiper-button-prev:after,
.about-swiper .swiper-button-next:after {
  font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.about-swiper .swiper-button-prev {
  left: 50%;
  transform: translateX(-60px);
}

.about-swiper .swiper-button-next {
  left: 50%;
  transform: translateX(20px);
}

.about-swiper .swiper-button-prev:hover,
.about-swiper .swiper-button-next:hover {
  background: #EA33F7;
    font-family: 'Poppins', sans-serif;
  color: #fff !important;
}

.swiper-pagination {
  margin-left: 50px;
  padding-bottom:20px;
  display: block !important;
}
.model-mt-social-icons {
  display: flex;
  justify-content: start;
  gap: 15px;
}

.model-mt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #5c5b5b;
  border-radius: 4px;
  color: #6f6f6f;
    font-family: 'Poppins', sans-serif;
  font-size: 22px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.model-mt-icon:hover {
  color: white;
  background-color: #EA33F7;
  border-color: #EA33F7;
  
}
/* Default Swiper buttons */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: '<' !important; /* ← left arrow for prev */
  font-size: 56px !important;
  font-weight: bold;
  color: #EA33F7; /* default black */
  transition: color 0.3s ease;
}

/* Right arrow */
.swiper-button-next::after {
  content: '>' !important; /* → right arrow */
}

/* Hover effect */
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #fff; /* turns white on hover */
}

/* Work section */


/* Work section */

.work-ds-section{
  position:relative;
  background:#f5f4f6;
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:clamp(24px,4vw,56px);
  overflow:hidden;
  
}
.work-ds-watermark{
  position:absolute;
  right:clamp(0px,4vw,60px);
  top:clamp(8px,6vh,120px);
  font-weight:400;
  line-height:.9;
    font-family: 'poppins', sans-serif;
  color:rgba(0,0,0,.05);
  font-size:clamp(160px,34vw,420px);
  pointer-events:none;
  user-select:none;
}
.work-ds-wrap{ width:min(1000px,100%); position:relative ;right: 150px;}

/* Swiper base */
.work-ds-swiper{ width:100%; padding-bottom: 72px; }
.work-ds-swiper .swiper-wrapper{ align-items:flex-start; }

/* Each slide can contain 1 or 2 figures stacked */
.work-ds-swiper .swiper-slide{
  min-height: 100%;           /* stability */
  height:auto;
  padding: clamp(10px, 1.6vw, 16px);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: clamp(12px, 1.6vw, 36px);
}

/* Card look */
.work-ds-card{
  background:#ffffff00;
  border-radius:0px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:2px;
  align-items:center;
  margin:0;
  box-shadow:none;
}
.work-ds-card img{ width:100%; height:100%; object-fit:contain; display:block }

/* Size variants (fixed) */
.work-ds-tall{
  width: clamp(150px, 21vw, 250px);
  aspect-ratio: 1 / 5;          /* tall portraits */
}
.work-ds-mini{
  width: clamp(130px, 16vw, 200px);
  aspect-ratio: 2/ 3;          /* square thumbs */
}
.work-ds-wide{
  width: clamp(180px, 24vw, 320px);
  aspect-ratio:4 / 3;          /* landscape poster (was 1/3, now correct) */
}


/* Captions */
.work-ds-title{
  margin:6px 0 2px;
  text-align:center;
  font-weight:400;
  color:#111;
    font-family: 'Poppins', sans-serif;
  font-size:clamp(14px,1.2vw,18px);
}
.work-ds-year{
  margin:0 0 8px;
  text-align:center;
  color:#444;
    font-family: 'Poppins', sans-serif;
  font-size:clamp(12px,1vw,14px);
}

/* Nav buttons (visible on top) */
.work-ds-nav{
  position:absolute;
  right:clamp(20px,4vw,40px);
  display:flex;
  gap:8px;
  z-index: 5;                 /* above watermark and slides */
}
.work-ds-prev, .work-ds-next{
  background:#00000000;
  color:#fff;
  border:1px solid #ffffff00;
  padding:0px;
  border-radius:8px;
  cursor:pointer;
  font-weight:400;
  letter-spacing:.3px;
}

.work-ds-prev img, .work-ds-next img{
  width:50px; height:50px; object-fit:contain; pointer-events:none;
  filter: invert(0); /* white arrow look on dark button; remove if your PNG already white */
  transition: transform .2s ease;
}
.work-ds-prev:hover img, .work-ds-next:hover img{ transform: scale(1.12); }

/* Sirf is specific section ke liye width clamp *//* Center the whole swiper in the container */
.bsb-work-swiper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0;
  margin-left: 120px !important;
}

/* Center slides and add consistent gaps */
.bsb-work-swiper .swiper-wrapper {
  /* justify-content: center; */
  align-items: stretch;
}

/* Make each slide neatly spaced */
.bsb-work-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: start;
  
}
@media(max-width:425px){
  .bsb-work-swiper .swiper-slide {
  align-items: start;
  margin-left: 20px;
  
}
.bsb-work-swiper{
  margin-left: 0 !important;
  max-width: 1000px;

}

}


/* Add spacing between stacked images */
.bsb-col-double {
  display: flex;
  flex-direction: column;
  gap: 50px !important; /* space between stacked images */
}

/* Optional: give images soft edges and balanced look */
.bsb-work-swiper figure {
  border-radius: 0px;
  overflow: hidden;
}

/* Make sure images scale smoothly */
.bsb-card-img {
  display: block;
  width: 100% !important;
  height: auto;
  object-fit: contain;
}

/* Swiper base */
.bsb-work-swiper .swiper-wrapper{ align-items:flex-start; }

/* Bottom nav */
.bsb-work-nav{ display:flex; gap:10px; justify-content:center; margin-top:16px; }
.bsb-work-prev,.bsb-work-next{
  background:#000; color:#fff; border:1px solid #fff; border-radius:8px;
  padding:10px 16px; cursor:pointer; font-weight:600;
}


/* Mobile single-column width tweak */
@media(max-width:640px){
  .bsb-col-single,.bsb-col-double{ width:min(78vw,320px); }
}
:root { --col-h: clamp(420px, 48vw, 560px); --gap: 12px; }

.bsb-col-double{ height: var(--col-h); gap: var(--gap); }
.bsb-col-double figure{ height: calc((var(--col-h) - var(--gap)) / 2); }

.bsb-col-single{ height: var(--col-h); }
.bsb-col-single figure{ height: 100%; }

.bsb-card-img{ width:100%; height:100%; object-fit:cover; aspect-ratio:auto; }
.bsb-work-nav{
  display:flex; gap:10px; justify-content:end; margin-top:16px;
}
.bsb-work-prev,.bsb-work-next{
  background:transparent; border:none; padding:0; cursor:pointer;
  width:70px; height:70; display:grid; place-items:center;
}
.bsb-work-prev img,.bsb-work-next img{
  width: 70px; height: 70px; object-fit:contain; pointer-events:none;
  transition: transform .2s ease, filter .2s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.bsb-work-prev:hover img,.bsb-work-next:hover img{
  transform: scale(1.08);
}

/* Swiper base */
.bsb-work-swiper .swiper-wrapper{ align-items:flex-start; }

/* Bottom nav */
.bsb-work-nav{ display:flex; gap:10px; justify-content:end; margin-top:16px; }
.bsb-work-prev,.bsb-work-next{
  background:#00000000; color:#fff; border:1px solid #ffffff00;;
  padding:0px ; font-weight:600;
}
@media(max-width:425px){
.bsb-work-nav {
  justify-content: center;
  margin-left: 30px;
  max-width: 425px;
}
}
/* ========================
   Section 4: Portfolio
======================== */
.portfolio-section {
  position: relative;
  background: #000;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
}

.portfolio-watermark {
  position: absolute;
  right: clamp(0px, 4vw, 40px);
  top: clamp(8px, 6vh, 120px);
  font-weight: 600;
  line-height: 0.9;
    font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.11);
  font-size: clamp(140px, 34vw, 300px);
  pointer-events: none;
  user-select: none;
}

.portfolio-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  margin-left: 100px;
}

.portfolio-swiper {
  flex: 1;
  max-width: 1100px;
  overflow: visible;
}

.portfolio-swiper .swiper-wrapper {
  align-items: stretch;
}

.portfolio-swiper .swiper-slide {
  height: auto;
}

.portfolio-card {
  position: relative;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.fullscreen-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.764);
    font-family: 'Poppins', sans-serif;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.fullscreen-icon:hover {
  background: #ff3af2;
  transform: scale(1.1);
}

.portfolio-button-prev,
.portfolio-button-next {
  position: relative;
  flex-shrink: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.portfolio-button-prev {
  left: 60px;
}

.portfolio-button-next {
  right: 60px;
}

.portfolio-button-prev img,
.portfolio-button-next img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.portfolio-button-prev:hover img,
.portfolio-button-next:hover img {
  transform: scale(1.12);
}

.portfolio-copyright {
  position: absolute;
  bottom: clamp(-60px, 2vh, -100px);
  right: clamp(24px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(16px, 1.2vw, 14px);
  margin: 0;
}

.portfolio-swiper .swiper-slide {
  transform: scale(0.72);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  z-index: 1;
}

.portfolio-swiper .swiper-slide-active {
  transform: scale(1.08);
  opacity: 1;
  z-index: 10;
}

.portfolio-swiper .swiper-slide-prev,
.portfolio-swiper .swiper-slide-next {
  transform: scale(0.85);
  opacity: 1;
  z-index: 5;
}

/* Lightbox Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.image-modal.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  animation: zoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 40px;
    font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s ease;
}

.modal-close:hover {
  color: #EA33F7;
}
@media (max-width: 425px) {
.portfolio-card{
margin: 0px;
max-width: 300px;
}
}
/* ========================
   Section 5: Awards
======================== */
.awards-section {
  position: relative;
  background: #f2f1f3;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
}

.awards-watermark {
  position: absolute;
  right: clamp(0px, 4vw, 40px);
  top: clamp(8px, 6vh, 120px);
  font-weight: 600;
    font-family: 'Poppins', sans-serif;
  line-height: 0.9;
  color: rgba(0, 0, 0, 0.06);
  font-size: clamp(120px, 32vw, 300px);
  pointer-events: none;
  user-select: none;
}

.awards-wrap {
  width: min(1000px, 100%);
  display: grid;
  grid-template-columns: 40% 60%;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  margin-left: 150px;
}

.awards-image-card {
  background: #0e0e0e;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: 3/5;
}

.awards-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
}

.awards-content {
  position: relative;
  background: #ffffff00;
  border-radius: 0px;
  padding: clamp(18px, 2.6vw, 36px) clamp(18px, 3vw, 44px);
  box-shadow: none;
}

.awards-content .accent-bar {
  position: absolute;
  right: 0;
  top: clamp(20px, 2vw, 28px);
  bottom: clamp(20px, 2vw, 28px);
  width: 6px;
  border-radius: 8px;
  background: var(--neon);
}

.awards-heading {
  font-weight: 500;
  letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
  color: #EA33F7;
  font-size: clamp(22px, 2.6vw, 36px);
  margin: 0 0 clamp(12px, 1.4vw, 18px);
}

.awards-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(12px, 1.8vw, 20px);
}

.awards-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 12px;
}



.awards-list .text h3 {
  margin: 0 0 4px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.25;
  color: #222;
  font-weight: 200;
}

.awards-list .text p {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 16px);
  color: #555;
}

.awards-scroll {
  --row: clamp(48px, 4.4vw, 64px);
  --gap: clamp(12px, 1.8vw, 20px);
  max-height: calc((var(--row) * 5) + (var(--gap) * 4));
  overflow-y: scroll;
  padding-right: 8px;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: var(--neon) #f6e1f5;
}

.awards-scroll::-webkit-scrollbar {
  width: 10px;
}

.awards-scroll::-webkit-scrollbar-track {
  background: #f6e1f5;
  border-radius: 10px;
}

.awards-scroll::-webkit-scrollbar-thumb {
  background: var(--neon);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255, 58, 242, 0.35) inset;
}

.awards-scroll::-webkit-scrollbar-thumb:hover {
  background: #ff71f6;
}
.dot-img {
  width: 22px;      /* adjust size as you like */
  height: 22px;
  object-fit: contain;
  margin-right: 10px;  /* spacing between icon and text */
  vertical-align: middle;
}


/* ========================
   Section 6: Projects
======================== */
.projects-section {
  position: relative;
  background: #f4f3f5;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
}

.projects-watermark {
  position: absolute;
  right: clamp(0px, 4vw, 40px);
  top: clamp(8px, 6vh, 120px);
  font-weight: 600;
  line-height: 0.9;
  color: rgba(0, 0, 0, 0.06);
  font-size: clamp(140px, 34vw, 300px);
  pointer-events: none;
  user-select: none;
}

.projects-2col {
  width: min(1000px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  margin-left: 150px;
}

.projects-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.projects-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: clamp(12px, 1.6vw, 20px);
}

.projects-list .num {
  font-weight: 700;
    font-family: 'Poppins', sans-serif;
  color: #d1a84e;
  min-width: 3ch;
  font-size: clamp(20px, 2.4vw, 32px);
}

.projects-list .info h3 {
  margin: 0 0 6px;
  font-weight: 500;
  color: #111;
  font-size: clamp(18px, 2vw, 26px);
}

.projects-list .info p {
  margin: 2px 0;
  color: #444;
  font-size: clamp(13px, 1.2vw, 16px);
}

/* ========================
   Section 7: Contact
======================== */
.contact-section {
  position: relative;
  background: #1a1a1a;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
}

.contact-watermark {
  position: absolute;
  right: clamp(0px, 4vw, 40px);
  top: clamp(8px, 6vh, 120px);
  font-weight: 600;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(140px, 34vw, 300px);
  pointer-events: none;
  user-select: none;
}

.contact-wrap {
  width: min(800px, 100%);
  text-align: center;
}

.contact-heading {
    font-family: 'Poppins', sans-serif;
  color: #EA33F7;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 12px;
  font-weight: 600;
}

.contact-tagline {
    font-family: 'Poppins', sans-serif;
  color: #ccc;
  font-size: clamp(16px, 1.8vw, 20px);
  margin: 0 0 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 58, 242, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 58, 242, 0.1);
  border-color: rgba(255, 58, 242, 0.5);
  transform: translateY(-4px);
}

.contact-item i {
    font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #EA33F7;
  margin-bottom: 16px;
}

.contact-item h4 {
  color: #fff;
    font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 500;
}

.contact-item a,
.contact-item p {
  color: #bbb;
    font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #EA33F7;
}

.contact-social {
  text-align: center;
}

.contact-social h4 {
  color: #fff;
    font-family: 'Poppins', sans-serif;
  font-size: 20px;
  margin: 0 0 20px;
  font-weight: 500;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 58, 242, 0.3);
  border-radius: 50%;
  color: #EA33F7;
    font-family: 'Poppins', sans-serif;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-icon:hover {
  background: #EA33F7;
  color: #000;
  border-color: #EA33F7;
  transform: scale(1.1);
}/* ========================
   Section 7: Contact/Let's Talk (TD)
======================== */
.contact-section-td {
  position: relative;
  background: #000;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
}

.contact-watermark-td {
  position: absolute;
  right: clamp(0px, 4vw, 40px);
  top: clamp(8px, 6vh, 120px);
  font-weight: 600;
  line-height: 0.9;
    font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(140px, 34vw, 300px);
  pointer-events: none;
  user-select: none;
}

.contact-layout-td {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 40px);
  align-items: center;
  padding: 0 clamp(20px, 4vw, 40px);
  margin-left: 200px;
}

/* Left: Contact Info */
.contact-info-td {
  color: #fff;
    font-family: 'Poppins', sans-serif;
  padding-right: clamp(0px, 4vw, 60px);
}

.contact-main-heading-td {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 clamp(24px, 3vw, 26px);
  color: #fff;
}

.contact-main-heading-td .highlight-td {
  color: #EA33F7;
    font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.manager-name-td {
  font-size: clamp(32px, 4vw, 26px);
  font-weight: 600;
  color: #EA33F7;
    font-family: 'Poppins', sans-serif;
  margin: 0 0 clamp(20px, 2.5vw, 18px);
  letter-spacing: -0.5px;
}

.location-list-td {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
  flex-wrap: wrap;
  margin-bottom: clamp(12px, 4vw, 15px);
}

.location-dot-td {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EA33F7;
  box-shadow: 0 0 8px rgba(255, 58, 242, 0.6);
}

.location-text-td {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  color: #fff;
    font-family: 'Poppins', sans-serif;
}

.contact-methods-td {
  display: grid;
  gap: clamp(8px, 2vw, 8px);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.contact-method-td {
  position: relative;
  padding-left: 0;
}

.method-label-td {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  color: #fff;
  display: block;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.method-label-td:hover {
  color: #EA33F7;
}

.qr-section-td {
  margin-top: clamp(10px, 4vw, 10px);
}

.qr-label-td {
  font-size: clamp(14px, 1.6vw, 14px);
  font-weight: 400;
  color: #EA33F7;
    font-family: 'Poppins', sans-serif;
  margin: 0 0 12px;
}

.qr-code-td {
  width: clamp(120px, 14vw, 130px);
  height: auto;
  display: block;
  border: 4px solid #fff;
  border-radius: 0px;
  filter: invert(1) brightness(2);
}

/* Right: Model Image */
.contact-model-image-td {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(400px, 50vh, 500px);
}

.contact-model-image-td img {
  width: 100%;
  max-width: clamp(300px, 45vw, 600px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 40px rgba(255, 58, 242, 0.3));
}

/* Responsive for tablets */
@media (max-width: 1024px) {
  .contact-layout-td {
    grid-template-columns: 1fr;
    gap: 48px;
    
  }
  
  .contact-info-td {
    padding-right: 0;
    text-align: left;
  }
  
  .contact-model-image-td {
    min-height: 500px;
    justify-content: center;
  }
  
  .contact-model-image-td img {
    max-width: 400px;
  }
}



/* Responsive for mobile */
@media (max-width: 768px) {
  .contact-layout-td {
    padding: 0 20px;
    gap: 32px;
    margin-left: 0px;
    margin-top: 60px;
  }
  
  .contact-main-heading-td {
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .manager-name-td {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .location-list-td {
    gap: 10px;
    margin-bottom: 28px;
  }
  
  .location-dot-td {
    width: 6px;
    height: 6px;
  }
  
  .location-text-td {
    font-size: 15px;
  }
  
  .contact-methods-td {
    gap: 12px;
    margin-bottom: 28px;
  }
  
  .method-label-td {
    font-size: 16px;
  }
  
  .qr-section-td {
    margin-top: 28px;
  }
  
  .qr-label-td {
    font-size: 13px;
  }
  
  .qr-code-td {
    width: 100px;
  }
  
  .contact-model-image-td {
    min-height: 400px;
  }
  
  .contact-model-image-td img {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .contact-main-heading-td {
    font-size: 18px;
  }
  .portfolio-swiper .swiper-slide {
  margin-left: 8px;
}
  
  .manager-name-td {
    font-size: 28px;
  }
  
  .location-text-td {
    font-size: 14px;
  }
  
  .method-label-td {
    font-size: 15px;
  }
  
  .contact-model-image-td {
    min-height: 350px;
    justify-content: start;
    margin-left: 50px;
  }
  
  .contact-model-image-td img {
    max-width: 240px;
  }
}
/* <!-- Footer --> */
.custom-footer {
  background: #000;
  color: #fff;
  padding: 80px 24px;
  font-family: 'Poppins', sans-serif;
  margin-left: 600px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Default (centered) */
.custom-footer {
  text-align: center;
}

/* Right-aligned version */
.custom-footer.right-align {
  text-align: right;
}

.footer-name {
  color: #EA33F7;
    font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight:400;
  margin-bottom: 16px;
}

.footer-roles {
  color: #fff;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  margin-bottom: 24px;
}

.footer-roles .dot {
  color: #EA33F7;
    font-family: 'Poppins', sans-serif;
  margin: 0 8px;
  font-size: 18px;
}

.footer-madeby {
  color: #ccc;
  font-size: clamp(12px, 1.8vw, 15px);
  margin-bottom: 40px;
}

.footer-madeby .heart {
  color: red;
}

.footer-madeby .flag {
  width: 18px;
  height: 12px;
  vertical-align: middle;
  margin: 0 4px;
}

.footer-madeby .studio-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-madeby .studio-link:hover {
  color: #EA33F7;
}

.footer-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-btn {
    font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 14px 40px;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #EA33F7;
  color: #ffffff;
  border-color: #EA33F7;
}
.footer-roles {
    font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end; /* keep right aligned */
}

.footer-roles .box {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #EA33F7;
  margin: 0 6px;

}


/* Responsive behavior: center-align on small screens */
@media (max-width: 768px) {
  .custom-footer.right-align {
    text-align: center;
    margin-left: 0px;
  }
  .footer-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }
  .awards-wrap{
    margin-left: 0px;
  }
  .model-xt-section {
    padding: 0px;
  }
}


/* ========================
   Responsive
======================== */
@media (max-width: 1024px) {
  .model-xt-sidebar {
    left: 50px;
  }
  .about-wrap {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
 
  .awards-wrap {
    grid-template-columns: 1fr;
  }
  .projects-2col {
    grid-template-columns: 1fr;
  }
  .portfolio-slider-wrap {
    gap: 16px;
    margin-left: 0;
  }
  .portfolio-button-prev,
  .portfolio-button-next {
    width: 48px;
    height: 48px;
  }
  .portfolio-button-prev {
    left: 0;
  }
  .portfolio-button-next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .model-xt-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 260px;
    height: 100%;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    padding: 60px 20px 20px;
    transform: none;
    border-right: 1px solid rgba(255, 58, 242, 0);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 150;
  }
  .model-xt-sidebar.active {
    left: 0;
  }
  .sidebar-close {
    display: block;
  }
  .model-xt-sidebar ul::before {
    display: none;
  }
  .model-xt-sidebar li {
    padding-left: 40px;
    margin: 25px 0;
    font-size: 26px;
  }
  .model-xt-sidebar li span {
    opacity: 1;
    transform: translateX(0);
  }
  .model-xt-sidebar li:not(.active)::after {
    left: 0;
    opacity: 0.6;
  }
  .model-xt-heading {
    font-size: 2rem;
  }
  .model-xt-subheading {
    font-size: 1.6rem;
  }
  .model-xt-name-heading {
    font-size: 2.4rem;
  }
  .model-xt-name-sub {
   font-size: 2.6rem;
    left: 0;
    margin-top: 20px;
  }
  .vitals {
    grid-template-columns: repeat(3, 1fr);
  }
}



@media (max-width: 640px) {
  .model-xt-content {
      padding: 15px 1px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        /* gap: 200px; */
        place-items: start;

  }
  .section-one .model-xt-content{
left: 0;
  }
  .model-xt-name-heading {
    font-size: 2.8rem;
  }
  .model-xt-name-sub {
    font-size: 2.8rem;
  }
  .model-xt-heading {
    font-size: 2.8rem;
  }
  .portfolio-slider-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .portfolio-button-prev,
  .portfolio-button-next {
    width: 100%;
    height: 48px;
    max-width: 280px;
    left: 0;
    right: 0;
  }
  .portfolio-swiper .swiper-slide {
    transform: scale(0.88);
    opacity: 0.6;
  }
  .portfolio-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }
  .portfolio-swiper .swiper-slide-prev,
  .portfolio-swiper .swiper-slide-next {
    transform: scale(0.92);
    opacity: 0.75;
  }
 
  .modal-image {
    max-width: 95%;
    max-height: 85%;
  }
  .modal-close {
    top: 16px;
    right: 0px;
    font-size: 40px;
  }
  .vitals {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-icons {
    justify-content: center;
  }
}
@media (max-width: 425px) {
  .model-xt-section {
    place-items: start;
    padding: 5px 2px;
    align-items: end;
  }
  .model-xt-content {
    padding: 15px 1px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        /* gap: 200px; */
        place-items: start;
  }
   .section-one .model-xt-content{
left: 0;
  }
  .model-gost-head2 {
    text-align: start;
    font-size: 2.2rem;
  }
  .about-wrap {
    padding-left: 10px;
    margin-top: 60px;
  }
  .awards-wrap{
    margin-left: 0px;
    margin-top: 60px;
  }
  .projects-2col{
    margin-left: 0px;
    padding: 10px;
    margin-top: 60px;
  }
  .contact-layout-td{
    margin-top: 60px;
  }
  .custom-footer.right-align {
    margin-left: 0px;
   margin-right: 12px;
   width: 100%;
   display: flex;
   justify-content: center;
  }
  .model-xt-section {
    padding: 0px;
  }
  .footer-roles {
    font-size: 10px;
    justify-content: center
  }
  .footer-btn {

  }
}

@media (prefers-reduced-motion: reduce) {
  .section-bg,
  .model-xt-section:hover .section-bg {
    transition: none;
  }
}
/* Mobile Top Bar */
.mobile-topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: end;
  gap: 12px;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0);
  z-index: 350;
}
.mobile-topbar .mobile-section-label{
  color: #EA33F7; font-weight:400; font-size:16px;
}
@media(max-width:768px){
  .mobile-topbar{ display:flex; }
  .model-xt-container{ padding-top:56px; }
}

/* Sidebar: vertical rail visible on mobile too */
.model-xt-sidebar .sidebar-rail{
  position:absolute; left: 8px; top: 0; width: 2px; height: 100%;
  background-color:rgb(255 255 255 / 11%);
}

/* Sidebar mobile full screen */
@media (max-width: 768px) {
  .model-xt-sidebar {
    position: fixed;
    left: 0; top: 0;
    width: 100%;    /* 100% width requested */
    height: 100%;
    background: rgba(17,17,17,0.98);
    padding: 60px 24px 24px 32px;
    transform: translateX(-100%);
    transition: transform .35s ease;
    border-right: 1px solid rgba(255, 58, 242, 0);
    z-index: 500;
  }
  .model-xt-sidebar.active{ transform: translateX(0); }
  .sidebar-close{ display:block; right:16px; top:16px; }
  .model-xt-sidebar ul::before{ display:none; }
  .model-xt-sidebar li{ margin: 26px 0; }
  .model-xt-sidebar li span{ opacity:1; transform:none; }
  .model-xt-sidebar li:not(.active)::after{ left:40px; opacity:.6; }
  .footer-roles {

  }
}
/* Topbar label default (text) */
.mobile-section-label{
  background: transparent;
  border: none;
    font-family: 'Poppins', sans-serif;
  color: #fff; font-weight:600; font-size:16px;
  padding:8px 14px; border-radius: 999px; cursor:pointer;
  line-height: 1; display:inline-flex; align-items:center; gap:8px;
}



/* Column shells */
.bsb-col{ display:flex; flex-direction:column; gap:12px; align-items:center; }
.bsb-col-single{ width: clamp(180px, 22vw, 240px); }
.bsb-col-double{ width: clamp(180px, 22vw, 240px); }


/* Figcaption spacing */
.bsb-cap{ padding-top:8px; }



/* Base: show number from data-section */
.model-xt-sidebar li::after{
  content: attr(data-section);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: opacity .2s ease;
}

/* Active: show label (span already inside li). Hide number when active */
.model-xt-sidebar li.active::after{
  content: none;
}

/* Hide span by default except when active or hover/focus */
.model-xt-sidebar li span{
  opacity: 0;
  transform: translateX(-8px);
  transition: all .2s ease;
  pointer-events: none;
}

/* On hover/focus: show label, hide number for that li */
.model-xt-sidebar li:hover::after,
.model-xt-sidebar li:focus-within::after{
  content: none;
}
.model-xt-sidebar li:hover span,
.model-xt-sidebar li:focus-within span{
  opacity: 1;
  transform: translateX(0);
}

/* Keep active label visible */
.model-xt-sidebar li.active span{
  opacity: 1;
  transform: translateX(0);
}
/* Default fallback (light) */
.model-xt-sidebar ul::before{
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #7473734b; /* light */
  pointer-events: none;
  z-index: 500;
}

.model-xt-sidebar.on-dark ul::before{
  background-color: #b4b2b24b; /* dark */
}

.model-xt-sidebar.on-light ul::before{
  background-color: #7473734b; /* light */
}

/* CTA buttons */
.contact-methods-td { display:flex; flex-direction: column; gap:8px; margin-top:18px; }
.contact-method-td { display:inline-block; }

.cta-btn{
  display:inline-block;
  padding:5px;
  border-radius:0;
  background:transparent;
  color:var(--cta-text, #fff);
    font-family: 'Poppins', sans-serif;
  text-decoration:none;
  font-weight:300;
  letter-spacing:0.2px;
  border:none;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s;
  box-shadow: none;
}

/* hover / focus for accessibility */
.cta-btn:hover,
.cta-btn:focus{
  transform: translateY(-4px);
  box-shadow: none;
  opacity: 0.98;
  outline: none;
  color: #EA33F7;
}

/* smaller on very small screens */
@media (max-width:420px){
  .cta-btn{ padding:5px; font-size:14px; border-radius:0px; }
}

