@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
   :root {
      --bs-primary: #8AA624;
    }
@media (max-width: 767px) {
  .text-xs-center {
    text-align: center;
  }
}
/* dl,
ol,
ul {
  margin-bottom: 0 !important;
} */
html {
  scroll-behavior: smooth;
}
/* body {
  background: #f3f4f4;
  line-height: 1.7;
  color: #516171;
  font-family: "Barlow", sans-serif;
} */

 body {
      /* font-family: 'Merriweather', serif; */
      font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
    }

    h1, h2, h3, h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}
 
    ul{
    line-height: 2;
    
    position: relative;
  }
 .btn-primary {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
    }
.btn-primary:hover {
      background-color: #8AA624;
      border-color: #8AA624;
    }

.navbar .nav-link {
    color: #8AA624 !important;
    transition: color 0.3s ease;
    font-weight: bold;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link:focus {
    color: #094a85 !important; /* darker shade on hover (optional) */
  }
    
  
  
/* Main carousel height and overflow */
#carouselExampleCaptions {
  max-height: 500px;
  overflow: hidden;
  /* border-radius: 10px; */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Image styling */
#carouselExampleCaptions .carousel-item img {
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom effect on active slide */
#carouselExampleCaptions .carousel-item.active img {
  transform: scale(1.02);
}

/* Caption styling */
#carouselExampleCaptions .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 7px;
  padding: 10px;
  bottom: 120px;
  left: 10%;
  right: 10%;
  text-shadow: 1px 1px 3px #000;
}

/* Caption text */
#carouselExampleCaptions .carousel-caption h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

#carouselExampleCaptions .carousel-caption p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #eee;
}

/* Indicators customization */
.carousel-indicators [data-bs-target] {
  background-color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.7;
  margin: 5px;
}

.carousel-indicators .active {
  background-color: var(--bs-primary);
  opacity: 1;
}

/* Control buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* background-color: rgba(22, 13, 158, 0.5); */
  padding: 20px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}



.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(138, 166, 36, 0.4); /* Blue overlay */
  z-index: 1;
}


/* Responsive adjustment */
@media (max-width: 768px) {
  #carouselExampleCaptions .carousel-item img {
    height: 250px;
  }

  #carouselExampleCaptions .carousel-caption {
    padding: 15px;
    font-size: 0.9rem;
  }

  #carouselExampleCaptions .carousel-caption h2 {
    font-size: 1.4rem;
  }
}


/**** end of carousel ****/
/* Banner section */
.banner-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/slider1.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh;
  color: #fff !important;
}


.carousel-caption {
  bottom: 220px;
  z-index: 2;
}
.carousel-caption h5 {
  font-size: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
  color: #fff !important;
}
.carousel-caption p {
  width: 60%;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
}

/* responsive */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .carousel-caption {
    bottom: 370px;
  }
  .carousel-caption p {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-nav {
    text-align: center;
  }
  .carousel-caption {
    bottom: 125px;
  }
  .carousel-caption h5 {
    font-size: 17px;
  }
  .carousel-caption a {
    padding: 10px 15px;
  }
  .carousel-caption p {
    width: 100%;
    line-height: 1.5;
  }
}

/**** blog ********/
.single-blog-img {
  overflow: hidden;
}

.single-blog-img a img {
  width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  height: 320px;
  object-fit: cover;
}

.single-blog:hover .single-blog-img a img {
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
  transform: scale(1.09);
}
.single-blog-img img {
  width: 100%;
}

.blog-content-box {
  padding-left: 25px;
  padding-top: 27px;
  margin-left: 34px;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  background: #fff;
  padding-bottom: 30px;
}
.blog-post-date {
  display: table;
  float: left;
  margin-right: 30px;
}
.blog-post-date span:first-child {
  color: #e65c19;
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-top: -11px;
  margin-bottom: -4px;
  text-align: center;
}
.blog-post-date span:last-child {
  font-size: 14px;
  color: #212121;
  font-weight: 600;
}
.blog-content {
  display: table;
}
.blog-content h4 {
  color: #212121;
}
.blog-content h4 a {
  color: #212121;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.blog-content h4 a:hover {
  color: #e65c19;
}
.meta-post {
  margin: 10px 0 13px;
}
.meta-post span {
  color: #696969;
  font-size: 15px;
  position: relative;
  padding-right: 23px;
}
.author {
  margin-bottom: 60px;
}
.meta-post span a {
  color: #696969;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.meta-post span:after {
  position: absolute;
  content: "-";
  right: 4px;
}
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.meta-post span:last-child {
  padding-right: 0;
}
.exerpt {
  line-height: 28px;
  color: #696969;
  margin-bottom: 37px;
}
/***** END OF NEWS / BLOG ************/
/* two column image with text */

