

/* Fonts */

@font-face {
  font-family: 'Neue Montreal';
  src: url('./fonts/NeueMontreal-Light.eot');
  src: url('./fonts/NeueMontreal-Light.eot?#iefix') format('embedded-opentype'),
      url('./fonts/NeueMontreal-Light.woff2') format('woff2'),
      url('./fonts/NeueMontreal-Light.woff') format('woff'),
      url('./fonts/NeueMontreal-Light.ttf') format('truetype'),
      url('./fonts/NeueMontreal-Light.svg#NeueMontreal-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Montreal';
  src: url('./fonts/NeueMontreal-Bold.eot');
  src: url('./fonts/NeueMontreal-Bold.eot?#iefix') format('embedded-opentype'),
      url('./fonts/NeueMontreal-Bold.woff2') format('woff2'),
      url('./fonts/NeueMontreal-Bold.woff') format('woff'),
      url('./fonts/NeueMontreal-Bold.ttf') format('truetype'),
      url('./fonts/NeueMontreal-Bold.svg#NeueMontreal-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Montreal';
  src: url('./fonts/NeueMontreal-Medium.eot');
  src: url('./fonts/NeueMontreal-Medium.eot?#iefix') format('embedded-opentype'),
      url('./fonts/NeueMontreal-Medium.woff2') format('woff2'),
      url('./fonts/NeueMontreal-Medium.woff') format('woff'),
      url('./fonts/NeueMontreal-Medium.ttf') format('truetype'),
      url('./fonts/NeueMontreal-Medium.svg#NeueMontreal-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Montreal';
  src: url('./fonts/NeueMontreal-Regular.eot');
  src: url('./fonts/NeueMontreal-Regular.eot?#iefix') format('embedded-opentype'),
      url('./fonts/NeueMontreal-Regular.woff2') format('woff2'),
      url('./fonts/NeueMontreal-Regular.woff') format('woff'),
      url('./fonts/NeueMontreal-Regular.ttf') format('truetype'),
      url('./fonts/NeueMontreal-Regular.svg#NeueMontreal-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Neue Montreal';
}

body {
background: #080809;
color: #fff;
}

/* Navbar */
.navbar {
width: 100%;
}

.container {
max-width: 100%;
margin: auto;
padding:0 20px;
}

/* Logo */

.nav-logo-container{
  max-width: 100%;
  width: 100%;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo {
font-size: 32px;
font-weight: 700;
font-style: italic;
letter-spacing: 1px;
}

.logo span {
color: #D3FF22;
font-style: normal;
}

/* Menu */
.nav-menu {
display: flex;
align-items: center;
gap: 14px;
}

.nav-menu a {
  padding: 10px 18px;
background: RGBA(255, 255, 255, 0.2);
color: RGBA(255, 255, 255, 0.6);
text-decoration: none;
border-radius: 999px;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
text-transform: uppercase;
margin-top:0px;
}

.nav-menu a:hover {
background: RGBA(255, 255, 255, 0.4);
color: RGBA(255, 255, 255, 0.8);
}

/* CTA */
.nav-menu .cta {
background: #D3FF22;
font-weight: 500;
color:#080809;
}
.nav-menu .cta:hover{
  background: #D3FF22;
  font-weight: 500;
  color:#080809;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 230, 0, 0.25);
}

/* Mobile */
#menu-toggle {
display: none;
}

.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.hamburger span {
width: 24px;
height: 2px;
background: #fff;
display: block;
}

/* Responsive */
@media (max-width: 768px) {
.hamburger {
  display: flex;
}

.nav-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #080809;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
  display: none;
}

#menu-toggle:checked ~ .nav-menu {
  display: flex;
}

.nav-menu a {
  width: 100%;
  text-align: center;
}
}


/* Hero Section Styles Here */

.hero {padding: 0;position: relative;height: auto;}
section.hero:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #080809;
    opacity: 0.5;
    z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding:80px 0;
  height: auto;
  display: inline-block;
}

.hero-container {max-width: 100%;padding:0 20px;margin: auto;width: 100%;height: auto;}

/* Left Content */


.hero-content h1 {font-weight: 400;line-height: 1.15;letter-spacing: 0;margin-bottom: 32px;font-size: 9vw;}

/* CTA */
.hero-cta {
display: inline-block;
padding: 14px 28px;
background: #D3FF22;
color: #080809;
border-radius: 999px;
text-decoration: none;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.08em;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(255, 230, 0, 0.25);
}

/* Right Visual */
.hero-visual {
width: 100%;
height: 100%;
left: 0;
top:0;
position: absolute;
z-index: -2;
}

.hero-visual video {
width: 100%;
height: 100%;
border-radius: 0;
object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
.hero-container {
  grid-template-columns: 1fr;
  gap: 40px;
}

.hero-visual {
  justify-content: center;
}

.hero-content {
  text-align: left;
}
}

@media (max-width: 480px) {
.hero {
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: 34px;
}
}

/* Case Studies Section */

/* SECTION HEIGHT = SLIDES * 100vh */
.case-studies {height: 500vh; /* 5 slides */}

/* STICKY */
.case-studies__sticky {
position: sticky;
top: 0;
height: 100vh;
overflow: hidden;
}

/* TRACK */
.case-studies__track {
display: flex;
height: 100%;
will-change: transform;
}

/* SLIDE */
.case-study {display: flex;padding: 20px;box-sizing: border-box;max-width: 1230px;margin: 0 auto;min-width: 100vw;flex-wrap: wrap;align-items: center;align-content: flex-start;position: relative;background: rgba(42, 123, 155, 0);background: linear-gradient(180deg, rgba(42, 123, 155, 0) 0%, rgba(8, 8, 9, 1) 55%, rgba(8, 8, 9, 1) 80%);}

/* IMAGE */
.cs-image {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(178deg, rgba(42, 123, 155, 0) 0%, rgba(8, 8, 9, 1) 55%, rgba(8, 8, 9, 1) 80%); */
}
.cs-image img {width: 100%;height: 100%;object-fit: cover;border-radius: 12px;}

/* CONTENT */
.cs-content {width: 100%;display: flex;flex-wrap: wrap;margin-bottom: 20px;align-items: center;justify-content: space-between;position: absolute;bottom: 0;right: 0;left: 0;padding: 100px 40px 20px;background: rgba(42, 123, 155, 0);background: linear-gradient(180deg, rgba(42, 123, 155, 0) 0%, rgba(8, 8, 9, 1) 55%, rgba(8, 8, 9, 1) 80%);}

.cs-content h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
}

