* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* Navbar Start */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1020;
  border-top: 2px solid #97c398;
  background-color: #fff;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: #000 !important;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar-nav .nav-link.active {
  color: #000 !important;
}

.navbar-nav .nav-link.active::before {
  width: calc(100% - 2rem);
  background-color: #FF802B;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #000;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #FF802B;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:not(.dropdown) .nav-link:hover::before {
  width: calc(100% - 2rem);
}

.nav-item.dropdown .nav-link:hover::before {
  width: 50%;
}

.nav-link.active {
  color: black;
}

.nav-link.active::before {
  width: calc(100% - 2rem);
  background-color: #FF802B;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  transition: all 0.3s ease;
  opacity: 0;
  display: block;
  visibility: hidden;
  transform: translateY(10px);
  background-color: white;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  color: #000 !important;
  background-color: white !important;
  position: relative;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #FF802B !important;
  color: white !important;
}

#aboutDropdown.dropdown-toggle::after,
#solutionsDropdown.dropdown-toggle::after,
#awardsDropdown.dropdown-toggle::after {
  display: none !important;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (min-width: 992px) {
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 20px 0;
  }
}

.dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: none;
  position: static;
  float: none;
  width: auto;
  margin-top: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: none;
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: white !important;
    border: 0;
    box-shadow: none;
  }


  .dropdown-menu.show {
    display: block;
  }

  .dropdown-item {
    padding: 0.5rem 1rem !important;
    color: #000 !important;
    font-weight: 500 !important;
  }

  .dropdown-item:hover {
    background-color: transparent !important;
    color: #FF802B !important;
  }

  .nav-item.dropdown .nav-link::before {
    display: block;
  }
}

/* Navbar End */




/* Video background First container */

.video-background 
{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.video-background video 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.video-overlay 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.video-content 
{
    position: relative;
    top: 8%;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Added to center horizontally */
    color: white;
    text-align: center;
    /* Center text alignment */
    padding: 0 15px;
    /* Equal padding on sides */
}

/* Breadcrumb styling */
.breadcrumb {
    justify-content: center;
    /* Center breadcrumb items */
    background: transparent;
    padding: 0.75rem 1rem;
}

/* Main heading styling */
.main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Middle Cont */

.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

  .contact-icon img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .contact-icon:hover img {
    transform: scale(1.15);
    filter: brightness(1.2);
  }

  .MyImg {
    object-fit: contain;
  }

  
/* Footer Start */

    .footer {
  background-color: #1e2b36;
  color: #ced4da;
  padding: 60px 0 30px;
  font-size: 15px;
}
.footer h5 {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer a {
  color: #ced4da;
  text-decoration: none;
}
.footer a:hover {
  color: #28c76f;
}
.footer .social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #ced4da;
  border-radius: 50%;
  margin-right: 8px;
  color: #ced4da;
  transition: 0.3s;
}
.footer .social-icons a:hover {
  background-color: #28c76f;
  color: #fff;
  border-color: #28c76f;
}
.footer .gallery img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin: 4px;
  border-radius: 6px;
}
.footer-bottom {
  border-top: 1px solid #334756;
  padding-top: 20px;
  font-size: 14px;
}

/* Footer End */