/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    background: #000;
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgb(26, 25, 25);
}

/* VIDEO */

.hero {
  position: relative;         
  width: 100%;
  aspect-ratio: 1.8 / 1;       
  overflow: hidden;
  background: #141414;
}

.hero-Work {
  position: relative;         
  width: 100%;
  aspect-ratio: 6 / 1;       
  overflow: hidden;
  background: #141414;
}

.hero-Services {
  position: relative;         
  width: 100%;
  aspect-ratio: 4 / 1;       
  overflow: hidden;
  background: #141414;
}

.hero-Services-Banner {
  position: relative;         
  width: 100%;
  aspect-ratio: 2.92 / 1;       
  overflow: hidden;
  background: #131312;
}

.ColorVideo{
  background: #131312;
}


.sectionReveal {
  position: relative;         
  min-height:fit-content ;
  overflow: hidden;
  background: #000000;
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.sectionReveal h2{
  padding-top: 20px;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}

.section {
  padding: 120px 10%;
  color: white;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 48px;
}

.dark {
  background: #141414;
}

.grid {

  min-height:fit-content ;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 10px;
  /* gap: 8px; */
  height: max-content;
  padding-bottom: 10px;
  
}

.item{
  display: flex;  
  flex-direction: column;
  align-items: center;
  gap: 8px;            
}

.item img {
  width: 100%;
  display: block;
  min-height: auto;
  padding: 10px;
}

.item span {
  margin-top: 10px;
  font-size: 14px;
}

/* BUTTON */
.btn {
  padding: 16px 36px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* .item img{
  display: block;
  
  min-height:fit-content ;
  border: #141414 solid 7px;
}

.item span{
  font-size: 14px;
  text-align: center;
} */

/* Services Page */

.hero-services {
  text-align: center;
  padding: 120px 20px;
  /* background: linear-gradient(135deg, #111, #1a1a1a); */
  background: white;
}
.hero-services h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000000;
}
.hero-services p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Services */
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 80px 50px;
  background: white;
}

.container-Project {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  /* padding: 80px 50px; */
  /* background: black; */
}