.cs-content p {
color: #fff;
    font-size: 24px;
    line-height: normal;
}

/* TAGS */
.cs-tags {
display: flex;
gap: 12px;
flex-wrap: wrap;
list-style: none;
padding: 0;
width: 50%;
justify-content: flex-end;
}

.cs-tags li {
padding: 4px 16px;
border: 1px solid #fff;
border-radius: 999px;
font-size: 16px;
line-height: normal;
}

/* DOTS */
.cs-dots {
position: absolute;
bottom: 32px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
}

.cs-dots span {
width: 8px;
height: 8px;
border-radius: 50%;
background: #555;
transition: background 0.3s;
}

.cs-dots span.active {
background: #fff;
}

/* MOBILE FALLBACK */
@media (max-width: 768px) {
.case-studies {
  height: auto;
}

.case-studies__sticky {
  position: relative;
}

.case-studies__track {
  flex-direction: column;
  transform: none !important;
}

.case-study {
  grid-template-columns: 1fr;
  min-width: 100%;
}

.cs-dots {
  display: none;
}
}



/* Accordion Section */

.services {

padding: 160px 0;
}

.services__intro {font-size: 48px;max-width: 80%;margin-bottom: 40px;}

/* Accordion */
.accordion-item {
border-top: 1px solid #222;
}

