/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: none;
    font-style: normal;
    position: relative;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none !important;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   z-index: 1;
   /*font-family: "Merriweather Sans", sans-serif;*/
   font-family: "Montserrat", sans-serif;
}
h1 {
    font-size: 50px;
    font-weight: 600 ;
    margin-bottom: 35px;
}
h2 {
    font-size: 45px ;
    font-weight: 600 ;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 500 ;
    margin-bottom: 24px;
}
h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}
h5 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
}
h6 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 16px;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-24 {
    --bs-gutter-y: 24px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
#primary{
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.Primary-btn i {
    transition: all 0.5s;
}
.Primary-btn:hover i {
    transform: translateX(10px);
}
.primary-btn.light {
    background-color: #fff;
    color: #008a8d;
    font-weight: 500;
}
.primary-btn.light span.btn-icon {
    background-color: #008a8d;
}
.primary-btn.light span.btn-icon svg {
    fill: #fff;
}
.primary-btn.light:hover{
	color: #008a8d;
}
/*************************
* Header start
*************************/
header.main-header {
    position: fixed;
        top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    transition: all 0.5s;
    background-color: transparent;
}
header.main-header.sticky-header--cloned.sticky-fixed {
    background-color: #008a8d;
}
header.main-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
    width: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
header.main-header.sticky-header--cloned.sticky-fixed::after{
    display: none;
}
.main-header-inner {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
        padding-top: 5px;
}
header.main-header.sticky-header--cloned.sticky-fixed .main-header-inner {
    padding-bottom: 10px;
}
.menu-icon-outer {
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
    color: #fff;
    width: 167px;
}
.menu-icon {
    width: 37px;
    height: 26px;
    position: relative;
}
.menu-icon span {
    position: absolute;
    transition: all 0.5s;
    width: 30px;
    height: 2px;
    background: #fff;
    border-radius: 100px;
    left: 0;
}
.menu-icon span:first-child {
    top: 0;
    width: 28px;
}
.menu-icon span:last-child {
    width: 21px;
    top: auto;
    bottom: 0;
}
.menu-icon span:nth-child(2) {
    top: 0;
    width: 37px;
    bottom: 0;
    margin: auto;
}
.menu-icon-outer p {
    margin-bottom: 0;
}
.burg-curtain {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0px;
    pointer-events: none;
    z-index: 10;
}
.burg-curtain-item {
    position: relative;
    flex: 1;
    background-color: #008a8d;
}
.topbar {
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid #ffffff57;
}
.topbar p {
    margin-bottom: 0;
    font-weight: 400;
    color: #fff;
}
.logo {
    max-width: 130px;
}
header.main-header.sticky-header--cloned.sticky-fixed .logo {
    max-width: 100px;
}
.primary-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    padding: 10px 15px 10px 55px;
    background-color: #008a8d;
    border-radius: 30px;
    color: #fff;
    position: relative;
}
span.btn-icon {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
}
span.btn-text {
    transition: all 0.5s;
}
.primary-btn:hover span.btn-icon {
    left: calc(100% - 42px);
}
.primary-btn:hover {
    color: #fff;
    padding: 10px 55px 10px 15px;
}
.primary-btn:hover span.btn-text {
    animation: op 0.8s linear 1;
}
@keyframes op {
    0%{
      opacity: 0;
    }
     100%{
      opacity: 1;
    }
}
.main-header-inner, .topbar {
    position: relative;
    z-index: 99;
}
.menu-icon-outer.active .menu-icon span:first-child {
    width: 37px;
    transform: rotate(45deg);
    top: 0;
}
.menu-icon-outer.active .menu-icon span:nth-child(2) {
    opacity: 0;
}
.menu-icon-outer.active .menu-icon span:last-child {
    width: 37px;
    transform: rotate(-45deg);
    top: 0;
}
.menu-icon-outer.active .menu-icon span:last-child, .menu-icon-outer.active .menu-icon span:first-child {
    margin-top: 12px;
}
nav.main-menu {
    position: fixed;
    top: -100%;
    left: 0%;
    overflow: hidden;
    z-index: 11;
    width: 100%;
    height: 100%;
    display: flex;
    padding-top: 80px;
   transition: top 1s ease, opacity 0.4s ease;
    opacity: 0;
}
nav.main-menu.active {
    top: 0;
    opacity: 1;
     transition-delay: 1s;
}
nav.main-menu .menu {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-top: 60px;
    flex-direction: column;
    row-gap: 12px;
}
nav.main-menu .menu li a {
    color: #fff;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.social-links {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
ul.social-links a {
    color: #fff;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000004f;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: radial-gradient(21% 64% at 16% 125%, #000000 30%, #03011600 160%);
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.hero-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    width: 50%;
    padding-top: 52vh;
}
.hero-box span.tagline {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}
.about-section {
    padding: 100px 0;
        
}
.about-image.one {
    margin-right: 140px;
    border-radius: 20px;
    overflow: hidden;
}
.about-image.one img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-image.one:hover img {
    transform: scale(1.1);
}
.about-left {
    position: relative;
}
.about-image.two {
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    margin-left: 110px;
    margin-top: -250px;
    position: relative;
    z-index: 1;
}
.about-image.two img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-image.two:hover img {
    transform: scale(1.1);
}
.circle-text-wrap-outer {
    height: 250px;
    width: 250px;
    border-radius: 100%;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #008a8d;
}
.circle-text-wrap-outer svg.circle-text-svg {
    fill: #fff;
    animation: rotateCircle 10s linear infinite;
}
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.circle-text-wrap-outer svg.circle-text-svg textPath {
    text-transform: uppercase;
}
.about-right {
    padding-left: 60px;
        position: sticky;
    top: 140px;
}
p.lead-font {
    font-size: 20px;
    font-weight: 500;
    padding-left: 15px;
    border-left: 2px solid #008a8d;
}
.heading-box {
    margin-bottom: 30px;
}
.heading-box h2 {
    margin-bottom: 0;
}
.about-right .primary-btn {
    margin-top: 20px;
}
.circle-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 160px;
    width: 160px;
    background-color: #fff;
    border-radius: 100%;
    padding: 24px;
}
.subheading {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.8px;
}
.subheading img {
    max-width: 20px;
}
.project-section {
    padding: 100px 0;
    position: relative;
    color: #fff;
}
.heading-outer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.project-section .heading-outer .heading-box {
    width: 38%;
    margin-bottom: 0;
}
.project-slider {
    padding-top: 40px;
    border-top: 1px solid #ffffff80;
    position: relative;
    z-index: 1;
}
.project-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: #008a8d;
}
.project-section .heading-outer .primary-btn {
    background-color: #fff;
    color: #008a8d;
    font-weight: 500;
}
.project-section .heading-outer {
    position: relative;
    z-index: 1;
}
.project-section .heading-outer .primary-btn span.btn-icon {
    background-color: #008a8d;
}
.project-section .heading-outer .primary-btn span.btn-icon svg {
    fill: #fff;
}
.project-box {
    position: relative;
    margin: 0 15px;
    height: 400px;
}
.project-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.project-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.project-image:hover img {
    transform: scale(1.1);
}
.project-image p.category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ffffffad;
    border-radius: 4px;
    padding: 4px 10px;
    color: #000;
    backdrop-filter: blur(6px);
    font-weight: 500;
}
.project-image .project-more {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 60px;
    width: 60px;
    padding: 13px;
    background-color: #008a8d;
}
.project-image .project-more svg {
    fill: #fff;
    transition: all 0.5s;
}
.project-box:hover .project-image .project-more svg {
    transform: rotate(-45deg);
}
.project-details {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
}
.project-details h4 {
    font-size: 30px;
    margin-bottom: 15px;
}
.project-details h4 a{
    color: #fff;
}
.project-details  .location {
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    color: #fff;
}
.project-details .location p {
    margin-bottom: 0;
}
.project-details  ul.featured {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.project-details ul.featured li {
    padding: 4px 10px;
    background-color: #ffffffad;
    border-radius: 4px;
    color: #000;
    backdrop-filter: blur(6px);
    font-weight: 500;
}
.project-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}
.testemian-custom-btn {
    display: flex;
    column-gap: 10px;
    justify-content: center;
    margin-top: 15px;
}
.testemian-custom-btn button.slick-arrow {
    background-color: #008a8d;
    padding: 10px;
    height: 50px;
    width: 50px;
}
.testemian-custom-btn button.slick-arrow svg {
    fill: #fff;
}
.testemian-custom-btn button.prev-btn.slick-arrow {
    transform: rotate(180deg);
}
.why-choose-section {
    padding-bottom: 100px;
    position: relative;
}
.why-choose-left {
    padding-right: 110px;
        position: sticky;
    top: 140px;
}
.why-choose-item {
    margin-bottom: 35px;
    border-radius: 16px;
    padding: 20px;
    background-color: #008a8d52;
    display: flex;
    column-gap: 15px;
        transition: all 0.5s;
}
.why-choose-item:last-child {
    margin-bottom: 0;
}
.why-choose-item .icon {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    flex-shrink: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.5s;
}
.why-choose-item h4 {
    margin-bottom: 10px;
}
.why-choose-right {
    padding-left: 100px;
}
.why-choose-item:hover {
    background-color: #008a8d;
    color: #fff;
}
.why-choose-item:hover .icon {
    background-color: #fff;
}
.why-choose-item .icon img {
    transition: all 0.5s;
}
.why-choose-item:hover .icon img {
    filter: brightness(0);
}
.why-choose-item p {
    margin-bottom: 0;
}
.counter-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #008a8d;
    border-radius: 12px;
}
.why-container-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25%;
    padding: 60px 50px 50px 50px;
    position: relative;
}
.why-container-box p:first-child {
    font-size: 65px;
    line-height: 1;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    letter-spacing: -1.48px;
    font-weight: 700;
}
.why-container-box p:nth-child(2) {
    margin-bottom: 0;
    color: #fff;
}
span.count-separator {
    position: absolute;
    width: 10px;
    height: 90px;
    top: 50%;
    inset-inline-end: -5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.15;
}
.why-container-box:last-child span.count-separator {
    display: none;
}
.testimonial-box {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #008a8d;
    background-color: #008a8d26;
    position: relative;
        margin: 0 15px;
}
.retting-box ul {
    display: flex;
    margin-bottom: 19px;
    column-gap: 4px;
    color: #008a8d;
}
.testimonial-box .icon {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.3;
}
.testimonial-box .icon img {
    width: 100px;
}
.testimonial-lower {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-top: 24px;
}
.testimonial-lower img {
    border-radius: 100%;
    border: 2px solid #fff;
    max-width: 60px;
}
.testimonial-lower h4 {
    margin-bottom: 0;
}
.testimonial-box p {
    font-size: 16px;
    font-weight: 500;
}
.testimonial-section {
    padding: 100px 0;
}
.testimonial-section .heading-box {
    margin-bottom: 0;
}
.testimonial-custom-btn {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.testimonial-custom-btn button.slick-arrow {
    background-color: #008a8d;
    padding: 10px;
    height: 50px;
    width: 50px;
}
.testimonial-custom-btn button.slick-arrow svg {
    fill: #fff;
}
.testimonial-custom-btn button.ts-prev-btn.slick-arrow {
    transform: scaleX(-1);
}
.process-section {
    padding-bottom: 100px;
}
.process-box {
    max-width: 270px;
    margin: auto;
    padding: 20px;
    text-align: center;
    border: 2px dashed #008a8d;
    border-radius: 20px;
}
.process-box .icon {
    margin-bottom: 15px;
}
.process-box .icon img {
    width: 100px;
}
.process-box h4 {
    margin-bottom: 0;
}
.blog-section {
    padding-bottom: 100px;
}
.blog-box h4 a {
    color: #000;
}
.blog-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.blog-box .blog-image {
    margin-bottom: 15px;
}
.blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-image:hover img {
    transform: scale(1.1);
}
.blog-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.blog-image:hover::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.blog-meta {
    margin-bottom: 15px;
}
.blog-meta ul {
    display: flex;
    align-items: center;
    column-gap: 35px;
    flex-wrap: wrap;
    row-gap: 8px;
}
.blog-meta ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.blog-meta ul li i, .blog-meta ul li strong {
    color: #008a8d;
}
.blog-box h4 {
    margin-bottom: 12px;
}
.blog-box h4:hover a{
    color: #008a8d;
}
.blog-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #008a8d;
    display: flex;
    column-gap: 20px;
        align-items: center;
}
.blog-item:last-child {
    margin-bottom: 0;
}
.blog-item .blog-image {
    width: 310px;
    flex-shrink: 0;
}
.blog-details h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.blog-details h4 a {
    color: #000;
}
.blog-details h4 a:hover {
    color: #008a8d;
}
.blog-details p {
    display: -webkit-box;
    -webkit-line-clamp: 3;     /* kitni lines dikhani hain */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-left {
    position: sticky;
    top: 140px;
}
.cta-outer {
    display: flex;
    justify-content: space-between;
    column-gap: 35px;
}
.cta-inner {
    width: 100%;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
    background-color: #008a8d;
    color: #fff;
        background-image: url(../img/cta-shape.png);
    background-position: center;
    background-size: cover;
    background-blend-mode: saturation;
}
.cta-right {
    width: 30%;
    flex-shrink: 0;
    border-radius: 20px;
    background-color: #008a8d;
    padding: 20px;
}
.cta-inner h2 {
    margin-bottom: 0;
    width: 58%;
}
.cta-inner .primary-btn {
    background-color: #fff;
    color: #008a8d;
    font-weight: 500;
}
.cta-inner .primary-btn span.btn-icon {
    background-color: #008a8d;
        color: #fff;
}
.cta-inner .primary-btn span.btn-icon svg {
    fill: #fff;
}
.cta-right p {
    margin-bottom: 0;
    color: #fff;
}
.cta-right ul {
    display: flex;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-top: 30px;
}
.cta-right ul li {
    border-radius: 100%;
    overflow: hidden;
    border: 4px solid #fff;
    width: 70px;
    margin-left: -15px;
}
.cta-section {
    padding-bottom: 100px;
}
footer {
    background-color: #008a8d26;
    padding-top: 50px;
}
.footer-about {
    padding-right: 30px;
}
.footer-logo {
    margin-bottom: 20px;
    max-width: 200px;
}
.footer-link {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
}
.footer-contact {
    max-width: 300px;
}
.footer-widget ul li {
    margin-bottom: 10px;
}
.footer-widget ul li a {
    color: #000;
    font-weight: 500;
    position: relative;
}
.footer-widget h4 {
    color: #000;
}
.footer-widget ul li a:hover {
    color:#008a8d;
}
.footer-widget ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    transition: all 0.5s;
    background-color: #008a8d;
}
.footer-widget ul li a:hover::after {
    width: 100%;
}
.footer-contact h4 {
    color: #000;
}
.footer-contact ul li a {
    display: flex;
    column-gap: 12px;
    font-weight: 500;
    color: #000;
        align-items: center;
}
.footer-contact ul li {
    margin-bottom: 10px;
}
.footer-contact ul li a span {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    background-color: #008a8d;
    flex-shrink: 0;
}
.footer-contact ul li a:hover {
    color: #008a8d;
}
.footer-lower {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px dashed #008a8d;
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-lower p {
    margin-bottom: 0;
    color: #000;
}
.footer-lower p a {
    color: #000;
}
.footer-lower ul.social-links li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #008a8d;
    position: relative;
}
.footer-lower ul.social-links li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #fff;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
.footer-lower ul.social-links li a:hover::after {
    transform: translate(-50%, -50%) scale(1);
}
.footer-lower ul.social-links li a i {
    position: relative;
    z-index: 1;
}
.footer-lower ul.social-links li a:hover {
    color: #008a8d;
}
.page-header-section {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}
.page-header-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, rgba(64, 13, 62, 0) 4.92%, #000000c2 95.27%);
}
.page-header-content {
    position: relative;
    z-index: 1;
}
.page-header-content {
    position: relative;
    z-index: 1;
    width: 70%;
}
.page-header-content h1 {
    margin-bottom: 10px;
}
.page-header-content .heading-box{
    margin-bottom: 10px;
}
.custom-breadcrumb {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}
.custom-breadcrumb a {
    color: #fff;
}
.contact-info-section {
    padding: 100px 0;
}
.contact-info-box {
    margin: 0 20px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #008a8d;
    height: 100%;
    text-align: center;
    transition: all 0.5s;
        background-color: #008a8d26;
}
.contact-info-box .icon {
    height: 60px;
    width: 60px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #008a8d;
    transition: all 0.5s;
}
.contact-info-box .icon img {
    max-width: 35px;
}
.contact-info-box:hover {
    transform: translateY(-10px);
    background-color: #008a8d;
    color: #fff;
}
.contact-info-box:hover .icon {
    background-color: #fff;
}
.contact-info-box:hover .icon img {
    filter: brightness(0);
}
.contact-info-box .icon img {
    transition: all 0.5s;
}
.contact-info-box h4 {
    margin-bottom: 12px;
}
.contact-info-box a {
    color: #000;
}
.contact-info-box:hover a {
    color: #fff;
}
.contact-form-section {
    padding-bottom: 100px;
}
.contact-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.contact-image {
    border-radius: 20px;
    overflow: hidden;
    height: calc(100% - 100px);
}
.contact-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.contact-image:hover img {
    transform: scale(1.1);
}
.contact-right ul.social-media {
    padding: 20px;
    border-radius: 12px;
    background-color: #008a8d26;
    justify-content: center;
        display: flex;
    column-gap: 15px;
}
.contact-right ul.social-media li a{
        height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #008a8d;
    color: #fff;
    position: relative;
}
.contact-form-inner {
    padding: 35px;
    border-radius: 20px;
    background-color: #008a8d26;
    height: 100%;
}
.form-group p {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-bottom: 24px;
}
.form-group p textarea.form-control {
    height: 150px;
}
.contact-submit {
    background-color: #008a8d !important;
    border-radius: 12px !important;
}
.form-group p .form-control, .form-group p .form-control:focus {
    height: auto;
    border-radius: 10px;
    padding: 12px 16px;
    border: none;
    box-shadow: none;
    background-color: #008a8d !important;
    color: #fff !important;
}
.form-group p .form-control::placeholder{
    color: #fff;
}
input:-webkit-autofill{
  -webkit-box-shadow: 0 0 0px 1000px #008a8d  inset !important;
  -webkit-text-fill-color: #fff !important;
}
.about-section.two .about-right {
    padding-left: 0;
}
.value-section {
    padding-top: 100px;
    background-position: top center;
    background-size: cover;
    position: relative;
}
.value-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(90deg, #02444694 0%, #00283829 100%);
}
.value-section .hading-box {
    color: #fff;
    position: relative;
    width: 50%;
}
.value-box {
    border-radius: 20px;
    padding: 30px 50px;
    background-color: #fff;
    transition: all 0.5s;
        box-shadow: 0px 10px 50px 20px #384d751c;
    height: 100%;
}
.value-box:hover {
    transform: translateY(-10px);
}
.value-box h4 {
    margin-bottom: 20px;
    color: #008a8d;
}
.value-box .icon {
    height: 60px;
    width: 60px;
    margin-bottom: 24px;
    border-radius: 100%;
    background-color: #008a8d;
        display: flex;
    align-items: center;
    justify-content: center;
}
.value-box .icon img {
    filter: brightness(50) invert(1);
    transition: all 0.5s;
}
.value-box:hover .icon img {
    transform: scaleX(-1);
}
.value-lower {
    transform: translateY(100px);
        margin-top: -100px;
}
.value-box p {
    margin-bottom: 0;
}
.value-two-section {
    padding: 160px 0 100px;
}
.value-box-two {
    padding: 20px;
    border: 2px dashed #008a8d;
    border-radius: 20px;
    height: 100%;
}
.value-box-two span.number {
    display: inline-block;
    margin-bottom: 15px;
}
.value-box-two h4 {
    margin-bottom: 12px;
}
.team-section {
    padding: 0px 0 100px;
}
.team-box {
    cursor: pointer;
}
.team-image {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    height: 383px;
}
.team-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
	object-position: top;
}
.team-box:hover .team-image img {transform: scale(1.1);}
.team-title h4 {
    margin-bottom: 5px;
    font-size: 22px;
}
.team-details-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: scale(0);
    background-color: rgba(0, 0, 0, 0.70);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
}
.team-details-popup.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.team-details-togelar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.team-details-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
        z-index: 2;
}
.team-details-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
}
.team-details-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.team-detail-content {
    max-width: 1024px;
    margin: auto;
    display: flex;
    padding: 35px;
    border-radius: 30px;
    backdrop-filter: blur(3px);
    background-color: #ffffff;
    column-gap: 40px;
}
.team-detail-content .team-image {
    height: 350px;
    flex-shrink: 0;
        width: 300px;
}
.team-section.two {
    padding-top: 100px;
}
.gallery-section.two {
    padding: 100px 0;
}
.gallery-item:nth-child(8), .gallery-item:nth-child(14), .gallery-item:nth-child(22), .gallery-item:nth-child(26), .gallery-item:nth-child(28), .gallery-item:nth-child(29), .gallery-item:nth-child(30),.gallery-item:nth-child(32), .gallery-item:nth-child(35),.gallery-item:nth-child(36),.gallery-item:nth-child(37), .gallery-item:nth-child(38), .gallery-item:nth-child(39) {
    grid-column: span 3;
}
 .gallery-item:nth-child(12), .gallery-item:nth-child(20),  .gallery-item:nth-child(16), .gallery-item:nth-child(23), .gallery-item:nth-child(25), .gallery-item:nth-child(33),.gallery-item:nth-child(10) {
    grid-column: span 4;
}
 .gallery-item:nth-child(15), .gallery-item:nth-child(17), .gallery-item:nth-child(21), .gallery-item:nth-child(24), .gallery-item:nth-child(27), .gallery-item:nth-child(34) {
    grid-column: span 2;
}
.gallery-item:nth-child(4), .gallery-item:nth-child(13), .gallery-item:nth-child(19), .gallery-item:nth-child(18), .gallery-item:nth-child(31) {
    grid-column: span 3;
    grid-row: span 2;
}
.gallery-outer {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 24px;
}
.gallery-item:nth-child(1) {
    grid-column: span 4;
}
.gallery-item:nth-child(9){
    grid-column: span 5;
}
.gallery-item:nth-child(11) {
    grid-column: span 8 ;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px 3px #030c1047;
    transition: all 0.5s;
        height: 400px;
    
}
.gallery-section.two .gallery-item{
        grid-column: span 4 !important;
    grid-row: span 1 !important;
}
.gallery-item .icon {
    height: 40px;
    width: 40px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s;
    transform: translateY(-50px);
}
.gallery-item:hover .icon{
    opacity: 1;
    transform: translateY(0px);
}
.gallery-item .icon img {
    max-width: 24px;
}
.gallery-item> img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.gallery-item:hover > img {
    transform: scale(1.1);
}
.gallery-item:nth-child(2) {
    grid-column: span 3;
}
.gallery-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 2;
}
.gallery-item:nth-child(3) {
    grid-column: span 2;
}
.gallery-item:nth-child(5) {
    grid-column: span 2;
}
.gallery-item:nth-child(6) {
    grid-column: span 4;
}
.gallery-item:nth-child(7) {
    grid-column: span 3;
}
.project-section-two {
    padding: 100px 0;
}
.blog-page-section {
    padding: 100px 0;
}
.blog-box-two .blog-image {
    margin-bottom: 12px;
}
.blog-box-two ul.blog-meta {
    display: flex;
    align-items: center;
    column-gap: 35px;
}
.blog-box-two ul.blog-meta li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.blog-box-two ul.blog-meta li i {
    color: #008a8d;
}
.blog-box-two h4 {
    margin-bottom: 12px;
}
.blog-box-two h4 a {
    color: #000;
}
.blog-box-two p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-sidebar {
    position: sticky;
    top: 140px;
}
.recent-blog-widget {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #008a8d26;
    border-radius: 12px;
}
.blog-item .blog-image-right {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}
.blog-item .blog-image-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-item .blog-title h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.blog-item .blog-title h4 a {
    color: #000;
}
.blog-item .blog-title ul.blog-meta li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.blog-item .blog-title ul.blog-meta li i {
    color: #008a8d;
}
.blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.blog-item .blog-title ul.blog-meta {
    margin-bottom: 0;
}
.services-cta .logo {
    max-width: 240px;
    margin: auto;
    margin-bottom: 24px;
}
.services-cta .logo img{
    filter: brightness(50);
}
.services-cta .cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-bottom: 30px;
}
.services-cta .cta-call img {
    max-width: 29px;
    filter: brightness(50) invert(1);
}
.services-cta .cta-call a {
    color: #fff;
    font-size: 20px;
}
.services-cta {
    text-align: center;
    padding: 50px 40px;
    border-radius: 12px;
    background-image: url(../img/gallery-1.avif);
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: #000000ba;
    color: #ffff;
}
.pagination {
    margin-top: 40px;
    justify-content: space-between;
}
.pagination a{
    display: flex;
    align-items: center;
    column-gap: 15px;
    color:#000;
}
 .pagination a>img{
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 8px;
}
 .pagination .pagination-to{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
 .pagination .next .pagination-top{
    justify-content: end;
}
 .pagination .pagination-top span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
}
.pagination .next {
    margin-left: auto;
    width: 47%;
    background-color: #008a8d26;
    padding: 20px;
    border-radius: 10px;
}
 .pagination .next a{
    justify-content: end;
} 
 .pagination .pre {
    margin-right: auto;
    width: 47%;
    background-color: #008a8d26;
    padding: 20px;
    border-radius: 10px;
}
 .pagination h4{
    margin-bottom: 0;
    font-size: 18px;
}
.blog-block {
    margin-bottom: 30px;
}
.blog-details-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.blog-details-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-details-image:hover img {
    transform: scale(1.1);
}
.blog-details-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.blog-details-image:hover::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.blog-block h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.blog-image-outer {
    display: flex;
    column-gap: 24px;
}
.blog-block.cta {
    padding: 30px;
    border-radius: 20px;
    background-color: #008a8d26;
    text-align: center;
}
.project-section.two::after {
    display: none;
}
.project-section.two {
    padding: 0;
    margin-top: 50px;
}
.project-details-section {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100vh;
}
.project-logo {
    position: absolute;
    top: 80%;
    left: 80%;
    transform: translate(-50%, -50%);
    max-width: 390px;
}
.project-details-two {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
}
.project-details-item h4 {
    margin-bottom: 5px;
}
.project-details-item p {
    margin-bottom: 0;
}
.project-details-item {
    margin-bottom: 24px;
    position: relative;
    padding-left: 30px;
}
.project-details-item:last-child {
    margin-bottom: 0;
}
.project-details-section::after {
    content: "'";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(80deg, rgb(0 0 0 / 77%) 0%, rgba(0, 0, 0, 0) 90%);
}
.project-details-item::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point.svg);
    background-size: 20px;
}
.cta-section.two .cta-inner {
    padding: 50px 150px;
    flex-direction: column;
    text-align: center;
}
.cta-section.two .cta-inner h2 {
    margin-bottom: 30px;
}
.cta-btn {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.project-fature-section {
    padding: 100px 0;
}
.project-fature-box {
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    height: 100%;
    background-color: #008a8d52;
    transition: all 0.5s;
}
.project-fature-box .icon {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background-color: #008a8d;
    margin-bottom: 20px;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-fature-box .icon img {
    transition: alll 0.5s;
    filter: brightness(50) invert(1);
    width: 40px;
}
.project-fature-box h4 {
    margin-bottom: 10px;
}
.project-fature-box p {
    margin-bottom: 0;
}
.project-fature-box:hover {
    transform: translateY(-10px);
    background-color: #008a8d;
    color: #fff;
}
.project-fature-box:hover .icon {
    background-color: #fff;
}
.project-fature-box:hover .icon img {
    filter: none;
}
.gallery-section.three {
    padding-bottom: 100px;
}
.project-inqury-form {
    padding: 24px;
    border-radius: 16px;
    background-color: #008a8d52;
}
.inquiry-section {
    padding-bottom: 100px;
}
.project-map {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.project-map iframe {
    width: 100% !important;
}
.ameni-left {
    border-radius: 20px;
    overflow: hidden;
    background-color: #008a8d52;
    align-items: center;
    padding: 20px 0 0;
    position: sticky;
    top: 130px;
}
.ameni-grid-outer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-left: 50px;
}
.ameni-grid-item {
    padding: 15px;
    height: 100%;
    text-align: center;
    border-right: 1px solid #008a8d;
    border-bottom: 1px solid #008a8d;
}
.ameni-grid-item .icon {
    width: 60px;
    margin: auto;
    margin-bottom: 12px;
}
.ameni-grid-item p {
    margin-bottom: 0;
}
.ameni-grid-item:nth-child(4), .ameni-grid-item:nth-child(8), .ameni-grid-item:nth-child(12), .ameni-grid-item:nth-child(16),.ameni-grid-item:nth-child(20), .ameni-grid-item:nth-child(24) {
    border-right: none;
}
.ameni-grid-item:nth-last-child(-n+4) {
    border-bottom: none;
}
.ameni-box {
    text-align: center;
}
.ameni-box .ameni-image {
    border-radius: 9px;
    overflow: hidden;
    height: 310px;
    width: calc(100% - 40px);
    margin: auto;
    margin-bottom: 15px;
}
.ameni-box .ameni-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.ameni-section {
    padding-bottom: 100px;
}
.pdf-download {
    position: absolute;
    bottom: 15px;
    z-index: 1;
    right: 15px;
}
.pdf-download span.btn-icon {
    color: #008a8d;
}
.channel-section {
    padding: 100px 0;
}
.channel-left h2 {
    font-size: 32px;
    margin-bottom: 16px;
}
.channel-left p.lead {
    font-weight: 600;
}
.channel-box {
    margin-bottom: 35px;
    background-color: #008a8d26;
    padding: 24px;
    border-radius: 12px;
}
.channel-box:last-child {
    margin-bottom: 0;
}
.channel-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}
.channel-box ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 500;
}
.channel-box ul li::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-dark.svg);
    background-size: 20px;
}
.channel-right {
    margin-left: 60px;
    padding: 30px;
    border-radius: 12px;
    background-color: #008a8d26;
    position: sticky;
    top: 130px;
}
.channel-submit-btn {
    background-color: #008a8d !important;
}
.joint-development-section {
    padding: 100px 0;
}
.joint-left .heading-box h2 {
    font-size: 32px;
    margin-bottom: 12px;
}
.joint-benefits {
    margin-bottom: 35px;
    background-color: #008a8d26;
    padding: 24px;
    border-radius: 12px;
}
.joint-benefits h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}
.joint-benefits ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 500;
}
.joint-benefits ul li::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-dark.svg);
    background-size: 20px;
}
.joint-right {
    margin-left: 60px;
    padding: 30px;
    border-radius: 12px;
    background-color: #008a8d26;
    position: sticky;
    top: 130px;
}
.pt-50{
    padding-top: 50px;
}
.project-category-title {
    font-size: 26px;
    font-weight: 600;
}
.mt-60 {
    margin-top: 60px;
}
.project-section-two .project-box {
    margin: 0;
        height: 400px;
}
.location-left p {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
}
.location-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 15px;
    border: 1px solid #008a8d38;
    padding-left: 15px;
    border-radius: 8px;
}
.location-item:last-child {
    margin-bottom: 0;
}
.award-section {
    padding-top: 100px;
}
.award-box {
    padding: 24px;
    border-radius: 12px;
    height: 100%;
    background-color: #008a8d52;
    transition: all 0.5s;
}
.award-box span {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 24px;
    display: inline-block;
}
.award-box h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}
.award-box:hover {
    transform: translateY(-10px);
    background-color: #008a8d;
    color: #fff;
}

.hero-video video,
.hero-video .video-poster {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

/* Video hidden initially */
.hero-video video {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Show video */
.hero-video.video-loaded video {
  opacity: 1;
}

/* Hide poster */
.hero-video.video-loaded .video-poster {
  opacity: 0;
  transition: opacity 0.6s ease;
}