@import url('https://fonts.cdnfonts.com/css/atten-new');

:root{
  --c-bg-hero:#FEA800;
  --c-bg-black:#000000;
  --c-white:#ffffff;
  --c-muted:#b8b8b8;
  --c-line:#2a2a2a;
  --c-accent:#FEA800;
  --space-x: clamp(20px, 4vw, 105px);
  --space-y: clamp(24px, 5vw, 78px);
  --radius: 0px;
  --shadow-lg: 0 30px 60px rgba(0,0,0,.4);
  --max-content-width: 1440px;
  --navbar-height: clamp(70px, 10vw, 120px);
}

*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family: 'Atten New', sans-serif;
  background: var(--c-bg-black);
  min-height:100vh;
  color:var(--c-white);
  overflow-x: hidden;
}

/* ===============================
   Hero Section
   =============================== */
.hero-section {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: calc(var(--navbar-height) + clamp(40px, 8vw, 60px));
  min-height: 100vh;
}

.hero-bg-morphico {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image-morphico {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: brightness(0.75);
}

.hero-bg-morphico::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-wrapper {
  padding: 0 clamp(20px, 4vw, 40px);
   margin: 0 auto;
}

.container {
  max-width: var(--max-content-width);
 
  width: 100%;
  display: grid;
  /* box-sizing: border-box; 
  padding: var(--space-y) var(--space-x); */
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 6vw, 80px);
  position: relative; 
  z-index: 10;
}

.content {
  color: var(--c-white);
}

.breadcrumb {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: clamp(16px, 2vw, 30px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); 
}

.breadcrumb .work {
  opacity: .7;
}

.breadcrumb .project-name {
  opacity: 1;
}

.breadcrumb .separator {
  opacity: .7;
}

h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: clamp(12px, 2vw, 20px);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.mockup-container {
  position: relative;
  width: 100%;
  height: clamp(240px, 28vw, 358.2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-image:hover {
  transform: scale(1.02);
}

.original-mockup {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===============================
   About Section
   =============================== */
.about-section{
   background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
}
.about-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
}
.about-section h2{
  font-size: clamp(24px,5vw,60px);
  font-weight:700;
  margin-bottom: clamp(16px,4vw,36px);
  line-height:1.2;
}
.about-description{
  font-size: clamp(16px,1.8vw,20px);
  line-height:1.8;
  color:var(--c-muted);
  margin-bottom: clamp(24px,4vw,36px);
  max-width: 100%;
}
.info-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px,4vw,36px);
}
.info-item h3{
  font-size: clamp(16px,1.8vw,20px);
  font-weight:500;
  color:#888;
  margin-bottom: 16px;
  margin-top: 16px;
  letter-spacing: .06em;
}
.info-item p{
  font-size: clamp(24px,4vw,36px);
  font-weight:500;
  color:var(--c-white);
  line-height:1.4;
}
.full-width {
    grid-column: 1/-1;
    border-top: 1px solid #333;
}

/* ===============================
   Challenge & Solution
   =============================== */
.challenge-solution-section{
  background:#000;
  color:#fff;
  padding: var(--space-y) var(--space-x);
}
.cs-container{
  max-width: 1440px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap: clamp(24px,6vw,80px);
}
.cs-column{position:relative}
.cs-icon{width: clamp(48px,6vw,82.73px);height: clamp(40px,5vw,70px);margin-bottom: clamp(24px,2vw,36px)}
.cs-column h2{
  font-size: clamp(24px,5vw,48px);
  font-weight:700;
  margin-bottom: clamp(24px,2.5vw,36px);
  line-height:1.2;
}
.cs-list{list-style:none;padding:0}
.cs-list li{
  margin-bottom: clamp(24px,2.5vw,24px);
  padding-left:0;
  line-height:1.8;
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.cs-list li::before{
  content:"◆";
  color:#fff;
  font-size:12px;
  opacity:.5;
  flex-shrink:0;
  margin-top:4px;
}
.cs-list li strong{
  font-size: clamp(16px,2vw,20px);
  font-weight:600;
  color:#fff;
  display:block;
  margin-bottom:8px;
}
.cs-list li span{
  font-size: clamp(16px,1.6vw,20px);
  color:var(--c-muted);
  line-height:1.6;
}
.cs-list-content{flex:1}

/* ===============================
   UX/UI Comparison Section
   =============================== */
.comparison-section {
    background: #000;
    color: #fff;
    padding: var(--space-y) var(--space-x);
}

.comparison-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(40px, 20vw, 400px);
    margin-bottom: clamp(32px, 5vw, 48px);
    max-width: 100%;
    flex-wrap: wrap;
}

.comparison-label {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    text-align: center;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    height: auto;
}

.before-after-container {
    position: relative;
    overflow: hidden;
    background: #5349D5;
    padding: clamp(16px, 3vw, 48px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: auto;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.before-after-slider:active {
    cursor: grabbing;
}

.before-image,
.after-image {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.before-image {
    z-index: 1;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.01s linear;
}

.before-image img,
.after-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

/* Premium Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    transform: translateX(-50%);
    transition: left 0.01s linear;
}

.handle-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 5%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.2) 95%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    box-shadow: 
        0 0 0 4px rgba(0, 0, 0, 0.8),
        0 0 0 6px rgba(255, 255, 255, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.before-after-slider:active .handle-circle {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
        0 0 0 4px rgba(0, 0, 0, 0.8),
        0 0 0 8px rgba(255, 255, 255, 0.3),
        0 12px 32px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.handle-circle svg {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.5));
    transition: transform 0.3s ease;
}

.before-after-slider:active .handle-circle svg:first-child {
    transform: translateX(-2px);
}

.before-after-slider:active .handle-circle svg:last-child {
    transform: translateX(2px);
}

/* Hidden Range Input */
.slider-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: grab;
    z-index: 5;
    margin: 0;
}

.slider-input:active {
    cursor: grabbing;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .handle-circle {
        width: 45px;
        height: 45px;
        padding: 0 10px;
    }
    
    .handle-circle svg {
        width: 18px;
        height: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .after-image,
    .slider-handle,
    .handle-circle,
    .handle-circle svg {
        transition: none;
    }
}



/* ===============================
   Visual Identity
   =============================== */
.visual-identity-section{
  background:#000;color:#fff;padding: var(--space-y) var(--space-x);
}
.vi-container{max-width:1440px;margin:0 auto}
.vi-header{margin-bottom: clamp(24px,5vw,60px)}
.vi-label{
  font-size: clamp(14px,2vw,20px);
  font-weight:400;color:#fff;letter-spacing:2px;margin-bottom:20px;position:relative;opacity:.7;
  padding-left: clamp(28px,3vw,50px);
}
.vi-label::before{
  content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
  width: clamp(20px,3vw,35px);height:2px;background:var(--c-accent)
}
.vi-title{
  font-size: clamp(24px,6vw,60px);
  font-weight:600;line-height:1.3;
}
.vi-title .highlight{color:var(--c-accent)}

.vi-scroll-wrapper{overflow:hidden;width:100%;margin-bottom: clamp(30px, 4vw, 50px)}
.vi-grid{
  display:flex;
  gap: clamp(20px,3.5vw,40px);
  scroll-behavior:smooth;
  transition: transform .4s ease;
}
.vi-card{position:relative;flex:0 0 calc(50% - clamp(10px,1.75vw,20px));min-width: clamp(280px,45vw,600px)}
.vi-card-image{
  width:100%;height: clamp(220px, 28vw, 390px);background:#1a1a1a;overflow:hidden;margin-bottom:30px;border-radius: var(--radius);
}
.vi-card-image img{width:100%;height:100%;object-fit:cover}
.vi-card-title{font-size: clamp(20px,3vw,24px);font-weight:600;margin-bottom:12px;color:#fff}
.vi-card-description{font-size: clamp(16px,1.6vw,20px);line-height:1.4;color:var(--c-muted)}

/* ===============================
   vi SLIDER CONTROLS
   =============================== */
.vi-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.5vw, 32px);
    width: 100%;
    margin-top: clamp(24px, 4vw, 36px);
}

.web-ui-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.5vw, 32px);
    width: 100%;
    margin-top: clamp(24px, 4vw, 36px);
}

.vi-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-right: auto;
}

.web-ui-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-right: auto;
}

.vi-progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.vi-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #537993 0%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.web-ui-progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.web-ui-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #537993 0%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.vi-navigation {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 16px);
}

.vi-arrow {
    width: clamp(40px, 4vw, 50px);
    height: clamp(40px, 4vw, 50px);
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.vi-arrow:hover {
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.vi-arrow:active {
    transform: scale(0.95);
}

.vi-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vi-arrow:disabled:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1);
}

.vi-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(11px, 1.4vw, 16px);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.vi-cta-link svg {
     width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: #FEA800; 
    flex-shrink: 0;
}

.vi-cta-link:hover {
    color: #FEA800;
    gap: clamp(7px, 1.2vw, 12px);
}

.vi-cta-link:hover svg {
    transform: translate(3px, -3px);
    color: #F77847; 
}

.vi-progress-line{position:absolute;width:100%;height:100%;background:var(--c-line)}
.vi-progress-fill{
  position:absolute;height:100%;background:var(--c-accent);width:50%;transition:width .4s ease;border-radius:2px
}

.progress-line{position:absolute;width:100%;height:100%;background:var(--c-line)}
.progress-fill{
  position:absolute;height:100%;background:var(--c-accent);width:50%;transition:width .4s ease;border-radius:2px
}

.vi-arrow{
  width: clamp(36px,4vw,50px);height: clamp(36px,4vw,50px);
  background:transparent;color:#fff;font-size: clamp(16px,2vw,24px);
  cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s ease
}
.vi-arrow:hover{color:#ffffff}
.vi-arrow:disabled{opacity:.3;cursor:not-allowed}
.vi-arrow:disabled:hover{background:transparent;color:#fff}

/* ===============================
   Design System
   =============================== */
.design-system-section{
  background:#000;color:#fff;padding: var(--space-y) var(--space-x);
}
.ds-container{max-width:1440px;margin:0 auto}
.ds-header{margin-bottom: clamp(24px,5vw,60px)}
.ds-label{
  font-size: clamp(12px,1.5vw,20px);font-weight:400;color:#fff;letter-spacing:2px;margin-bottom: clamp(16px,2.5vw,30px);
  position:relative;opacity:.7;padding-left: clamp(28px,3vw,50px)
}
.ds-label::before{
  content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
  width: clamp(20px,3vw,35px);height:2px;background:var(--c-accent)
}
.ds-title{
  font-size: clamp(26px,6vw,60px);font-weight:600;line-height:1.3;max-width:1100px
}
.ds-title .highlight{color:var(--c-accent)}
.ds-image-wrapper{width:100%;position:relative;border-radius: var(--radius);overflow:hidden}
.ds-image{
  width:100%;height: auto;display:block;object-fit:cover
}

/* ===============================
   Web UI Section
   =============================== */
.web-ui-section{
  background:#000;color:#fff;padding: var(--space-y) var(--space-x);
}
.web-ui-container{max-width:1440px;margin:0 auto}
.web-ui-header{margin-bottom: clamp(24px,5vw,60px)}
.web-ui-label{
  font-size: clamp(12px,1.5vw,20px);font-weight:400;color:#fff;letter-spacing:2px;margin-bottom: clamp(16px,3vw,30px);
  position:relative;opacity:.7;padding-left: clamp(28px,3vw,50px)
}
.web-ui-label::before{
  content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
  width: clamp(20px,3vw,35px);height:2px;background:var(--c-accent)
}
.web-ui-title{
  font-size: clamp(26px,6vw,60px);font-weight:600;line-height:1.3;max-width:1100px
}
.web-ui-title .highlight{color:var(--c-accent)}

.web-ui-slider-container{
  position:relative;width:100%;overflow:hidden;cursor:pointer;
}
.web-ui-slider{
  display:flex;gap:0;transition:transform .5s cubic-bezier(.4,0,.2,1);align-items:center;
}
.web-ui-slide{
  flex:0 0 100%;width:100%;display:flex;justify-content:center;align-items:center;
}
.web-ui-image{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}

.glass-arrow-btn{
  width: clamp(56px,8vw,90px);
  height: clamp(56px,8vw,90px);
  border:none;background:transparent;border-radius:50%;position:absolute;top:50%;
  transform:translateY(-50%);padding:0;display:flex;align-items:center;justify-content:center;cursor:pointer;outline:none;z-index:10;transition:all .3s ease
}
.glass-arrow-btn::before{
  content:"";position:absolute;inset:0;border-radius:50%;
  background: linear-gradient(135deg, rgba(98,188,255,.2) 0%, rgba(255,255,255,.23) 90%);
  box-shadow: 0 0 16px 2px rgba(255,255,255,.25), 0 1px 3px rgba(0,0,0,.08) inset;
  backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px);z-index:0
}
.glass-arrow-btn::after{
  content:"";position:absolute;top: clamp(8px,1.2vw,14px);left: clamp(8px,1.2vw,14px);
  width: calc(100% - clamp(16px,2.4vw,28px));height: calc(100% - clamp(16px,2.4vw,28px));
  background:#121212;border-radius:50%;z-index:1;box-shadow:0 0 0 2px rgba(30,130,255,.10) inset
}
.glass-arrow-btn svg{z-index:2;position:relative;pointer-events:none}
.glass-arrow-btn.web-ui-prev{left: clamp(12px, 2.5vw, 30px)}
.glass-arrow-btn.web-ui-next{right: clamp(12px, 2.5vw, 30px)}
.glass-arrow-btn{opacity:0;visibility:hidden;pointer-events:none}
.web-ui-slider-container:hover .glass-arrow-btn,
.web-ui-slider-container.active .glass-arrow-btn{opacity:1;visibility:visible;pointer-events:auto}
.glass-arrow-btn[disabled]{opacity:0!important;visibility:hidden!important;pointer-events:none!important}

/* ===============================
   Impact & Achievements Section
   =============================== */
.impact-section {
  background: var(--c-bg-black);
  color: var(--c-white);
  padding: var(--space-y) var(--space-x);
}

.impact-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.impact-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.impact-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative; 
}