.accordion-header {width: 100%;background: none;border: none;color: #fff;padding: 30px 0;font-size: 40px;display: flex;justify-content: space-between;align-items: center;cursor: pointer;transition: font-size 0.3s ease;font-weight: 400;}

.accordion-item.active .accordion-header {font-size: 90px;}

.icon {color: #D3FF22;border: 1px solid #D3FF22;border-radius: 100%;padding: 0;line-height: 1;width: 26px;height: 26px;font-size: 22px;}

.accordion-content {
display: none;
padding-bottom: 40px;
}

.accordion-content.active {
display: block;
}

/* Tabs Layout */
.tabs-layout {display: flex;margin-top: 0;flex-wrap: wrap;justify-content: space-between;}

/* Tabs */
.tabs {display: flex;flex-direction: column;counter-reset: list-counter;width: 36%;}
.tab-content {
    width: 61%;
}

.tab {background: none;border: none;color: #FFFFFF;text-align: left;padding: 15px 0;font-size: 16px;cursor: pointer;border-bottom: 1px solid #222;opacity: 0.6;}

.tab.active {color: #fff;opacity: 1;}

/* Content */
.tab-content h3 {
font-size: 28px;
margin-bottom: 10px;
}

.tab-panel {
display: none;
}

.tab-panel.active {
display: block;
}

.tab-content p {max-width: 100%;line-height: normal;opacity: 1;font-size: 20px;color: #9C9C9D;}

.cta {
display: inline-block;
margin-top: 30px;
padding: 14px 28px;
background: #D3FF22;
color: #080809;
text-decoration: none;
border-radius: 30px;
font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
.accordion-header {
  font-size: 24px;
}

.accordion-item.active .accordion-header {
  font-size: 32px;
}

.tabs-layout {
  grid-template-columns: 1fr;
}

.tabs {
  flex-direction: row;
  overflow-x: auto;
  gap: 20px;
}

.tab {
  white-space: nowrap;
  border: none;
  padding-bottom: 10px;
}
}

/* About Stats Section */


.about-stats {font-family: "Neue Montreal", Arial, sans-serif;color: #080809;background-color: #fff;padding: 120px 0;}

.about-stats__intro {max-width: 100%;margin-bottom: 120px;}

.about-stats__intro p {font-size: 48px;line-height: normal;color: #080809;font-weight: 400;}

.about-stats__intro p strong {
    font-weight: 400;
}

.stat-row:first-child {
    padding-top: 0;
}

.stat-row:last-child {border-bottom: 0;padding-bottom: 0;}

/* Stats Rows */
.stats-list {border-top: 0;}

.stat-row {display: grid;grid-template-columns: 1fr 1fr;padding: 50px 0;border-bottom: 1px solid #e5e5e5;align-items: center;gap: 20px;}

.stat-value {font-size: 90px;font-weight: 400;letter-spacing: 0;line-height: normal;}

.stat-desc p {max-width: 100%;font-size: 20px;line-height: 28px;color: #555;}

/* Responsive */
@media (max-width: 768px) {
.about-stats {
  padding: 60px 16px;
}

.about-stats__intro p {
  font-size: 20px;
}

.stat-row {
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat-value {
  font-size: 40px;
}

.stat-desc p {
  font-size: 14px;
}
}

.logo-testimonials {margin: 0 auto;padding: 0 0 100px;font-family: "Neue Montreal", Arial, sans-serif;background-color:#fff;color:#080809;}

.lt-header {position: relative;max-width: 100%;margin-bottom: 64px;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}

.lt-header p {font-size: 48px;line-height: 58px;font-weight: 400;color: #080809;width: 80%;}

img.quote-mark-image {
    width: 100px;
}

/* Layout */
.lt-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
border: 1px solid #eee;
}

/* Logos */
.lt-logos {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
padding: 40px;
border-right: 1px solid #eee;
}

.logo-item {
background: none;
border: none;
font-size: 14px;
letter-spacing: 1px;
opacity: 0.4;
cursor: pointer;
transition: opacity 0.3s ease;
}

.logo-item.active {
opacity: 1;
}

/* Testimonials */
.lt-testimonials {padding: 78px 50px;position: relative;}

.testimonial {
display: none;
animation: fade 0.4s ease;
}

.testimonial.active {
display: block;
}

.testimonial p {font-size: 28px;line-height: 44px;margin-bottom: 40px;}

.author {display: flex;gap: 12px;margin-top: 30px;align-items: center;}

.author img {
border-radius: 50%;
}

.author span {
font-size: 12px;
color: #777;
}

.company-logo img {
    width: 113px;
    margin-bottom: 22px;
}

.author div {
    display: flex;
    flex-flow: column;
}

/* Fade */
@keyframes fade {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
.lt-wrapper {
  grid-template-columns: 1fr;
}

.lt-logos {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  border-right: none;
  border-bottom: 1px solid #eee;
  scroll-snap-type: x mandatory;
}

.logo-item {
  flex: 0 0 30%;
  scroll-snap-align: center;
  text-align: center;
}
}


/* Wrapper */
.cta-wrapper {background: #080809;padding: 80px 20px;display: flex;justify-content: center;max-width: 100%;margin: 0 auto;}

/* Yellow Card */
.cta-card {
background: #D3FF22;
width: 100%;
max-width: 100%;
padding: 80px;
position: relative;
overflow: hidden;
}

/* Dot pattern */
.cta-card::after {
content: "";
position: absolute;
top: 0;
right: 0;
height: 100%;
    background-repeat: no-repeat;
    opacity: 1;
    background-image: url('./images/Union.svg');
    width: 37%;
}

/* Content */
.cta-content {max-width: 100%;position: relative;z-index: 1;}

.cta-content h2 {font-family: "Neue Montreal", Arial, sans-serif;font-size: 72px;line-height: 1.2;font-weight: 400;margin: 0 0 40px;color: #080809;}

/* Button */
.cta-btn {
display: inline-block;
padding: 14px 28px;
background: #080809;
color: #fff;
text-decoration: none;
border-radius: 999px;
font-size: 12px;
letter-spacing: 1px;
text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
.cta-card {
  padding: 50px 30px;
}

.cta-card::after {
  width: 50%;
}

.cta-content h2 {
  font-size: 32px;
}
}

.site-footer {background: #080809;color: #fff;padding: 80px 20px 300px;position: relative;overflow: hidden;font-family: "Neue Montreal", Arial, sans-serif;}

.footer-inner {max-width: 100%;margin: 0 auto;z-index: 2;}

/* Email */
.footer-top {
margin-bottom: 40px;
}

.footer-email {font-size: 90px;color: #fff;text-decoration: none;display: inline-flex;align-items: center;gap: 14px;}

.email-arrow {
width: 36px;
height: 36px;
background: #D3FF22;
color: #080809;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 18px;
}

/* Dividers */
.footer-divider {height: 1px;background: rgba(255, 255, 255, 0.15);margin: 72px 0;}

/* Nav */
.footer-nav {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.footer-nav a {
color: #aaa;
text-decoration: none;
font-size: 14px;
}

.footer-nav a:hover {
color: #fff;
}

/* Bottom */
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 30px;
}

.footer-social {
display: flex;
gap: 16px;
}

.footer-social a {
width: 36px;
height: 36px;
border: 1px solid rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
text-decoration: none;
font-size: 12px;
    padding: 9px;
}

.footer-social a img{
  width:100%;
}

.footer-copy {
font-size: 12px;
color: #777;
}

/* Background text */
.footer-bg-text {
    position: absolute;
    bottom: -111px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    color: rgba(0,0,0,0);
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    font-size: 300px;
    white-space: nowrap;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
.footer-email {
  font-size: 28px;
}

.footer-nav {
  gap: 20px;
}

.footer-bottom {
  flex-direction: column;
  align-items: flex-start;
}

.footer-bg-text {
  font-size: 100px;
}
}


/* Design That goes further */

/* Section */
.design-section {
    width: 100%;
    padding: 60px 0;
}

/* Main title */
.main-text {
    font-size: 12vw;
    line-height: 1;
    padding-left: 3vw;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Rows */
.row {
    position: relative;
    height: 12vw;
    overflow: hidden;
    padding-left: 3vw;
    margin:20px 0;
}

/* Progressive cut effect */
.r1 { height: 10vw; }
.r2 { height: 8.5vw; }
.r3 { height: 7vw; }
.r4 { height: 5.5vw; }
.r5 { height: 4.5vw; }
.r6 { height: 4.5vw; }
.r7 { height: 3vw; }
.r8 { height: 3vw; }

/* Text inside */
.row span{
    display: block;
    font-size: 12vw;
    line-height: 1;
    transform: translateY(0);
    will-change: transform;
    text-transform: uppercase;
    
}