.service-card {
  background: white;
  padding: 30px;
  /* border-radius: 12px; */
  border: 3px solid black;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.service-card h2 {
  color: #000000;
  margin-bottom: 15px;
}
.service-card p {
  color: #000000;
  line-height: 1.6;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #1a1a1a;
}

.cta h2{
  padding-bottom: 50px;
  color: white;
}
.cta-button {
  background: #030303;
  color: #fff;
  border: 1px solid white;
  padding: 15px 40px;
  /* border-radius: 50px; */
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #ffffff;
  color: #111;
}


/* Page fade in/out */
.fade-enter, .fade-leave-to {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.6s ease;
}

body.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.fade-in {
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* About US Page */

.about-section {
  /* background: linear-gradient(135deg, #d8d6d6, #ecebeb); */
  background-color: white;
  color: #000000;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.about-section-new {
  /* background: linear-gradient(135deg, #d8d6d6, #ecebeb); */
  background-color: #1a1a1a;
  color: white;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.about-content {
  max-width: 900px;
}

.about-content-new {
  max-width: 900px;
}

.about-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #000000; /* Accent color for cinematic feel */
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  text-transform: uppercase;
}

.about-content-new h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: white; /* Accent color for cinematic feel */
  font-family: 'drukbold', sans-serif !important;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.about-content-new p{
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}



.about-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #000000; /* Accent color for cinematic feel */
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  text-transform: uppercase;
}

.about-content-new h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: white; /* Accent color for cinematic feel */
  font-family: 'drukbold', sans-serif !important;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.about-content-new p{
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}


.about-content .tagline {
  font-size: 1.4rem;
  color: #4e4e4b; /* Gold accent for impact */
  margin-top: 40px;
  font-style: italic;
}

/* Contact Page */

.contact-section {
  padding: 100px 20px;
  /* background: linear-gradient(135deg, #0f0f0f, #1a1a1a); */
  color: #f0f0f0;
  background: white;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Left Info */
.contact-info h2 {
  font-size: 2.8rem;
  color: #000000;
  margin-bottom: 20px;
}

.contact-info p {
  color: black;
  line-height: 1.7;
  margin-bottom: 40px;
}

.info-block {
  margin-bottom: 25px;
}

.info-block h4 {
  color: #000000;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-block p {
  color: #706c6c;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  background: #eeeaea;
  border: 1px solid #000000;
  padding: 15px;
  /* color: #fff; */
  font-size: 1rem;
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #796062;
}

.contact-form button {
  background: #000000;
  border: none;
  padding: 15px;
  border: 1px solid black;
  /* border-radius: 50px; */
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background: #ffffff;
  color: #111;
  transform: translateY(-2px);
}

.form-message {
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  display: block;
  text-align: center;
  background: rgba(80, 200, 120, 0.15);
  color: #50c878;
  border: 1px solid #50c878;
}

.form-message.error {
  display: block;
  text-align: center;
  background: rgba(255, 79, 90, 0.15);
  color: #ff4f5a;
  border: 1px solid #ff4f5a;
}

.header-img{
  width: 100%;
}

/* Preview IMG  */

.img-preview-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.img-preview-modal img {
  max-width: 90%;
  max-height: 90%;
  transform-origin: center;
  cursor: grab;
  transition: transform 0.15s ease;
}

/* Preview IMG  */


/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Work Page */

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: 3rem;
  will-change: transform;              /* GPU boost */
  animation: marqueeFast 18s linear infinite;
  font-family: 'Brush Script', sans-serif;
}

.marquee.fast .marquee__track {
  animation-duration: 18s;               /* FAST */
}

.marquee-new.fast .marquee__track {
  animation-duration: 18s;               /* FAST */
}

.marquee span {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  color: white;
}

.marquee-new {
  overflow: hidden;
  width: 100%;
}



.marquee-new span{
    font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  color: black;
}

@keyframes marqueeFast {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.commercials {
  background: #000000; /* neon green */
  padding: 80px 40px;
  overflow: hidden;
}

.commercials-PreviewSection-Hori {
  background: white; /* neon green */
  padding: 80px 40px;
  overflow: hidden;
}

.commercials-no-padding{
  background: #000000; /* neon green */
  overflow: hidden;
}

.commercials-PreviewSection-Vertical {
  background: white; /* neon green */
  /* padding: 80px 40px; */
  overflow: hidden;
  max-height: fit-content;
}

.commercials-Adjusted {
  background: #ffffff; /* neon green */
  padding: 80px 40px;
  overflow: hidden;
}

.commercials-new {
  background: #000000; /* neon green */
  /* padding: 80px 40px; */
  overflow: hidden;
}

.titleMin{
  font-size: 20px;
  font-style: italic;
}


.gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.gallery-Testimonials {
  display: flex;
  gap: 24px;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.gallery-Testimonials-column {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-direction: column;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.gallery-Testimonials-no-column {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-direction: column;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  align-items: center;
}



.gallery-new
{
  background: #1a1a1a;
  display: flex;
  padding: 80px 40px;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  /* border: 1px solid white; */
  border-radius: 6px;
}

.client-video{
  width: 100%;
  /* height: 370px; */
  margin: 0px;
}

.Showcase-video{
  width: 100%;
  height: 600px;
  margin: 0px;
}

.client-video-hori{
  width: 100%;
  height: 380px;
  margin: 0px;
}

.card p {
  margin-top: 12px;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.card-new-Hori {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.card-new-Hori img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  /* border: 1px solid white; */
  border-radius: 6px;
}

.card-new-Hori p{
    margin-top: 12px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}



.card-new-RendersPrev-Ver {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.card-new-RendersPrev-Ver img {
  width: 100%;
  aspect-ratio: 1/1;
  height:600px;
  object-fit: contain;
  /* border: 1px solid white; */
  border-radius: 6px;
}

.card-new-RendersPrev-Ver p{
    margin-top: 12px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}

.card-new-RendersPrev {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.card-new-RendersPrev img {
  width: 100%;
  /* height: 380px; */
  object-fit: cover;
  /* border: 1px solid white; */
  border-radius: 6px;
}

.card-new-RendersPrev p{
    margin-top: 12px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}


.card-new-RendersPrev-Square {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.card-new-RendersPrev-Square img {
  width: 100%;
  /* height: 500px; */
  object-fit: cover;
  /* border: 1px solid white; */
  /* border-radius: 6px; */
}

.card-new-RendersPrev-Square p{
    margin-top: 12px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}

.card-new-RendersPrev-Square-heigh-res {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.card-new-RendersPrev-Square-heigh-res img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  /* border: 1px solid white; */
  /* border-radius: 6px; */
}

.card-new-RendersPrev-Square-heigh-res p{
    margin-top: 12px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}





.card-new {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.card-new img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  /* border: 1px solid white; */
  border-radius: 6px;
}

.card-new p{
    margin-top: 12px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}

.hero-text {
  padding-top: 150px;
  position: absolute;
  inset: 0;
  z-index: 3;
  place-content:center;
  text-align: center;
  color: white;
  /* text-shadow: 0 15px 30px rgba(0, 0, 0, 1); */

}
.hero-text p{
  text-shadow: 10 2px 2px rgba(0, 0, 0, 1);

}

.hero-text h2{
  text-shadow: 10 2px 2px rgba(0, 0, 0, 1);

}


.card img {
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* VIDEO */
.header-video {
  position: absolute;          /* ✅ stackable */
  padding-top: 50px;
  inset: 0;
  width: 100%;
  object-fit: cover;           /* NOT contain */
  z-index: 1;
  overflow: hidden;
}

.header-video-work {
  position: absolute;          /* ✅ stackable */
  padding-top: 60px;
  inset: 0;
  width: 100%;
  object-fit: contain;           /* NOT contain */
  z-index: 1;
  overflow: hidden;
}

/* OVERLAY IMAGE */
.overlay {
  position: absolute;          /* ✅ on top of video */
  inset: 0;
  width: 100%;
  object-fit: contain;         /* keeps PNG ratio */
  z-index: 2;
  overflow: hidden;
  /* pointer-events: none;        optional */
}
/* NAV */
.header-nav {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  z-index: 5;
  background-color: #141414;
}

.black{
  background-color: black;
}

.header-nav a {
  color: white;
  text-decoration: none;
}

.logo {
  height: clamp(50px, 4vw, 50px);
  margin: auto;
  padding: 0%;
  pointer-events:visible;

}

.logo:hover{
  opacity: 0.8;
}

.social img {
  width: clamp(12px, 2vw, 14px);
  /* filter: invert(1); */
}
.social a{
  padding-left: 15px;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 4vw, 2rem);
  justify-content: center;
  align-items: flex-start;
  list-style: none;
  color: white;
  padding-left: 10px;
}

.nav-links img{
  filter: invert(1);
  width: clamp(16px, 2vw, 20px);
}

.social a:hover{
  opacity: 0.6;
}

/* CONTENT */
.header-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  color: white;
}

.header-content h1 {
  font-size: clamp(2rem, 6vw, 5rem);
}

.header-content button {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 2px solid white;
  color: white;
  cursor: pointer;
}


.footer {
  padding: 40px 20px;
  background: #111;
  color: #fff;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social img{
  width: clamp(16px, 2vw, 16px);
  text-decoration: none;
}

.footer-social a {
  margin: 0 10px;
  opacity: 0.8;
  transition: opacity .3s;
  text-decoration: none;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-info p {
  margin: 8px 0;
  font-size: 14px;
  color: #ddd;
}

.footer-tagline {
  font-style: italic;
  color: #bbb;
}

.footer-new {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.footer-new a {
  color: white;
  text-decoration: none;
  padding-bottom: 10px;
  font-size: 20px;
  text-transform: uppercase;
  /* font-size: 0px; */
  /* list-style: none; */
}

.footer-new a:hover {
  color: red;
}

.footer-nav {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  padding-bottom: 10px;
  /* font-size: 0px; */
  /* list-style: none; */
}

.footer-nav a:hover {
  color: #fff;
}




.footer-small {
  display: block;
  margin-top: 25px;
  font-size: 12px;
  color: #777;
}


/* Menu button */
.menu-btn {
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

.menu-btn span{
  font-size: 12px;
  position: relative;
  bottom: 3px;
}
/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  /* background: rgba(0,0,0,0.65); */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

/* Side menu */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #141414;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  z-index: 1000;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

/* Close button */
.close-btn {
  font-size: 34px;
  background: none;
  border: none;
  color: #fff;
  align-self: flex-end;
  cursor: pointer;
}

/* Navigation */
.side-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Text reveal base */
.side-nav a {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  letter-spacing: 1px;
}

.side-nav a span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(.77,0,.18,1),
    opacity 0.6s ease;
}

/* Footer branding */
.side-footer {
  margin-top: auto;
  font-size: 12px;
  color: #888;
  letter-spacing: 2px;
}

/* ACTIVE STATES */
.side-menu.active {
  transform: translateX(0);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Text reveal when menu opens */
.side-menu.active .side-nav a span {
  transform: translateY(0);
  opacity: 1;
}

/* Staggered animation (Fortiche style) */
.side-menu.active .side-nav a:nth-child(1) span { transition-delay: 0.15s; }
.side-menu.active .side-nav a:nth-child(2) span { transition-delay: 0.25s; }
.side-menu.active .side-nav a:nth-child(3) span { transition-delay: 0.35s; }
.side-menu.active .side-nav a:nth-child(4) span { transition-delay: 0.45s; }

/* Hover underline container */
.side-nav a {
  position: relative;
  padding-bottom: 6px;
}

/* Underline */
.side-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
}

/* Hover */
.side-nav a:hover::after {
  transform: scaleX(1);
}

.side-nav a:hover span {
  opacity: 1;
  transform: translateY(-2px);
}

.side-nav span {
  letter-spacing: 1.5px;
  font-weight: 500;
}


.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("/assets/grain.png");
  background-repeat: repeat;
  opacity: 0.05; /* subtle – very important */
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: grainMove 6s steps(10) infinite;
}

@keyframes grainMove {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1%, 1%); }
  50%  { transform: translate(1%, -1%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}



/* Project Details  */

/* .VideoSection{
  background-color: #1a1a1a;
} */

.video-container {
  max-width: 1200px;        /* control overall size */
  margin: 0 auto;          /* center horizontally */
  padding: 0 0px;         /* breathing room on mobile */
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; 
  /* aspect-ratio: 16/9; */
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 16px; /* optional – luxury feel */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.PhoneVersion{
  display: none;
}


.DesktopVersion{
   display: block;
}

/* MOBILE FIX */







@media (max-width: 1024px) {
  .nav-links {
    /* display: none; */
  }

  /* .logo{
    height: clamp(20px, 4vw, 20px);
  } */
.header-video{
  padding-top: 20px;
}
.overlay {
  padding-top: 20px;
}

}

@media (max-width: 768px) {
  /* .nav-links {

  } */
  .logo{
    height: clamp(50px, 4vw, 50px);
  }

  .hero-Services {
  aspect-ratio: 3 / 1;       
}

.header-video{
  padding-top: 30px;
}
.overlay {
  padding-top: 30px;
}


  /* .social img {
    width: clamp(12px, 2vw, 12px);

  } */

  /* .social a{
    padding-left: 5px;
  } */

  .grid {
    grid-template-columns: repeat(2 , 1fr);
    
  }
  .gallery-Testimonials{
  justify-content: flex-start;
}

.about-content p{
  font-size: .8rem;
}

.about-content h1 {
    font-size: 1.8rem;
}

}

@media (max-width: 428px) {
  .DesktopVersion{
   display: none;
}

.PhoneVersion{
  display: block;
}

.Showcase-video{
  height: 250px;
}

}

@media (max-width: 375px) {
  .logo{
    height: clamp(30px, 4vw, 30px);
  }

  /* .social img {
    width: clamp(6px, 2vw, 6px);
  } */

  /* .nav-links img{
    height: clamp(7px, 4vw, 7px);
  } */

  /* .nav-links a {
    font-size: 7px;
  } */

  /* .social a{
    padding-left: 5px;
  } */

    .hero-Services {
  aspect-ratio: 2.5 / 1;       
}
.header-video{
  padding-top: 50px;
}
.overlay {
  padding-top: 50px;
}

.hero {
    aspect-ratio: 1.5 / 1;
}
.header-video-work{
  padding-top: 60px;
}
.gallery-Testimonials{
  justify-content: flex-start;
}

.DesktopVersion{
   display: none;
}

.PhoneVersion{
  display: block;
}

.Showcase-video{
  height: 250px;
}

}
