* {
    padding: 0;
    box-sizing: border-box;
}

:root {
    --base-width: 1920;
    --base-height: 1080;
    --vw: calc(100vw / var(--base-width) * 100);
    --vh: calc(100vh / var(--base-height) * 100);
    --black: #030303;
    --white: #ffffff;
}

body {
    
    height: 100%;
    background-color: var(--black);
    color: var(--white);
    font-family: 'Aadhunik', sans-serif;
    font-family: 'Aadhunik Light', sans-serif;

}

.landing-content {
    position: static;
    padding-top: 16%;
    top: 40vh;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 600px) {
  .landing-content {
    margin-top: 17%;
  }
}

.landing-content-vision {
    position: static;
    padding-top: 7%;
    top: 40vh;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 600px) {
  .landing-content-vision {
    margin-top: 28%;
  }
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -1;
}

.content {
    width: 100%;
    
}

/* ///////////////////////////////////////LOGO////////////////////////////////////// */
.logo {
    position: fixed;
    top: clamp(20px, calc(20 * var(--vh)), 40px);
    left: clamp(20px, calc(20 * var(--vw)), 50px);
    z-index: 1000;
    
}

.logo img {
    height: clamp(30px, calc(40 * var(--vh)), 70px);
    width: auto;
}

/* ///////////////////////////////////////LOGO-overlay////////////////////////////////////// */
.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    /* Increase height to allow for fade-out area */
    height: clamp(100px, calc(100 * var(--vh)), 160px);
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.832) 0%,
        rgba(0, 0, 0, 0.473) 40%,
        rgba(0, 0, 0, 0) 100%
    );

    /* Create two layered masks for the blur effect */
    mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 60%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 60%,
        transparent 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.header-overlay.visible {
    opacity: 1;
}


/* ///////////////////////////////////////////////////////////////////////////// */


.landing-content  h1 {
    color: #ffc400;
    margin-left: 7%;
    max-width: 55%;
    font-size: clamp(2px, 4vw, 48px);
    padding: 10px;
    border-radius: 10px;
    line-height: 1;
}
.landing-content  h2 {
    color: #ffc400;
    margin-left: 7%;
    max-width: 55%;
    font-size: clamp(2px, 2vw, 48px);
    padding: 10px;
    border-radius: 10px;
    line-height: 1;
}

.landing-content-vision  h1 {
    color: #ffc400;
    margin-left: 7%;
    max-width: 55%;
    font-size: clamp(2px, 4vw, 48px);
    padding: 10px;
    border-radius: 10px;
    line-height: 1;
}


.landing-content p {
    border-radius: 10px;
    margin-left: 9.8%;
    line-height: 1.5;
    max-width: 80%;
    margin-bottom: 1vh;
    text-align: left;
    clear: both;
    writing-mode: horizontal-tb;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 1.1rem;
}

.landing-content-vision p {
    border-radius: 10px;
    margin-left: 9.8%;
    line-height: 1.5;
    max-width: 80%;
    margin-bottom: 1vh;
    text-align: left;
    clear: both;
    writing-mode: horizontal-tb;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 1.1rem;
}


