@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
/* font-family: 'PP Pangaia', sans-serif; */

@import url('https://fonts.cdnfonts.com/css/pp-pangaia');
/* font-family: 'PP Pangaia', sans-serif; */

@import url('https://fonts.cdnfonts.com/css/satoshi');
/* font-family: 'Satoshi', sans-serif; */

html {
  /* scroll-padding-top: 100px; */
  overflow-x: hidden !important;
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

a {
  color: inherit !important;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'PP Pangaia', sans-serif;
}

p {
  font-family: 'Satoshi', sans-serif;
}

header {
  position: fixed;
  width: 100%;
  z-index: 10;
  /* border-bottom: 1px solid #ffffff75; */
  transition: 0.5s all ease;
}

.header_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.navs ul {
  display: inline-flex;
  list-style: none;
  gap: 2.5rem;
  font-size: 15px;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  margin-bottom: 0;
}

.toggle_icon {
  display: none;
}


.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
}

.logo img {
  height: 52px;
}

.logo span {
  height: 52px;
  width: 1px;
  background: #ffffff69;
}

.logo_clip {
  overflow: hidden;
}

.logo_timed {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: logo_slide 8s ease-in-out infinite;
}

@keyframes logo_slide {

  0%,
  37.5%,
  100% {
    transform: translateX(0);
  }

  50%,
  87.5% {
    transform: translateX(-110%);
  }
}

.logo:focus-within .logo_timed {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .logo_timed {
    animation: none;
  }
}

.hero {
  position: relative;
  /* background-image: url(../assets/images/hero_banner.webp); */
  height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: grid;
  align-items: flex-end;
}

.hero::before {
  content: "";
  position: absolute;
  background: rgb(255, 255, 255);
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 26%, rgb(91 114 132 / 45%) 91%);
  height: 100%;
  width: 100%;
}

.hero_cnt_main {
  position: relative;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5 all ease-in;
}

.hero_cnt_main_active {
  opacity: 1;
  animation: scale 2.9s ease-in;
}

@keyframes scale {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}





.hero_cnt h1 {
  color: #ffffff;
  font-family: 'PP Pangaia', sans-serif;
  font-size: 60px;
  width: 65%;
  text-shadow: 7px 7px 17px #000000bf;
}

.hero_cnt p {
  font-size: 16px;
  font-family: 'Satoshi', sans-serif;
  color: #fff;
  width: 65%;
  margin-top: 1.3rem;
  text-shadow: 7px 7px 17px #000000bf;
}

/* .explore_btn{
    width: 15%;
  } */
.explore_btn button {
  font-family: 'Satoshi', sans-serif;
  background: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50% 50% 0;
  padding: 53px 15px;
  font-size: 18px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.explore_btn button:hover {
  border: 1px solid #fa991c;
  background: #fa991c;
  color: #000000;
  transition: all 0.3s ease;
}



/* ----------------------------------------------- */

#abt_index {
  padding: 5rem 0rem;
}

.index_abt_img_wrap {
  position: relative;
}

.index_abt_img {
  width: 100%;
  display: block;
}

.exp_badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #1c768f;
  color: #fff;
  padding: 1rem 1.8rem;
  text-align: center;
}

.exp_badge h1 {
  font-size: 40px;
  margin-bottom: 0;
}

.exp_badge p {
  margin-bottom: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d9ecf4;
}

.abt_label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #1c768f;
  margin-bottom: 5px;
  margin-top: 0;
}

.index_abt h1 {
  width: 85%;
  font-size: 50px;
  /* margin-bottom: 1.5rem; */
}
.index_abt h5 {
  font-family: 'Satoshi', sans-serif;
  color: #1c768f;
  font-weight: 300;
}

.index_abt p {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  color: #161616;
  line-height: 24px;
  margin-top: 1.5rem;
}

.index_abt a {
  font-family: 'Satoshi', sans-serif;
}

.my_exp_main {
  display: flex;
  margin-top: 4rem;
  border-top: 1px solid #e5e5e5;
}

