* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      overflow-x: hidden;
      color: #333;
      background: #fff;
      min-height: 100vh;
    }
    
    /* Navbar */
    .custom-navbar {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 12px;
      padding: 8px 20px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1000px;
      margin: 20px auto;
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: calc(100% - 40px);
      backdrop-filter: blur(10px);
      transition: transform 0.4s ease, opacity 0.4s ease;
    }
    
    .navbar-hidden {
      transform: translateX(-50%) translateY(-100px);
      opacity: 0;
      pointer-events: none;
    }
    
    .navbar-visible {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: #e50914 !important;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .menu-item  {
      font-weight: 600;
      color: #333 !important;
      margin: 0 10px;
      transition: all 0.3s ease;
    }

    .menu-item a {
     
      color: #333 !important;
      
      text-decoration: auto;
    }
    
    .menu-item :hover {
      color: #e50914 !important;
      transform: translateY(-2px);
    }
    
    .btn-contact { 
      background: #e50914; 
      color: #fff; 
      border-radius: 10px; 
      padding: 10px 25px; 
      border: 0;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-contact:hover { 
      background: #c40811; 
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(200, 8, 17, 0.4);
    }
    
    /* Hero Section */
    .hero {
      background-color: #212121;
      border-bottom-right-radius: 15vw;
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
     
    }
    
    .hero:before {
      content: "";
      background-color: #212121;
      position: absolute;
      top: 100%;
      left: 0;
      width: 15vw;
      height: 15vw;
    }
    
    .hero:after {
      content: "";
      background-color: #fff;
      position: absolute;
      top: 100%;
      left: 0;
      width: 15vw;
      height: 15vw;
      border-top-left-radius: 15vw;
    }
    
    .video-wrap {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-bottom-right-radius: 15vw;
      pointer-events: none;
    }
    
    #video-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      min-width: 100%;
      background-position: center center;
      background-size: cover;
      object-fit: cover;
      transform: rotate(180deg);
    }
    
    .gradient-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to bottom, rgba(33,33,33,0) 0%, rgba(33,33,33,1) 50%);
      z-index: 1;
      border-bottom-right-radius: 15vw;
      pointer-events: none;
    }
    
    .hero-content {
      position: relative;
      text-align: center;
      z-index: 2;
      margin-bottom: 5rem;
    }
    
    .hero-title {
      font-size: 8vw;
      line-height: 1em;
      font-weight: 900;
      mix-blend-mode: difference;
      color: #fff;
      position: relative;
      z-index: 2;
    }
    
    .content-section {
      padding: 100px 20px;
      background: white;
      position: relative;
      z-index: 50;
      border-top-left-radius: 15vw; 
      
    }
    
    .container {
      max-width: 1000px;
      margin: 0 auto;
    }
    
    
    .section-title {
      font-size: 7.5rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      text-align: center;
      margin-bottom: 60px;
      pointer-events: none;
      font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
      background: linear-gradient(
        to bottom,
        rgba(229, 9, 20, 0.35) 30%,
        rgba(255, 255, 255, 0) 76%
      );
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .content-section p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    
    
    .content-section {
      background: white;
      position: relative;
      z-index: 50;
      overflow: hidden;
    }
    
    .about-title {
      font-size: 7.5rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      text-align: center;
      
      pointer-events: none;
      font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
      background: linear-gradient(to bottom, rgb(4 4 4 / 59%) 30%, rgba(255, 255, 255, 0) 76%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .carousel-container {
      width: 100%;
      height: 300px;
      position: relative;
      perspective: 1000px;
      margin: 0 auto;
    }
    
    .carousel-track {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .card {
      position: absolute;
      width: 280px;
      height: 380px;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 30px;
      text-align: center;
    }
    
    .card-icon {
      font-size: 3.5rem;
      color: #000000;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    
    .card h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #333;
    }
    
    .card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #666;
    }
    
    .card.center {
      z-index: 10;
      transform: scale(1.1) translateZ(0);
      background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
      box-shadow: 0 25px 50px rgba(229, 9, 20, 0.2);
    }
    
    .card.center .card-icon {
      transform: scale(1.2);
      color: #c40811;
    }
    
    .card.left-2 {
      z-index: 1;
      transform: translateX(-400px) scale(0.8) translateZ(-300px);
      opacity: 0.7;
      filter: grayscale(30%);
    }
    
    .card.left-1 {
      z-index: 5;
      transform: translateX(-200px) scale(0.9) translateZ(-100px);
      opacity: 0.9;
      filter: grayscale(20%);
    }
    
    .card.right-1 {
      z-index: 5;
      transform: translateX(200px) scale(0.9) translateZ(-100px);
      opacity: 0.9;
      filter: grayscale(20%);
    }
    
    .card.right-2 {
      z-index: 1;
      transform: translateX(400px) scale(0.8) translateZ(-300px);
      opacity: 0.7;
      filter: grayscale(30%);
    }
    
    .card.hidden {
      opacity: 0;
      pointer-events: none;
    }
    
    .member-info {
      text-align: center;
      margin-top: 40px;
      transition: all 0.5s ease-out;
    }
    
    .member-name {
      color: #e50914;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
    }
    
    .member-name::before,
    .member-name::after {
      content: "";
      position: absolute;
      top: 100%;
      width: 100px;
      height: 2px;
      background: #e50914;
    }
    
    .member-name::before {
      left: -120px;
    }
    
    .member-name::after {
      right: -120px;
    }
    
    .member-role {
      color: #848696;
      font-size: 1.5rem;
      font-weight: 500;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 10px 0;
      margin-top: -15px;
      position: relative;
    }
    
    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(229, 9, 20, 0.6);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      transition: all 0.3s ease;
      font-size: 1.5rem;
      border: none;
      outline: none;
      padding-bottom: 4px;
    }
    
    .nav-arrow:hover {
      background: rgba(229, 9, 20, 0.9);
      transform: translateY(-50%) scale(1.1);
    }
    
    .nav-arrow.left {
      left: 20px;
      padding-right: 3px;
    }
    
    .nav-arrow.right {
      right: 20px;
      padding-left: 3px;
    }
    
    
    footer {
      background: #212121;
      color: white;
      padding: 80px 20px 40px;
      text-align: center;
      border-top-right-radius: 15vw;
      position: relative;
      overflow: hidden;
    }
    
    footer:before {
      content: "";
      background-color: #212121;
      position: absolute;
      bottom: 100%;
      right: 0;
      width: 15vw;
      height: 15vw;
    }
    
    footer:after {
      content: "";
      background-color: #fff;
      position: absolute;
      bottom: 100%;
      right: 0;
      width: 15vw;
      height: 15vw;
      border-bottom-left-radius: 15vw;
    }
    
    
    .footer-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 25vw;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.03);
      z-index: 0;
      white-space: nowrap;
      pointer-events: none;
    }
    
    .social-links {
      margin: 20px 0;
      position: relative;
      z-index: 2;
    }
    
    .social-links a {
      color: white;
      font-size: 1.5rem;
      margin: 0 10px;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      color: #e50914;
      transform: translateY(-3px);
    }
    
    .footer-content {
      position: relative;
      z-index: 2;
    }
    
    /* Media Queries */
    @media screen and (max-width: 992px) {
      .custom-navbar {
        padding: 10px 15px;
      }
      
      .navbar-brand {
        font-size: 1.5rem;
      }
      
      .hero-title {
        font-size: 10vw;
      }
      
      .about-title, .section-title {
        font-size: 6rem;
      }
    }
    
    @media screen and (max-width: 768px) {
      .hero-title {
        font-size: 12vw;
      }
      
      .hero {
        min-height: 80vh;
      }
      
      .content-section {
        border-top-left-radius: 10vw;
        margin-top: 8vw;
      }
      
      .about-title, .section-title {
        font-size: 3.5rem;
      }

      .card {
        width: 200px;
        height: 280px;
        padding: 20px;
      }
      
      .card-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
      }
      
      .card h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
      }
      
      .card p {
        font-size: 0.9rem;
      }

      .card.left-2 {
        transform: translateX(-250px) scale(0.8) translateZ(-300px);
      }

      .card.left-1 {
        transform: translateX(-120px) scale(0.9) translateZ(-100px);
      }

      .card.right-1 {
        transform: translateX(120px) scale(0.9) translateZ(-100px);
      }

      .card.right-2 {
        transform: translateX(250px) scale(0.8) translateZ(-300px);
      }

      .member-name {
        font-size: 2rem;
      }

      .member-role {
        font-size: 1.2rem;
      }

      .member-name::before,
      .member-name::after {
        width: 50px;
      }

      .member-name::before {
        left: -70px;
      }

      .member-name::after {
        right: -70px;
      }
      
      footer {
        border-top-right-radius: 25vw;
        padding: 60px 20px 30px;
      }
      
      footer:before,
      footer:after {
        width: 10vw;
        height: 10vw;
      }
      
      .footer-bg-text {
        font-size: 30vw;
      }
    }
    
    @media screen and (max-width: 576px) {
      .custom-navbar {
        width: calc(100% - 20px);
        margin: 10px auto;
        padding: 8px 12px;
      }
      
      .navbar-brand {
        font-size: 1.3rem;
      }
      
      .nav-link {
        font-size: 0.9rem;
        margin: 0 5px;
      }
      
      .btn-contact {
        padding: 8px 16px;
        font-size: 0.9rem;
      }
      
      .hero-title {
        font-size: 15vw;
      }
      
      .hero {
        min-height: 70vh;
      }
      
      .content-section {
        border-top-left-radius: 8vw;
        margin-top: 8vw;
        padding-top: 80px;
      }
      
      .about-title, .section-title {
        font-size: 3.0rem;
      }
      
      .carousel-container {
        height: 215px;
      }
      
      .card {
        width: 180px;
        height: 250px;
        padding: 15px;
      }
      
      .card-icon {
        font-size: 2rem;
        margin-bottom: 10px;
      }
      
      .card h3 {
        font-size: 1.2rem;
      }
      
      .card p {
        font-size: 0.8rem;
      }
      
      .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
      }
      
      .nav-arrow.left {
        left: 10px;
      }
      
      .nav-arrow.right {
        right: 10px;
      }
      
      footer {
        border-top-right-radius: 25vw;
        padding: 45px 20px 20px;
      }
      
      footer:before,
      footer:after {
        width: 8vw;
        height: 8vw;
      }
      
      .footer-bg-text {
        font-size: 35vw;
      }
    }

    * Increase gap between menu items in mobile view */
    @media (max-width: 991.98px) {
      .navbar-nav {
        gap: 1.5rem !important;
        padding: 2rem 0;
      }
      
      .mobile-contact-btn {
        margin-top: 1.5rem;
        text-align: center;
      }
    }