.scroll-indicator img {
    width: 2.5%;
    animation: bounce 2s infinite;
    margin-top: 2%;
    margin-left: 48.5%;
    margin-bottom: 10vh;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.scroll-indicator h3 {
    font-size: 4rem;
    text-align: center;
    color: #ffc400;
    
}

/* ///////////////////////////p////////////////////////// */
.project-card {
    position: relative;
    width: 90vw;

    /* overflow: hidden; */
}

.project-card img {
    margin-left: 14%;
    width: 80%;
    height: auto;
    display: block;
}

.project-details p {
    font-size: .9rem;
    letter-spacing: 0.3rem;
    margin-left: 14%;
    margin-bottom: 7%;
    display: flex;
    float: none;
    clear: both;
    text-align: left;
    writing-mode: horizontal-tb;
    white-space: normal;
    word-break: normal;
    direction: ltr;
}

.project-card h3 {
    margin-left: 14%;
    margin-bottom: .5%;
    margin-top: 1%;
    position: relative;
    font-size: 1.7rem;
    letter-spacing: 0.3rem;
    text-decoration: bold;
    float: none;
    clear: both;
}

.project-details .divider {
    margin-top: 5%;
    height: 2px;
    width: 14%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: width 1s ease;
    margin-bottom: 5%;
}

.project-card:hover .divider {
    width: 95%;
    background-color: #ffd700;
}

/* //////////////////////////p1/////////////////////////// */
.project-card1 {
    position: relative;
    width: 70vw;

    /* overflow: hidden; */
}

.project-card1 img {
    margin-left: 60%;
    width: 80%;
    height: auto;
    display: block;
}

.project-details1 p {
    font-size: .7rem;
    letter-spacing: 0.3rem;
    margin-left: 60%;
}

.project-card1 h3 {
    margin-left: 60%;
    margin-bottom: .5%;
    margin-top: 1%;
    position: relative;
    font-size: 1.7rem;
    letter-spacing: 0.3rem;
    text-decoration: bold;
}

.project-details1 .divider1 {
    margin-top: 10px;
    height: 2px;
    width: 60%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: width 1s ease;
    margin-bottom: 10%;
}

.project-card1:hover .divider1 {
    width: 100%;
    background-color: #ffd700;
}

/* //////////////////////////p2/////////////////////////// */
.project-card2 {
    position: relative;
    width: 80vw;

    /* overflow: hidden; */
}

.project-card2 img {
    margin-left: 25%;
    width: 80%;
    height: auto;
    display: block;
}

.project-details2 p {
    font-size: .7rem;
    letter-spacing: 0.3rem;
    margin-left: 25%;
}

.project-card2 h3 {
    margin-left: 25%;
    margin-bottom: .5%;
    margin-top: 1%;
    position: relative;
    font-size: 1.7rem;
    letter-spacing: 0.3rem;
    text-decoration: bold;
}

.project-details2 .divider2 {
    margin-top: 10px;
    height: 2px;
    width: 25%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: width 1s ease;
    margin-bottom: 10%;
}

.project-card2:hover .divider2 {
    width: 40%;
    background-color: #ffd700;
}

/* //////////////////////////p2/////////////////////////// */
.clickable-heading {
    text-decoration: none;

    /* Removes underline */
    color: white;

    /* Makes the text pure white */
}

.clickable-heading h3 {
    margin: 0;

    /* Ensures consistent spacing */
}

.clickable-heading:hover {
    text-decoration: none;

    /* Ensures no underline on hover */
    color: rgb(255, 251, 0);

    /* Maintains white color on hover */
}

/* First, add a container for the gradient overlay */
.gradient-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;

    /* Allows clicking through to elements underneath */
    z-index: 1;

    /* Above canvas but below content */
}

/* Create the gradient vignette effect */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        transparent 30%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.4) 80%,
        rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(2000px);
    -webkit-backdrop-filter: blur(20px);
    mask-image: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.8) 80%,
        black 100%
    );
    -webkit-mask-image: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.8) 80%,
        black 100%
    );
}


#bg {
    z-index: -5000;
}

/* //////////////////////////mouse/////////////////////////// */


* {
    cursor: none !important; /* Hides the default mouse cursor */
}

.cursor-container {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none !important;
    mix-blend-mode: difference;
    width: 100vw;
    height: 100vh;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    transition: transform 0.1s ease;
    z-index: 9999;
    pointer-events: none !important; /* Ensures clicks pass through */
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
    z-index: 9999;
    pointer-events: none !important; /* Ensures it doesn't block interactions */
}


.cursor-container.hover .cursor {
    transform: scale(1.5);
    transition: transform 0.1s ease-out;
}

.cursor-container.hover .cursor-ring {
    width: 40px;
    height: 40px;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.8);
    transition: all 0.1s ease-out;
}

.cursor-container.clicking .cursor {
    transform: scale(0.8);
}

.cursor-container.clicking .cursor {
    transform: scale(0.8);
    transition: transform 0.1s ease-out;
}

@media (max-width: 768px) {
  .cursor-container {
    display: none !important;
  }
}


/* /////////////////////////////////vimeo////////////////////////////////////// */
.vimeo-showreel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 5vh 0; /* Adjust spacing */

}

.vimeo-container {
    width: 100vw;
    margin: 0;
    padding: 0;
    background: black;
    border-radius: 0;
    overflow: hidden;
}


.vimeo-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;

}

.vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* //////////////////////////////////////left-sided-pic-with-text/////////////////////////////////// */
.project-card-horizontal {
    position: relative;
    width: 100vw;
    margin-left: 12.5%;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 10vh;
}

.image-container {
    flex: 0 0 40%;

    /* Fixed width for square image */
    height: 40%;

    /* Same as width for square */
    overflow: hidden;
}

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

.project-card-horizontal:hover img {
    transform: scale(1.05);
}

.project-details {
    flex: 1;
    padding-top: 2rem;
}

.project-details h3 {
    font-size: 1.7rem;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    display: flex;
    float: left;
}


/* //////////////////////////////////footer///////////////////////////////////////////// */
footer {
    background: #111;
    color: white;
    padding: 2% 4%;
    font-family: 'Aadhunik', sans-serif;

}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* flex-wrap: wrap; */
    /* max-width: 75%; */

    gap: 60px; /* Reduce this value to bring elements closer */
}


.footer-left h2 {
    font-size: 24px;
    font-weight: bold;
    max-width: 200px;
}

/* .footer-locations {
    display: flex;
} */

