/* =====================
   Base and Font
===================== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

@font-face {
  font-family: 'BrandonGrotesque';
  src: url('../fonts/BrandonGrotesque.woff2') format('woff2'),
       url('../fonts/BrandonGrotesque.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html, body {
  margin: 0;
  padding: 0;
}

/* =====================
   Hero Section
===================== */



@media only screen and (max-width: 600px) and (min-width: 200px)  {
    
    .hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 60px;
}
    
}


@media only screen and (max-device-width:640px), screen and (max-width:1200px) {
    
    .hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0; /* Set to 60px only if navbar overlaps */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

}




/* Mobile adjustments */
@media (max-width: 767px) {
  .hero-section {
    height: auto;
    margin-top: 60px; /* Only if there's a fixed navbar on top */
  }

  .hero-video {
    height: 100%;
    object-fit: cover;
  }
}


/* =====================
   Navbar Desktop
===================== */

.navbar {
  background: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
  height: 50px;
  width: 180px;
}


/* Make hero section full-screen and behind navbar */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
}

.navbar-spacer {
  height: 100px; /* match your navbar height */
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.glass-nav {
  background: rgba(0, 0, 0, 0.85);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 70px; /* Push video below navbar height */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

@media (max-width: 767px) {

  .hero-video {
    height: 30vh;
    object-fit: cover;
  }
  

  .hero-section {
    position: relative;
    margin-top: 60px;
    height: 30vh; /* Reset any full height that may be set elsewhere */
    overflow: hidden;
  }

}






/* Nav Layout - Flex */

.desktop-nav-section .desktop-nav-flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 80px;
}

.nav-link-desktop {
  font-family: 'BrandonGrotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
  padding: 10px 15px;
}

.nav-link-desktop:hover {
  color: #D9A44E;
}

.contact-btn {
  background-color: #D9A44E;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-block;
  white-space: nowrap;
  transition: 0.3s ease;
  margin-left: 15px;
}

.contact-btn:hover {
  background-color: #c88d3b;
}

/* =====================
   Navbar Mobile
===================== */

.mobile-nav-wrapper {
  background: #000;
  padding: 10px 15px;
}

.mobile-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger-icon button {
  border: none;
  background: none;
}

/* Phone Icon Animation with WOW.js */
.phone-icon {
  animation-duration: 0.8s;
}

/* =====================
   Mobile Menu Overlay
===================== */

.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.97);
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 30px 0 30px;
  animation: fadeInMenu 0.4s ease forwards;
}

.mobile-menu-overlay.active {
  display: flex;
}

@keyframes fadeInMenu {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.mobile-menu-overlay .close-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}

.mobile-menu-list li {
  margin: 15px 0;
}

.close-icon-img {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 99999;
  transition: transform 0.2s ease;
}

.close-icon-img:hover {
  transform: rotate(90deg) scale(1.1);
}

.navbar-default .navbar-toggle .icon-bar 
{
  background-color: #fff;
}

.mobile-menu-list li a {
  font-size: 20px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================
   Responsive Fixes
===================== */

@media (min-width: 1200px) {
  .desktop-nav-flex {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 40px;
    width: auto;
  }
}



/* ===========================
   Services Section
=========================== */
.services-section {
  background-color: #0b0b0b;
  padding: 60px 20px;
  font-family: 'HvDTrial Brandon Grotesque', sans-serif;
}

.service-section .container {
  z-index: 3;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 60px;
}

.service-block {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 25px;
}


.service-block h3 {
  color: #cba948;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-block p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}


/* Fixed length underline */
.service-block::after {
  content: '';
  display: block;
  width: 250px;
  height: 1px;
  background-color: #cba948;
  margin-top: 20px;
}


.services-heading {
  font-family: 'BrandonGrotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
}

.service-block {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #cba948;
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}


.service-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Fixed width underline */
.service-block::after {
  content: '';
  display: block;
  width: 250px; /* same for all blocks */
  height: 1px;
  background-color: #cba948;
  margin-top: 20px;
}

/* ===========================
   Responsive Fixes
=========================== */
@media (max-width: 767px) {

   .service-block::after {
    width: 100%;
  }
  .section-title {
    font-size: 28px;
  }

  .services-grid {
    flex-direction: column;
  }

  .services-heading {
    font-size: 32px;
  }

  .service-block h3 {
    font-size: 18px;
  }

  .service-block p {
    font-size: 14px;
  }
}


.about-section {
  background-color: #0b0b0b;
  color: #fff;
  padding: 80px 20px;
  font-family: 'HvDTrial Brandon Grotesque', sans-serif;
}

.about-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color:#cba948;
  margin-bottom: 20px;
}

.about-description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .about-title {
    text-align: center;
    font-size: 26px;
  }

  .about-description {
    text-align: center;
    margin-top: 20px;
  }
}


/* Default desktop behavior */
.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

/* Mobile override */
@media only screen and (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-block !important;
  }
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  animation: bounce 2.5s infinite;
}

.scroll-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 5px auto;
  border: 1px solid white;
}

.scroll-circle i {
  font-size: 20px;
  color: white;
}

/* ✅ HIDE on Mobile */
@media screen and (max-width: 767px) {
  .scroll-button {
    display: block;
    margin-top:20px;
  }
}