.impact-slider {
  display: flex;
  gap: 0;;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.impact-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%; 
  flex-shrink: 0; 
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.impact-slide.active {
  opacity: 1;
  visibility: visible; 
  pointer-events: auto;
}   

.impact-quote-block {
  position: relative;
  margin-bottom: clamp(24px, 4vw, 36px);
   flex: 1; 
}

.quote-icon {
  width: clamp(72px, 10vw, 96px);
  height: clamp(54px, 8vw, 72px);
  margin-bottom: clamp(16px, 2vw, 24px);
  display: block;
  opacity: 0.9;
}

.quote-text {
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: 1.7;
  color: var(--c-white);
  font-weight: 400;
  margin: 0;
}

.impact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  margin-top: auto;
}

.author-card {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(16px, 2vw, 24px) clamp(20px, 3vw, 32px);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex: 1;
  min-width: 280px;
  transition: border-color 0.3s ease;
}

.author-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.author-photo {
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--c-white);
  margin: 0;
}

.author-title {
  font-size: clamp(12px, 1.4vw, 16px);
  color: var(--c-muted);
  margin: 0;
}

.brand-logo {
  padding: clamp(20px, 3vw, 32px) clamp(32px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(180px, 20vw, 240px);
  transition: background 0.3s ease;
}

/* Slide 1*/
.impact-slide:nth-child(1) .brand-logo {
  background: linear-gradient(120deg, #262B7E 0%, #29166F 100%);
}

/* Slide 2  */
.impact-slide:nth-child(2) .brand-logo {
  background: linear-gradient(120deg, #ad6c5f 0%, #8F5B51 100%);
}

/* Slide 3 */
.impact-slide:nth-child(3) .brand-logo {
  background: linear-gradient(360deg, #4E1379 0%, #8437AE 50%, #D26CFB 100%);
}

/* Slide 4*/
.impact-slide:nth-child(4) .brand-logo {
  background: linear-gradient(120deg, #ad5c62 0%, #892029 100%);
}

/* Slide 5 */
.impact-slide:nth-child(5) .brand-logo {
  background: linear-gradient(120deg,#394F5D 0%, #536c7c 100%);
}

/* Slide 6 */
.impact-slide:nth-child(6) .brand-logo {
  background: linear-gradient(120deg, #f3ead4 0%, #FFF9EB 100%);
}

/* Slide 7 */
.impact-slide:nth-child(7) .brand-logo {
  background: linear-gradient(120deg, #2e2d2c 50%, #2e2d2c 100%);
}

/* Active slide brand logo glow effect */
.impact-slide.active .brand-logo {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


.brand-logo img {
  max-width: 100%;
  height: clamp(32px, 4vw, 48px);
  object-fit: contain;
}

.impact-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.impact-arrow {
  width: clamp(36px, 4vw, 50px);
  height: clamp(36px, 4vw, 50px);
  background: transparent;
  border: none;
  color: #fff;
  font-size: clamp(16px, 2vw, 24px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  font-weight: 400;
  line-height: 1;
}

.impact-arrow svg {
  width: 20px;
  height: 20px;
}

.impact-arrow:hover:not(:disabled) {
  color: #ffffff;
}

.impact-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.impact-arrow:disabled:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 768px) {
  .impact-slider {
    gap: 20px;
    min-height: 450px; 
  }

   .impact-slide {
    min-height: 450px;
  }
  
  .impact-footer {
    flex-direction: column;
    align-items: flex-start;
     margin-top: auto; 
  }
  
  .author-card,
  .brand-logo {
    min-width: 100%;
  }
  
  .impact-navigation {
    justify-content: right;
  }
  
  .quote-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  
  .impact-slider {
    gap: 20px;
    min-height: 500px; 
  }
  
  .impact-slide {
    min-height: 500px;
  }
  
  .quote-icon {
    width: 72px;
    height: 54px;
  }
  
  .impact-arrow {
    width: 38px;
    height: 38px;
  }
  
  .impact-arrow svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .impact-arrow {
    width: 36px;
    height: 36px;
  }
  
  .impact-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* ===============================
   CTA Banner Section
   =============================== */
.cta-banner-section{
  background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
  color:var(--c-white);
  padding: clamp(48px, 10vw, 80px) var(--space-x);
  width:100%;position:relative;overflow:hidden;
}
.cta-banner-content{
  max-width:1440px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;
  gap: clamp(24px, 4vw, 48px);flex-wrap:wrap;
}
.cta-banner-title{
  font-size: clamp(36px, 6vw, 80px);font-weight:600;line-height:1.2;color:var(--c-bg-black);
  max-width:700px;flex:1;
}
.cta-banner-button{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cta-banner-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-banner-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 6px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.cta-banner-button:hover svg {
  transform: translate(3px, -3px);
}

.cta-banner-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-banner-button:hover::before {
  left: 100%;
}

/* ===============================
Next Work Section
=============================== */
.next-work-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
}

.next-work-container {
    max-width: 1440px;
    margin: 0 auto;
}

.next-work-heading {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: clamp(24px, 5vw, 36px);
    color: var(--c-white);
}

.next-work-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: clamp(24px, 3.5vw, 44px);
}

.next-work-grid {
    display: flex;
    gap: clamp(12px, 2vw, 24px);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-work-card {
    flex: 0 0 calc(38.5% - clamp(8px, 1.35vw, 16px));
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: var(--c-white);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.next-work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.card-content {
    z-index: 2;
}

.card-title {
    font-size: clamp(24px, 4vw, 24px);
    font-weight: 700;
    margin-bottom: clamp(10px, 1.8vw, 18px);
    color: var(--c-white);
}

.card-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    margin-bottom: clamp(12px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.95);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(6px, 1vw, 10px);
}

.card-tag {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.card-tag::after {
    content: '•';
    margin-left: clamp(6px, 1vw, 10px);
}

.card-tag:last-child::after {
    display: none;
}

.card-mockup {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 24px;
}

.mockup-image {
    width: 100%;
    max-width: clamp(320px, 24vw, 320px);
    height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.mecon-logo {
    max-width: clamp(320px, 22vw, 320px);
}

.next-work-progress-wrap {
    position: relative;
    width: 100%;
    height: 3px;
    background: transparent;
    margin-bottom: clamp(16px, 2.5vw, 28px);
    overflow: hidden;
}

.next-work-progress-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
}

.next-work-progress-fill {
    position: absolute;
    height: 100%;
    background: #FEA800 !important;
    width: 0% !important;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-work-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nw-btn {
    width: clamp(32px, 3.8vw, 46px);
    height: clamp(32px, 3.8vw, 46px);
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: clamp(14px, 1.8vw, 22px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nw-btn:hover:not(:disabled) {
    background: #fff;
    color: #000;
}

.nw-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===============================
   Media Queries
   =============================== */
@media (max-width:1200px){
  .hero-section{padding: 30px var(--space-x)}
  .mockup-container{height: clamp(300px,40vw,450px)}
  .comparison-header{gap: clamp(120px,20vw,300px)}
  .image-comparison{height: clamp(360px,45vw,500px)}
  .slider-button{width:60px;height:60px}
   .next-work-card {
        flex: 0 0 calc(50% - clamp(6px, 1vw, 12px));
    }
  .cta-banner-section{padding:60px var(--space-x)}
}

@media (max-width:768px){
  .hero-section{padding: 20px calc(var(--space-x) - 20px);align-items:flex-start}
  .container {
      padding: 24px 20px;
      grid-template-columns: auto;
  }
  .content{order:1}
  .mockup-container{order:2;min-height:300px;margin-bottom:30px;height:auto}
  .info-grid{grid-template-columns:1fr;gap:16px}
  .cs-container{grid-template-columns:1fr;gap:24px}
  .comparison-header{gap:150px;margin-bottom:24px}
  .image-comparison{height: clamp(320px,52vw,420px)}
  .slider-button{width:50px;height:50px}
  .slider-button .arrow-left,.slider-button .arrow-right{font-size:24px}
  .glass-arrow-btn.web-ui-prev{left:16px}
  .glass-arrow-btn.web-ui-next{right:16px}
  .impact-slider {
    min-height: 350px;
  }
  
  .impact-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .author-card {
    min-width: 100%;
  }
  
  .brand-logo {
    min-width: 100%;
  }
  
  .impact-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .impact-arrows {
    justify-content: center;
  }
   .next-work-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

  .cta-banner-section{padding:60px calc(var(--space-x) - 20px)}
  .cta-banner-content{flex-direction:column;align-items:flex-start;text-align:left}
  .cta-banner-title{max-width:100%}
  .cta-banner-button{width:100%;justify-content:center}

  .vi-card{flex:0 0 100%;min-width:100%}
  .vi-progress-fill{width:25%}
}

@media (max-width:480px){
   .hero-section {
    padding: 16px 20px;
    padding-top: 80px;
    padding-bottom: 24px; 
    min-height: auto;
  }
  
  .breadcrumb {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  h1 {
    font-size: clamp(26px, 8vw, 40px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .mockup-container {
    max-height: 320px;
    margin-bottom: 0; 
  }
  
  .original-mockup {
    max-height: 300px;
    height: auto;
  }

  .mockup-container{min-height:250px;margin-bottom:20px}
  .comparison-header{gap:80px;margin-bottom:24px}
  .image-comparison-wrapper{padding:15px;height:100%}
  .slider-button{width:45px;height:45px;border:3px solid transparent}
  .slider-button::before{inset:-3px}
  .slider-button .arrow-left{left:8px}
  .slider-button .arrow-right{right:8px}
  .vi-label{padding-left:35px}
  .vi-label::before{width:20px}
  .vi-card-image{height:250px}
  .ds-header{margin-bottom:30px}
  .ds-label{padding-left:35px;margin-bottom:20px}
  .ds-label::before{width:20px}
  .glass-arrow-btn.web-ui-prev{left:10px}
  .glass-arrow-btn.web-ui-next{right:10px}

.impact-slider {
    min-height: 320px;
  }
  
  .quote-icon {
    width: 72px;
    height: 54px;
  }
  
  .impact-arrow {
    width: 38px;
    height: 38px;
  }
  
  .impact-arrow svg {
    width: 18px;
    height: 18px;
  }

    .card-mockup {
        margin-top: 16px;
    }
  

  .cta-banner-section{padding:50px 16px}
  .cta-banner-content{gap:24px}
}

@media (max-width:360px){
  .hero-section{padding:10px 16px}
  .mockup-container{min-height:200px}
  .comparison-header{gap:60px}
  .image-comparison-wrapper{height:350px;padding:10px}
  .slider-button{width:40px;height:40px}
  .ds-label{font-size:12px}
  .cta-banner-section{padding:40px 16px}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important}
  .mockup-image,
  .progress-fill{transition:none!important}
}

/* ===============================
   HOME PAGE - HERO SECTION
   =============================== */
.home-hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: visible; 
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-height) + clamp(40px, 8vw, 60px)) var(--space-x) clamp(40px, 6vw, 80px);
}


.home-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.home-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.home-bg-video.active-video {
    opacity: 1;
    z-index: 1;
}

.home-hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 2;
}

/* ===============================
   HOME - Navbar
   =============================== */
.home-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: clamp(16px, 4vw, 36px) var(--space-x);
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.home-nav-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-logo img {
    height: clamp(32px, 4vw, 48px);
    width: auto;
}

.home-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1.5vw, 15px) clamp(20px, 2.5vw, 28px);
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    border: none; 
    color: #000; 
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 700; 
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.home-contact-btn svg {
    width: clamp(14px, 1.6vw, 18px);
    height: clamp(14px, 1.6vw, 18px);
    color: #000;
}

/* ===============================
   HOME - Hero Content Container
   =============================== */
.home-hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--max-content-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    margin-top: clamp(24px, 5vw, 48px);
    flex-direction: column;
    gap: clamp(36px, 5vw, 36px);;
}

.home-hero-text {
    max-width: 100%;
}

.home-hero-title {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===============================
   HOME - Hero Mockup
   =============================== */
.home-hero-mockup {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.home-mockup-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    animation: none; 
}

@keyframes homeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* ===============================
   HOME - Hero Mockup
   =============================== */
.home-hero-mockup {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* visible se hidden — badge bahar na jaye */
    cursor: none; /* Default cursor hide inside mockup */
}

.home-mockup-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    animation: none;
}

@keyframes homeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===============================
   HERO MOCKUP VIDEO
   =============================== */
.home-mockup-video {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

/* ===============================
   HERO THUMBNAIL IMAGE
   =============================== */
#heroThumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* ===============================
   CIRCULAR BADGE - Mouse Follow
   =============================== */
.home-circular-badge {
    position: absolute; /* JS se top/left nahi, transform se move hoga */
    top: 0;
    left: 0;
    width: clamp(130px, 12vw, 170px);
    height: clamp(130px, 12vw, 170px);
    opacity: 0;
    z-index: 10;
    pointer-events: none; /* Badge se click pass-through hoga video tak */
    transform: translate(-50%, -50%); /* Center on cursor point */
    transition: opacity 0.3s ease;
    will-change: transform; /* GPU acceleration for smooth animation */
}

/* Play button ko pointer events chahiye */
.home-circular-badge .play-pause-btn {
    pointer-events: all;
}

/* Hover pe opacity (fallback, JS bhi handle karta hai) */
.home-hero-mockup:hover .home-circular-badge {
    opacity: 1;
}

/* Spin-pop entry animation */
.home-circular-badge.animate-badge {
    animation: spinPop 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.8s forwards;
}

@keyframes spinPop {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

/* ===============================
   ROTATING TEXT
   =============================== */
.home-circular-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateText {
    to { transform: rotate(360deg); }
}

.circular-text {
    font-size: clamp(11px, 1.4vw, 14px);
    font-weight: 600;
    letter-spacing: 0.15em;
    fill: #ffffff;
    text-transform: uppercase;
}

.home-circular-badge:hover .home-circular-text {
    animation-play-state: paused;
}

/* ===============================
   PLAY/PAUSE BUTTON
   =============================== */
.play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(50px, 7vw, 70px);
    height: clamp(50px, 7vw, 70px);
    background: linear-gradient(135deg, #4169E1 0%, #5B7FE8 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.4);
    z-index: 2;
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, #5B7FE8 0%, #4169E1 100%);
    box-shadow: 0 6px 30px rgba(65, 105, 225, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-pause-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.play-pause-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* ===============================
   ICONS
   =============================== */
.icon-play,
.icon-pause {
    position: absolute;
    width: 45%;
    height: 45%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.icon-play {
    opacity: 1;
    transform: scale(1) translateX(2px);
}

.icon-pause {
    opacity: 0;
    transform: scale(0.5);
}

.play-pause-btn.is-playing .icon-play {
    opacity: 0;
    transform: scale(0.5);
}

.play-pause-btn.is-playing .icon-pause {
    opacity: 1;
    transform: scale(1);
}

/* ===============================
   PROGRESS RING
   =============================== */
.progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring-circle {
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 0.3s linear;
    stroke-linecap: round;
}

/* ===============================
   GLOW PULSE EFFECT
   =============================== */
.home-circular-badge:hover::before {
    opacity: 1;
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* ===============================
   MOBILE - Badge Fixed Center
   =============================== */
@media (max-width: 768px) {
    .home-hero-mockup {
        cursor: auto; /* Normal cursor on mobile */
    }

    .home-circular-badge {
        position: relative !important;
        top: unset !important;
        left: unset !important;
        transform: none !important;
        opacity: 1 !important;
        margin: 20px auto;
        pointer-events: all;
        will-change: auto;
    }
}

/* ===============================
   VIDEO MODAL - HIGHEST Z-INDEX
   =============================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999; 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: 99998;
}

.video-modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.video-modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000; 
    padding: 0;
}

.video-modal-close svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.video-modal-close:hover svg {
    color: #F2A602;
    transform: rotate(90deg) scale(1.1);
}

.video-modal-close:active svg {
    transform: rotate(90deg) scale(0.95);
}

.modal-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
    outline: none;
    z-index: 99999;
}

.modal-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 99999;
}

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

.video-modal.active .video-modal-container {
    animation: videoModalFadeIn 0.3s ease;
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

body.modal-open header,
body.modal-open nav,
body.modal-open .header,
body.modal-open .navigation,
body.modal-open .navbar {
    z-index: 1 !important;
    visibility: hidden !important;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 1024px) {
    .video-modal-close {
        top: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    
    .video-modal-close svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .video-modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .video-modal-close svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .video-modal-close svg {
        width: 22px;
        height: 22px;
    }
}

.video-modal-close:focus-visible {
    outline: 2px solid #F2A602;
    outline-offset: 4px;
}

/* ===============================
   BOTTOM NAVIGATION BAR
   =============================== */
.bottom-navbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 40px);
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bottom-navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(90deg, #F2A602 0%, #F77847 50%, #A587C3 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    opacity: 0.9;
}

.logo-full {
    height: 56px;
    width: auto;
    display: block;
}

.logo-icon {
    height: 32px;
    width: auto;
    display: none;
}

.bottom-nav-logo {
    padding: 8px 0px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bottom-nav-logo img {
    height: 56px;
    width: auto;
}

.bottom-nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex: 1;
    padding-right: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    white-space: nowrap;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
    
}

.nav-item:hover::before {
    opacity: 1;
    border-radius: 30px;
}

.nav-item:hover {
    color: #ffffff;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
    opacity: 1;
}

.nav-label {
    letter-spacing: 0.3px;
    font-family: 'Atten New', sans-serif;
}

@media (max-width: 1100px) and (min-width: 770px) {
    .bottom-navbar {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .bottom-nav-logo img {
        height: 44px; 
    }
    
    .logo-full {
        height: 44px;
    }
    
    .bottom-nav-container {
        gap: 12px; 
        padding-right: 4px;
    }
    
    .nav-item {
        padding: 8px 14px; 
        gap: 6px;
        font-size: 14px; 
    }
    
    .nav-icon {
        width: 20px; 
        height: 20px;
    }
}

@media (max-width: 900px) {
    .logo-full {
        display: none;
    }
    
    .logo-icon {
        display: block;
        height: 32px;
    }
    
    .bottom-nav-logo img {
        height: 32px;
    }
}

/* ===============================
   FULLSCREEN MORE MENU
   =============================== */
.more-menu-overlay {
  position: fixed;
  inset: 20px 20px 140px 20px;        
  z-index: 9998;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 55%),
              rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden; 
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.more-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.more-menu-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin: 0 auto;
}

.more-menu-left {
  display: flex;
  padding: clamp(60px, 8vw, 90px) var(--space-x);
  gap: clamp(60px, 8vw, 100px);
  align-items: top;
}


.more-menu-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.more-link {
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(24px, 3.6vw, 48px);      
  font-weight: 500;
  position: relative;
  padding-bottom: 12px; 
  display: inline-block;
  transition: color 0.3s ease, transform 0.25s ease;
}

.more-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px; 
  height: 2px;
  background: linear-gradient(90deg, #F2A602 0%, #F77847 100%);
  opacity: 1; 
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.more-link:hover {
  color: #ffffff;
  transform: translateX(4px); 
}

.more-link:hover::after {
  width: 100%; 
}

.more-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.more-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.more-menu-right {
  position: relative;
  padding: clamp(60px, 8vw, 90px) clamp(40px, 5vw, 60px);
  background: 
              linear-gradient(135deg, #537993 0%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
  display: flex;
  align-items: top;
  justify-content: center;
}

.more-cta-content {
  max-width: 320px;
}

.more-cta-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000000;
  position: relative;
  padding-bottom: 12px; 
}

.more-cta-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px; 
  height: 3px;
  background: #000000;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .more-cta-title {
    font-size: 36px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .more-cta-title::after {
    width: 60px;
    height: 2px;
  }
}

@media (max-width: 480px) {
  .more-cta-title {
    font-size: 36px;
    padding-bottom: 8px;
  }
  
  .more-cta-title::after {
    width: 50px;
    height: 2px;
  }
}
.more-cta-sub {
  font-size: 20px;
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 28px;
}

.more-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.more-cta-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.more-cta-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 6px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.more-cta-button:hover svg {
  transform: translate(3px, -3px);
}

.more-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.more-cta-button:hover::before {
  left: 100%;
}

.more-menu-close {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 10000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background 0.25s ease, transform 0.2s ease;
}

.more-menu-close:hover {
  background: rgba(0,0,0,0.85);
  transform: scale(1.05);
}

@media (max-width: 992px) {
    .logo-full {
        height: 44px;
    }
  .more-menu-inner {
    grid-template-columns: 3fr 2fr;
  }
}

@media (max-width: 768px) {
  .more-menu-overlay {
    inset: 12px 12px 100px 12px;
  }
  
  .more-menu-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 60% 40%; 
    height: 100%;
    overflow: hidden;
  }

   .logo-full {
        display: none;
    }
    
    .logo-icon {
        display: block;
        height: 32px;
    }

  .more-menu-left {
    order: 0;
    padding: 28px 24px 20px;
    gap: 32px;
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
  }

  .more-menu-right {
    order: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .more-cta-content {
    max-width: 100%;
  }
  
  .more-cta-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  
  .more-cta-sub {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  
  .more-cta-button {
    padding: 10px 20px;
    font-size: 12px;
    gap: 8px;
  }
  
  .more-cta-button svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .more-menu-overlay {
    inset: 8px 8px 90px 8px;
  }
  
  .more-menu-inner {
    grid-template-rows: 50% 50%;
  }

  .more-menu-left {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px 16px 16px;
    gap: 20px 32px;
  }
  
  .more-menu-column {
    gap: 12px;
    min-width: 120px;
  }
  
  .more-link {
    font-size: 24px;
    padding-bottom: 4px;
  }

  .more-menu-right {
    padding: 20px 16px;
  }
  
  .more-cta-title {
    font-size: 36px;
    margin-bottom: 8px;
  }
  
  .more-cta-sub {
    font-size: 16px;
    margin-bottom: 14px;
  }
  
  .more-cta-button {
    padding: 9px 18px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .more-menu-overlay {
    inset: 6px 6px 85px 6px;
  }

   .logo-icon {
        height: 24px;
    }
  
  .more-menu-left {
    padding: 16px 12px 12px;
    gap: 14px 28px;
  }
  
  .more-link {
    font-size: 24px;
  }
  
  .more-menu-right {
    padding: 16px 12px;
  }
  
  .more-cta-title {
    font-size: 36px;
  }
  
  .more-cta-sub {
    font-size: 16px ;
  }
}

.more-toggle {
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.more-icon {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}

.more-icon line {
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: 12px 12px;
}

.more-toggle.is-open .more-icon line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.more-toggle.is-open .more-icon line:nth-child(2) {
  opacity: 0;
}

.more-toggle.is-open .more-icon line:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* ===============================
   REIMAGINING POSSIBILITIES SECTION
   =============================== */
.reimagining-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: 36px var(--space-x) var(--space-y) var(--space-x) ;
}

.reimagining-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    width: 100%;
}

.reimagining-title {
    font-size: clamp(24px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: clamp(6px, 4vw, 36px);
    line-height: 1.2;
}

.reimagining-description {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
    color: #D4D4D4;
    margin-bottom: clamp(24px, 4vw, 48px);
    max-width: 100%;
}
.stats-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(24px, 4vw, 40px) clamp(30px, 4vw, 60px);
    background: linear-gradient(90deg, #313131 0%, #1A1A1A 100%);
    border: 1.5px solid transparent;
    background-clip: padding-box;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-box::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(90deg, #F2A602 0%, #FFFFFF 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-box.visible .stat-item:nth-child(1) {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}

.stats-box.visible .stat-item:nth-child(3) {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

.stats-box.visible .stat-item:nth-child(5) {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s;
}

.stats-box.visible .stat-item:nth-child(7) {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

.stat-number {
    font-size: clamp(24px, 4.5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: clamp(8px, 1vw, 12px);
    background-clip: text;
    position: relative;
}

.stat-number::after {
    content: attr(data-target);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.stats-box.visible .stat-number::after {
    opacity: 0.6;
}

.stat-label {
    font-size: clamp(14px, 1.5vw, 20px);
    color: #D4D4D4;
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: clamp(60px, 8vw, 100px);
    background: linear-gradient(180deg, transparent 0%, #B9B9B9 50%, transparent 100%);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stats-box.visible .stat-divider {
    opacity: 1;
    transition-delay: 0.5s;
}

@media (max-width: 768px) {
    .stats-box {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .stat-divider {
        display: none;
    }
}

/* ===============================
   SERVICES SECTION
   =============================== */
.services-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
}

.services-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.section-header {
    margin-bottom: clamp(24px, 4vw, 36px);
}

.section-label {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400;
    color: var(--c-white);
    letter-spacing: 2px;
    margin-bottom: clamp(16px, 2.5vw, 24px);
    position: relative;
    opacity: 0.7;
    padding-left: clamp(28px, 4vw, 50px);
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(20px, 3vw, 35px);
    height: 2px;
    background: #FEA800;
}

.section-title {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: clamp(24px, 4vw, 36px);
    line-height: 1.2;
}

.services-scroll-wrapper {
    overflow: visible;
    width: 100%;
    margin-bottom: clamp(30px, 4vw, 50px);
}

.services-grid {
    display: flex;
    gap: clamp(20px, 3vw, 32px);
    scroll-behavior: smooth;
    align-items: stretch; 
    transition: transform 0.4s ease;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - (clamp(20px, 3vw, 32px) * 3)) / 4);
    min-width: clamp(400px, 24vw, 400px);
    background: #000000;
    padding: 2px;
    transition: all 0.3s ease;
    height: auto; 
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.service-card-inner {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: clamp(24px, 3.5vw, 24px);
    display: grid;
    grid-template-columns: clamp(56px, 7vw, 80px) 1fr;
    grid-template-rows: auto 0fr; 
    gap: clamp(16px, 2.5vw, 24px) clamp(16px, 2.5vw, 24px);
    transition: grid-template-rows 0.4s ease;
    height: 100%; 
}

.service-card:hover .service-card-inner {
    grid-template-rows: auto 1fr; 
}

.service-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: clamp(56px, 7vw, 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.service-icon img {
    width: 52px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.8vw, 20px);
}

.service-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--c-white);
    line-height: 1.2;
    margin: 0;
    padding-bottom: clamp(12px, 1.5vw, 16px);
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #537993 0%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
}

.service-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 2.5vw, 28px);
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    color: #000000;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    width: fit-content;
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-cta:hover {
    gap: 12px;
}

.service-cta:hover svg {
    transform: translate(2px, -2px);
}

.service-cta-wrapper {
    grid-column: 1 / 3;
    grid-row: 2;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    width: 100%;
}

.slider-progress-bar {
    position: relative;
    flex: 1;
    height: 3px;
    background: transparent;
    overflow: hidden;
}

.slider-progress-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--c-line);
}

.slider-progress-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #F2A602 0%, #F77847 50%, #FEA800 100%);
    width: 25%;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.slider-nav-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    flex-shrink: 0;
}

.slider-navigation {
    display: flex;
    gap: 12px;
}

.slider-arrow {
    width: clamp(40px, 4.5vw, 50px);
    height: clamp(40px, 4.5vw, 50px);
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(18px, 2.2vw, 24px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    font-weight: 400;
    line-height: 1;
}

.slider-arrow:hover:not(:disabled) {
    color: #ffffff;
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-arrow:disabled:hover {
    background: transparent;
    color: #fff;
}

.slider-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.slider-cta-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: #FEA800; 
    flex-shrink: 0;
}

.slider-cta-link:hover {
    gap: 12px;
}

.slider-cta-link:hover svg {
    transform: translate(3px, -3px);
    color: #F77847; 
}

.slider-cta-link:hover {
    filter: drop-shadow(0 0 8px rgba(254, 168, 0, 0.4));
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 580px) {

    .services-scroll-wrapper {
        overflow: visible !important;
        margin-bottom: 30px;
    }

    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        transform: none !important;
    }

    .service-card {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important; 
    }

    .service-card-inner {
        display: grid !important;
        grid-template-columns: clamp(56px, 15vw, 70px) 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 16px 16px !important;
        padding: 20px 20px 0 20px !important;
        height: 100% !important;
    }

    .service-card:nth-child(n+4) {
        display: none;
    }

    .service-icon {
        grid-column: 1 !important;
        grid-row: 1 / 3 !important; 
        width: 100% !important;
        height: auto !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        margin: 0 !important;
        float: none !important;
    }

    .service-icon img {
        width: clamp(48px, 12vw, 56px) !important;
        height: auto !important;
    }

    .service-content {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .service-title {
        font-size: clamp(20px, 5.5vw, 26px) !important;
        padding-bottom: 12px !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
    }

    .service-title::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 2px !important;
        background: linear-gradient(90deg, #537993 0%, #F77847 25%, #FEA800 50%, #EADDBF 100%) !important;
    }

    .service-description {
        font-size: clamp(16px, 3.8vw, 16px) !important;
        line-height: 1.6 !important;
        margin: 0 !important;
    }

    .service-cta {
        grid-column: 1 / 3 !important;
        grid-row: 2 !important;
        width: calc(100% + 40px) !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        margin-top: 16px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 14px !important;
        font-size: 12px !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: all !important;
        align-self: end !important;
        justify-self: stretch !important;
    }

    .service-cta svg {
        width: 13px !important;
        height: 13px !important;
    }

    .slider-progress-bar {
        display: none !important;
    }

    .slider-navigation {
        display: none !important;
    }

    .slider-controls {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .slider-nav-wrapper {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .slider-cta-link {
        font-size: 16px !important;
        gap: 5px !important;
    }

    .slider-cta-link svg {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 24px !important;
    }

    .service-card-inner {
        grid-template-columns: 60px 1fr !important;
        gap: 14px 14px !important;
        padding: 18px 18px 0 18px !important;
    }

    .service-icon img {
        width: 52px !important;
    }

    .service-title {
        font-size: 20px !important;
        padding-bottom: 10px !important;
    }

    .service-description {
        font-size: 16px !important;
    }

    .service-cta {
        width: calc(100% + 36px) !important;
        margin-left: -18px !important;
        margin-right: -18px !important;
        margin-top: 14px !important;
        padding: 12px !important;
        font-size: 12px !important;
    }

    .service-cta svg {
        width: 12px !important;
        height: 12px !important;
    }
}

@media (max-width: 360px) {
    .services-grid {
        gap: 14px !important;
    }

    .service-card-inner {
        grid-template-columns: 56px 1fr !important;
        gap: 12px 12px !important;
        padding: 16px 16px 0 16px !important;
    }

    .service-icon img {
        width: 48px !important;
    }

    .service-title {
        font-size: 18px !important;
    }

    .service-description {
        font-size: 14px !important;
    }

    .service-cta {
        width: calc(100% + 32px) !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        margin-top: 12px !important;
        padding: 11px !important;
        font-size: 12px !important;
    }

    .service-cta svg {
        width: 11px !important;
        height: 11px !important;
    }
}

/* ===============================
   SERVICES ACCORDION SECTION
   =============================== */
.services-accordion-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
}

.sliding-text-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: clamp(24px, 12vw, 156px);
    position: relative;
}

.sliding-text {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    white-space: nowrap;
    animation: slideText 10s linear infinite;
}
@keyframes slideText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.text-filled {
    font-size: clamp(24px, 5vw, 64px);
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: -0.02em;
}

.text-outlined {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #FEA800;
    text-stroke: 1px #FEA800;
    letter-spacing: -0.02em;
}

.text-separator {
    font-size: clamp(24px, 4vw, 48px);
    color: rgba(255, 255, 255, 0.4);
}

.services-accordion-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(24px, 4vw, 36px) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-number {
    font-size: clamp(24px, 2.2vw, 28px);
    font-weight: 600;
    color: #F2A602;
    min-width: clamp(40px, 5vw, 60px);
    text-align: left;
}

.accordion-title {
    flex: 1;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--c-white);
    font-family: 'Atten New', sans-serif;
    text-align: left;
    margin: 0;
}

.accordion-arrow-circle {
    position: relative;
    width: clamp(24px, 5.5vw, 40px);
    height: clamp(24px, 5.5vw, 40px);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #537993 0%,#F77847 25%,#FEA800 50%, #EADDBF 100%);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.accordion-arrow-circle .arrow-svg {
    width: 50%;
    height: 50%;
    transition: transform 0.4s ease;
}

.accordion-arrow-circle .arrow-svg path {
    stroke: #000000;
    stroke-width: 2.5;
}

.accordion-item.active .accordion-arrow-circle {
    transform: rotate(90deg);
}

.accordion-header:hover .accordion-arrow-circle {
    background: linear-gradient(135deg, #EADDBF 0%,#FEA800 25%,#F77847 50%, #537993 100%);
    transform: scale(1.1);
}

.accordion-item.active .accordion-header:hover .accordion-arrow-circle {
    transform: rotate(90deg) scale(1.1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.accordion-item.active .accordion-content {
   max-height: 500px;
    padding: 0 0 clamp(32px, 4vw, 48px) clamp(60px, 8vw, 100px);
}

.accordion-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
}

.accordion-content p {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.7;
    color: var(--c-muted);
    margin-bottom: 16px;
}
/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    
    .services-header {
        padding: 0 calc(var(--space-x) - 20px);
    }
    
    .accordion-header {
        padding: 24px 0;
        gap: 16px;
    }
    
    .accordion-number {
        min-width: 35px;
    }
    
    .accordion-content {
         padding: 0;
    }
    
    .accordion-item.active .accordion-content {
       padding: 0 0 24px 45px;
    }
    
    .sliding-text {
        gap: 20px;
    }
    
    .text-filled,
    .text-outlined {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        padding: 20px 0;
        gap: 12px;
    }
    
    .accordion-number {
        min-width: 30px;
        font-size: 24px;
    }
    
    .accordion-arrow-circle {
        width: 24px;
        height: 24px;
    }
    
    .accordion-content {
        padding: 0;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 0 20px 35px;
    }
}

/* ===============================
   CLIENTS SECTION
   =============================== */
.clients-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
    overflow: hidden;
}

.clients-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}


.clients-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--c-bg-black) 0%, transparent 100%);
}

.clients-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--c-bg-black) 0%, transparent 100%);
}

.clients-slider {
    display: flex;
    align-items: center;
    gap: clamp(5px, 6vw, 20px);
    animation: slideLogos 100s linear infinite;
    width: fit-content;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients-slider:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(100px, 15vw, 180px);
    height: clamp(60px, 8vw, 100px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.client-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    
}

.client-logo.colored img {
    filter: none;
}

/* ===============================
   BLOG SECTION
   =============================== */
.blog-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.blog-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.blog-slider-wrapper {
    overflow: visible; /* CHANGED: hidden se visible */
    width: 100%;
}

.blog-slider {
    display: flex;
    gap: clamp(24px, 5vw, 60px);
    transition: transform 0.4s ease;
    overflow-x: auto; /* Enable horizontal scroll */
    scroll-behavior: smooth;
    padding-bottom: 20px;
    
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-card {
    /* FIXED: Proper width calculation for 2 cards */
    flex: 0 0 calc((100% - clamp(24px, 5vw, 60px)) / 2);
    min-width: clamp(300px, 42vw, 550px);
    max-width: calc(50% - 30px);
    background: var(--c-bg-black);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* CRITICAL: Prevents shrinking */
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: clamp(200px, 28vw, 380px);
    overflow: hidden;
    margin-bottom: clamp(20px, 3vw, 32px);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 20px);
    flex: 1;
}

.blog-card-title {
    font-size: clamp(20px, 2.8vw, 24px);
    font-weight: 600;
    color: var(--c-white);
    line-height: 1.3;
    margin: 0;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 16px);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(6px, 1vw, 10px);
}

.blog-tag {
    font-size: clamp(14px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(4px, 0.6vw, 6px) clamp(10px, 1.2vw, 14px);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    font-weight: 400;
}

.blog-date {
    font-size: clamp(12px, 1.3vw, 12px);
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.blog-excerpt {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: var(--c-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 12px);
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 2.5vw, 28px);
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    color: #000;
    font-size: clamp(12px, 1.3vw, 16px);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
    align-self: flex-end;
}

.blog-read-more:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(242, 166, 2, 0.4);
}

.blog-read-more svg {
    width: clamp(12px, 2vw, 20px);
    height: clamp(12px, 2vw, 20px);
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

.blog-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.5vw, 32px);
    width: 100%;
    margin-top: clamp(24px, 4vw, 36px);
}

.blog-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-right: auto;
}

.blog-progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.blog-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #537993 0%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.blog-navigation {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 16px);
}

.blog-arrow {
    width: clamp(40px, 4vw, 50px);
    height: clamp(40px, 4vw, 50px);
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.blog-arrow:hover:not(:disabled) {
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.blog-arrow:active {
    transform: scale(0.95);
}

.blog-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.blog-arrow:disabled:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1);
}

.blog-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(11px, 1.4vw, 16px);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.blog-cta-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: #FEA800; 
    flex-shrink: 0;
}

.blog-cta-link:hover {
    color: #FEA800;
    gap: clamp(7px, 1.2vw, 12px);
}

.blog-cta-link:hover svg {
    transform: translate(3px, -3px);
    color: #F77847; 
}

/* ===============================
   RESPONSIVE - MOBILE
   =============================== */
@media screen and (max-width: 768px) {
    .blog-slider {
        flex-direction: row; /* Keep horizontal on mobile */
        overflow-x: auto;
        gap: 20px;
    }
    
    .blog-card {
        flex: 0 0 85%; /* Show 1 card + partial second */
        min-width: 280px;
        max-width: 90%;
    }
    
    .blog-image {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .blog-card {
        flex: 0 0 90%;
        min-width: 260px;
    }
}

/* ===============================
   FAQ SECTION
   =============================== */
.faq-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
}

.faq-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(12px, 3.5vw, 24px) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: clamp(6px, 3vw, 12px);
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question span:first-child {
    flex: 1;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--c-white);
    font-family: 'Atten New', sans-serif;
    line-height: 1.4;
}

.faq-icon {
    width: clamp(32px, 4vw, 48px);
    height: clamp(32px, 4vw, 48px);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 300;
    color: var(--c-white);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 clamp(6px, 4vw, 24px);
}

.faq-answer p {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.7;
    color: var(--c-muted);
    margin: 0;
    padding-right: clamp(40px, 6vw, 80px);
}

/* ===============================
   FOOTER SECTION
   =============================== */
.footer-section {
  background: #000000;
  color: var(--c-white);
  padding: var(--space-y) var(--space-x);
  padding-bottom: clamp(15px, 18vw, 30px); 
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
}

.footer-section-form {
  background: #000000;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
}
.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10; 
}

.footer-container-form {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10; 
}

/* ===============================
   Footer Top
   =============================== */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding-bottom: clamp(36px, 5vw, 48px);
}

.footer-logo-img {
  height: clamp(40px, 5vw, 56px);
  width: auto;
}

/* ===============================
   Footer Social Icons (Your Custom Styles)
   =============================== */
.footer-social {
  display: flex;
  gap: clamp(4px, 2vw, 8px);
  align-items: center;
}

.social-icon {
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: all 0.3s ease;
  text-decoration: none;
  padding: clamp(8px, 1vw, 10px);
}

.social-icon:hover {
  background: rgba(254, 168, 0, 0.1);
  transform: translateY(-3px);
}

.social-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* ===============================
   Footer Sections
   =============================== */
.footer-section-block {
  padding-bottom: clamp(12px, 3vw, 24px);
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  margin-bottom: 0;
  color: var(--c-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo-img {
  height: clamp(40px, 5vw, 56px);
  width: auto;
  display: block;
}

.footer-toggle {
  width: clamp(32px, 3.5vw, 40px);
  height: clamp(32px, 3.5vw, 40px);
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--c-accent);
  flex-shrink: 0;
}

.footer-toggle:hover {
  color: #000;
}

.footer-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.footer-section-block.active .footer-toggle svg {
  transform: rotate(90deg);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: clamp(8px, 2vw, 20px) clamp(8px, 2vw, 30px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section-block.active .footer-links {
  max-height: 500px;
  opacity: 1;
  margin-top: clamp(16px, 2.5vw, 24px);
}

.footer-links a {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--c-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.6;
  padding: clamp(10px, 1.4vw, 14px) clamp(18px, 2.2vw, 26px);
  border: 1.5px solid transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(0px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(83, 121, 147, 0.30) 0%,
    rgba(247, 120, 71, 0.30) 25%,
    rgba(254, 168, 0, 0.30) 50%,
    rgba(234, 221, 191, 0.30) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-links a:hover {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-links a:hover::before {
  opacity: 1;
}

/* ===============================
   Footer Bottom
   =============================== */
.footer-bottom {
  margin-top: clamp(40px, 6vw, 80px);
  padding-top: clamp(20px, 3vw, 30px);
  padding-bottom: clamp(30px, 4vw, 50px);
  text-align: center;
  position: relative;
  z-index: 10; 
}

.footer-bottom-form {
  padding-top: clamp(20px, 3vw, 30px);
  padding-bottom: clamp(30px, 4vw, 50px);
  text-align: center;
  position: relative;
}

.footer-copyright {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--c-muted);
}

.footer-bg-text {
  bottom: 0;
  width: 100%;
  height: auto;
  justify-content: center;
}

.footer-bg-image {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .footer-section {
    padding: 60px var(--space-x);
    padding-bottom: 180px;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px; 
    margin-right: 0;
    padding-bottom: 20px;
  }

  .footer-logo-img {
    height: 48px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .footer-bg-text {
    max-width: 1200px;
    height: auto;
  }

   .footer-social {
    gap: 6px;
  }

}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px calc(var(--space-x) - 20px);
    padding-bottom: 150px;
  }

   .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    margin-right: 0;
    padding-bottom: 20px;
  }

  .footer-social {
    width: 100%;
    justify-content: flex-end;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .footer-section-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .footer-bg-text {
    max-width: 900px;
    height: auto;
  }

}

@media (max-width: 480px) {
  .footer-section {
    padding: 30px 16px;
    padding-bottom: 120px;
  }

  .footer-logo-img {
    height: 36px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .footer-heading {
    font-size: 20px;
  }

  .footer-toggle {
    width: 20px;
    height: 20px;
  }

  .footer-bg-text {
    max-width: 600px;
    height: auto;
  }

   .footer-top {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px; 
    margin-right: 0;
    padding-bottom: 16px;
  }

   .footer-social {
    gap: 6px;
  }

  .home-play-icon {
    top: 25%;
    left: 25%;
    width: clamp(30px, 5vw, 56px);
    height: clamp(30px, 5vw, 56px);
}

}

@keyframes expandLinks {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 500px;
    opacity: 1;
  }
}

@media (max-width: 1400px) {
    .service-card {
        flex: 0 0 calc(33.333% - clamp(13.33px, 2vw, 21.33px));
        min-width: clamp(280px, 30vw, 400px);
    }
    
    .services-progress-fill {
        width: 33.333%;
    }
}

@media (max-width: 1200px) {
    :root {
        --navbar-height: clamp(80px, 12vw, 100px);
    }

    .home-hero-section {
        padding-top: calc(var(--navbar-height) + 58px);
    }

    .home-circular-badge {
        width: 140px;
        height: 140px;
    }

    .service-card {
        flex: 0 0 calc(50% - clamp(10px, 1.5vw, 16px));
        min-width: 320px;
    }
    
    .services-progress-fill {
        width: 50%;
    }

    .blog-card {
        flex: 0 0 calc(50% - clamp(10px, 1.5vw, 16px));
        min-width: 380px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .stats-box {
        display: flex;
        padding: 40px 20px;
    }
    
    .stat-divider {
        display: none;
    }

     .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }

    .home-hero-section {
        min-height: auto;
        padding: 20px calc(var(--space-x) - 20px);
        padding-top: calc(var(--navbar-height) + 58px);
        padding-bottom: 100px;
        align-items: flex-start;
    }

    .home-navbar {
        padding: 24px calc(var(--space-x) - 24px);
        min-height: var(--navbar-height);
    }

    .home-logo img {
        height: 36px;
    }

    .home-contact-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .home-hero-mockup {
        margin-bottom: 0;
    }

    .home-circular-badge {
        width: 80px;
        height: 80px;
        position: absolute;
    }

    .bottom-navbar {
        width: calc(100% - 24px);
        padding: 8px 12px;
        bottom: 16px;
        gap: 8px;
    }
    .bottom-navbar.sticky {
        padding: 8px 12px;
        margin-top: 12px;
    }
    
    .bottom-nav-container {
        gap: 4px;
        padding-right: 0;
    }
    
   .nav-item {
        padding: 8px 10px;
        gap: 4px;
        min-width: auto;
    }

     .nav-label {
        display: none;
    }

   .nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .bottom-nav-logo img {
        height: 28px;
    }

     .more-toggle {
        padding: 8px 10px;
    }
    
    .more-icon {
        width: 18px;
        height: 18px;
    }


    .service-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .service-card-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: clamp(16px, 2vw, 20px);
    }
    
    .service-icon {
        grid-column: 1;
        grid-row: 1;
        width: 64px;
        height: 64px;
    }
    
    .service-content {
        grid-column: 1;
        grid-row: 2;
    }
    
    .service-tags {
        grid-column: 1;
        grid-row: 3;
    }
    
    .services-progress-fill {
        width: 100%;
    }

    .accordion-header {
        padding: 24px 0;
        gap: 16px;
    }

    .clients-slider {
        gap: 5px;
    }

    .client-logo {
        min-width: 120px;
        height: 60px;
    }

    .client-logo img {
        height: 36px;
    }
    .clients-slider-wrapper::before,
    .clients-slider-wrapper::after {
        width: 50px;
    }

    .blog-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .blog-image {
        height: 240px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-read-more {
        align-self: flex-start;
    }
    
    .blog-progress-fill {
        width: 100%;
    }

    .faq-question {
        padding: 12px 0;
        gap: 16px;
    }

    .faq-answer p {
        padding-right: 0;
    }

    .footer-section {
        padding: 40px 20px 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        width: 100%;
        max-width: 100%;
        text-align: center; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        margin-bottom: 15px; 
    }
    
   .footer-logo {
        margin: 0 auto clamp(12px, 2vw, 16px); 
    }
    
    .footer-social {
        justify-content: flex-end; 
        margin-top: clamp(16px, 2.5vw, 20px);
    }
    
}

@media (max-width: 580px) {
     .bottom-navbar {
        width: calc(100% - 16px);
        padding: 6px 8px;
        bottom: 12px;
    }

     .bottom-navbar.sticky {
        padding: 6px 8px;
    }

    .nav-label {
        display: none;
    }

    .bottom-nav-logo img {
        height: 28px;
    }
    
     .bottom-nav-container {
        gap: 2px;
    }

    .nav-item {
        padding: 8px;
        min-width: 36px;
        justify-content: center;
    }

     .nav-icon {
        width: 18px;
        height: 18px;
    }

     .more-toggle {
        padding: 8px;
        min-width: 36px;
    }
    
    .more-icon {
        width: 16px;
        height: 16px;
    }

    .home-circular-badge {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar-height: 60px;
    }

    .home-hero-section {
        min-height: auto;
        padding: 15px 16px;
        padding-top: calc(var(--navbar-height) + 58px);
        padding-bottom: 15px;
    }

    .home-navbar {
        padding: 24px 20px;
        min-height: var(--navbar-height);
    }

    .home-hero-title {
        font-size: 36px;
    }

    .home-circular-badge {
        width: 60px;
        height: 60px;
    }

    .services-accordion-section {
        padding-bottom: 30px;
    }

    .sliding-text {
        gap: 20px;
    }
    
    .text-filled,
    .text-outlined {
        font-size: 24px;
    }

    .service-card-inner {
        padding: 24px 20px;
        height: auto;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }

    .accordion-header {
        padding: 20px 0;
        gap: 12px;
    }

    .clients-slider {
        gap: 0px;
    }

    .client-logo {
        min-width: 100px;
        height: 50px;
    }

    .clients-slider-wrapper::before,
    .clients-slider-wrapper::after {
        width: 30px;
    }

    .blog-image {
        height: 200px;
    }

    .faq-question {
        padding: 12px 0;
    }

    .faq-item.active .faq-answer {
        padding: 0 0 20px;
    }
   
}

@media (max-width: 360px) {
    .bottom-navbar {
        padding: 5px 6px;
        gap: 4px;
    }
    
    .bottom-nav-logo img {
        height: 24px;
    }
    
    .nav-item, .more-toggle {
        padding: 6px;
        min-width: 32px;
    }
    
    .nav-icon {
        width: 16px;
        height: 16px;
    }
    
    .more-icon {
        width: 14px;
        height: 14px;
    }
    .home-mockup-container {
        min-height: 200px;
    }
}

/* ===============================
   Motion Preferences
   =============================== */
@media (prefers-reduced-motion: reduce){
    *{scroll-behavior:auto!important}
    .home-mockup-img,
    .services-progress-fill,
    .blog-progress-fill{transition:none!important}
}

/* ===============================
   Services page css
   =============================== */
.service-hero-section {
    position: relative;
    width: 100%;
    overflow: visible; 
    display: flex;
    align-items: center;
    padding-top: calc(var(--navbar-height) + clamp(40px, 8vw, 60px));
}

.blog-hero-section {
    position: relative;
    width: 100%;
    overflow: visible; 
    display: flex;
    align-items: center;
    padding-top: clamp(70px, 6vw, 80px);
}

.pdp-hero-section {
    position: relative;
    width: 100%;
    overflow: visible; 
    display: flex;
    align-items: center;
    padding-top: calc(var(--navbar-height) + clamp(40px, 15vw, 150px));
    padding-bottom: var(--space-y);
}

.work-page-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: clamp(16px, 4vw, 24px);
    line-height: 1.2;
}

.services-page-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: clamp(16px, 4vw, 24px);
    line-height: 1.2;
}

.about-page-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: clamp(16px, 4vw, 24px);
    line-height: 1.2;
}

.services-description {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
    color: #b8b8b8;
    max-width: 100%;
}

/* ===============================
   Work SECTION
   =============================== */
.work-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
    position: relative;
}
.work-page-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: 0 var(--space-x);
    position: relative;
}

.work-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.work-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.work-slider {
    display: flex;
    gap: clamp(20px, 7vw, 80px);
    transition: transform 0.4s ease;
}

.work-card {
    flex: 0 0 calc((100% - clamp(20px, 7vw, 80px)) / 2);
    min-width: 280px;
    background: var(--c-bg-black);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-card-title {
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 600;
    color: var(--c-white);
    line-height: 1.3;
    margin: 0;
}

.work-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 16px);
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(6px, 1vw, 10px);
}

.work-tag {
    font-size: clamp(11px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(4px, 0.6vw, 6px) clamp(10px, 1.2vw, 14px);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    font-weight: 400;
}

.work-date {
    font-size: clamp(12px, 1.3vw, 14px);
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.work-excerpt {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: var(--c-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.work-read-more {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 12px);
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 2.5vw, 28px);
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    color: #000;
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
    align-self: flex-end;
}

.work-read-more:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(242, 166, 2, 0.4);
}

.work-read-more svg {
    width: clamp(16px, 2vw, 20px);
    height: clamp(16px, 2vw, 20px);
    transition: transform 0.3s ease;
}

.work-read-more:hover svg {
    transform: translateX(4px);
}

/* ===============================
   WORK SLIDER CONTROLS (FIXED ALIGNMENT)
   =============================== */
.work-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.5vw, 32px);
    margin-top: 36px;
    width: 100%;
}

