/*General Rules*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: Poppins-Light;
  src: url(../Fonts/Poppins-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: Poppins-Medium;
  src: url(../Fonts/Poppins-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../Fonts/Poppins-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: Poppins-ExtraBlod;
  src: url(../Fonts/Poppins-ExtraBold.ttf);
  font-weight: 800;
}

body {
  font-family: Poppins-Light !important;
}

.custom-primary-btn {
  font-size: 17px;
  font-weight: bold;
  border-radius: 5rem;
  padding: 0.9rem 1.7rem;
  background-image: linear-gradient(to right, #3734ff, #01007f);
  border: none !important;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease; /* Smooth transition */
  padding: 15px 20px;

  z-index: 1000;
}

.navbar-brand {
  h5,
  h6 {
    font-size: 14px;
  }
}
.navbar.scrolled {
  background-color: #01007f;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28225, 225, 225, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-brand {
  .navbar-brand-text {
    color: #fff;
  }
}
.navbar-nav {
  gap: 20px;
}
@media (max-width: 991.8px) {
  .navbar-nav {
    gap: 10px;
  }
}
.nav-link {
  color: #fff;
  font-size: 20px;
  position: relative;
  /* &:hover {
    border-top: 2px solid #fff;
    color: #fff;
  } */
}
.nav-link::after {
  content: ""; /* Create a pseudo-element for the border */
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  border-top: 2px solid #fff; /* Initial state: border is hidden */
  transition: height 0.3s ease; /* Apply transition effect */
}
.dropdown a::after {
  content: "";
  position: relative;
  height: 0;
  border-top: 8px solid #fff;
  transition: none;
}
.nav-link:hover,
.nav-link:focus {
  color: #fff;
}
.dropdown:hover a::after {
  width: 0;
  height: 0;
}

.nav-link:hover::after {
  width: 100%;
  height: 100%; /* Border appears on hover */
}
.insetedli a::after {
  content: "";
  position: relative;
  height: 0;
  border-top: 8px solid black !important;
  transition: none;
  margin-left: 3rem;
}
.insetedUl {
  position: absolute !important;
  top: 50% !important;
  left: 98% !important;
}
/*General Rules*/