.two-column {
  width: 100%;
  /* max-width: 1170px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #fe7e2e;
  line-height: 1.8 !important;
}
.two-column .left {
  overflow: hidden;
}
.two-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-column .right {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff !important;
}
.two-column .content {
  padding-left: 20px;
  text-align: center;
  padding: 2.5rem;
  color: #fff !important;
  line-height: 1.8 !important;
}
.two-column .content p {
  font-size: 16px;
}
.two-column .content h3 {
  color: #fff !important;
}



@media (max-width: 991px) {
  .two-column .right .content {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .two-column {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar span {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 576px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
} 


/********************** ABOUT US PAGE *********************/
.banner-image {
  /*background-image: url("../img/ruwaghhero-min.jpg");
  */
  background-size: cover;
  filter: grayscale(0%4);
  -webkit-filter: grayscale(0%4);
  height: 75vh;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
}

.banner-image h1 {
  text-transform: uppercase;
  background-color: #516171;
}




/*footer*/
.col_white_amrc {
  color: #fff;
}
footer {
  width: 100%;
  background-color: #8AA624;
  min-height: 250px;
  padding: 10px 0px 25px 0px;
}
.pt2 {
  padding-top: 40px;
  margin-bottom: 20px;
}
footer p {
  font-size: 13px;
  color: #ccc;
  padding-bottom: 0px;
  margin-bottom: 8px;
}
.mb10 {
  padding-bottom: 15px;
}
.footer_ul_amrc {
  margin: 0px;
  list-style-type: none;
  font-size: 14px;
  padding: 0px 0px 10px 0px;
}
.footer_ul_amrc li {
  padding: 0px 0px 5px 0px;
}
.footer_ul_amrc li a {
  color: #ccc;
}
.footer_ul_amrc li a:hover {
  color: #fff;
  text-decoration: none;
}
.fleft {
  float: left;
}
.padding-right {
  padding-right: 10px;
}

.footer_ul2_amrc {
  margin: 0px;
  list-style-type: none;
  padding: 0px;
}
.footer_ul2_amrc li p {
  display: table;
}
.footer_ul2_amrc li a:hover {
  text-decoration: none;
}
.footer_ul2_amrc li i {
  margin-top: 5px;
}

.bottom_border {
  border-bottom: 1px solid #323f45;
  padding-bottom: 20px;
}
.foote_bottom_ul_amrc {
  list-style-type: none;
  padding: 0px;
  display: table;
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
}
.foote_bottom_ul_amrc li {
  display: inline;
}
.foote_bottom_ul_amrc li a {
  color: #999;
  margin: 0 12px;
}

.social_footer_ul {
  display: table;
  margin: 15px auto 0 auto;
  list-style-type: none;
}
.social_footer_ul li {
  padding-left: 20px;
  padding-top: 10px;
  float: left;
}
.social_footer_ul li a {
  color: #ccc;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 50%;
}
.social_footer_ul li i {
  width: 20px;
  height: 20px;
  text-align: center;
}

.paddingTB60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.bgcolor-skyblue {
  background: #eaf0f9;
}

.lg-text {
  font-size: 52px;
  font-weight: 600;
  text-transform: none;
  color: #fff;
}
.image-aboutus-para {
  color: #fff;
}

ul li .menu-item {
  display: block !important;
  color: #fff !important;
}

.overview-text {
  margin-top: 2rem !important;
}
.my-cn-side {
  padding: 5px 10px !important;
}
.cn-mar-btn {
  margin-bottom: 7px !important;
}
footer ul {
  list-style-type: none !important;
}
footer ul li a {
  display: block !important;
  color: #fff !important;
}


/*equal heights and colun */
.equal-height {
      display: flex;
      align-items: center;
      height: 100%;
    }

    .image-fit {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .text-bg {
      background-color: #f8f9fa;
      padding: 2rem;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .equal-height {
        flex-direction: column;
        text-align: center;
      }

      .image-fit {
        height: auto;
      }
    }

    /*end of qual height and colunm */