* {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
    color: #000;
}

.roboto-condensed {
    font-family: "Roboto Condensed", sans-serif;
}

.btn-primary {
    background-color: #008C89;
    --mdb-btn-bg: #008C89;
    --mdb-btn-color: #fff;
    --mdb-btn-box-shadow: 0 4px 9px -4px #008C89;
    --mdb-btn-hover-bg: #008C89;
    --mdb-btn-hover-color: #fff;
    --mdb-btn-focus-bg: #008C89;
    --mdb-btn-focus-color: #fff;
    --mdb-btn-active-bg: #008C89;
}

.btn-primary:hover {
    background-color: #068A8C;
}

.text-primary {
    color: #068A8C !important;
}

.text-light {
    color: #3E3E3E !important;
}


/* navbar and carusel  start*/
/* Carousel styling */
#introCarousel,
.carousel-inner,
.carousel-item,
.carousel-item.active {
    height: 100vh;
}

.carousel-item:nth-child(1) {
    background-image: url('../images/slider1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.carousel-item:nth-child(2) {
    background-image: url('../images/slider2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.carousel-item:nth-child(3) {
    background-image: url('../images/slider1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Legacy navbar fallback — actual navbar styles are in header.php */
.navbar { box-shadow: none; background-color: #ffffff !important; }
.navbar .nav-link { color: #3b4540 !important; font-weight: 600; }
.navbar .nav-link:hover { color: #008C89 !important; }


/* navbar and carusel end */

/* our services start */
.service-box {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.service-box img {
    transition: all 0.5s ease 0s;
}

.service-box:hover img {
    transform: scale(1.2);
}

.service-box .service-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease 0s;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-box:hover .service-content {
    background: rgba(0, 0, 0, 0.5);
}

.service-box .service-content .service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background: #068A8C;
    text-align: center;
    color: #FFFFFF;
    border-radius: 100%;
    font-size: 25px;
    transition: all 0.7s ease 0s
}

.service-box:hover .service-content .service-icon {
    background: #FFFFFF;
    color: #068A8C;
    transform: scale(1.1);
}

.service-box .service-content h3 {
    font-size: 22px;
    color: #111111;
    font-weight: 700;
}

.service-box .service-content p {
    font-size: 15px;
    color: #3e3e3e;
}

.service-box:hover .service-content h3 {
    color: #fff;
}

.service-box:hover .service-content p {
    color: #fff;
}

/* our services end */

/* Our Working Process start */
.overly-style-1 {
    position: relative;
}

.overly-style-1:before {
    position: absolute;
    content: "";
    opacity: 0.7;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;

}

.working-process-box {
    background-color: white;
    padding: 60px 20px 55px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.working-process-box i {
    font-size: 42px;
    color: #068A8C;
    transition: all 0.3sease 0s;
}

.working-process-box:hover i {
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running tada;
    animation: 500ms ease-in-out 0s normal none 1 running tada;
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

.working-process-box h4 {
    font-size: 20px;
    margin-top: 15px;
    font-weight: 700;
}

/* Our Working Process end */

/* Our Projects start */
.grid-container {
    column-count: 3;
    column-gap: 15px;
    padding: 10px;
}

.grid-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

@media (max-width: 768px) {
    .grid-container {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .grid-container {
        column-count: 1;
    }
}

.project-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.project-wrap::before {
    background-color: #008C89;
    content: "";
    width: 0;
    height: 4px;
    top: 0;
    left: auto;
    right: 0;
    position: absolute;
    z-index: 2;
    transition: 0.3s;
}

.project-wrap::after {
    background-color: #008C89;
    content: "";
    width: 4px;
    height: 0;
    top: auto;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 2;
    transition: 0.3s 0.25s;
}

.project-wrap .project-inner>.thumbnail {
    display: block;
    position: relative;
}

.project-wrap .project-inner>.thumbnail:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    background: #000 none repeat scroll 0 0;
    transition: all 0.4s ease-in-out 0s;
}

.project-wrap .project-inner>.thumbnail img {
    width: 100%;
    transition: all 0.8s ease 0s;
}

.project-wrap .project-inner::before {
    background-color: #008C89;
    content: "";
    width: 0;
    height: 4px;
    bottom: 0;
    left: 0;
    right: auto;
    position: absolute;
    z-index: 2;
    transition: 0.3s 0.5s;
}

.project-wrap .project-inner::after {
    background-color: #008C89;
    content: "";
    width: 4px;
    height: 0;
    top: 0;
    bottom: auto;
    left: 0;
    position: absolute;
    z-index: 2;
    transition: 0.3s 0.75s;
}

.project-wrap .project-inner .img-zoom {
    position: absolute;
    right: 30px;
    top: 0px;
    z-index: 99;
    width: 50px;
    height: 50px;
    display: flex;
    color: #000000;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 20px;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out 0s;
}

.project-wrap .project-inner .img-zoom:hover {
    background-color: #008C89;
    color: #FFFFFF;
}

.project-wrap .project-inner .project-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project-wrap .project-inner .project-content {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .project-wrap .project-inner .project-content {
        padding: 20px;
    }
}

.project-wrap .project-inner .project-content .category a {
    color: #FFFFFF;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out 0s;
}

.project-wrap .project-inner .project-content .category a:hover {
    color: #008C89;
}

.project-wrap .project-inner .project-content .title {
    font-size: 20px;
    margin: 7px 0 0;
}

@media only screen and (max-width: 767px) {
    .project-wrap .project-inner .project-content .title {
        font-size: 19px;
    }
}

.project-wrap .project-inner .project-content .title a {
    color: #FFFFFF;
    transform: translateY(10px);
    transition: all 0.4s ease-in-out 0s;
}

.project-wrap .project-inner .project-content .title a:hover {
    color: #008C89;
}

.project-wrap:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.project-wrap:hover::after {
    height: 100%;
    bottom: auto;
    top: 0;
}

.project-wrap:hover .project-inner>.thumbnail:before {
    opacity: 0.75;
    visibility: visible;
}

.project-wrap:hover .project-inner>.thumbnail img {
    transform: scale(1.2);
}

.project-wrap:hover .project-inner .img-zoom {
    top: 30px;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.project-wrap:hover .project-inner .project-content {
    opacity: 1;
    visibility: visible;
}

.project-wrap:hover .project-inner .project-content .category a {
    transform: translateY(0px);
}

.project-wrap:hover .project-inner .project-content .title a {
    transform: translateY(0px);
}

.project-wrap:hover .project-inner::before {
    width: 100%;
    right: 0;
    left: auto;
}

.project-wrap:hover .project-inner::after {
    height: 100%;
    top: auto;
    bottom: 0;
}

/* Our Projects end */

/* video start */
.video-container {
    position: relative;
    width: 100%;
    max-height: 500px;
}

.video-container video {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* video end */

/* client start */
.logo-section {
    width: 100%;
    margin: auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;
    text-align: center;
}

.logo img {
    width: 80px !important;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.logo img:hover {
    filter: grayscale(0%);
}

/* client end */

/* footer start */
footer .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #008C89;
    color: #fff;
    border: none;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

footer .icon i {
    color: inherit;
}

footer .icon:hover {
    background-color: transparent;
    color: #008C89;
    border: 2px solid #008C89;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    font-size: 17px;
    display: flex;
    gap: 8px;
    align-items: center;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: "Roboto Condensed", sans-serif;
    transition: all 0.5s ease-out;
}

footer ul li:hover {
    color: #008C89;
}

/* footer end */