/*Hero Section*/
.Hero {
  position: relative;
  height: 1133px;

  .swiper-slide {
    background-image: url("../imgs/bgHero.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .title {
    margin-top: 13rem;
    h1 {
      font-family: Poppins-ExtraBlod;
      font-size: 60px;
      color: #fff;
    }
    p {
      font-family: Poppins-Medium;
      padding: 0 15rem;
      font-size: 30px;
      color: #fff;
    }
  }
  .social {
    margin-top: 5rem;
    position: absolute;
    top: -211px;
    .line {
      height: 255px;
      border-radius: 5px;
      background-color: #fff;
      width: 1px;
      margin-bottom: 2rem;
    }
  }
}

@media (max-width: 991.8px) {
  .Hero {
    .title {
      h1 {
        font-size: 35px;
      }
      p {
        font-size: 20px;
        padding: 0;
      }
    }
  }
}
/*Hero Section*/

/*About us */
.about-us {
  .home-about {
    font-family: Poppins-Bold;
    color: #01007f;
    font-size: 60px;
  }
  .home-about-desc {
    font-family: Poppins-Medium;
    color: #01007f;
    font-size: 17px;
  }
}
@media (max-width: 991.8px) {
  .about-us {
    .home-about {
      font-size: 40px;
    }
  }
}
/*About us */
/*testimony*/
.testimony {
  background-image: url("../imgs/RovanSection.png");
  background-repeat: no-repeat;
  background-size: cover;
  /*background-position: 0 -35rem;*/
  padding-top: 10rem;
  padding-bottom: 10rem;
  .home-testimony-desc {
    font-family: Poppins-Medium;
    color: #fff;
    font-size: 17px;
  }
}
/*testimony*/

/*project*/
.project {
  .project-title {
    font-family: Poppins-Bold;
    color: #01007f;
    font-size: 60px;
  }
  .project-desc {
    font-family: Poppins-Medium;
    color: #01007f;
    font-size: 17px;
  }
  .project-name-bl {
    border-radius: 99px;
    box-shadow: rgba(100, 100, 111, 0.8) 0px 7px 29px 0px;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 17px;
    color: #01007f;
    margin-bottom: 1.5rem;
    cursor: pointer;
    a {
      text-decoration: none;
    }
  }
}
@media (max-width: 991.8px) {
  .project {
    .project-title {
      font-size: 40px;
    }
    .project-name-bl {
      margin-left: 0;
      margin-right: 0;
    }
  }
}
/*project*/

/*Core Values*/
.core {
  background-color: #01007f;
  .core-title {
    margin: 0;
    font-family: Poppins-Bold;
    color: #fff;
    font-size: 60px;
  }
  .underline {
    width: 73px;
    height: 10px;
    background: #fff;
    border-radius: 5px;
    margin: 0 auto;
  }
  .core-sub-title {
    font-family: Poppins-Medium;
    color: #fff;
    font-size: 17px;
  }

  .empty-block {
    height: 250px;
    background-color: #0503af;
    border-radius: 47px;
    border: 6px solid rgb(42, 40, 164);
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991.8px) {
  .core {
    .core-title {
      font-size: 40px;
    }
  }
}
/*Core Values*/

/* Content Us*/
.contactUs {
  .contact-title {
    font-family: Poppins-Bold;
    font-size: 60px;
    font-weight: bold;
    color: #01007f;
    position: relative;
  }
  .contact-title:before {
    content: "";
    position: absolute;
    width: 5%;
    height: 1px;
    bottom: 0;
    left: 47%;
    border-bottom: 0.5rem solid #01007f;
    border-radius: 50px;
  }
  .custom-label {
    font-size: 18px;
    font-weight: 600;
    color: #01007f;
  }
  .custom-input {
    border-radius: 59px;
    border: 1px solid #01007f;
    font-size: 1.2rem;
  }
  .empty-block-2 {
    height: 423px;
    background-color: #fff;
    border-radius: 59px;
    border: 1px solid #01007f;
  }
}
@media (max-width: 991.8px) {
  .contactUs {
    .contact-title {
      font-size: 40px;
    }
  }
}
/* Content Us*/

/*Footer*/
.footer {
  background-image: url("../imgs/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 4rem;
  .logo {
    width: 80px;
  }
  .footer-desc,
  .address-info {
    font-family: Poppins-Medium;
    color: #fff;
    font-size: 17px;
  }
}

@media (max-width: 991.8px) {
  .footer {
    .footer-head {
      p {
        margin-left: 10px;
        margin-bottom: 10px;
        font-size: 15px;
      }
    }
  }
}
/*Footer*/
/*/////////////////////////////////////////////////////////////About Us///////////////////////////////////////////////////////////////////////////////////*/
.AboutUs {
  background-image: url("../imgs/about-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 508px;
  .page-header-block {
    font-family: Poppins-ExtraBlod;
    padding-top: 15rem;
    font-size: 60px;
  }
}

.who-we-block {
  .home-about {
    font-family: Poppins-Bold;
    font-size: 60px;

    color: #01007f;
  }
  .home-about-desc {
    font-family: Poppins-Medium;
    color: #01007f;
    font-size: 17px;
  }
  .exp-count {
    font-family: Poppins-Bold;
    font-size: 60px;
    color: #212529;
  }
  .exp-count-txt {
    font-family: Poppins-Medium;
    font-size: 17px;
    color: #212529;
  }
}

.mv-block {
  background-color: #01007f;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;

  .mv-title {
    font-family: Poppins-Bold;
    font-size: 60px;
    color: #fff;
  }
  .mv-title-desc {
    font-family: Poppins-Medium;
    font-size: 17px;
    color: #fff;
  }
  .border-left {
    border-left: 2px solid #fff;
  }
  .mv-info {
    position: relative;
    z-index: 1;
  }
  .mv-overlay {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }

  .mv-overlay img {
    width: 100%;
    height: inherit;
  }
}

@media (min-width: 992px) {
  .mv-block {
    .row > * {
      padding-right: 9rem !important;
      padding-left: 9rem !important;
    }
  }
}
@media (max-width: 991.8px) {
  .mv-block {
    .mv-title {
      font-size: 40px;
    }
    .border-left {
      border-left: none;
    }
  }
}

.cv-block {
  background-image: url("../imgs/core-value.png");
  background-repeat: no-repeat;
  background-size: cover;
  /*background-position: 100%;*/
  padding-top: 2rem;
  padding-bottom: 2rem;
  .cv-title {
    font-family: Poppins-Bold;
    font-size: 60px;
    color: #000;
    position: relative;
    margin-bottom: 3rem;
  }
  .row > * {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .cv-sub-title {
    font-family: Poppins-Medium;
    font-size: 17px;
    font-weight: 600;
    color: #01007f;
  }
  .cv-desc-block {
    background-color: #f2f2f8;
    border-radius: 30px;
    border: 3px solid RGBA(1, 0, 127, 0.1);
    padding: 4rem 2rem;
    color: #01007f;
  }
  .cv-icon {
    width: 115px;
  }
  .cv-icon-bl {
    position: absolute;
    top: -4rem;
    left: 0;
    right: 0;
  }
}
@media (max-width: 991.8px) {
  .who-we-block {
    .home-about {
      font-size: 40px;
    }
  }
  .cv-block {
    .cv-title {
      font-size: 40px;
      margin-bottom: 4rem;
    }
  }
}
/*////////////////////////////////////////////////Contact uS///////////////////////////////////////////////////////////////////////////////////////////////////////*/
.ContactUs {
  background-image: url("../imgs/contact-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 5rem;
  height: 508px;
  .page-header-block {
    font-family: Poppins-ExtraBlod;
    padding-top: 15rem;
    font-size: 60px;
  }
}
.contact-pg-block {
  .custom-label {
    font-size: 18px;
    font-weight: 600;
    color: #01007f;
  }
  .custom-input {
    border-radius: 59px;
    border: 1px solid #01007f;
    font-size: 1.2rem;
  }
  .custom-textarea {
    border-radius: 11px;
    border: 1px solid #01007f;
    font-size: 1.2rem;
  }
  .empty-block-3 {
    height: 423px;
    background-color: #fff;
    border-radius: 59px;
    border: 1px solid #01007f;
  }
}
@media (max-width: 991.8px) {
  .ContactUs {
    .page-header-block {
      font-size: 40px;
    }
  }
}
/*////////////////////////////////////////////////Our Porjects ///////////////////////////////////////////////////////////////////////////////////////////////////////*/
.OurProjects {
  background-image: url("../imgs/project-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 5rem;
  height: 508px;
  .page-header-block {
    font-family: Poppins-ExtraBlod;
    padding-top: 15rem;
    font-size: 60px;
  }
}
.project-block {
  .project-title {
    font-family: Poppins-Bold;
    color: #01007f;
    font-size: 60px;
  }
  .project-desc {
    font-family: Poppins-Medium;
    color: #01007f;
    font-size: 17px;
  }
  .project-name-bl {
    border-radius: 99px;
    box-shadow: rgba(100, 100, 111, 0.8) 0px 7px 29px 0px;
    margin-left: 5rem;
    margin-right: 4rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 17px;
    color: #01007f;
    margin-bottom: 1.5rem;
    cursor: pointer;
    a {
      text-decoration: none;
    }
  }
}
@media (max-width: 991.8px) {
  .OurProjects {
    .page-header-block {
      font-size: 40px;
    }
  }
  /* .project-block {
    .project-name-bl {
      margin: 2rem 0  1.5rem 0;
    }
  } */
}
@media (max-width: 991.8px) {
  .project-block {
    .project-name-bl {
      margin-left: 0;
      margin-right: 0;
    }
  }
}
/*//////////////////////////////////////////////////////////////////////////////////////////*/
/* Project Gellary*/
.ProjectGellary {
  background-image: url("../imgs/project-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 5rem;
  height: 508px;
  .page-header-block {
    font-family: Poppins-ExtraBlod;
    padding-top: 15rem;
    font-size: 60px;
  }
}
.RoyanBlock {
  .title {
    font-family: Poppins-Bold;
    color: #01007f;
    font-size: 35px;
  }
  .articals {
    p {
      font-family: Poppins-Medium;
      color: #01007f;
      font-size: 20px;
    }
  }
  .projectsImg {
    .project {
      img {
        border-radius: 11px;
      }
      h1 {
        font-family: Poppins-Bold;
        color: #01007f;
        font-size: 20px;
      }
      p {
        font-family: Poppins-Light;
        color: #01007f;
      }
    }
  }
}
.Masterplan {
  .container {
    border-radius: 11px;
    background: radial-gradient(circle at right, #3734ff 5%, #01007f 25%);
  }
  img {
    border-radius: 11px;
  }
  .info {
    h1 {
      font-family: Poppins-Bold;
      color: #fff;
      font-size: 35px;
    }
    p {
      font-family: Poppins-Light;
      color: #fff;
      font-size: 19px;
    }
    .custom-primary-btn {
      background-image: none;
      color: #01007f;
      background-color: #fff;
    }
  }
}

.ProjectSwiper {
  h1 {
    font-family: Poppins-Bold;
    color: #01007f;
    font-size: 35px;
  }
  .swiper-slide img {
    border-radius: 11px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  text-rendering: auto;
}
/*////////////////////////////////////////////////////////////////////////////////////*/
/*Media*/
.Media {
  background-image: url("../imgs/Media-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 5rem;
  height: 508px;
  .page-header-block {
    font-family: Poppins-ExtraBlod;
    padding-top: 15rem;
    font-size: 60px;
  }
}

.News {
  .main-news {
    .title {
      font-family: Poppins-Bold;
      color: #01007f;
      font-size: 35px;
    }
    img {
      border-radius: 11px;
    }
    .description {
      h4 {
        font-family: Poppins-Bold;
        color: #01007f;
        font-size: 20px;
      }
      p {
        font-family: Poppins-Light;
        color: #01007f;
        font-size: 15px;
      }
    }
  }

  .side-news {
    .title {
      font-family: Poppins-Bold;
      color: #01007f;
      font-size: 35px;
    }
    img {
      border-radius: 11px;
    }
    p {
      font-family: Poppins-Medium;
      color: #01007f;
      font-size: 15px;
    }
  }
}

/*/////////////////////////////////////////////////////////////
/*All media*/
.allMediaBlock {
  .media-block {
    p {
      font-family: Poppins-Bold;
      color: #01007f;
      font-size: 20px;
    }
  }
}