.work-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-right: auto;
}

.work-progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.work-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #537993 0%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.work-navigation {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 16px);
}

.work-arrow {
    width: clamp(40px, 4vw, 50px);
    height: clamp(40px, 4vw, 50px);
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.work-arrow:hover {
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.work-arrow:active {
    transform: scale(0.95);
}

.work-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.work-arrow:disabled:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1);
}

.work-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(16px, 1.4vw, 16px);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.work-cta-link svg {
     width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
    color: #FEA800; 
    flex-shrink: 0;
}

.work-cta-link:hover {
    color: #FEA800;
    gap: clamp(7px, 1.2vw, 12px);
}

.work-cta-link:hover svg {
    transform: translate(3px, -3px);
    color: #F77847; 
}

@media (max-width: 768px) {
    .work-slider-controls {
        gap: 20px;
    }

    .work-navigation {
        gap: 12px;
    }

    .work-arrow {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .work-cta-link {
        font-size: 16px;
        margin-left: 16px;
    }

    .work-cta-link svg {
        width: 22px;
        height: 22px;
    }

    .service-hero-section {
    padding: 52px var(--space-x);

}
}

@media (max-width: 580px) {
    .work-slider-controls {
        gap: 16px;
    }

    .work-navigation {
        gap: 10px;
    }

    .work-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-width: 1.5px;
    }

    .work-cta-link {
        font-size: 16px;
        margin-left: 12px;
    }

    .work-cta-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .work-slider-controls {
        gap: 12px;
    }

    .work-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .work-cta-link {
        font-size: 16px;
        margin-left: 10px;
    }

    .work-cta-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 360px) {
    .work-slider-controls {
        gap: 10px;
    }

    .work-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .work-cta-link {
        font-size: 8px;
    }
}