.my_exp {
  flex: 1;
  padding: 2rem 1rem;
  border-right: 1px solid #e5e5e5;
}

.my_exp:last-child {
  border-right: none;
}

.my_exp h1 {
  font-size: 50px;
  color: #1c768f;
  margin-bottom: 0;
}

.my_exp p {
  font-size: 14px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
}




/* -------------------------------------------------------- */

.service_bg {
  background-color: #052e42;
  color: #fff;
  padding: 4rem 0rem;
}

.service_head {
  margin-bottom: 2rem;
}

.service_head h1 {
  font-size: 50px;
}

.service_head p {
  font-size: 16px;
  /* font-weight: 300; */
  width: 40%;
}

.service_list {
  counter-reset: servi;
}

.service_items {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid #ffffff40;
  padding: 1.8rem 0rem;
  position: relative;
  transition: 0.3s all ease;
  counter-increment: servi;
}

.service_num::before {
  content: counter(servi, decimal-leading-zero);
  font-family: 'PP Pangaia', sans-serif;
  font-size: 40px;
  color: #ffffff66;
  /* -webkit-text-stroke: 1px #ffffff66; */
  transition: 0.3s all ease;
}

.service_items:hover .service_num::before {
  color: #fa991c;
  /* -webkit-text-stroke: 1px #fa991c; */
}

.service_items h6 {
  font-size: 22px;
  margin-bottom: 0;
  flex: 1;
  transition: 0.3s all ease;
}

.service_items:hover h6 {
  color: #fa991c;
  transform: translateX(10px);
}

.servi_item_arrow {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.servi_item_arrow p {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffffb3;
  margin-bottom: 0;
}

.servi_item_arrow i {
  color: #fa991c;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s all ease;
}

.service_items:hover .servi_item_arrow i {
  opacity: 1;
  transform: translateX(0);
}

.view_service {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.view_service button {
    background-color: #1c768f;
    border: none;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.3s ease;
}

.view_service button:hover {
        background-color: #fa991c;
    color: #000000;
}

/* ---------------------------------------------------------------- */
#project {
  padding: 80px 0 60px 0;
}

.home_projects {
  padding: 80px 0;
}

.project_cnt {
  margin-bottom: 3.5rem;
}

.project_cnt p {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 3px;
  color: #1c768f;
}

.project_cnt h1 {
  font-size: 50px;
}

.index_project_main {
  position: relative;
  margin: 8px;
  overflow: hidden;
}

.index_project_img img {
  width: 100%;
  display: block;
  max-height: 55vh;
  object-fit: cover;
}

.index_project_cnt {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: #052e42d9;
  color: #fff;
  padding: 0.9rem 1.5rem;
  min-width: 220px;
}

.index_project_cnt h3 {
  margin-bottom: 3px;
  font-size: 22px;
}

.index_project_cnt p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bcd6e2;
}

.project_slider {
  position: relative;
}

.project_slider .slick-slide {
  transform: scale(0.9);
  opacity: 0.35;
  filter: grayscale(60%);
  transition: all 0.5s ease;
}

.project_slider .slick-active {
  transform: scale(0.9);
}

.project_slider .slick-current {
  transform: scale(1.02);
  opacity: 1;
  filter: none;
}

.prev_button_client {
  position: absolute;
  top: -5.5rem;
  right: 12rem;
  z-index: 2;
}

.next_button_client {
  position: absolute;
  top: -5.5rem;
  right: 7.5rem;
  z-index: 2;
}

.prev_button_client,
.next_button_client {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid #052e42;
  border-radius: 50%;
  color: #052e42;
  font-size: 15px;
  transition: all 0.3s ease;
}

.prev_button_client:hover,
.next_button_client:hover {
  border: 1px solid #fa991c;
  background: #fa991c;
  color: #fff;
}

