
   
.hero-portfolio{
    width:100%;
    height:60vh;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-container{
    text-align:center;
}

.hero-portfolio h1{
    color:#fff;
    font-size:72px;
    font-family: 'Playfair Display', serif;
    font-weight:500;
    line-height:1.2;
    text-transform:uppercase;
    padding-top:20px;
}
/* Tablet view (up to 768px) */
@media screen and (max-width: 768px) {
  .hero-portfolio h1 {
    font-size: 48px; /* Reduce font size for tablets */
    padding-top: 15px; /* Adjust padding-top */
  }
}

/* Mobile view (up to 480px) */
@media screen and (max-width: 480px) {
  .hero-portfolio h1 {
    font-size: 32px; /* Further reduce font size for mobile */
    padding-top: 10px; /* Adjust padding-top */
  }
  .hero-portfolio{
    height:40vh;
  }
}
.mode-title{
  color: black;
}
.mode-heading{
  color: black;
  font-weight:600;
}
.uiux::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:8px;
    background:url("https://svgshare.com/i/15F5.svg") repeat-x;
}
@media (max-width:768px){

.hero h1{
    font-size:40px;
}

}
.portfolio1-section{
background:#000;
padding:80px 0;
display:flex;
justify-content:center;
}

.frame{
width:90%;
max-width:1400px;
height:650px;
overflow:hidden;
border-radius:20px;
border:3px solid #3a7bff;
background:#111;
}

.columns{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:20px;
}

/* column style */

.column{
display:flex;
flex-direction:column;
gap:20px;
animation:scrollUp 18s linear infinite;
}

.column img{
width:100%;
border-radius:10px;
}

/* stagger effect */

.column1{ transform:translateY(0px); }

.column2{ transform:translateY(120px); }

.column3{ transform:translateY(60px); }

.column4{ transform:translateY(180px); }

/* animation */