/* ===============================
   PRIVACY POLICY SECTION
   =============================== */
.privacy-policy-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: 48px var(--space-x);
    font-family: 'Atten New', sans-serif;
    line-height: 1.7;
}

.privacy-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    width: 100%;
}

.privacy-title {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 36px;
    color: var(--c-white);
}

.privacy-meta {
    margin-bottom: clamp(30px, 4vw, 36px);
    font-size: clamp(14px, 1.5vw, 20px);
    color: var(--c-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-meta p {
    margin: 0;
    line-height: 1.6;
}

.privacy-meta strong {
    color: var(--c-white);
    font-weight: 600;
}

.privacy-intro {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
    color: var(--c-muted);
    margin-bottom: clamp(36px, 6vw, 36px);
    max-width: 100%;
}

.privacy-section {
    padding-bottom: clamp(30px, 4vw, 36px);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section-title {
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: clamp(20px, 3vw, 30px);
    color: var(--c-white);
    position: relative;
    padding-bottom: 12px;
}

.privacy-section > p {
    font-size: clamp(14px, 1.6vw, 20px);
    line-height: 1.7;
    color: var(--c-muted);
    margin-bottom: clamp(16px, 2.5vw, 24px);
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: clamp(16px, 2.5vw, 36px) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2vw, 36px);
}

.privacy-list li {
    font-size: clamp(14px, 1.6vw, 20px);
    line-height: 1.7;
    color: var(--c-muted);
    padding-left: clamp(24px, 3vw, 32px);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.privacy-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #FEA800;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 6px;
    opacity: 0.8;
}

.privacy-list li strong {
    color: var(--c-white);
    font-weight: 600;
    display: inline;
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: clamp(40px, 6vw, 60px) calc(var(--space-x) - 20px);
    }
    
    .privacy-title {
        margin-bottom: 30px;
    }
    
    .privacy-meta {
        margin-bottom: 24px;
        gap: 6px;
    }
    
    .privacy-intro {
        margin-bottom: 24px;
    }
    
    .privacy-section {
        padding-bottom: 24px;
    }
    
    .privacy-list {
        gap: 12px;
    }
    
    .privacy-list li {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 24px 16px;
    }
    
    .privacy-title {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    .pt-section-title {
        font-size: 20px;
    }
    
    .privacy-section {
        padding-bottom: 24px;
    }
}

.hero-bg-morphico {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image-morphico {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-bg-morphico::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.logo-link:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.logo-link:active {
    transform: scale(0.98);
}

.logo-link .logo-full,
.logo-link .logo-icon {
    pointer-events: none; 
}

/* ===============================
   CONTACT & OFFICES SECTION
   =============================== */
.contact-offices-section {
    background: #000000;
    color: #ffffff;
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.contact-offices-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    position: relative;
}

.contact-main-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: clamp(16px, 2.5vw, 24px);
    color: #ffffff;
    max-width: 900px;
}

.contact-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
    color: var(--c-muted);
    max-width: 700px;
}

/* ===============================
   Offices Label
   =============================== */
.offices-label-wrapper {
    margin-bottom: clamp(16px, 3vw, 12px);
}

.offices-label {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    position: relative;
    padding-left: clamp(28px, 3vw, 40px);
}

.offices-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(20px, 2.5vw, 28px);
    height: 2px;
    background: var(--c-accent);
}

.offices-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: clamp(24px, 5vw, 48px);
    color: #ffffff;
}