.location h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.location p,
.location a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
}

.map-link {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.footer-right {
    text-align: left;
}

.footer-right h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.newsletter-link {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}


.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 10%;
}

.social-icons img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: filter 0.3s, transform 0.2s;
    filter: invert(22%) sepia(90%) saturate(7480%) hue-rotate(-10deg) brightness(95%) contrast(115%);
}


.social-icons img:hover {
    filter: invert(302%) sepia(100%) saturate(2000%) hue-rotate(80deg) brightness(190%) contrast(325%);
    transform: scale(1.1);
}


.logo img {
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

.logo img:hover {
    filter: drop-shadow(0px 0px 35px rgba(255, 255, 0, 0.8)); /* Yellow glow effect */
}

.nav-menu {
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.nav-menu:hover {
    box-shadow: 0px 0px 505px rgb(0, 106, 255); /* Yellow glow */
}


/* //////////////////////////////////////////// */
.landing-content-about h1 {
    background-color: rgba(0, 0, 0, 0.229);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-left: 10%;
    font-size: clamp(24px, 4vw, 48px);
    margin-bottom: 2vh;
}

.landing-content-about p {
    background-color: #00000076;
    padding: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-left: 10%;
    line-height: 1.5;
    max-width: 80%;
    margin-bottom: 1vh;
    text-align: left;
    clear: both;
    writing-mode: horizontal-tb;
    white-space: normal;
    word-break: normal;
    position: static;
    font-size: 1.3rem;
}

.landing-content-about img[src="/Graphics/p-photo-circle.png"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; 
    height: auto;  
    margin-top: 12%;
    position: relative;

}


a[href="#project-detail"] img {
    display: block;
    margin-bottom: 1%;
}


/* ////////////////////////////////////////////////////////////////////////////////// */
.slideshow-container {
    max-width: 85%;
    margin: auto;
    position: relative;
    overflow: hidden;
  }
  
  .slides-wrapper {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
  }
  
  .mySlides {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
  }
  
  .mySlides img {
    width: 100%;
    display: block;
  }
  
  .numbertext {
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transform: translateY(-50%);
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
  }
  
  .next {
    right: 0;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(123, 123, 123, 0.525);
  }
  
  .dot {
    /* cursor: pointer; */
    height: 9px;
    width: 9px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin-top: 10px;
  }
  
  .active, .dot:hover {
    background-color: #141414;
  }
  
  
  
/* ////////////////////////////////////////////////////////////////////////////////// */




  
  /* Demo area (replace with your own content) */
  .demo-area {
    flex-grow: 1;
    padding: 20px;
    text-align: center;
    
  }
  
  .demo-area h1 {
    font-family: 'Orbitron', sans-serif; /* Use a tech-style font */
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #ffe100;
    text-align: center;
    margin: 2rem 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    
    
  }
  
  /* Projects selector container */
  .projects-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 0 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  /* Individual project items */
  .project-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    
  }
  
  /* Project links styling */
  .project-link {
    color: #bababa;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-style: bold;
  }
  
  .project-link:hover {
    color: #0080ff;
    background-color: rgba(0, 102, 204, 0.1);
  }

  .divider {
    height: 5vh;
    width: 2px;
    background-color: #333;
    margin: 0 10px;
  }

  @media (max-width: 768px) {
    .projects-selector {
      flex-direction: column;
      align-items: center;
    }
    
    .divider {
      height: 2px;
      width: 30%;
      margin: 15px 0;
    }
    
    .project-item {
      margin: 5px 0;
    }
  }

/* //cases added//////////////////////////////////////////////////////////////////////////////// */


/* === VIDEO SHOWCASE STYLES (📌 Add to style.css) === */
.main-video-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* gap: 2rem; */
  background: rgba(0, 0, 0, 0.6);
  /* padding: 2rem; */
  /* margin-bottom: 1.5rem; */
  border-radius: 12px;
  backdrop-filter: blur(6px);
}



.main-video-frame {

  
  padding-bottom: 56.25%;
  height: 0;
}

.main-video-frame iframe {
  position: absolute;

  width: 100%;
  height: 100%;
}

.main-video-next {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.main-video-next button {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
}

/* === VIDEO GRID === */


.video-thumb img, .video-thumb video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.video-thumb:hover img, .video-thumb:hover video {
  transform: scale(1.03);
}

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

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .main-video-section {
    flex-direction: column;
    gap: 1rem;
  }
  .main-video-info, .main-video-next {
    justify-content: center;
  }
}


/* //cases nav added//////////////////////////////////////////////////////////////////////////////// */


/* === DESKTOP NAV MENU (📌 Add to style.css) === */
.desktop-nav {
  display: flex;
  gap: 30px;
  position: relative;
}