@keyframes scrollUp{

0%{
transform:translateY(0);
}

100%{
transform:translateY(-50%);
}

}
@media (max-width:1000px){

.columns{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.columns{
grid-template-columns:1fr;
}

.frame{
height:500px;
}

}
.features-section{
background:#000;
padding:80px 20px;
text-align:center;
}

.features-title{
color:#fff;
font-size:48px;
margin-bottom:60px;
}

/* MAIN GRID */

.features-grid{
display:grid;
grid-template-columns:1fr 2fr 1fr;
gap:30px;
align-items:center;
}

/* LEFT & RIGHT STACK */

.feature-column{
display:flex;
flex-direction:column;
gap:25px;
}

/* SIDE CARDS */

.feature-card{
background:white;
padding:18px;
border-radius:12px;
}

.feature-card img{
width:100%;
border-radius:8px;
margin-top:10px;
}

/* CENTER CARD */

.main-feature{
background:#ddd;
padding:40px;
border-radius:14px;
position:relative;
height:320px;   /* control container height */
overflow:hidden;
}

.mode-heading{
font-size:26px;
margin-bottom:20px;
}

/* IMAGE */

.mode-image{
/* position:absolute;
left:50%; */
/* transform:translateX(-50%); */
/* bottom:-120px;  */
 width:85%; 
}
.feature-card h3{
  color:black;
}
.mode-image{
position:relative;
/* margin-top:30px; */
}

.mode-image img{
width:100%;
border-radius:10px;
transition:opacity .6s ease;
}

/* hide dark image */


.dark-img{
display:none;
}

.mode-image.dark-active .light-img{
display:none;
}

.mode-image.dark-active .dark-img{
display:block;
}

.light-img{
position:relative;
opacity:1;
}

.dark-img{
opacity:0;
}

/* DARK ACTIVE */

.mode-image.dark-active .light-img{
opacity:0;
}

.mode-image.dark-active .dark-img{
opacity:1;
}
@media (max-width:1024px){

.features-grid{
grid-template-columns:1fr;
}

.feature-column{
flex-direction:row;
}

.feature-card{
width:100%;
}

}
/* CENTER CARD */

.feature-center-card{
background:#e6e6e6;
border-radius:16px;
padding-top:10px !important;
padding:40px;
position:relative;
height:490px;
overflow:hidden;
}

/* SMALL TITLE */

.feature-mode-title{
font-size:16px;
margin-bottom:10px;
color:black;
}

/* TOP ROW */

.feature-top-row{
display:flex;
 justify-content:space-between; 
 align-items:flex-start; 
gap:10px;
}

/* HEADING */

.feature-heading{
font-size:28px;
font-weight:700;
line-height:1.3;
text-align:left;
color:black;
}

/* TOGGLE */

.feature-toggle input{
display:none;
}

.feature-slider{
width:48px;
height:26px;
background:#ccc;
border-radius:50px;
display:inline-block;
position:relative;
cursor:pointer;
border:1px solid grey;
}
.feature-slider{
background:url("/assets/images/sun.png") center/cover no-repeat;
}

.feature-toggle input:checked + .feature-slider{
background:url("/assets/images/moon.png") center/cover no-repeat;
}
.feature-slider::before{
content:"";
width:22px;
height:22px;
/* background:#fff; */
position:absolute;
top:2px;
left:2px;
border-radius:50%;
transition:0.3s;
}

/* .feature-toggle input:checked + .feature-slider{
background:#444;
} */

.feature-toggle input:checked + .feature-slider::before{
transform:translateX(22px);
}

/* PREVIEW IMAGE */

.feature-preview{
position:absolute;
/* left:50%; */
/* transform:translateX(-50%); */
/* bottom:-80px; */
width:85%;
}

/* IMAGE */

.feature-preview img{
width:100%;
border-radius:12px;
position:absolute;
top:0;
left:0;
}

/* default state */

.preview-light{
opacity:1;
}

.preview-dark{
opacity:0;
}

/* LIGHT → DARK */

.feature-preview.dark-active .preview-dark{
animation:darkReveal 1.2s forwards;
}

.feature-preview.dark-active .preview-light{
animation:lightFade 1.2s forwards;
}

/* DARK → LIGHT */

.feature-preview:not(.dark-active) .preview-light{
animation:lightReveal 1.2s forwards;
}

.feature-preview:not(.dark-active) .preview-dark{
animation:darkFade 1.2s forwards;
}


/* DARK REVEAL */

@keyframes darkReveal {

0%{opacity:0;}
20%{opacity:0.2;}
50%{opacity:0.5;}
70%{opacity:0.7;}
90%{opacity:0.9;}
100%{opacity:1;}

}

/* LIGHT FADE */

@keyframes lightFade {

0%{opacity:1;}
20%{opacity:0.8;}
50%{opacity:0.5;}
70%{opacity:0.3;}
90%{opacity:0.1;}
100%{opacity:0;}

}

/* LIGHT REVEAL (reverse animation) */

@keyframes lightReveal {

0%{opacity:0;}
20%{opacity:0.2;}
50%{opacity:0.5;}
70%{opacity:0.7;}
90%{opacity:0.9;}
100%{opacity:1;}

}

/* DARK FADE */

@keyframes darkFade {

0%{opacity:1;}
20%{opacity:0.8;}
50%{opacity:0.5;}
70%{opacity:0.3;}
90%{opacity:0.1;}
100%{opacity:0;}

}
.site-gallery{
background:#000;
padding:80px 20px;
text-align:center;
}

.site-gallery-title{
color:#fff;
font-size:38px;
margin-bottom:60px;
}

/* GRID */

.site-gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1200px;
margin:auto;
}

/* CARD */

.site-card{
position:relative;
background:#fff;
border-radius:14px;
overflow:hidden;
height:230px;
border:5px solid white;
}

/* scroll container */

.site-scroll{
height:100%;
overflow-y:auto;
display:flex;
flex-direction:column;
}

/* images */
.site-scroll img{
width:100%;
display:block;
border:5px solid white;

}

/* smooth scrolling */

.site-scroll{
scroll-behavior:smooth;
}

/* optional scrollbar styling */

.site-scroll::-webkit-scrollbar{
width:4px;
}

.site-scroll::-webkit-scrollbar-thumb{
background:#aaa;
border-radius:10px;
}

/* buttons */

.site-buttons{
position:absolute;
bottom:15px;
left:15px;
display:flex;
gap:10px;
opacity:0;
transition:0.3s;
}

.site-card:hover .site-buttons{
opacity:1;
}