/* ===============================
   Office Blocks
   =============================== */
.office-block {
    margin-bottom: clamp(24px, 5vw, 36px);
    padding-bottom: clamp(24px, 5vw, 36px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.office-heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: clamp(12px, 1.8vw, 16px);
}

.office-address {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.8;
    color: #D4D4D4;
    font-style: normal;
}

.contact-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 280px;
}

.contact-info-heading {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: clamp(12px, 3vw, 16px);
}

.contact-links {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 12px);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: clamp(5px, 1.5vw, 14px);
    font-size: clamp(20px, 1.6vw, 20px);
    color: #D4D4D4;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.contact-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.contact-arrow-icon {
    width: clamp(18px, 2vw, 22px);
    height: clamp(18px, 2vw, 22px);
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-link:hover .contact-arrow-icon {
    color: #ffffff;
    transform: translate(2px, -2px);
}

.quick-chat-button {
    display: inline-flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 14px);
    padding: clamp(14px, 2vw, 18px) clamp(24px, 3.5vw, 36px);
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    color: #000000;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.quick-chat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.quick-chat-button:hover::before {
    left: 100%;
}

.quick-chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242, 166, 2, 0.4);
}

.quick-chat-button svg {
    width: clamp(16px, 2vw, 20px);
    height: clamp(16px, 2vw, 20px);
    transition: transform 0.3s ease;
}

