
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-orange) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: var(--bs-orange) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

/*** Navbar ***/
.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-orange) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-orange) !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-white) !important;
    margin-top: 20px !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-orange);
}

#searchModal .modal-content {
    background: rgba(10, 5, 39, 0.358);
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-orange);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(190, 124, 19, 0.26);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0%   {left: 0px;}
    50%   {left: 70px;}
    100%  {left: 0px;}
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0%   {left: -240px;}
    50%   {left: -300px;}
    100%  {left: -240px;}
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

.header-carousel .carousel-caption-inner h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 4rem; /* Adjust size as needed */
    letter-spacing: 3px;
    color: #ff6f00; /* Warm orange tone */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Responsive font size */
@media (max-width: 992px) {
    .header-carousel .carousel-caption-inner h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
}


@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }
}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-true.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(138, 85, 25, 0.292);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
/*** About End ***/

/*** Our Works Start ***/

.text-orange {
    color: #fd7e14;
}

.service-split {
    background: #fff;
    padding: 30px 25px 35px 30px;
    border-radius: 16px;
    position: relative;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    transition: 0.4s ease;
}

/* Accent strip */
.service-split::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #fd7e14;
    border-radius: 16px 0 0 16px;
}

/* Hover lift */
.service-split:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(253, 126, 20, 0.2);
}

/* Icon */
.service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
}

/* Title */
.service-split h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

/* Text */
.service-split p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Link */
.service-split a {
    font-weight: 600;
    text-decoration: none;
    color: #fd7e14;
    transition: 0.3s;
}

.service-split a:hover {
    color: #000;
}
/*** Our Works End ***/

/*** Recent Posts – Modern Blog Cards ***/

.text-orange {
    color: #fd7e14;
}

/* Card */
.post-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(253, 126, 20, 0.25);
}

/* Image */
.post-img {
    position: relative;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.post-card:hover .post-img img {
    transform: scale(1.1);
}

/* Category badge */
.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0b1d3a;
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

/* Content */
.post-content {
    padding: 25px;
}

/* Meta */
.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

/* Title */
.post-content h4 {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Button */
.post-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #fd7e14;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.post-btn:hover {
    background: #000;
    color: #fff;
}

/*** Recent Posts Image Hover + Lightbox ***/

.post-img {
    position: relative;
    overflow: hidden;
}

/* Hover overlay */
.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    cursor: pointer;
    transition: 0.4s ease;
    z-index: 3;
}

.img-overlay i {
    font-size: 42px;
    color: #fff;
    transform: scale(0.8);
    transition: 0.3s ease;
}

.post-card:hover .img-overlay {
    opacity: 1;
}

.post-card:hover .img-overlay i {
    transform: scale(1);
}

/* Fullscreen Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    animation: zoomIn 0.4s ease;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

/* Zoom animation */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/*** Blog Start ***/
.blog .blog-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .project-img .blog-plus-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(138, 58, 9, 0.2);
    transition: 0.5s;
    opacity: 0;
}

.blog .blog-item:hover .project-img .blog-plus-icon {
    opacity: 1;
}

.blog .blog-item .project-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .project-img img {
    transform: scale(1.3);
}

/*** Blog End ***/

/*** Team Start ***/
.team-item {
    position: relative;
    padding: 10px;
}

/* Team image container */
.team-img {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* IMAGE SHADOW (this is what makes it stand out) */
.team-img img {
    position: relative;
    z-index: 1;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: #fff;
}

/* LEFT LINE – bottom to top */
.team-img::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 2px;
    height: 100%;
    background: var(--bs-orange);
    animation: moveUp 3s linear infinite;
    z-index: 2;
}

/* RIGHT LINE – top to bottom */
.team-img::after {
    content: "";
    position: absolute;
    right: 0;
    top: -100%;
    width: 2px;
    height: 100%;
    background: var(--bs-orange);
    animation: moveDown 3s linear infinite;
    z-index: 2;
}

/* HORIZONTAL LINES */
.team-img span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--bs-orange);
    z-index: 2;
}

/* TOP LINE – left to right */
.team-img span.top {
    top: 0;
    left: -100%;
    animation: moveRight 3s linear infinite;
}

/* BOTTOM LINE – right to left */
.team-img span.bottom {
    bottom: 0;
    left: 100%;
    animation: moveLeft 3s linear infinite;
}

/* Animations */
@keyframes moveUp {
    from { bottom: -100%; }
    to   { bottom: 100%; }
}

@keyframes moveDown {
    from { top: -100%; }
    to   { top: 100%; }
}

@keyframes moveRight {
    from { left: -100%; }
    to   { left: 100%; }
}

@keyframes moveLeft {
    from { left: 100%; }
    to   { left: -100%; }
}



.team .team-item .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(218, 215, 210, 0.2);
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon .team-icon-share {
    position: relative;
    margin-top: -200px;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon .team-icon-share {
    margin-top: 0 !important;
}

.team .team-item .team-content {
    position: relative;
}

.team .team-item .team-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-orange) !important;
    transition: 0.5s;
}

.team .team-item .team-content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-orange) !important;
    transition: 0.5s;
}

.team .team-item:hover .team-content::after,
.team .team-item:hover .team-content::before {
    width: 100% !important;
    height: 50% !important;
}

.team .team-item:hover .team-content .team-content-inner {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.team .team-item .team-content .team-content-inner h4,
.team .team-item .team-content .team-content-inner p {
    transition: 0.5s;
}

.team .team-item:hover .team-content .team-content-inner p {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content .team-content-inner h4 {
    color: var(--bs-dark) !important;
}
/*** Team End ***/

/*** Partners / Testimonial Modern Style ***/

.testimonial {
    background: #f9fafb;
}

.testimonial .testimonial-carousel {
    margin-top: 0;
}

/* Partner Card */
.partner-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Logo */
.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bs-primary);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Partner Name */
.partner-card h5 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 17px;
    color: var(--bs-dark);
}

/* Owl Dots */
.testimonial .owl-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.testimonial .owl-dot {
    width: 14px;
    height: 14px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 6px;
    transition: 0.4s;
}

.testimonial .owl-dot.active {
    width: 32px;
    background: var(--bs-primary);
    border-radius: 20px;
}


/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*** FAQ'S End ***/

/*** Footer Start ***/
.footer {
    background: #0a142b;
}
.footer .footer-item a {
    line-height: 35px;
    color: whitesmoke;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #fd7e14;
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: var(--bs-white) !important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid #fd7e14;
    background: var(--bs-white) !important;
}
/*** copyright end ***/