.site-btn{
padding:6px 14px;
background:#fff;
border-radius:20px;
text-decoration:none;
font-size:13px;
font-weight:600;
color:#000;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

.site-btn:hover{
background:#000;
color:#fff;
}
@media (max-width:1024px){

.site-gallery-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.site-gallery-grid{
grid-template-columns:1fr;
}

.site-card{
height:200px;
}

.site-gallery-title{
font-size:28px;
}

}
.tools-section{
background:#000;
padding:100px 20px;
color:#fff;
}

/* TOP AREA */

.tools-top{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
margin-bottom:70px;
flex-wrap:wrap;
}

.tools-text{
max-width:650px !important;
}

.tools-sub{
font-size:16px;
opacity:0.7;
margin-bottom:10px;
}

.tools-heading{
font-size:58px !important;
line-height:1.2;
font-weight:500;
}

/* DEVICE IMAGE */

.tools-device img{
width:380px;
max-width:100%;
}

/* GRID */

.tools-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1200px;
margin:auto;
}

/* CARD */

.tool-card{
border-radius:20px;
overflow:hidden;
background:#111;
}

.tool-card img{
width:100%;
display:block;
}
/* TABLET */

@media (max-width:1024px){

.tools-heading{
font-size:40px;
}

.tools-grid{
grid-template-columns:repeat(2,1fr);
}

.tools-device{
margin-top:30px;
}

}

/* MOBILE */

@media (max-width:600px){

.tools-top{
flex-direction:column;
align-items:flex-start;
}

.tools-heading{
font-size:34px;
}

.tools-grid{
grid-template-columns:1fr;
}

}
.tool-card{
transition:0.3s;
}

.tool-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.4);
}
.feature-neon-section{
background:#000;
padding:100px 20px;
text-align:center;
font-family:'Playfair Display', serif;
}

/* subtitle */

.feature-subtitle{
color:white;
font-size:18px;
margin-bottom:10px;
}

/* title */

.feature-main-title{
color:#fff;
font-size:60px;
line-height:1.2;
margin-bottom:70px;
}

/* grid */

.feature-neon-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
max-width:1100px;
margin:auto;
}

/* card */

.feature-neon-card{
border:2px solid #88C7E1;
border-radius:12px;
padding:25px 15px;
color:#aeeaff;
background:#000;
transition:0.3s;
box-shadow: 0 0 6px #3dd7ff;
}

/* icon */

