/* Ensure mobile navbar toggler aligns right */
@media (max-width: 991.98px) {
  .navbar .navbar-brand { margin-right: auto; }
  .navbar .navbar-toggler { margin-left: auto; }
}
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 /* NAVBAR */
 .navbar {
   position: sticky;
   top: 0;
   left: 0;
   width: 100%;
   padding: 1rem 2rem;
   background: transparent !important;
   /* see-through over video */
   z-index: 1000;
   /* above hero/video */
 }

 .navlogo {
   width: 60px;
 }

 /* Desktop links */
 .navbar .nav-link {
   color: #8a8a8a !important;
   font-weight: 500;
   transition: .3s;
 }

 .navbar .nav-link:hover {
   background-color: #000;
   border-radius: 10px;
   padding: 6px 14px;
 }

 /* .navbar .nav-link.active {
      background: #000;
      color: #fff !important;
      padding: 5px 15px;
      border-radius: 5px;
    } */

 /* Contact button (desktop) — your original styles kept */
 .btn {
   border: none;
   width: 6em;
   height: 2.5em;
   border-radius: 1em;
   display: flex;
   justify-content: center;
   align-items: center;
   box-shadow: inset 0 0 10px #5b5b5b;
   gap: 12px;
   background: #979797;
   cursor: pointer;
   transition: all 450ms ease-in-out;
 }

 .text {
   font-weight: 600;
   color: #000;
   font-size: medium;
 }

 button:hover svg {
   transform: translateX(4px);
   color: #fff;
 }

 button svg {
   color: #000;
   transition: .2s;
   position: relative;
   width: 13px;
   transition-delay: .2s;
 }

 .btn:hover {
   background: linear-gradient(0deg, #474545, #000);
   box-shadow:
     inset 0px 1px 0px 0px rgba(255, 255, 255, .4),
     inset 0px -4px 0px 0px rgba(0, 0, 0, .2),
     0px 0px 0px 4px rgba(255, 255, 255, .2),
     0px 0px 180px 0px #5e5e5e;
   transform: translateY(-2px);
 }

 .btn:hover .text {
   color: #fff;
 }

 /* Offcanvas (mobile menu sliding from right) */
 .offcanvas {
   background: rgba(0, 0, 0, 0.438);
   backdrop-filter: blur(6px);
 }

 .offcanvas .nav-link {
   color: #fff !important;
   font-size: 1.2rem;
   margin: .4rem 0;
 }

 .offcanvas .nav-link:hover {
   background: #fff;
   color: #000 !important;
   border-radius: 6px;
   padding: .4rem 1rem;
 }

 .offcanvas-header .btn-close {
   filter: invert(1);
 }

 /* make the close icon white */

 /* Hide contact on mobile */
 @media (max-width: 991px) {
   .btn {
     display: none !important;
   }
 }
@media (max-width: 575px) {
   .navlogo {
     width: 40px;
   }
 }




 /* footer */

 footer {
   position: relative;
   color: white;
   padding: 80px 30px 30px;
   background-color: rgba(0, 0, 0, 0.6);
   overflow: hidden;
 }

 footer video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -1;
 }

 .footer-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: 40px;
 }

 .footer-content h1 {
   font-family: "Six Caps", sans-serif;
   font-size: 22vw;
   font-weight: normal;
   letter-spacing: 4px;
 }

 .footer-main {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-around;
   width: 100%;
   text-align: left;
   gap: 40px;
 }

 .footer-logo {
   flex: 1;
   min-width: 200px;
   padding-left: 14rem;
 }

 .footer-logo h2 {
   font-size: 24px;
   font-weight: bold;

 }

 .footer-info {
   flex: 2;
   min-width: 250px;
   display: flex;
   flex-direction: column;
   gap: 15px;
   padding-left: 7rem;
 }

 .footer-info span {
   font-weight: bold;
   font-size: 14px;
   color: #ccc;
 }

 .footer-social {
   margin-top: 20px;
 }

 .footer-social a {
   color: white;
   margin: 0 10px;
   font-size: 18px;
   /* border: 1px solid white; */
   border-radius: 50%;
   padding: 10px;
   display: inline-block;
   transition: 0.3s ease;
 }

 /* .footer-social a:hover {
      background: white;
      color: black;
    } */

 .footer-bottom {
   width: 100%;
   border-top: 1px solid #444;
   margin-top: 50px;
   padding-top: 20px;
   padding: 30px;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   font-size: 14px;
 }

 .footer-nav a {
   color: white;
   margin: 0 10px;
   text-decoration: none;
 }

 .footer-nav a.active {
   font-weight: bold;
   text-decoration: underline;
 }

 .scroll-top {
   position: fixed;
   right: 30px;
   bottom: 30px;
   background: rgba(255, 255, 255, 0.388);
   color: black;
   border-radius: 60%;
   padding: 10px 15px;
   font-size: 15px;
   cursor: pointer;
   transition: background 0.3s;
   z-index: 100;
 }

 .scroll-top:hover {
   background: #ccc;
 }

 .brinit {
   text-decoration: none;
   color: #ffffff;
   font-weight: bolder;
 }

 @media (max-width:1200px) {
   .footer-logo {
     padding-left: 10rem;
   }
 }

 @media (max-width:1000px) {
   .footer-logo {
     padding-left: 8rem;
   }
 }

 @media (max-width:867px) {
   .footer-logo {
     padding-left: 4rem;
   }

   .footer-info {
     padding-left: 4rem;
   }
 }


 @media (max-width: 820px) {
   .footer-content h1 {
     font-size: 90px;
   }

   .footer-main {
     flex-direction: column;
     align-items: center;
   }

   .footer-bottom {
     flex-direction: column;
     text-align: center;
     gap: 10px;
   }

   .footer-info {
     text-align: center;
     padding-left: 0;
   }

   .footer-logo {
     padding-left: 3rem;
   }
 }