.nav-item {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  border-radius: 6px;
  flex-direction: column;
  z-index: 999;
  min-width: 160px;
}

.submenu a {
  font-size: 14px;
  color: white;
  padding: 10px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.nav-item:hover .submenu {
  display: flex;
}


.submenu a:hover::after {
  width: 100%; /* underline grows to full text width */
}

/* /////////////////////////////////////////////////////////////////////////////// */


.site-logo {
  height: 40px; /* adjust as needed */
  margin-right: 40px; /* space between logo and nav */
}


.nav-list li a:hover {
  color: #ffd700;
}

.nav-list li a::after {
  content: '';
  height: 2px;
  background: #ffd700;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-list li a:hover::after {
  transform: scaleX(1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15%;
    margin-top: 8%;
    
  }

  .desktop-nav {
    margin-top: 20px;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}





.main-video-frame {
  width: 90%;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  
  
}

@media (max-width: 600px) {
  .main-video-frame {
    max-width: 100%;

  }
}
@media (max-width: 600px) {
  .main-video-section {
    padding: 0;
    margin: 0;
  }

  .main-video-frame {
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    margin: 0;
    padding: 0;
    
  }

  .main-video-frame iframe {
    width: 100vw;
    height: 56.25vw;
    margin: 0;
    padding: 0;
    display: block;
    border: none;
    
  }
}

.main-video-section {
  background-color: transparent !important;
}

.main-video-frame {
  background-color: transparent !important;
}

#vimeo-player {
  background-color: transparent !important;
}

.background-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100PX; /* adjust as needed */
  background-color: rgb(0, 0, 0);
  z-index: 990; /* sends it behind all other content */
}
@media (max-width: 600px) {
  .background-bar {
    height: 19%;

  }
}





.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.video-thumb:hover .video-title-overlay {
  opacity: 1;
}

/* --- Default State for .video-title-overlay (Hidden) --- */
/* This will hide it on all screen sizes initially, including mobile.
   It also ensures it's hidden on desktop unless hovered. */
.video-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0);
  color: rgb(255, 242, 0);
  padding: 8px 12px;
  font-size: 24px; /* Default size, will adjust for mobile later */
  text-align: center;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.6s ease;
  pointer-events: none; /* No interaction when hidden */
}

/* --- Desktop Hover Effect (Keeps original functionality) --- */
@media (min-width: 769px) { /* Adjust this breakpoint to match your desktop threshold */
  .video-thumb:hover .video-title-overlay {
    opacity: 1; /* Shows on hover on desktop */
    pointer-events: auto; /* Allows interaction on hover */
  }
}

/* --- Mobile Specific Styles (Initially Hidden, then revealed by JS) --- */
@media (max-width: 768px) { /* Your mobile breakpoint */
  .video-title-overlay {
    font-size: 18px; /* Adjust font size for mobile readability */
    padding: 6px 10px; /* Adjust padding for mobile */
    /* opacity: 0; and pointer-events: none; inherited from above */
  }

  /* New class for visible state on mobile */
  .video-thumb.is-in-view .video-title-overlay {
    opacity: 0.9; /* Slightly transparent when visible on mobile */
    pointer-events: auto; /* Allow interaction when visible */
  }
}


.desktop-nav a.active {
  color: #ffd700;
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffd700;
  bottom: -4px;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
}

/* sign */

.signature-overlay {
  position: fixed;
  top: 17px;
  right: 28px;
  z-index: 2000;
  pointer-events: none; /* so it doesn’t block clicks */
}

.signature-overlay img {
  width: 100px; /* adjust size as needed */
  height: auto;
  opacity: 0.8; /* subtle appearance */
}



/* 
hero section */

.hero-showcase {
  padding: 60px 40px;
  background: #11111100;
  color: white;
  text-align: center;
}

.hero-showcase h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.hero-showcase p {
  font-size: 1rem;
  margin-bottom: 40px;
}

.banner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.banner-item {
  max-width: 800px;
  text-align: center;
}

.banner-item img {
  width: 100%;
  /* border: 1px solid #ffd700; */
  border-radius: 8px;
}

.banner-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #cccccc00;
}





/* /////////////////////////////FULL WIDTH VIDEO////////////////////////////// */

.fullwidth-video {
  position: relative;
  /* left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw; */
  width: 100vw;
  z-index: 1;
  overflow: hidden;
  margin-top: 100px;
}

.fullwidth-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 600px) {
  .fullwidth-video video {
    margin-top: 70px;
  }
}

@media (max-width: 600px) {
  .main-video-section {
    margin-top: 220px;
    margin-bottom: 25px;
  }
}




.gallery-caption {
  margin-top: 0;
}



#vision-link {
  font-family: monospace;
  transition: all 0.3s ease;
  color: #33ff66;
  text-shadow: 0 0 6px #00ff99;
  white-space: nowrap;
}