.feature-neon-card img{
width:55px;
margin-bottom:18px;
filter:brightness(0) invert(1);

filter:
drop-shadow(0 0 2px #4ddcff)
drop-shadow(0 0 2px #4ddcff);
}

/* text */

.feature-neon-card p{
font-size:22px;
line-height:1.4;
font-weight:500;

color:#ffffff;

/* sharp neon edge */

text-shadow:
0 0 6px #4ddcff,
0 0 6px #4ddcff;
}

/* hover */

.feature-neon-card:hover{
transform:translateY(-5px);
box-shadow:
0 0 15px #3dd7ff,
0 0 30px rgba(61,215,255,0.7);
}
/* tablet */

@media (max-width:1024px){

.feature-neon-grid{
grid-template-columns:repeat(3,1fr);
}

.feature-main-title{
font-size:48px;
}

}

/* mobile */

@media (max-width:600px){

.feature-neon-grid{
grid-template-columns:repeat(2,1fr);
}

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

.feature-neon-card{
padding:20px;
}

}

.cta-section{
background:linear-gradient(to bottom,#000,#020202);
padding:120px 20px;
text-align:center;
}

.cta-content h1{
color:#fff;
font-size:56px;
font-family:'Playfair Display', serif;
font-weight:500;
margin-bottom:40px;
}

/* BUTTON */

.cta-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #4da6ff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 0 15px rgba(45, 166, 255, 0.5),
              0 0 30px rgba(45, 166, 255, 0.3),
              inset 0 0 10px rgba(45, 166, 255, 0.1); */
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  background: rgba(45, 166, 255, 0.1);
  border-color: #5bb5ff;
  box-shadow: 0 0 20px rgba(45, 166, 255, 0.7),
              0 0 40px rgba(45, 166, 255, 0.4),
              inset 0 0 15px rgba(45, 166, 255, 0.2);
  transform: translateY(-2px);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(45, 166, 255, 0.6);
}
 
/* portfolio csss */

.graphics-portfolio{
background:#000;
padding:80px 0;
display:flex;
justify-content:center;

}

.graphics-frame{
width:95%;
max-width:1300px;
height:650px;
overflow:hidden;
border-radius:20px;
position:relative;
border:5px solid #242424;
}

/* track that moves */

.graphics-track{
animation:portfolioScroll 5s linear infinite alternate;
}

.graphics-track img{
width:100%;
display:block;
}
@keyframes portfolioScroll{

0%{
transform:translateY(0);
}

100%{
transform:translateY(-50%);
}

}
@media (max-width:768px){

.graphics-frame{
height:450px;
}

}

@media (max-width:480px){

.graphics-frame{
height:350px;
}

}
.graphic-features{
background:#000;
padding:80px 20px;
}

.graphic-title{
color:#fff;
text-align:center;
font-size:48px;
font-family:'Playfair Display', serif;
margin-bottom:50px;
}

/* CARD */

.graphic-card{
background:white;
border-radius:10px;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
height:100%;
overflow:hidden;
}

.graphic-card img{
width:110px;
}

/* TEXT */

.graphic-card h4{
font-size:16px;
margin-bottom:8px;
font-weight:700;
color:black;
}

.graphic-card p{
font-size:15px;
color:black;
line-height:1.4;
margin:0;
}
.font-big{
    font-size:25px !important;
}
.text{
    width:100%;
}

.big-frame-section{
background:#000;
}

.big-frame-title{
color:#fff;
font-size:40px;
font-weight:500;
}

/* card */

.big-frame-card{
/* background:#cfcfcf; */
border-radius:12px;
height:220px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
padding:8px;
}
.small-h{
 height:90%;
}
.small-h2{
    height:90%;
}
/* image */

.big-frame-card img{
width:100%;
height:100%;
object-fit:cover;
border-radius:10px;
}
.big-frame-card{
transition:0.3s;
}

.big-frame-card:hover{
transform:translateY(-6px);
}
.gframe-big{
height:220px;
/* background:#cfcfcf; */
border-radius:8px;
}

.gframe-tall{
/* height:220px; */
/* background:#cfcfcf; */
border-radius:8px;
}

.gframe-small{
height:104px;
/* background:#cfcfcf; */
border-radius:8px;

}

.gbox-small{
height:30vh;
background:#cfcfcf;
border-radius:8px;
object-fit:cover;
}

.gbox-medium{
height:50vh;
background:#cfcfcf;
border-radius:8px;
}

.gbox-tall{
height:62vh;
background:#cfcfcf;
border-radius:8px;
}
.design-box{
height:220px;
background:#cfcfcf;
border-radius:10px;
width:100%;
}
.design-box img{
width:100%;
height:100%;
object-fit:cover;
border-radius:10px;
}

.video-hero {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 20px 60px;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  color: #fff;
  font-size: 72px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}

.uiux {
  position: relative;
  display: inline-block;
  color: #fff;
}

.wavy-underline {
  width: 100%;
  margin-top: 8px;
  display: block;
}

.wavy-underline svg {
  width: 100%;
  height: 14px;
  display: block;
}

.editor-character {
  perspective: 1000px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.editor-character img {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

.hero-btn-wrap {
  display: inline-block;
  margin-top: 24px;
  text-decoration: none;
}

.contact-glow-btn {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: white;
  padding: 12px 24px;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  background: linear-gradient(180deg, #c24cff, #7b1cff);
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow:
    0 0 10px rgba(210,120,255,0.9),
    0 0 25px rgba(160,60,255,0.8),
    inset 0 0 15px rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.contact-glow-btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 15px rgba(210,120,255,1),
    0 0 35px rgba(160,60,255,1),
    0 0 60px rgba(160,60,255,0.7),
    inset 0 0 20px rgba(255,255,255,0.3);
}

/* Tablet */
@media (max-width: 991px) {
  .video-hero {
    min-height: auto;
    padding: 120px 24px 70px;
  }

  .hero-content h1 {
    font-size: 52px;
    line-height: 1.12;
  }

  .editor-character {
    margin-top: 26px;
  }

  .editor-character img {
    max-width: 360px;
  }

  .contact-glow-btn {
    font-size: 16px;
    padding: 11px 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .video-hero {
    min-height: auto;
    padding: 110px 16px 50px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: 0.5px;
  }

  .wavy-underline {
    margin-top: 6px;
  }

  .wavy-underline svg {
    height: 10px;
  }

  .editor-character {
    margin-top: 22px;
  }

  .editor-character img {
    max-width: 260px;
  }

  .hero-btn-wrap {
    margin-top: 18px;
  }

  .contact-glow-btn {
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 14px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .editor-character img {
    max-width: 220px;
  }

  .contact-glow-btn {
    font-size: 13px;
    padding: 9px 16px;
  }
}

.timeline-section {
  background-color: #000;
  color: #fff;
  padding: 100px 0;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}

.timeline-item {
  text-align: center;
  flex: 1;
  margin: 20px;
  position: relative;
}

.timeline-item h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 16px;
  line-height: 1.6;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
  z-index: 0;
  /* Adding the curved line effect */
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Adjust for smoothness */
}

.timeline-container .timeline-item:nth-child(odd)::before {
  /* Curved lines for odd items */
  transform: translateY(-50%) curve(30deg);
}

.timeline-container .timeline-item:nth-child(even)::before {
  /* Curved lines for even items */
  transform: translateY(-50%) curve(-30deg);
}

@media (max-width: 768px) {
  .timeline-item {
    flex: 0 0 45%;
    margin: 15px 0;
  }

  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-container::before {
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }

  .timeline-item h2 {
    font-size: 20px;
  }

  .timeline-item p {
    font-size: 14px;
  }

  .circle {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .timeline-item {
    flex: 0 0 100%;
  }

  .circle {
    width: 25px;
    height: 25px;
  }

  .timeline-item h2 {
    font-size: 18px;
  }

  .timeline-item p {
    font-size: 12px;
  }
}
.uiux {
  position: relative;
  display: inline-block;
  color: white;
}

.wavy-underline {
  width: 100%;
  margin-top: 5px;
}

.wavy-underline svg {
  width: 100%;
  height: 15px;
  display: block;
}
.wl-screaming{
  margin-top:20px;
}

.video-showcase-section {
  background: #000;
  padding: 80px 20px;
}

.video-showcase-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.video-showcase-title {
  text-align: center;
  margin-bottom: 36px;
}

.video-showcase-title h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin: 0;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.video-showcase-card {
  background: #d9d9d9;
  border-radius: 14px;
  overflow: hidden;
  height: 520px;   /* fixed height */
  position: relative;
}

.video-showcase-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS removes white sides */
  display: block;
}

@media (max-width: 991px) {
  .video-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-showcase-card {
    height: 460px;
  }

  .video-showcase-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .video-showcase-section {
    padding: 60px 14px;
  }

  .video-showcase-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .video-showcase-card {
    height: 420px;
  }

  .video-showcase-title h2 {
    font-size: 24px;
  }
}
/* Tablet view (max-width: 991px) */
@media (max-width: 991px) {
  .feature-neon-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

/* Mobile view (max-width: 576px) */
@media (max-width: 576px) {
  .feature-neon-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .feature-main-title {
    font-size: 24px; /* Adjust font size for mobile */
  }
}
/* ── Responsive breakpoints ── */
  @media (max-width: 900px) {
    .label h3 {
      white-space: normal;
    }

    .label {
      width: clamp(90px, 20vw, 160px);
    }
  }

  @media (max-width: 600px) {
  .wave-section {
    max-width: 100%;
    padding: 40px 16px 30px;
  }

  .wave-container {
    position: relative;
  }

  .wave-svg {
    display: none;
  }

  .labels {
    position: static;
    inset: auto;
    pointer-events: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    padding: 0 8px;
  }

  .label h3 {
    white-space: normal;
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .label p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* reset old absolute positions */
  .label-color-grading,
  .label-social-media,
  .label-video-editing,
  .label-motion,
  .label-vfx {
    left: auto;
    top: auto;
  }
}

@media (max-width: 400px) {
  .wave-section {
    padding: 32px 12px 24px;
  }

  .labels {
    gap: 16px;
  }

  .label h3 {
    font-size: 1rem;
  }

  .label p {
    font-size: 0.88rem;
  }
  .tools-heading{
font-size:28px !important;
}
.tools-section{
background:#000;
padding:20px;
color:#fff;
}
}