body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden; /* prevent scrolling */
}

 /* Example content on top */
    /* nav {
      position: relative;
      z-index: 1;
      color: white;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      font-size: 25px;
      margin-top: 20px;
    } */

    .navbar {
  /* position: relative;
  z-index: 3; higher than hero (2) */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
   background-color: transparent;
      position: fixed;   /* instead of relative */
  top: 0;
  left: 0;
  width: 99%;       /* make sure it spans across */
  z-index: 1000;     /* stays above video + content */
  /* font-family: 'Poppins', sans-serif; */
  font-family: 'Montserrat', sans-serif;

}
.navbar.scrolled {
  background-color: black !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Link colors: white on transparent, dark on scrolled */
.navbar .nav-link,
.navbar .navbar-text,
.navbar .btn {
  color: #fff !important;
  transition: color 180ms ease;
}
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-text,
.navbar.scrolled .btn {
  color: white !important;
}

/* Make sure dropdowns show above everything */
.dropdown-menu { 
  z-index: 10010 !important; 
}

    /* Remove default dropdown caret */
    .dropdown-toggle::after {
      display: none !important;
    }

    .dropdown-menu.mega-menu {
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 1rem;
  left: 0 !important;
  transform: none !important;
}

.nav-item a{
  font-size: larger;
}

@media (max-width: 1126px) {
  .navbar a {
    font-size: 12px; /* smaller size for medium screen */
  }
}

@media (min-width: 1126px) and (max-width: 1212px) {
  .navbar a {
    font-size: 14px; /* smaller size for medium screen */
  }
}



.navbar a:hover,
.nav-link:hover
.stretched-link:hover
{
  color: #0056b3;
  text-decoration: none;
}
.nav-link:hover{
  background: linear-gradient(90deg, #0077ff, #9b59b6);
  border-radius: 20px;
}

.useful ul li:hover{
  color: #0056b3;
}

/* Medium screens and up - center it */
@media (min-width: 768px) {
  .dropdown-menu.mega-menu {
    width: 75%;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 2rem;
    border-radius: 20px;
  }

   .navbar-collapse {
    position: relative !important;
  }


}

    /* Keep it centered with container */
    .dropdown-menu.mega-menu .mega-content {
      max-width: 1140px; /* You can use 960px, 1320px, etc depending on preference */
      margin: 0 auto;   /* Center it */
    }



    .video-background {
      position: relative;
      height: 100vh; /* full screen height */
      overflow: hidden;
    }

    .video-background video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

/* Custom button style */
    .btn-custom {
      background-color: #00e0d4; /* teal/aqua color like in image */
      color: black;
      font-weight: 600;
    }
    .btn-custom:hover {
      background-color: #00c5bb;
      color: black;
    }

  .hero {
    min-height: 100vh; /* fills the screen */
    position: relative;
    z-index: 2; /* above the video */
    padding-top: 200px; /* offset navbar height */
  }
  /* .kickstart{
    margin-top: -160px;
  } */
  .get-started{
    margin-right: 30px;
  }

  .counter {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .counter-border{
    border-left: 1px solid white;
  }

  .counter-border p{
    color: #0056b3;
  }

  .border-start {
    border-left: 2px solid rgba(255,255,255,0.3); /* thin white line */
    padding-left: 20px;
  }

  .btn-custom {
    background-color: #00e0d4;
    color: black;
    font-weight: 600;
  }
  .btn-custom:hover {
    background-color: #00c5bb;
    color: black;
  }

  .get-started:hover{
    background-color: #FF6B00;
    border: #FF6B00;
  }

/* Scrollable Content */
 .parent {
      min-height: 200vh; /* big enough so scrolling happens */
    }
     /* Left column: sections take full screen height */
    .left-column section {
      height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Right column: sticky image in center */
    .right-column {
      position: relative;
    }

    .right-column img {
      position: sticky;
      top: 50%;                  /* stick to middle */
      transform: translateY(-50%); /* true vertical center */
      max-width: 80%;
      height: auto;
      display: block;
      margin: 0 auto;
    }


.service-card {
  background: #fff;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.service-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.1);
}
.service-card:hover .icon {
  background: rgba(0, 123, 255, 0.2);
}
.service-link {
  color: #007bff;
  transition: color 0.3s ease;
}
.service-link:hover {
  color: #0056b3;
}


.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-link {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}
  
.marquee {
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
  .navbar-collapse {
    max-height: 75vh;
    overflow-y: auto;
  }

  /* Make dropdowns stack vertically */
  .navbar .dropdown-menu {
    display: none !important;
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin: 0;
    background-color: #f8f9fa;
    border: none;
    box-shadow: none;
  }

  .navbar .dropdown.show .dropdown-menu {
    display: block !important;
  }

  /* Reset contact dropdown width */
  #contactDropdown + .dropdown-menu {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }

  /* Arrow indicator animation */
  .navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }
  .navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

@media (max-width: 992px) {
  .navbar .btn {
    width: 100%;
    margin-top: 10px;
    margin-left: 0 !important;
  }
}
