/* <!-- ---------- H E A D E R --------------------------------------------------------------------------------- --> */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 3px solid red; */
}
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media screen and (max-width: 900px) {
  body h1, body h2, body h3, body h4, body h5, body h6{
      font-size: 25px !important;
  }
  
}
.logo{
    height: 60px;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-nav li a {
  color: #000;
  font-size: 18px;
  padding-left: 40px !important;
  padding-right: 40px !important;
  justify-content: space-around;
}

@media (max-width: 576px) {
  .navbar-nav li a {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}


/* Fix overflow on small screens */
@media (max-width: 576px) {
  .navbar-nav li a {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

nav li a:hover{
    color: #20b15c;
}
.dropdown-menu{
    background-color: #fff;
    padding: 10px 20px;
    border: #20b15c solid 2px;
    border-radius: 20px 0px 20px 0px;
}
.dropdown-item{
    color: #000;
    background-color: rgb(233, 233, 233);
    margin: 10px 0px;
    text-align: center;
}
.dropdown-item:hover{
    color: #20b15c;
    background: rgb(179, 180, 179);
}
/* <!-- ---------- H E A D E R --------------------------------------------------------------------------------- --> */

/* <!-- ---------F O O T E R   S E C T I O N -------------------------------------------------------------------- --> */
footer a{
    text-decoration: none;
    color: #fff;
}
footer h6, footer li, footer p, footer span{
    color: #fff;
}
/* <!-- ---------F O O T E R   S E C T I O N -------------------------------------------------------------------- --> */

/* <!-- ---------- H E R O  S E C T I O N ------------------------------------------------------------------- --> */
.hero-container img{
    width: 100%;
    height: auto;
    margin-top: 75px;
}
/* <!-- ---------- H E R O  S E C T I O N ------------------------------------------------------------------- --> */

/* <!-- ---------- A B O U T   S E C T I O N ------------------------------------------------------------------- --> */
.about-acps-section h2{
    font-size: 35px;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 4px solid rgb(3, 102, 28);
}
.about-acps-section p{
    text-align: justify;
    font-size: 18px;
    line-height: 30px;
}
.about-acps-section img{
    width: 100%;
    height: auto;
}
/* <!-- ---------- A B O U T   S E C T I O N ------------------------------------------------------------------- --> */

/* <!-- ----------  P U R P O S E   S E C T I O N ------------------------------------------------------------ --> */
.purpose-and-quote {
  position: relative;
  padding: 4rem;
  text-align: center;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.purpose-and-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: url('assets/images/purpose-and-quotes-bg.jpg'); */
  background: linear-gradient(to right, #516051 0.1%, #f3f3f3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* filter: blur(3px) brightness(0.9); */
  z-index: -1;
}
.purpose-and-quote.visible {
  opacity: 1;
  visibility: visible;
}
.l2m-rail-purpose {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #000;
}
.quote {
  color: #fff;
  line-height: 1.8;
  font-size: 2rem;
  margin: 2rem auto 0;
  position: relative;
  padding: 2rem 3rem;
  border-radius: 12px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
  max-width: 900px;
  font-weight: 900;
  background-color: rgba(0, 0, 0, 0.3);
}
.quote q {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .quote, .l2m-rail-purpose {
    font-size: 1.5rem;
  }
  .quote q, .l2m-rail-purpose {
    font-size: 1.5rem;
  }  
}
/* <!-- ----------  P U R P O S E   S E C T I O N ------------------------------------------------------------ --> */

/* <!-- ----------D E P L O Y M E N T   S E C T I O N -------------------------------------------------------- --> */
.deployment-section{
    background-color: rgb(228, 228, 228);
}
/* <!-- ----------D E P L O Y M E N T   S E C T I O N -------------------------------------------------------- --> */

/* <!-- ----------ANIMATION-------------------------------------------------------- --> */
.fade-in,
.fade-in-up,
.slide-in-up,
.slide-out-left,
.slide-out-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in {
  transform: translateY(30px);
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up {
  transform: translateY(30px);
}
.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}
.slide-in-up {
  transform: translateY(30px);
}
.slide-in-up.show {
  opacity: 1;
  transform: translateY(0);
}
.slide-out-left {
  transform: translateX(-50px);
}
.slide-out-left.show {
  opacity: 1;
  transform: translateX(0);
}
.slide-out-right {
  transform: translateX(50px);
}
.slide-out-right.show {
  opacity: 1;
  transform: translateX(0);
}
/* <!-- ----------ANIMATION   -------------------------------------------------------- --> */

/* ##########################################################################################################
##################################  L A N D I N G   P A G E   S T Y L I N G   E N D S  #######################
########################################################################################################### */ 
.about-us-hero-container img, .features-hero-container img, .resources-hero-container img{
  width: 100%;
  /* height: auto; */
  height: 350px;
  /* object-position: center; */
  background-color: #c1ccc1;
  object-fit: cover;
}
@media screen and (max-width: 900px) {
  .about-us-hero-container img, .features-hero-container img{
    height: 30vh;
  }
}
.info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
  text-align: center;
}
.info-box .heading {
  font-size: 1.2rem;
  font-weight: 600;
  transition: font-size 0.2s ease;
}
.info-box .content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
.info-box:hover {
  align-items: flex-start;
}
.info-box:hover .heading {
  font-size: 1rem;
}
.info-box:hover .content {
  opacity: 1;
  max-height: 200px;
}
/* ##########################################################################################################
##################################  A B O U T   P A G E   S T Y L I N G   E N D S  #######################
########################################################################################################### */ 
.feature-card {
  transition: transform 0.2s ease-in-out;
  border-radius: 1rem;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.features-and-advantages-section{
  overflow-x: clip;
}
/* ##########################################################################################################
##################################  F E A T U R E S   P A G E   S T Y L I N G   E N D S  #######################
########################################################################################################### */
.brochure-card {
  background: linear-gradient(to right, #e6f4ea, #d0f0d3);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 128, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease-in-out;
}
.download-btn {
  background-color: #198754;
  color: white;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.download-btn:hover {
  background-color: #157347;
}
.brochure-icon {
  font-size: 3rem;
  color: #198754;
}
/* ##########################################################################################################
##################################  R E S O U R C E S   P A G E   S T Y L I N G   E N D S  #######################
########################################################################################################### */
.contact-section {
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    .form-control::placeholder {
      font-size: 0.95rem;
    }
    .contact-info {
      background: #f0f4f8;
      padding: 40px;
      border-radius: 12px;
    }
    h2 {
      font-weight: 700;
    }
    .info-title {
      color: #333;
      font-size: 1.1rem;
      font-weight: 600;
    }
    .info-text {
      color: #555;
      margin-bottom: 1rem;
    } 
/* ##########################################################################################################
##################################  C O N T A C T   P A G E   S T Y L I N G   E N D S  #######################
########################################################################################################### */

/* @media screen and (max-width: 900px) {
 body h1, body h2, body h3, body h4, body h5, body h6{
     font-size: 1.3rem !important;
 }
  
} */