.view_project {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.view_project button {
    background-color: #1c768f;
    border: none;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.3s ease;
}

.view_project button:hover {
        background-color: #fa991c;
    color: #000000;
}

/* ------------------------------------------------------------ */

.team_bg {
  background-color: #1c768f;
  color: #fff;
  padding: 4rem 0rem;
}

.team_head h1 {
  font-size: 50px;
  margin-bottom: 2.5rem;
}

.team_main {
  margin: 1rem;
}

.team_main img {
  margin-bottom: 1rem;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 50% 50% 0;
}

.team_main h6 {
  font-size: 18px;
  text-align: center;
}

.team_main p {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 200;
  color: #cacaca;
  margin-bottom: 0;
  text-align: center;
}

.team_main span {
  font-size: 14px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  color: #e0e0e0;
}

.team_slider {
  position: relative;
}

.team_prev_button {
  position: absolute;
  top: -5.5rem;
  right: 4.5rem;
}

.team_next_button {
  position: absolute;
  top: -5.5rem;
  right: 0;
}

.team_prev_button,
.team_next_button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid #ffffff80;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.team_prev_button:hover,
.team_next_button:hover {
  border: 1px solid #fa991c;
  background: #fa991c;
  color: #ffffff;
}





/* ============================================================================================================= */
#about {
  padding: 5rem 0;
}

.sub_banner_bg {
  height: 400px;
  background-repeat: no-repeat;
  background-position:top center;
  display: grid;
  align-items: end;
  background-size: cover;
}

.about_banner{
  background-image: url(../assets/images/image11111.png);
}

.services_banner{
  background-image: url(../assets/images/image22222.png);
}

.project_banner{
  background-image: url(../assets/images/image33333.png);
}

.contact_banner{
  background-image: url(../assets/images/image44444.png);
}



.banner_cnt {
  background: rgb(248, 248, 248);
  background: linear-gradient(270deg, rgba(248, 248, 248, 0) 0%, rgba(220, 228, 231, 0.699) 71%);
  margin-bottom: 4.5rem;
  width: 50%;
  padding: 10px 16px;
  backdrop-filter: blur(2px);
}

.banner_cnt p {
  margin-bottom: 0;
}

.about_cnt h1 {
  font-size: 50px;
}
.about_cnt h5 {
  margin-bottom: 1rem;
  font-family: 'Satoshi', sans-serif;
  color: #1c768f;
  font-weight: 400;
}

.about_cnt p {
  font-size: 16px;
  /* font-weight: 300; */
  line-height: 25px;
}

.year_paragon {
  border-right: 1px solid #848484;
  text-align: center;
  padding: 1rem;
}

.year_paragon h1 {
  font-size: 50px;
}

.year_paragon_main {
  margin-top: 5rem;
}




/* =========================================================================================================== */

#services {
  padding: 5rem 0;
}

.service_page_head {
  text-align: center;
}

.service_page_head h1 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 4rem;
}

.service_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: servi;
}

.service_card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: all 0.3s ease;
  counter-increment: servi;
}

.service_card::before {
  content: counter(servi, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: #1c768f;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 0;
  font-family: 'PP Pangaia', sans-serif;
  font-size: 14px;
}

.service_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(5, 46, 66, 0.15);
}

.service_card_img {
  overflow: hidden;
}

.service_card_img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service_card:hover .service_card_img img {
  transform: scale(1.08);
}

.service_card_cnt {
  padding: 1.5rem;
}

.service_card_cnt h3 {
  margin-bottom: 0.8rem;
  font-size: 20px;
  line-height: 28px;
}

.service_card_cnt p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1c768f;
}

.servi_hover_img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.servi_hover_img img {
  width: 500px;
  height: 330px;
  object-fit: cover;
}

/* ========================================================== */


.project_main {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.project_main_img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: pointer;
  display: block;
  transition: transform 0.5s ease;
}

.project_main:hover .project_main_img img {
  transform: scale(1.08);
}

.project_main_cnt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #052e42eb 0%, #052e4280 70%, transparent 100%);
  padding: 2.5rem 1.2rem 1rem;
  pointer-events: none;
}

.project_main_cnt h3 {
  margin-bottom: 3px;
  color: #fff;
  font-size: 22px;
}

.project_main_cnt p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bcd6e2;
}




/* ================================================= */

