:root {
  --primary-color: #f57204;
  --color-1: #f57204;
  --color-2: #bf0c04;
  --color-3: #d44004;
  --color-4: #3c0404;
  --color-5: #650404;
  --color-6: #784804;
}
h2 {
  color: var(--color-6);
}

.nav-link,
.navbar-brand {
  color: white;
}
.nav-link:hover,
.navbar-brand:hover {
  color: white;
  
}
.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
}

.hover-underline-animation.left::after {
  transform-origin: bottom right;
}

.hover-underline-animation.left:hover::after {
  transform-origin: bottom left;
}

.hover-underline-animation.center::after {
  transform-origin: bottom center;
}

.hover-underline-animation.center:hover::after {
  transform-origin: bottom center;
}

.hover-underline-animation.right::after {
  transform-origin: bottom left;
}

.hover-underline-animation.right:hover::after {
  transform-origin: bottom right;
}

 


body,
html {
  /* height: 100%; */
  margin: 0;
  overflow-x: hidden;
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.4);
}
.btn-custom {
  background-color: var(--color-3);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
}
.btn-custom:hover {
  background-color: white;
  color: var(--color-3);
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
  transition: 0.5s;
  box-shadow: var(--primary-color) 10px 10px 5px;
}
.se {
  color: #fff;
}

.se::placeholder {
  color: white;
}

section {
  padding: 60px 15px;
  background-color: #fff;
  text-align: center;
}
#info-section {
  padding: 60px 15px;
  background-color: #fff;
  text-align: center;
}

.info-box {
  padding: 20px;
  transition: 0.3s;
}
.info-box:hover {
  box-shadow: var(--primary-color) 10px 10px 5px;
  border: var(--primary-color) 2px solid;
  transition: 0.3s;
}
.info-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.info-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.about-section {
  padding: 60px 15px;
  background-color: #f8f9fa;
}
.about-image {
  border-radius: 10px;
  box-shadow: var(--primary-color) 20px 20px 10px;
  transition: 0.3s;
}
.about-image:hover {
  box-shadow: var(--primary-color) 5px 5px 5px 5px;
  transition: 0.3s;
}
.logo {
  height: 150px;
}
.copyrighturl {
  color: var(--primary-color);
}
.useful-links > a {
  display: block;
}
a {
  color: #d44004;
  font-size: larger;
  text-decoration: none;
}
li {
  list-style-type: none;
}
.sm-links > a >i {
    display: block;
    font-size: 20px;
    margin-right: 10px;
  }
  .sm-links > a  {
    display: inline-flex;
    font-size: 20px;
  }