.quick-chat-button:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 992px) {
    .contact-offices-section {
        padding: 60px var(--space-x);
    }

    .contact-info-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .quick-chat-button {
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .contact-offices-section {
        padding: 50px calc(var(--space-x) - 20px);
    }

    .contact-header {
        margin-bottom: 50px;
    }


    .contact-info-wrapper {
        gap: 24px;
    }

    .contact-links {
      font-size: 20px;
        gap: 16px;
    }

    .quick-chat-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-offices-section {
        padding: 40px 16px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .offices-label {
        font-size: 14px;
        padding-left: 24px;
    }

    .offices-label::before {
        width: 16px;
    }


    .contact-info-wrapper {
        gap: 20px;
    }

    .contact-link {
        font-size: 16px;
    }

    .contact-arrow-icon {
        width: 25px;
        height: 25px;
    }

    .quick-chat-button {
        padding: 14px 24px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .contact-offices-section {
        padding: 30px 12px;
    }

    .contact-main-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .offices-title {
        font-size: 24px;
    }

    .office-heading {
        font-size: 24px;
    }

    .office-address {
        font-size: 16px;
    }

    .contact-info-heading {
        font-size: 20px;
    }

    .contact-link {
        font-size: 16px;
    }

    .quick-chat-button {
        padding: 12px 20px;
        font-size: 12px;
    }
}

.contact-offices-section * {
    transition: all 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .contact-offices-section {
        scroll-behavior: smooth;
    }
}

.contact-link:focus,
.quick-chat-button:focus {
    outline: 2px solid var(--c-accent);
    outline-offset: 4px;
}

@media print {
    .contact-offices-section {
        background: white;
        color: black;
        padding: 20px;
    }

    .quick-chat-button {
        display: none;
    }
}

.work-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.work-image-link:hover {
    transform: scale(1.02);
}

.work-image-link img {
    display: block;
    width: 100%;
    height: 250px;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.work-image-link:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.work-image-link::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.work-image-link:hover::after {
    opacity: 1;
}

.content-image {
    flex: 0 0 clamp(100px, 15vw, 180px);
    width: clamp(100px, 15vw, 180px);
}

.content-image {
    flex: 0 0 clamp(100px, 15vw, 180px);
    width: clamp(100px, 15vw, 180px);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.accordion-text {
    width: 100%;
    margin: 0;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.accordion-cta-button {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 12px);
    padding: clamp(12px, 1.8vw, 16px) clamp(20px, 3vw, 32px);
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    color: #000000;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    float: right;
    align-self: flex-end;
}

.accordion-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 166, 2, 0.4);
}

.accordion-cta-button svg {
    width: clamp(14px, 1.8vw, 18px);
    height: clamp(14px, 1.8vw, 18px);
    transition: transform 0.3s ease;
}

.accordion-cta-button:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 992px) {
    .accordion-content {
        padding: 0 clamp(40px, 6vw, 60px);
    }

    .accordion-item.active .accordion-content {
        padding: 0 40px  20px 40px;
    }

    .accordion-content-inner {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .accordion-content {
        padding: 0 clamp(30px, 5vw, 40px);
    }


    .accordion-content-inner {
        gap: 14px;
    }

    .accordion-cta-button {
        align-self: flex-end;
    }
     .footer-links {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .footer-section-block.active .footer-links {
        max-height: 500px;
        opacity: 1;
        margin-top: clamp(16px, 2.5vw, 24px);
    }
    
    .footer-heading {
        cursor: pointer;
        pointer-events: auto;
    }
    
    .footer-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
   
    .accordion-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .accordion-content-inner {
        flex-direction: column;
        gap: 16px;
    }
    
    .content-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .accordion-cta-button {
        width: 100%;
        justify-content: center;
        align-self: stretch;
        padding: 14px 24px;
        font-size: 12px;
    }
}

.services-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-top: clamp(24px, 5vw, 36px);
}

.services-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .services-image-wrapper {
        margin-top: 30px;
    }

    .services-image {
         padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .services-image-wrapper {
        margin-top: 24px;
        border-radius: 0;
    }
}

.work-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(48px, 4vw, 60px);
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.work-card:hover {
    border-color: rgba(254, 168, 0, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.work-image {
    position: relative;
    padding: clamp(30px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(200px, 30vw, 320px);
    overflow: hidden;
}

.work-image::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: waveMotion 10s ease-in-out infinite;
    z-index: 0;
}

.work-image::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 70% 60%, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: waveMotion 10s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes waveMotion {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    33% {
        transform: translate(10%, -10%) rotate(120deg);
    }
    66% {
        transform: translate(-10%, 10%) rotate(240deg);
    }
}

.work-image-link {
    position: relative;
    z-index: 1;
}

.work-card:nth-child(1) .work-image {
    background: linear-gradient(135deg, #c2a594 0%, #533324 100%);
}

.work-card:nth-child(2) .work-image {
    background: linear-gradient(135deg, #a093cf 0%, #29166F 100%);
}

.work-card:nth-child(3) .work-image {
    background: linear-gradient(135deg, #D26CFB 0%, #4E1379 100%);
}

.work-card:nth-child(4) .work-image {
    background: linear-gradient(135deg, #F97316 0%, #C9B994 100%);
}

.work-card:nth-child(5) .work-image {
    background: linear-gradient(135deg, rgb(155, 58, 106) 0%, #892029 100%);
}

.work-card:nth-child(6) .work-image {
    background: linear-gradient(135deg, #394F5D 0%, #7e6b46 100%);
}

.work-card:nth-child(7) .work-image {
    background: linear-gradient(135deg, #FFE9BF 0%, #FF3131 100%);
}

.work-image-link {
    position: relative;
    z-index: 1;
}

/* ===============================
   Work Content Section
   =============================== */
.work-content {
    padding-top: 36px;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 16px);
    background: #000000;
    flex: 1;
}

.blog-card-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.work-excerpt {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .work-cards-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .work-card {
        border: none;
    }

    .work-image {
        padding: 30px;
        min-height: 240px;
    }

    .work-content {
        padding-top: 24px;
    }

    .blog-card-title {
        font-size: 20px;
    }

    .work-excerpt {
        font-size: 16px;
    }

    .blog-read-more {
        padding: 12px 24px;
        /* width: 100%; */
        align-self: flex-end;
        /* justify-content: right; */
    }
}

@media (max-width: 480px) {
    .work-cards-container {
        padding: 24px 0px;
    }

    .work-image {
        padding: 24px;
        min-height: 200px;
    }

    .work-content {
        padding-top: 24px;
        gap: 12px;
    }

    .blog-card-title {
        font-size: 20px;
    }

    .work-excerpt {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 1024px) {
    .work-image::before {
        background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 65%);
        animation: waveMotion 12s ease-in-out infinite;
    }
    
    .work-image::after {
        background: radial-gradient(circle at 70% 60%, rgba(255,255,255,0.2) 0%, transparent 55%);
        animation: waveMotion 15s ease-in-out infinite reverse;
    }
}

@media (max-width: 768px) {
    .work-image::before {
        background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 60%);
        animation: waveMotion 8s ease-in-out infinite;
        inset: -30%;
    }
    
    .work-image::after {
        background: radial-gradient(circle at 70% 60%, rgba(255,255,255,0.25) 0%, transparent 50%);
        animation: waveMotion 12s ease-in-out infinite reverse;
        inset: -30%;
    }
    
    @keyframes waveMotion {
        0%, 100% {
            transform: translate(0%, 0%) rotate(0deg);
        }
        25% {
            transform: translate(15%, -15%) rotate(90deg);
        }
        50% {
            transform: translate(0%, -20%) rotate(180deg);
        }
        75% {
            transform: translate(-15%, 15%) rotate(270deg);
        }
    }
}

@media (max-width: 480px) {
    .work-image::before {
        background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 55%);
        animation: waveMotion 8s ease-in-out infinite;
    }
    
    .work-image::after {
        background: radial-gradient(circle at 60% 50%, rgba(255,255,255,0.3) 0%, transparent 45%);
        animation: waveMotion 10s ease-in-out infinite reverse;
    }
}

.animate-section {
    opacity: 0;
    transform: translateY(80px); 
    transition: opacity 1s ease, transform 1s ease;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0); 
}

.animate-section.slow {
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.animate-section.fast {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.services-section.animate-section {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.services-section.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-header.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.services-section.visible .services-header.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}



.services-section.visible .services-grid.animate-cards .service-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.services-section.visible .services-grid.animate-cards .service-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.services-section.visible .services-grid.animate-cards .service-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

.services-section.visible .services-grid.animate-cards .service-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.services-section.visible .services-grid.animate-cards .service-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}

.services-section.visible .services-grid.animate-cards .service-card:nth-child(6) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

.services-navigation,
.services-progress-bar {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.services-section.visible .services-navigation,
.services-section.visible .services-progress-bar {
    opacity: 1;
    transform: translateY(0);
}

.services-section.visible .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section.visible .service-card:hover {
    transform: translateY(-5px);
}

.work-section.animate-section {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.work-section.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.work-header.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.work-section.visible .work-header.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.work-slider.animate-cards .work-card {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.work-section.visible .work-slider.animate-cards .work-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.work-section.visible .work-slider.animate-cards .work-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.work-section.visible .work-slider.animate-cards .work-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

.work-section.visible .work-slider.animate-cards .work-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.work-section.visible .work-slider.animate-cards .work-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}

.work-section.visible .work-slider.animate-cards .work-card:nth-child(6) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

.work-section.visible .work-slider.animate-cards .work-card:nth-child(7) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.9s;
}

.work-section.visible .work-slider.animate-cards .work-card:nth-child(n+8) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1s;
}

.work-navigation,
.work-progress-bar {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 1s, transform 0.6s ease 1s;
}

.work-section.visible .work-navigation,
.work-section.visible .work-progress-bar {
    opacity: 1;
    transform: translateY(0);
}

.work-section.visible .work-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-section.visible .work-card:hover {
    transform: translateY(-8px);
}

.work-section.visible .work-image img {
    transition: transform 0.4s ease;
}

.work-section.visible .work-card:hover .work-image img {
    transform: scale(1.05);
}

.clients-section.animate-section {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.clients-section.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.clients-section .services-header.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.clients-section.visible .services-header.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.clients-slider-wrapper.animate-logos {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.clients-slider-wrapper.animate-logos .client-logo {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.9s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(6) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(7) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.1s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(8) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.2s;
}

.clients-section.visible .clients-slider-wrapper.animate-logos .client-logo:nth-child(n+9) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.3s;
}

.clients-section.visible .client-logo {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.clients-section.visible .client-logo:hover {
    transform: translateY(-5px) scale(1.05);
}

.clients-section.visible .client-logo img {
    transition: filter 0.3s ease;
}

.clients-section.visible .client-logo:hover img {
    filter: brightness(1.2);
}

.impact-section.animate-section {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.impact-section.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.impact-header.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.impact-section.visible .impact-header.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.impact-slider-wrapper.animate-slider {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.impact-section.visible .impact-slider-wrapper.animate-slider {
    opacity: 1;
    transform: translateY(0);
}

.impact-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.5vw, 32px);
    width: 100%;
    margin-top: clamp(24px, 4vw, 36px);
}

.impact-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-right: auto;
}

.impact-progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.impact-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #537993 0%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.impact-navigation {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 16px);
}

.impact-arrow {
    width: clamp(40px, 4vw, 50px);
    height: clamp(40px, 4vw, 50px);
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.impact-arrow:hover {
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.impact-arrow:active {
    transform: scale(0.95);
}

.impact-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.impact-arrow:disabled:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1);
}

.impact-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(11px, 1.4vw, 16px);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.impact-cta-link svg {
     width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: #FEA800; 
    flex-shrink: 0;
}

.impact-cta-link:hover {
    color: #FEA800;
    gap: clamp(7px, 1.2vw, 12px);
}

.impact-cta-link:hover svg {
    transform: translate(3px, -3px);
    color: #F77847; 
}

.impact-navigation,
.impact-progress-bar {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.impact-section.visible .impact-navigation,
.impact-section.visible .impact-progress-bar {
    opacity: 1;
    transform: translateY(0);
}

.blog-section.animate-section {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.blog-section.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-header.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.blog-section.visible .blog-header.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.blog-slider.animate-cards .blog-card {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-section.visible .blog-slider.animate-cards .blog-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.blog-section.visible .blog-slider.animate-cards .blog-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.blog-section.visible .blog-slider.animate-cards .blog-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

.blog-section.visible .blog-slider.animate-cards .blog-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.blog-section.visible .blog-slider.animate-cards .blog-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}

.blog-section.visible .blog-slider.animate-cards .blog-card:nth-child(6) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

.blog-section.visible .blog-slider.animate-cards .blog-card:nth-child(n+7) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.9s;
}

.blog-section.visible .blog-image {
    overflow: hidden;
}

.blog-section.visible .blog-image img {
    transition: transform 0.4s ease;
}

.blog-section.visible .blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-section.visible .blog-card-title {
    animation: fadeInUp 0.6s ease both;
}

.blog-section.visible .blog-card:nth-child(1) .blog-card-title {
    animation-delay: 0.4s;
}

.blog-section.visible .blog-card:nth-child(2) .blog-card-title {
    animation-delay: 0.5s;
}

.blog-section.visible .blog-card:nth-child(3) .blog-card-title {
    animation-delay: 0.6s;
}

.blog-section.visible .blog-card:nth-child(4) .blog-card-title {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-section.visible .blog-tags {
    animation: fadeIn 0.6s ease both;
}

.blog-section.visible .blog-card:nth-child(1) .blog-tags {
    animation-delay: 0.5s;
}

.blog-section.visible .blog-card:nth-child(2) .blog-tags {
    animation-delay: 0.6s;
}

.blog-section.visible .blog-card:nth-child(3) .blog-tags {
    animation-delay: 0.7s;
}

.blog-section.visible .blog-card:nth-child(4) .blog-tags {
    animation-delay: 0.8s;
}

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

.blog-section.visible .blog-read-more {
    transition: transform 0.3s ease, color 0.3s ease;
}

.blog-section.visible .blog-card:hover .blog-read-more {
    transform: translateX(5px);
}

.blog-navigation,
.blog-progress-bar {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.blog-section.visible .blog-navigation,
.blog-section.visible .blog-progress-bar {
    opacity: 1;
    transform: translateY(0);
}

.blog-section.visible .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section.visible .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.faq-section.animate-section {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.faq-section.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-header.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.faq-section.visible .faq-header.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-accordion.animate-stagger .faq-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible .faq-accordion.animate-stagger .faq-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.faq-section.visible .faq-accordion.animate-stagger .faq-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.faq-section.visible .faq-accordion.animate-stagger .faq-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.faq-section.visible .faq-accordion.animate-stagger .faq-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.faq-section.visible .faq-accordion.animate-stagger .faq-item:nth-child(n+5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.faq-section.visible .faq-icon {
    transition: transform 0.3s ease;
}

.faq-section.visible .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-section.visible .faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-section.visible .faq-item:hover {
    transform: translateX(5px);
}

.footer-section.animate-section {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.footer-section.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-top.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.footer-section.visible .footer-top.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-section.visible .footer-logo {
    animation: slideInLeft 0.6s ease 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-section.visible .social-icon {
    animation: popIn 0.4s ease both;
}

.footer-section.visible .social-icon:nth-child(1) {
    animation-delay: 0.4s;
}

.footer-section.visible .social-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.footer-section.visible .social-icon:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.footer-section-block.animate-slide-up {
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer-section.visible .footer-section-block.animate-slide-up:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.footer-section.visible .footer-section-block.animate-slide-up:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.footer-section.visible .footer-links a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section.visible .footer-links a:hover {
    transform: translateX(5px);
}

.footer-bottom.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.footer-section.visible .footer-bottom.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-section.visible .footer-bg-image {
    animation: fadeInZoom 1.5s ease 0.5s both;
}

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

.home-hero-background.animate-bg {
    opacity: 0;
    transform: scale(1.1);
    animation: zoomFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes zoomFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.home-navbar.animate-navbar {
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-logo.animate-logo {
    opacity: 0;
    transform: scale(0.8);
    animation: fadeScaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
}

@keyframes fadeScaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.home-contact-btn.animate-btn {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.home-hero-text.animate-hero-text {
    opacity: 1;
}

.home-hero-title .hero-line {
    display: block;
    opacity: 0;
    transform: translateY(100px);
    animation: lineSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.home-hero-title .hero-line:nth-child(1) {
    animation-delay: 0.8s;
}

.home-hero-title .hero-line:nth-child(2) {
    animation-delay: 1s;
}

@keyframes lineSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero-title.word-animation {
    overflow: hidden;
}

.home-hero-title.word-animation span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: wordUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes wordUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero-mockup.animate-mockup {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
    animation: mockupEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

@keyframes mockupEntrance {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.home-mockup-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero-mockup:hover .home-mockup-img {
    transform: scale(1.05) translateY(-10px);
}

.home-hero-mockup {
    position: relative;
    width: 100%;
    cursor: none; 
    overflow: hidden;
}

.home-mockup-video {
    display: block;
    width: 100%;
    height: auto;
}

/* ===============================
   CIRCULAR BADGE 
   =============================== */

   .home-circular-badge {
    position: absolute;
    width: clamp(140px, 18vw, 200px);
    height: clamp(140px, 18vw, 200px);
    pointer-events: none;
    z-index: 100;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-hero-mockup:hover .home-circular-badge {
    opacity: 1;
}

.play-pause-btn {
    pointer-events: all;
}

.home-circular-badge.animate-badge {
    animation: spinPop 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.8s forwards;
}

@keyframes spinPop {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* ===============================
   ROTATING TEXT
   =============================== */
.home-circular-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateText {
    to {
        transform: rotate(360deg);
    }
}

.circular-text {
    font-size: clamp(11px, 1.4vw, 14px);
    font-weight: 600;
    letter-spacing: 0.15em;
    fill: #ffffff;
    text-transform: uppercase;
}

/* ===============================
   PLAY/PAUSE BUTTON
   =============================== */
.play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(50px, 7vw, 70px);
    height: clamp(50px, 7vw, 70px);
    background: linear-gradient(135deg, #4169E1 0%, #5B7FE8 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.4);
    z-index: 2;
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, #5B7FE8 0%, #4169E1 100%);
    box-shadow: 0 6px 30px rgba(65, 105, 225, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===============================
   ICONS
   =============================== */
.icon-play,
.icon-pause {
    position: absolute;
    width: 45%;
    height: 45%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.icon-play {
    opacity: 1;
    transform: scale(1) translateX(2px);
}

.icon-pause {
    opacity: 0;
    transform: scale(0.5);
}

.play-pause-btn.is-playing .icon-play {
    opacity: 0;
    transform: scale(0.5);
}

.play-pause-btn.is-playing .icon-pause {
    opacity: 1;
    transform: scale(1);
}

/* ===============================
   PROGRESS RING
   =============================== */
.progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring-circle {
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 0.3s linear;
    stroke-linecap: round;
}

@media (max-width: 768px) {
    .home-hero-mockup {
        cursor: default; 
    }
    
    .home-circular-badge {
        position: static;
        transform: none;
        opacity: 1;
        margin: 20px auto;
        pointer-events: all;
    }
}

.home-hero-section {
    perspective: 1000px;
}

.home-hero-mockup.parallax-active {
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}

.home-hero-section.scrolled .home-hero-mockup {
    transform: translateY(-20px);
    transition: transform 0.6s ease;
}

.home-navbar.animate-navbar-service {
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-logo.animate-logo-service {
    opacity: 0;
    transform: scale(0.8);
    animation: fadeScaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
}

@keyframes fadeScaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.home-contact-btn.animate-btn-service {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-hero-section.scrolled .home-navbar {
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.home-contact-btn.animate-btn-service:hover {
    transform: translateX(5px) scale(1.05);
    transition: all 0.3s ease;
}

.home-logo.animate-logo-service:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-section{
  background: var(--c-bg-black);
  color: var(--c-white);
  padding: var(--space-y) var(--space-x);
}

.contact-container{
  max-width: var(--max-content-width);
  margin: 0 auto;
  width: 100%;
}

.contact-header{
  margin-bottom: clamp(24px,4vw,36px);
}

.contact-title{
  font-size: clamp(36px,4.5vw,48px);
  font-weight: 600;
  margin-bottom: clamp(16px,4vw,24px);
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: clamp(24px,4vw,36px);
  margin-top: clamp(24px,3vw,36px);
}

.contact-row{
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: clamp(16px,2.5vw,32px);
  border-top: none;
}

.contact-details-row{
  grid-template-columns: 1fr;
  
}

.contact-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label{
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #f5f5f5;
}

.contact-field label span{
  color: #ffffff;
}

.contact-field label .astric{
    color: #ff4444;
}

.contact-field input,
.contact-field textarea,
.contact-select select{
  width: 100%;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid #303030;
  color: var(--c-white);
  font-size: 14px;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder{
  color: #666666;
  font-size: 14px;
}

.contact-field textarea::-webkit-input-placeholder{color:#777777;font-family:'Atten New',sans-serif;}
.contact-field textarea::-moz-placeholder{color:#777777;font-family:'Atten New',sans-serif; font-size: 14px;}
.contact-field textarea:-ms-input-placeholder{color:#777777;font-family:'Atten New',sans-serif;}

.contact-select{
  position: relative;
  width: 100%;
  max-width: 100%;
}

.contact-select select{
  width: 100%;
  padding: 14px 40px 14px 14px;
  background: #2b2b2b;
  border: 1px solid #303030;
  color: #f5f5f5;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-select::after{
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #b8b8b8;
  pointer-events: none;
}

.contact-select::after{
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #999999;
  pointer-events: none;
}

.contact-services .services-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 4px;
}

.service-checkbox{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  color: #f3f3f3;
}

.service-checkbox input{
  display: none;
}

.checkmark{
  width: 22px;
  height: 22px;
  background: #333333;
  position: relative;
}

.service-checkbox input:checked + .checkmark{
  border-color: #FEA800;
  background: #FEA800;
}

.service-checkbox input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: 2px solid #000;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

.service-label{
  white-space: nowrap;
}

.upload-doc-btn{
  width: 100%;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.20);
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: #FEA800;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
   align-items: center;       
  justify-content: center; 
}

.upload-doc-icon{
  width: 24px;     
  height: 24px;
  object-fit: contain;
}

.upload-doc-btn:hover{
  background: #444444;
}

.contact-actions{
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(10px,2vw,18px);
}

.contact-submit{
  padding: 10px 32px;
  background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
  border: none;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-details-row .full-width{
  border-top: none !important;
}

.contact-details-row label{
  border: none;
}   

.upload-file-name{
  margin-top: 6px;
  font-size: 13px;
  color: var(--c-muted);
  word-break: break-all;
}

.error-message {
  display: none;
  color: #ff4444;
  font-size: 14px;
  margin-top: 4px;
  font-weight: 400;
}

.error-message.show {
  display: block;
}

.contact-field input.error,
.contact-field textarea.error {
  border: 1px solid #ff4444 !important;
  background: rgba(255, 68, 68, 0.1);
}

.phone-input-wrapper {
  display: flex;
  gap: 1px;
  width: 100%;
  align-items: stretch;
}

.country-code-select {
  width: 70px;
  min-width: 70px;
  padding: 14px 14px 14px 14px;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid #303030;
  color: var(--c-white);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  font-family: 'Atten New', sans-serif;
}

.country-code-wrapper {
  position: relative;
  width: 100px;        
  min-width: 100px;   
  max-width: 100px;    
  flex-shrink: 0;
}

.country-code-wrapper::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #b8b8b8;
  pointer-events: none;
}
.phone-input-wrapper input {
  flex: 1;
  min-width: 0;
  width: 100%; 
}

.g-recaptcha {
  margin-top: 8px;
  transform: scale(0.95);
  transform-origin: 0 0;
}

.accordion-cta-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.country-code-select option {
  background: #2b2b2b;
  color: var(--c-white);
  padding: 10px;
  font-size: 14px;
}

.country-code-select:hover {
  border-color: #404040;
  background: rgba(255, 255, 255, 0.25);
}

.country-code-select:focus {
  border-color: #FEA800;
  background: rgba(255, 255, 255, 0.25);
}

.country-code-select::-ms-expand {
  display: none;
}

.budget-input-wrapper {
  position: relative;
  width: 100%;
}

.rupee-symbol {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5f5f5;
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
  z-index: 1;
}

.budget-input-wrapper input {
  width: 100%;
  padding: 14px 14px 14px 38px;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid #303030;
  color: var(--c-white);
  font-size: 14px;
  outline: none;
}

.budget-input-wrapper input::placeholder {
  color: #666666;
}

@media (max-width: 768px) {
  .phone-input-wrapper {
    flex-direction: row;
    gap: 1px;
  }
  
  .country-code-select,
  .country-code-wrapper {
    width: 70px;
    min-width: 70px;
  }
}

@media (max-width: 480px) {
  .phone-input-wrapper {
    flex-direction: row; 
    gap: 1px;
  }
  
  .country-code-select,
  .country-code-wrapper {
width: 70px;        
  min-width: 70px;
  max-width: 70px;
  }
}

@media (max-width: 768px) {
  .phone-input-wrapper {
    flex-direction: row; 
  }
  
  .country-code-select {
    width: 100%;
    height: 100%;        
  padding: 14px 14px 14px 12px;
  }
  
  .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.75);
  }
}

@media (max-width: 992px){
  .contact-row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px){
  .contact-section{
    padding: 30px 16px;
  }
  .contact-field label{
  font-size: 16px;
}

  .contact-actions{
    justify-content: stretch;   
  }

  .contact-submit{
    width: 100%;
    justify-content: center; 
  }

    .contact-select{
    max-width: 100vw;
  }
  .contact-select select{
    max-width: 100%;
  }

   .contact-services .services-grid{
    flex-direction: column;
    align-items: flex-start; 
    gap: 6px;
  }

}

.play-pause-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(80px, 10vw, 120px);
    height: clamp(80px, 10vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(254, 168, 0, 0.6);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

.pulse-ring-delay {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-pause-btn {
    position: relative;
    width: clamp(60px, 8vw, 90px);
    height: clamp(60px, 8vw, 90px);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.play-pause-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(242, 166, 2, 0.8) 0%, 
        rgba(247, 120, 71, 0.8) 50%, 
        rgba(254, 168, 0, 0.8) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.play-pause-btn:hover::before {
    opacity: 1;
}

.play-pause-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 2px 6px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.play-pause-btn:active {
    transform: scale(0.95);
}

.play-pause-btn svg {
    width: clamp(20px, 3vw, 32px);
    height: clamp(20px, 3vw, 32px);
    color: #ffffff;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-play {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.icon-pause {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.play-pause-btn.is-playing .icon-play {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.play-pause-btn.is-playing .icon-pause {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.progress-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-pause-btn.is-playing ~ .progress-ring {
    opacity: 1;
}

.progress-ring-circle {
    stroke-dasharray: 339.292; 
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.3s ease;
    stroke-linecap: round;
}

.play-pause-container:hover .play-pause-btn {
    box-shadow: 
        0 12px 40px rgba(254, 168, 0, 0.3),
        0 0 30px rgba(254, 168, 0, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.15);
}

.play-pause-btn.is-playing ~ .pulse-ring {
    animation: none;
    opacity: 0;
}

@media (max-width: 768px) {
    .play-pause-container {
        width: 80px;
        height: 80px;
    }

    .play-pause-btn {
        width: 60px;
        height: 60px;
    }

    .play-pause-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .play-pause-container {
        width: 70px;
        height: 70px;
    }

    .play-pause-btn {
        width: 50px;
        height: 50px;
    }

    .play-pause-btn svg {
        width: 20px;
        height: 20px;
    }

    .pulse-ring {
        border-width: 2px;
    }
}

.play-pause-btn:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(254, 168, 0, 0.5),
        0 12px 40px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    .pulse-ring,
    .play-pause-btn,
    .play-pause-btn svg,
    .progress-ring-circle {
        animation: none !important;
        transition: none !important;
    }
}
.about-values-section {
    background: var(--c-bg-black);
    color: var(--c-white);
    padding: var(--space-y) var(--space-x);
}

.about-values-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding-top: 60px;
}

.about-values-header {
    margin-bottom: clamp(40px, 6vw, 60px);
}

.about-values-label {
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 400;
    color: #F2A602;
    letter-spacing: 1px;
    margin-bottom: clamp(12px, 2vw, 20px);
    display: block;
}

.about-values-title {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-white);
    margin: 0;
}

.about-values-scroll-wrapper {
    overflow: visible;
    width: 100%;
    margin-bottom: clamp(30px, 4vw, 0);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
    scroll-behavior: smooth;
}

/* ============================================
   CARD BASE
   ============================================ */

.about-value-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s ease,
                background 0.4s ease,
                border-color 0.4s ease;
    overflow: hidden;
}

.about-value-card.highlight-card {
    border: 2px solid #F2A602;
    background: rgba(242, 166, 2, 0.05);
}

/* ============================================
   HOVER - Remove old ::before border trick
   ============================================ */

.about-value-card::before,
.about-value-card:hover::before,
.about-value-card.highlight-card::before,
.about-value-card.highlight-card:hover::before {
    display: none;
}

/* ============================================
   HOVER - Clean Modern Effect (No Border)
   ============================================ */

.about-value-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: transparent;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(242, 166, 2, 0.12),
        0 0 60px rgba(242, 166, 2, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-value-card.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    background: rgba(242, 166, 2, 0.08);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(242, 166, 2, 0.2),
        0 0 80px rgba(242, 166, 2, 0.08),
        inset 0 1px 0 rgba(242, 166, 2, 0.15);
}

/* ============================================
   CARD INNER
   ============================================ */

.about-value-card-inner {
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    height: 100%;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    transition: background 0.4s ease;
}

.about-value-card:hover .about-value-card-inner {
    background: linear-gradient(135deg, #1e1e1e 0%, #111111 100%);
}

/* ============================================
   ICON
   ============================================ */

.about-value-icon {
    width: clamp(44px, 5vw, 56px);
    height: clamp(44px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-value-card:hover .about-value-icon img {
    transform: scale(1.15) rotate(-3deg);
}

/* ============================================
   CONTENT
   ============================================ */

.about-value-content {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.5vw, 16px);
}

.about-value-title {
    font-size: clamp(20px, 2.1vw, 24px);
    font-weight: 600;
    color: var(--c-white);
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.about-value-card:hover .about-value-title {
    color: #F2A602;
}

.about-value-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   PROGRESS BAR (Mobile only)
   ============================================ */

.about-values-progress-bar {
    position: relative;
    width: 100%;
    height: 3px;
    background: var(--c-line);
    margin-bottom: clamp(20px, 3vw, 30px);
    border-radius: 2px;
    overflow: hidden;
    display: none;
}

.about-values-progress-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.about-values-progress-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #F2A602 0%, #F77847 50%, #FEA800 100%);
    width: 33.333%;
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* ============================================
   NAVIGATION ARROWS (Mobile only)
   ============================================ */

.about-values-navigation {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    padding-top: clamp(20px, 3vw, 30px);
}

.about-values-arrow {
    width: clamp(36px, 4vw, 50px);
    height: clamp(36px, 4vw, 50px);
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: clamp(16px, 2vw, 24px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-values-arrow:hover {
    background: #fff;
    color: #000;
}

.about-values-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.about-values-arrow:disabled:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .work-image-link img {
    width: 100%;
    height: 150px;
}
}

@media (max-width: 768px) {
    .about-values-scroll-wrapper {
        overflow: visible;
        margin-bottom: 30px;
    }

    .work-image-link img {
    width: 100%;
    height: 150px;
}
    
    .about-values-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-value-card {
        width: 100%;
    }
    
    .about-value-card:nth-child(n+4) {
        display: none;
    }
    
    .about-values-progress-bar {
        display: none;
    }
    
    .about-values-navigation {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-values-container {
        padding-top: 40px;
    }
    
    .about-values-header {
        margin-bottom: 32px;
    }
    
    .about-value-card-inner {
        padding: 20px;
    }
}

.track-record-section {
    background: #000000;
    color: #ffffff;
    padding: var(--space-y) var(--space-x);
}

.track-record-container {
    max-width: 1400px;
    margin: 0 auto;
}

.track-record-header {
    margin-bottom: clamp(40px, 5vw, 60px);
}

.track-record-label {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-bottom: clamp(16px, 2vw, 20px);
    display: block;
}

.track-record-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    max-width: 900px;
}

.track-record-tabs {
    display: flex;
    gap: clamp(30px, 4vw, 50px);
    margin-bottom: clamp(16px, 3vw, 24px);
}

.track-record-tab {
    font-size: clamp(24px, 1.6vw, 24px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.track-record-tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.track-record-tab.active {
    color: #F2A602;
    font-weight: 600;
}

.track-tabs-progress {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: clamp(16px, 4vw, 24px);
    border-radius: 10px;
    overflow: hidden;
}

.track-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        #537993 0%, 
        #F77847 25%, 
        #FEA800 50%, 
        #F2A602 100%
    );
    background-size: 200% 100%;
    width: 100%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    animation: waveGradient 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(242, 166, 2, 0.5);
}

@keyframes waveGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.track-progress-circle {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #FEA800 0%, #F77847 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(254, 168, 0, 0.8),
        0 0 40px rgba(247, 120, 71, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(242, 166, 2, 0.4);
    }
    50% {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3), 0 2px 12px rgba(242, 166, 2, 0.6);
    }
}

.track-record-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}


.track-stat-item {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 8px);
    position: relative;
}

.track-stat-label {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 1024px) {
    .track-record-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 32px;
    }
}

@media (max-width: 768px) {
    .track-record-section {
        padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 24px);
    }
    
    .track-record-header {
        margin-bottom: 32px;
    }
    
    .track-record-tabs {
        gap: 24px;
        margin-bottom: 12px;
    }
    
    .track-tabs-progress {
        margin-bottom: 24px;
    }
    
    .track-record-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 16px;
        padding: 20px 0;
    }
    
    .track-stat-item {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .track-record-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 12px;
        padding: 16px 0;
    }
    
    .track-stat-item {
        gap: 4px;
    }
    
    .track-stat-number {
        font-size: 14px;
    }
    
    .track-stat-label {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .track-record-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.track-stat-number {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.track-record-media {
    width: 100%;
    margin-top: clamp(24px, 4vw, 36px);
}

.track-media-placeholder {
    width: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.track-media-placeholder img,
.track-media-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.track-stat-label {
    transition: opacity 0.2s ease, transform 0.2s ease;
}


@media (max-width: 1024px) {
    .track-record-stats {
        gap: clamp(20px, 3vw, 40px);
    }
    
    .track-stat-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .track-record-section {
        padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 24px);
    }
    
    .track-record-header {
        margin-bottom: 32px;
    }
    
    .track-record-tabs {
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .track-record-stats {
        gap: 24px;
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    
    .track-stat-item {
        flex: 0 0 calc(50% - 12px);
    }
    
   
}

@media (max-width: 480px) {
    .track-record-tabs {
        gap: 20px;
    }
    
    .track-record-tab {
        font-size: 24px;
    }
    
    .track-record-stats {
        gap: 20px;
    }
    
    .track-stat-item {
        flex: 0 0 calc(50% - 10px);
    }
    
   
}

@media (max-width: 768px) {
    .home-hero-mockup {
        cursor: default !important;
    }
    
    .home-circular-badge {
        position: absolute !important;
        top: 40% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        opacity: 1 !important;
        width: 100px !important;
        height: 100px !important;
        pointer-events: all !important;
    }
}

@media (max-width: 480px) {
    .home-circular-badge {
        width: 80px !important;
        height: 80px !important;
        top: 40% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

@media (max-width: 360px) {
    .home-circular-badge {
        width: 70px !important;
        height: 70px !important;
    }
}

.scroll-to-top {
  position: fixed;
  bottom: 180px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(120deg, #537993 -4%, #F77847 25%, #FEA800 50%, #EADDBF 100%);
  border: none;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(254, 168, 0, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(254, 168, 0, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .scroll-to-top svg {
    width: 16px;
    height: 16px;
  }
}

.services-grid,
.vi-grid,
#webUiSlider,
#mobileUiSlider,
#nextWorkGrid,
.blog-slider,
.work-slider,
#impactSlider {
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.services-grid::-webkit-scrollbar,
.vi-grid::-webkit-scrollbar,
#webUiSlider::-webkit-scrollbar,
#mobileUiSlider::-webkit-scrollbar,
#nextWorkGrid::-webkit-scrollbar,
.blog-slider::-webkit-scrollbar,
.work-slider::-webkit-scrollbar,
#impactSlider::-webkit-scrollbar {
  display: none; 
}

@media (min-width: 769px) {
  .services-grid,
  .work-slider,
  .vi-grid,
  #webUiSlider,
  #mobileUiSlider,
  #nextWorkGrid,
  .blog-slider,
  #impactSlider {
    cursor: default !important;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .work-slider,
  .vi-grid,
  #webUiSlider,
  #mobileUiSlider,
  #nextWorkGrid,
  .blog-slider,
  #impactSlider {
    cursor: grab;
  }
}

.success-message-section {
  background: #000;
  padding: 0px var(--space-y);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-outer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.success-image-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.success-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.success-title {
  font-size: 60px;
  font-weight: 700;
  color: #A8CF45;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  font-family: 'Atten New', sans-serif;
}

.success-subtitle {
  font-size: 20px;
  color: #f5f5f5;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .success-message-section {
    padding: 20px;
    min-height: 30vh;
  }
  
  .success-outer-container {
    gap: 30px;
  }
  
  .success-image-box {
    height: 150px;
    border-radius: 12px;
  }
  
  .success-title {
    font-size: 48px;
  }
  
  .success-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .success-outer-container {
    gap: 24px;
  }
  
  .success-image-box {
    height: 120px;
    border-radius: 8px;
  }
  
  .success-title {
    font-size: 36px;
    margin-bottom: 16px;
  }
  
  .success-subtitle {
    font-size: 14px;
  }
}

.blog-detail-hero {
    padding: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 60px) clamp(40px, 5vw, 80px);
    position: relative;
    width: 100%;
    height: clamp(400px, 45vw, 550px);
    overflow: hidden;
    background: linear-gradient(135deg, 
        #FF9A8B 0%, 
        #FF6A88 25%, 
        #A855F7 50%, 
        #6366F1 75%, 
        #8B5CF6 100%
    );
}

.blog-hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-image {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.blog-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.squiggle {
    position: absolute;
    width: clamp(60px, 8vw, 120px);
    height: clamp(60px, 8vw, 120px);
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http:/www.w3.org/2000/svg'%3E%3Cpath d='M10 60 Q 40 20, 70 60 T 110 60' stroke='rgba(255,255,255,0.3)' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.squiggle-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.squiggle-2 {
    top: 50%;
    right: 8%;
    transform: rotate(25deg);
    animation-delay: 2s;
}

.squiggle-3 {
    bottom: 15%;
    left: 10%;
    transform: rotate(-10deg);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--rotation, 0deg) + 5deg));
    }
}

.blog-detail-content {
    background: #000000;
    color: #ffffff;
    padding: clamp(24px, 5vw, 36px) clamp(20px, 4vw, 60px);
}

.blog-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-header {
    margin-bottom: clamp(24px, 5vw, 48px);
}

.blog-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 clamp(12px, 3vw, 12px) 0;
}

.blog-tags-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: clamp(12px, 3vw, 12px);
    flex-wrap: wrap;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
}

.blog-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: rgba(242, 166, 2, 0.1);
    border-color: #F2A602;
    color: #F2A602;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 32px);
    flex-wrap: wrap;
}

.blog-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(14px, 1.3vw, 14px);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-social-share {
    display: flex;
    gap: 12px;
    align-items: center;
}

.blog-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 8px;
}

.blog-social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.blog-social-icon:hover {
    background: rgba(242, 166, 2, 0.1);
    border-color: #F2A602;
    transform: translateY(-3px);
}

.blog-social-icon:hover img {
    opacity: 1;
}

.blog-article {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.blog-intro {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(24px, 5vw, 48px);
}

.blog-page-section {
    margin-bottom: clamp(24px, 5vw, 48px);
}

.section-heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 clamp(14px, 2vw, 14px) 0;
    line-height: 1.3;
}

.section-text {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: clamp(14px, 2vw, 14px);
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-list li {
    position: relative;
    padding-left: 32px;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.section-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #F2A602, #FEA800);
    border-radius: 50%;
}

.section-list li strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: clamp(16px, 3vw, 24px) clamp(16px, 4vw, 24px) clamp(32px, 5vw, 48px);
    }
    
    .blog-hero-image {
        max-width: 100%; 
        max-height: 450px; 
    }
        .blog-tags-date-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 12x;
        }
    
    .squiggle {
        width: 60px;
        height: 60px;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
    }
    
    .blog-tags {
        gap: 8px;
    }
    
    .blog-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .blog-meta {
        align-items: flex-start;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon img {
        width: 16px;
        height: 16px;
    } 
}

@media (max-width: 480px) {

     .blog-tags-date-row {
        gap: 12px;
    }
    .blog-detail-hero {
        height: 330px;
    }
    
    .blog-title {
        font-size: 28px;
    }

    .blog-hero-image {
        max-width: 100%; 
        max-height: 400px; 
    }
    
    .section-heading {
        font-size: 22px;
    }
}

/* ===============================
   BREADCRUMB SECTION
   =============================== */
.breadcrumb-section {
    padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 60px) clamp(24px, 2vw, 24px);
}

.breadcrumb-container {
    max-width: 1440px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(13px, 1.2vw, 15px);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: #F2A602;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    
    .breadcrumb-nav {
        font-size: 14px;
    }
    
.breadcrumb-current {
    max-width: 150px;
  }
}

/* Accessibility utility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #FEA800;
  outline-offset: 2px;
}