.cont_adrs_main {
  padding: 1rem 0rem;
}

.cont_intro {
  font-size: 15px;
  color: #555;
  line-height: 22px;
  margin-bottom: 2rem;
}

.cont_item {
  margin-bottom: 1.5rem;
}

.cont_item a {
  display: block;
  font-family: 'PP Pangaia', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #161616;
  line-height: 28px;
  transition: color 0.3s ease;
}

.cont_item a:hover {
  color: #1c768f;
}

.cont_item a i {
  color: #1c768f;
  font-size: 14px;
  margin-left: 8px;
}

.cont_time {
  font-size: 15px;
  color: #888;
  margin-bottom: 0;
  margin-top: 4px;
}

.cont_social {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
}

.cont_social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #161616;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cont_social a:hover {
  background: #1c768f;
  border-color: #1c768f;
  color: #fff !important;
}

.contact_frm {
  padding: 1rem 0rem;
}

.contact_frm h4 {
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.contact_frm input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  width: 100%;
  margin-bottom: 1.5rem;
  background: transparent;
  outline: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.contact_frm textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  width: 100%;
  margin-bottom: 1.5rem;
  background: transparent;
  outline: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.contact_frm input:focus,
.contact_frm textarea:focus {
  border-bottom-color: #1c768f;
}

.contact_frm button {
  background-color: #1c768f;
  border: none;
  color: #fff;
  padding: 10px 45px;
  font-size: 16px;
  font-family: 'Satoshi', sans-serif;
  transition: all 0.3s ease;
}

.contact_frm button:hover {
  background-color: #fa991c;
  color: #000000;
}

.find_us_head {
  font-size: 50px;
  margin: 1rem 0rem;
}

.map {
  position: relative;
}

.map iframe {
  display: block;
  width: 100%;
  height: 450px;
  filter: grayscale(80%);
}

.map_open {
    position: absolute;
    left: 3.6rem;
    bottom: 10px;
    background: #fa991c;
    color: #000000 !important;
    padding: 11px 18px;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.map_open:hover {
  background: #1c768f;
  color: #ffffff !important;
}








footer {
  background-color: #052e42;
  padding: 3rem 0rem;
  color: #ffffff;
}

.ftr_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.ftr_left {
  max-width: 340px;
}

.ftr_tag {
  font-size: 16px;
  font-weight: 300;
  color: #bcd6e2;
  line-height: 24px;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.ftr_head {
  font-size: 18px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  white-space: nowrap;
}

.ftr_head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #fa991c;
}

.ftr_logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ftr_logo img {
  height: 52px;
}

.ftr_logo span {
  height: 52px;
  width: 1px;
  background: #ffffff69;
}

.ftr_logo:focus-within .logo_timed {
  animation: none;
}

.ftr_left ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  gap: 12px;
  margin-top: 1.5rem;
}

.ftr_left ul li a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ftr_left ul li a:hover {
  background: #fa991c;
  border-color: #fa991c;
  color: #000 !important;
}

.address ul li {
  line-height: 22px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.address ul li i {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-right: 10px;
  margin-top: 4px;
  color: #fa991c;
}

.ftr_right {
  display: flex;
  gap: 50px;
}

.ftr_right ul {
  list-style: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  padding-left: 0px;
}

.cpright_ftr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  border-top: 1px solid #ffffff26;
  padding-top: 1.5rem;
}

.cpright_ftr p {
  margin-bottom: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}


.whatsapp_fix_btn {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
}

.whatsapp_fix_btn button {
  background-color: #25D366;
  color: #fff;
  border: none;
  padding: 12px 13px;
  font-size: 25px;
  border-radius: 50px;
  line-height: 0;
}


.ads_popup {
  display: none;
}

.pop_animate {
  display: block;
}

















#myVideo {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* #ads_popup{
    text-align: center;
   
  } */
/* .pop_animate{
    opacity: 1;
  } */



.gallery {
  display: none;
}

.pswp__bg {
  background: #000000db !important;
}

.pswp__caption__center {
  text-align: center !important;
}