html{
    scroll-behavior: smooth;
  }
  
  :root {
    --primary-color: #501212;
    --secondary-color: #2e2677;
    --accent-color: #10b981;
    --accent-hover: #1459ee85;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --bg-dark: #101044;
    --bg-light: #1e293b52;
    --card-bg: #1e293b85;
    --nav-bg: rgba(6, 22, 61, 0.651);
    --footer-bg: #311b21;
    --border-color: rgba(148, 163, 184, 0.253);
    --success-color: #10b981;
    --spacing-unit: clamp(1rem, 2vw, 2rem);
    --container-width: min(90%, 1400px);
  }
  
  @font-face {
    font-family: "Nexa Bold";
    src: url("fonts/Nexa-Bold.otf") format("opentype");
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Nexa Bold", sans-serif;
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--bg-dark) 30%,
      var(--primary-color) 100%
    );
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  body {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }
  
  .container {
    width: var(--container-width);
    margin: 0 auto;
    padding: var(--spacing-unit);
  }
  
  .navbar {
    position: fixed;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0.2rem 0;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
  }
  
  .nav-logo {
    color: var(--text-primary);
    text-decoration: none;
    margin-top: 2vh;
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    margin-top: 2vh;
    gap: 2rem;
    text-align: center;
  }
  
  .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease;
    font-weight: bold;
  }
  
  .nav-link:hover {
    color: var(--accent-color);
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 1001;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
  }
  
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--nav-bg);
      backdrop-filter: blur(15px);
      padding: 0;
      display: none;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-link {
      padding: 1rem 2rem;
      width: 100%;
      display: block;
      border-bottom: 1px solid var(--border-color);
    }
  
    .dropdown {
      width: 100%;
    }
  
    .dropdown-content {
      position: static;
      width: 100%;
      border: none;
      box-shadow: none;
      background: rgba(255, 255, 255, 0.03);
      padding: 0;
      margin: 0;
    }
  
    .dropdown-content a {
      padding: 1rem 3rem;
      border-bottom: 1px solid var(--border-color);
    }
  
    .dropdown-content a:last-child {
      border-bottom: none;
    }
  
    .dropdown:hover .dropdown-content {
      display: none;
    }
  
    .dropdown-content.show {
      display: block;
  }
  }
  
  .hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 998;
  }
  
  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 998;
  }
  
  section {
    padding: calc(var(--spacing-unit) 0) 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .intro-container {
    position: absolute;
    display: grid;
    text-align: center;
    height: 45vh;
    margin-top: 62vh;
    margin-left: 23%;
    z-index: 999;
    color: rgb(255, 255, 255);
    mix-blend-mode: normal;
  }
  
  .hero h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 2rem;
    margin-bottom: 0.2rem;
  }
  
  .hero p {
    max-width: 1000px;
    margin-top: -7rem;
    margin-bottom: 8rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
  }
  
  .bttn {
    position: absolute;
    bottom: 5%; /* Adjust positioning */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }
  
  .bttn img {
    width: 50px; /* Adjust size as needed */
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
  }
  
  .bttn:hover img {
    transform: scale(1.1);
    opacity: 1;
  }
  
  
  .intro-logos {
    padding: 1rem 0;
    overflow: hidden;
  }
  
  .intro-logos h3 {
    text-align: center;
    font-size: 1.9rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 0.1rem;
    color: var(--text-secondary);
  }
  
  .logo-carousel {
    position: relative;
    height: 20vh;
    width: 100vw;
    overflow: hidden;
  }
  
  .logo-carousel video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vq;
    clip-path: inset(25% 0 25% 0);
    object-fit: cover;
  }
  
  .featured-content {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: calc(var(--spacing-unit) * 2);
    align-items: center;
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: 90vh;
  }
  
  .featured-content:hover{
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    }
  
  .featured-video video {
    width: 100%;
    height: 85vh;
    border-radius: 1rem;
    margin: 0 1.5rem;
  }
  
  .featured-work {
    padding: calc(var(--spacing-unit) * 2) 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
  }
  
  .section-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  
  .featured-text {
    padding: calc(var(--spacing-unit) * 2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .testimonial h3 {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    margin-bottom: 3rem;
    color: var(--text-primary);
    line-height: 1.3;
  }
  
  
  .testimonial {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-secondary);
  }
  
  .testimonial p {
    margin-bottom: 1.5rem;
  }
  
  .testimonial p:last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 992px) {
    .featured-content {
      grid-template-columns: 1fr;
      height: auto;
      width: 80vw;
      margin-left: auto;
      margin-right: auto;
    }
  
    .featured-video video {
      height: 50vh;
    }
  
    .featured-text {
      padding: calc(var(--spacing-unit) * 1.5);
    }
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 2);
  }
  
  .service-card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: var(--spacing-unit);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
  
  .service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-card video {
    width: 100%;
    border-radius: 0.5rem;
    margin: 1rem 0;
  }
  
  .service-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: var(--text-primary);
  }
  
  .service-card p {
    color: var(--text-secondary);
  }
  
  .services-cta {
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 2);
  }
  
  .btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 3vh;
    background: var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .btns {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 3vh;
    background: #3c413f;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btns:hover {
    background: #3c413f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .btnc {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 3vh;
    background: var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btnc:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .format-options {
    background: var(--bg-light);
  }
  
  .container{
    text-align: center;
  }
  
  .format-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 2);
  }
  
  .phone-frame,
  .desktop-frame {
    position: relative;
    height: 500px;
  }
  
  .frame-img {
    height: 100%;
    width: auto;
  }
  
  .phone-frame video {
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 98%;
    object-fit: cover;
  }
  
  .desktop-frame video {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 85%;
    object-fit: cover;
  }
  
  .phone-frame video {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    height: 88%;
    object-fit: cover;
  }
  
  .desktop-frame video {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    height: 58%;
    object-fit: cover;
  }
  
  .mobile-format,
  .desktop-format {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: calc(var(--spacing-unit) * 1);
  }
  
  .mobile-format p,
  .desktop-format p {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease;
  }
  
  .carousel-btn:hover {
    background: var(--accent-color);
  }
  
  .carousel-btn.prev {
    left: 1rem;
  }
  
  .carousel-btn.next {
    right: 1rem;
  }
  
  .testimonials {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: var(--spacing-unit);
  }
  
  .testimonial-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-content {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
  }
  
  .testimonial-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-unit);
  }
  
  .testimonial-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    text-align: center;
    user-select: none;
  }
  
  .testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
  }
  
  .testimonial-card .author {
    font-weight: bold;
    margin-top: 1rem;
    color: var(--accent-color);
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .carousel-dots .dot.active {
    background: var(--accent-color);
  }
  
  footer {
    background: var(--footer-bg);
    backdrop-filter: blur(50px);
    border-top: 1px solid var(--border-color);
    padding: calc(var(--spacing-unit) * 2) 0;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
  }
  
  .social-links img:hover {
    transform: scale(1.1);
  }
  
  .footer-nav {
    display: flex;
    gap: 2rem;
  }
  
  .footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: var(--accent-color);
  }
  
  .copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-secondary);
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      padding-bottom: 3vh;
    }
    .logo-carousel video{
  width: 100vw;
  height: 603%;
    }
  
    .featured-content {
      grid-template-columns: 1fr;
    }
  
    .format-showcase {
      flex-direction: column;
      align-items: center;
    }
  
    .phone-frame,
    .desktop-frame {
      width: 80%;
      max-width: 400px;
    }
  
    .footer-nav {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .service-card {
      padding: calc(var(--spacing-unit) / 2);
    }
  
    .carousel-btn {
      padding: 0.5rem;
    }
  
    .social-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .hero {
      text-align: center;
    }
    
    .intro-container {
      position: absolute;
      display: grid;
    text-align: center;
      height: 45vh;
      margin-top: 60vh;
      margin-left: 20%;
      z-index: 999;
      color: #10b981;
      mix-blend-mode: normal;
    }
    
    .hero h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-top: 2rem;
    }
    
    .hero p {
      max-width: 800px;
      margin-top: 4rem;
      margin-bottom: 8rem;
      font-size: 1.3rem;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    :root {
      --spacing-unit: 1rem;
    }
  
    .container {
      width: 95%;
      padding: var(--spacing-unit);
    }
  
    .nav-container {
      padding: 1rem var(--spacing-unit);
    }
  
    .nav-logo {
      font-size: 1.2rem;
    }
  
    .hero {
      text-align: center;
    }
    
    .intro-container {
      position: absolute;
      display: grid;
    text-align: center;
      height: 45vh;
      margin-top: 60vh;
      margin-left: 20%;
      z-index: 999;
      color: #10b981;
      mix-blend-mode: normal;
    }
    
    .hero h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-top: 2rem;
    }
    
    .hero p {
      max-width: 800px;
      margin-top: 4rem;
      margin-bottom: 8rem;
      font-size: 1.3rem;
      text-align: center;
    }
  
    .featured-content {
      grid-template-columns: 1fr;
      height: auto;
      padding: 1rem;
    }
  
    .featured-video video {
      height: 40vh;
      border-radius: 0.5rem;
      margin: 1;
    }
  
    .featured-text {
      padding: 1rem;
    }
  
    .testimonial h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
  
    .testimonial p {
      font-size: 0.9rem;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .service-card {
      margin: 0 1rem;
    }
  
    .service-card h3 {
      font-size: 1.3rem;
    }
  
    .service-card p {
      font-size: 0.9rem;
    }
  
    .format-showcase {
      flex-direction: column;
      gap: 2rem;
    }
  
    .phone-frame,
    .desktop-frame {
      height: 400px;
      width: 100%;
      max-width: 300px;
    }
  
    .frame-img {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 480px) {
    .nav-logo {
      font-size: 1rem;
    }
  
    .hero {
      height: 70vh;
    }
  
    .hero h2 {
      font-size: 1.2rem;
    }
  
    .hero p {
      max-width: 800px;
      margin-top: 1rem;
      font-size: 0.8rem;
      text-align: center;
    }
    
    .intro-container {
      position: absolute;
      display: grid;
    text-align: center;
      height: 20vh;
      margin-top:44vh;
      margin-left: 10%;
      margin-right: 10%;
      z-index: 999;
      color: #10b981;
      mix-blend-mode: normal;
    }
  
    .featured-video video {
      height: 30vh;
      margin-right: auto;
      margin-left: auto;
    }
  
    .testimonial-card {
      padding: 1rem;
    }
  
    .testimonial-card p {
      font-size: 0.85rem;
    }
  
    .social-links {
      gap: 0.5rem;
    }
  
    .social-links img {
      width: 25px;
      height: 25px;
    }
  
    .footer-content {
      gap: 1rem;
    }
  
    .copyright {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 768px) and (orientation: landscape) {
    .hero {
      height: 100vh;
    }
  
    .featured-video video {
      height: 60vh;
    }
  
    .format-showcase {
      flex-direction: row;
    }
  
    .phone-frame,
    .desktop-frame {
      height: 300px;
    }
  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .featured-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .format-showcase {
      gap: calc(var(--spacing-unit) * 2);
    }
  
    .phone-frame,
    .desktop-frame {
      height: 450px;
    }
  }
  
  @media (min-width: 1025px) {
    .container {
      max-width: 1200px;
    }
  }
  
  @media (max-width: 768px) {
    .format-showcase {
      flex-direction: column;
      gap: 2rem;
    }
  
    .phone-frame {
      height: 500px;
      max-width: 300px;
    }
  
    .desktop-frame {
      height: 200px;
      max-width: 300px;
    }
  
    .phone-frame video {
      top: 7%;
      width: 78%;
      height: 100%;
    }
  
    .desktop-frame video {
      top: 8%;
      width: 82%;
      height: 73%;
    }
  
    .mobile-format,
    .desktop-format {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 2rem;
    }
  
    .mobile-format p,
    .desktop-format p {
      margin-top: 1.5rem;
      text-align: center;
      width: 100%;
      clear: both;
      position: relative;
    }
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: var(--text-primary);
    z-index: 1000;
    padding-top: 1rem 0;
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: -100%;
      left: 0;
      width: 100%;
      height: auto;
      background: var(--nav-bg);
      backdrop-filter: blur(40px);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem 0;
      transition: top 0.3s ease;
      z-index: 998;
      visibility: hidden;
      opacity: 0;
    }
  
    .nav-links.active {
      top: 95px;
      visibility: visible;
      opacity: 1;
    }
  
    .nav-links .nav-link {
      font-size: 1.5rem;
      padding: 0.05rem;
    }
  }